nixpkgs/nixos/tests/jackett.nix

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

18 lines
387 B
Nix
Raw Normal View History

2019-11-09 19:31:06 +00:00
import ./make-test-python.nix ({ lib, ... }:
2019-08-13 21:52:01 +00:00
{
name = "jackett";
meta.maintainers = with lib.maintainers; [ etu ];
nodes.machine =
{ pkgs, ... }:
{ services.jackett.enable = true; };
testScript = ''
2019-11-09 19:31:06 +00:00
machine.start()
machine.wait_for_unit("jackett.service")
machine.wait_for_open_port(9117)
machine.succeed("curl --fail http://localhost:9117/")
'';
})