about summary refs log tree commit diff
path: root/nixos/tests/anuko-time-tracker.nix
blob: 18c3bf5cf6957836302438ccc6d6f5573e0a0ee7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import ./make-test-python.nix ({ pkgs, ... }: {
  name = "anuko-time-tracker";
  meta = {
    maintainers = with pkgs.lib.maintainers; [ michaelshmitty ];
  };
  nodes = {
    machine = {
      services.anuko-time-tracker.enable = true;
    };
  };
  testScript = ''
    start_all()
    machine.wait_for_unit("phpfpm-anuko-time-tracker")
    machine.wait_for_open_port(80);
    machine.wait_until_succeeds("curl -s --fail -L http://localhost/time.php | grep 'Anuko Time Tracker'")
  '';
})