nixpkgs/nixos/tests/radarr.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
364 B
Nix
Raw Normal View History

2019-11-06 14:56:04 +00:00
import ./make-test-python.nix ({ lib, ... }:
2019-08-13 21:52:01 +00:00
{
name = "radarr";
meta.maintainers = with lib.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)
2019-11-06 14:56:04 +00:00
machine.succeed("curl --fail http://localhost:7878/")
'';
})