summary refs log tree commit diff
path: root/nixos/tests/panamax.nix
blob: 80af8a19be15241dfaee1b7f0ec076a8022c2e03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import ./make-test.nix {
  name = "panamax";

  machine = { config, pkgs, ... }: {
    services.panamax.enable = true;
  };

  testScript =
    ''
      startAll;
      $machine->waitForUnit("panamax-api.service");
      $machine->waitForUnit("panamax-ui.service");
      $machine->waitForOpenPort(3000);
      $machine->waitForOpenPort(8888);
      $machine->succeed("curl --fail http://localhost:8888/ > /dev/null");
      $machine->shutdown;
    '';
}