2019-12-15 17:24:45 +00:00
|
|
|
import ./make-test-python.nix ({ lib, ... }:
|
2019-01-24 22:08:16 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
{
|
2019-01-24 22:08:16 +00:00
|
|
|
name = "sonarr";
|
|
|
|
meta.maintainers = with maintainers; [ etu ];
|
|
|
|
|
|
|
|
nodes.machine =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{ services.sonarr.enable = true; };
|
|
|
|
|
|
|
|
testScript = ''
|
2019-12-15 17:24:45 +00:00
|
|
|
machine.wait_for_unit("sonarr.service")
|
|
|
|
machine.wait_for_open_port("8989")
|
|
|
|
machine.succeed("curl --fail http://localhost:8989/")
|
2019-01-24 22:08:16 +00:00
|
|
|
'';
|
|
|
|
})
|