vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / sonarr.nix
blob57e6b72db3a35dbcf94d8f54ede922de46b217c7
1 import ./make-test-python.nix ({ lib, ... }:
4   name = "sonarr";
5   meta.maintainers = with lib.maintainers; [ etu ];
7   nodes.machine =
8     { pkgs, ... }:
9     { services.sonarr.enable = true; };
11   testScript = ''
12     machine.wait_for_unit("sonarr.service")
13     machine.wait_for_open_port(8989)
14     machine.succeed("curl --fail http://localhost:8989/")
15   '';