summaryrefslogtreecommitdiffstats
path: root/nixos/tests/anuko-time-tracker.nix
blob: 435cd411b7e44e93d43599b8f1a2a1a026063fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs, ... }:
{
  name = "anuko-time-tracker";
  meta = {
    maintainers = [ ];
  };
  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'")
  '';
}