summary refs log blame commit diff
path: root/nixos/tests/komga.nix
blob: 02db50ef25f7256ce645cd78282110031b6e56f8 (plain) (tree)





















                                                         
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/")
  '';
})