summary refs log tree commit diff
path: root/nixos/tests/nzbhydra2.nix
blob: c82c756c3a1ce9a9f205cee6ade37bfcfe61cbbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import ./make-test-python.nix ({ lib, ... }:

  with lib;

  {
    name = "nzbhydra2";
    meta.maintainers = with maintainers; [ jamiemagee ];

    nodes.machine = { pkgs, ... }: { services.nzbhydra2.enable = true; };

    testScript = ''
      machine.start()
      machine.wait_for_unit("nzbhydra2.service")
      machine.wait_for_open_port(5076)
      machine.succeed("curl --fail http://localhost:5076/")
    '';
  })