19 lines
373 B
Nix
19 lines
373 B
Nix
|
import ./make-test-python.nix ({ lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
name = "sonarr";
|
||
|
meta.maintainers = with maintainers; [ etu ];
|
||
|
|
||
|
nodes.machine =
|
||
|
{ pkgs, ... }:
|
||
|
{ services.sonarr.enable = true; };
|
||
|
|
||
|
testScript = ''
|
||
|
machine.wait_for_unit("sonarr.service")
|
||
|
machine.wait_for_open_port("8989")
|
||
|
machine.succeed("curl --fail http://localhost:8989/")
|
||
|
'';
|
||
|
})
|