1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/nixos/tests/sonarr.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
406 B
Nix
Raw Normal View History

import ./make-test-python.nix (
{ lib, ... }:
2019-08-13 22:52:01 +01:00
{
name = "sonarr";
meta.maintainers = with lib.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/")
'';
}
)