nixpkgs/nixos/tests/bazarr.nix
2023-05-12 22:29:27 -03:00

25 lines
470 B
Nix

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