about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/web-apps/phylactery.nix
blob: cf2689d2300d30f524d99e4e80da0642fa6b15d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import ../make-test-python.nix ({ pkgs, lib, ... }: {
  name = "phylactery";

  nodes.machine = { ... }: {
    services.phylactery = rec {
      enable = true;
      port = 8080;
      library = "/tmp";
    };
  };

  testScript = ''
    start_all()
    machine.wait_for_unit('phylactery')
    machine.wait_for_open_port(8080)
    machine.wait_until_succeeds('curl localhost:8080')
  '';

  meta.maintainers = with lib.maintainers; [ McSinyx ];
})