vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / eintopf.nix
bloba1c05d6513041512136002a74dcb733c953ebbc3
1 import ./make-test-python.nix ({ pkgs, ...} : {
2   name = "eintopf";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ onny ];
5   };
7   nodes = {
8     eintopf = { config, pkgs, ... }: {
9       services.eintopf = {
10         enable = true;
11       };
12     };
13   };
15   testScript = ''
16     eintopf.start
17     eintopf.wait_for_unit("eintopf.service")
18     eintopf.wait_for_open_port(3333)
19     eintopf.succeed("curl -sSfL http://eintopf:3333 | grep 'Es sind keine Veranstaltungen eingetragen'")
20   '';