31 lines
727 B
Nix
31 lines
727 B
Nix
import ./make-test-python.nix ({ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
port = 42069;
|
|
in
|
|
{
|
|
name = "bazarr";
|
|
meta.maintainers = with maintainers; [ d-xo ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
services.bazarr = {
|
|
enable = true;
|
|
listenPort = port;
|
|
};
|
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["unrar"];
|
|
# Workaround for https://github.com/morpheus65535/bazarr/issues/1983
|
|
# ("Crash when running without timezone info").
|
|
time.timeZone = "UTC";
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("bazarr.service")
|
|
machine.wait_for_open_port(${toString port})
|
|
machine.succeed("curl --fail http://localhost:${toString port}/")
|
|
'';
|
|
})
|