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