1import ./make-test-python.nix (
2 { lib, ... }:
3
4 {
5 name = "radarr";
6 meta.maintainers = with lib.maintainers; [ etu ];
7
8 nodes.machine =
9 { pkgs, ... }:
10 {
11 services.radarr.enable = true;
12 };
13
14 testScript = ''
15 machine.wait_for_unit("radarr.service")
16 machine.wait_for_open_port(7878)
17 machine.succeed("curl --fail http://localhost:7878/")
18 '';
19 }
20)