nixpkgs/nixos/tests/bazarr.nix

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

25 lines
470 B
Nix
Raw Normal View History

2020-05-10 10:54:09 +00:00
import ./make-test-python.nix ({ lib, ... }:
let
port = 42069;
in
{
name = "bazarr";
meta.maintainers = with lib.maintainers; [ d-xo ];
2020-05-10 10:54:09 +00:00
nodes.machine =
{ pkgs, ... }:
{
services.bazarr = {
enable = true;
listenPort = port;
};
};
testScript = ''
machine.wait_for_unit("bazarr.service")
machine.wait_for_open_port(${toString port})
2020-05-10 10:54:09 +00:00
machine.succeed("curl --fail http://localhost:${toString port}/")
'';
})