nixpkgs/nixos/tests/radarr.nix

19 lines
373 B
Nix
Raw Normal View History

2019-11-06 14:56:04 +00:00
import ./make-test-python.nix ({ lib, ... }:
with lib;
2019-08-13 21:52:01 +00:00
{
name = "radarr";
meta.maintainers = with maintainers; [ etu ];
nodes.machine =
{ pkgs, ... }:
{ services.radarr.enable = true; };
testScript = ''
2019-11-06 14:56:04 +00:00
machine.wait_for_unit("radarr.service")
machine.wait_for_open_port("7878")
machine.succeed("curl --fail http://localhost:7878/")
'';
})