nixpkgs/nixos/tests/eintopf.nix

27 lines
561 B
Nix
Raw Normal View History

import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "eintopf";
meta = with pkgs.lib.maintainers; {
maintainers = [ onny ];
};
2024-07-03 09:24:22 +00:00
nodes = {
eintopf =
{ config, pkgs, ... }:
{
services.eintopf = {
enable = true;
};
};
2024-07-03 09:24:22 +00:00
};
testScript = ''
eintopf.start
eintopf.wait_for_unit("eintopf.service")
eintopf.wait_for_open_port(3333)
eintopf.succeed("curl -sSfL http://eintopf:3333 | grep 'Es sind keine Veranstaltungen eingetragen'")
'';
}
)