about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/komga.nix
blob: d48d19bbbdd37cc8725c2aaddbbcfa989742dcbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import ./make-test-python.nix ({ lib, ... }:

{
  name = "komga";
  meta.maintainers = with lib.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/")
  '';
})