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