nixpkgs/nixos/tests/komga.nix
Gauvain 'GovanifY' Roussel-Tarbouriech 6c55578c7e nixos/komga: add module
2022-08-18 22:52:27 -04:00

23 lines
419 B
Nix

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