nixpkgs/nixos/tests/komga.nix
2024-10-31 11:08:12 +00:00

20 lines
428 B
Nix

import ./make-test-python.nix ({ lib, ... }:
{
name = "komga";
meta.maintainers = with lib.maintainers; [ govanify ];
nodes.machine =
{ pkgs, ... }:
{ services.komga = {
enable = true;
settings.server.port = 1234;
};
};
testScript = ''
machine.wait_for_unit("komga.service")
machine.wait_for_open_port(1234)
machine.succeed("curl --fail http://localhost:1234/")
'';
})