about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/sonarr.nix
blob: 3e84445099abe004e4ac5a5c9e90f0e5dc342beb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import ./make-test.nix ({ lib, ... }:

with lib;

{
  name = "sonarr";
  meta.maintainers = with maintainers; [ etu ];

  nodes.machine =
    { pkgs, ... }:
    { services.sonarr.enable = true; };

  testScript = ''
    $machine->waitForUnit('sonarr.service');
    $machine->waitForOpenPort('8989');
    $machine->succeed("curl --fail http://localhost:8989/");
  '';
})