nixpkgs/nixos/tests/komga.nix

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

22 lines
402 B
Nix
Raw Normal View History

{ lib, ... }:
2022-08-12 23:52:52 +02:00
{
name = "komga";
meta.maintainers = with lib.maintainers; [ govanify ];
2022-08-12 23:52:52 +02:00
nodes.machine =
{ pkgs, ... }:
{
services.komga = {
enable = true;
settings.server.port = 1234;
2022-08-12 23:52:52 +02:00
};
};
2022-08-12 23:52:52 +02:00
testScript = ''
machine.wait_for_unit("komga.service")
machine.wait_for_open_port(1234)
machine.succeed("curl --fail http://localhost:1234/")
'';
}