nixpkgs/nixos/tests/gotenberg.nix

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

27 lines
499 B
Nix
Raw Normal View History

2024-07-11 10:07:40 +03:00
import ./make-test-python.nix (
{ lib, ... }:
{
name = "gotenberg";
meta.maintainers = with lib.maintainers; [ pyrox0 ];
nodes.machine = {
services.gotenberg = {
enable = true;
};
};
testScript = ''
start_all()
machine.wait_for_unit("gotenberg.service")
# Gotenberg startup
machine.wait_for_open_port(3000)
# Ensure healthcheck endpoint succeeds
machine.succeed("curl http://localhost:3000/health")
'';
}
)