summaryrefslogtreecommitdiffstats
path: root/nixos/tests/gotenberg.nix
blob: fc1cdc12bfd4dcddacb6427d7943c63ccf477815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, ... }:

{
  name = "gotenberg";

  nodes.machine = {
    services.gotenberg = {
      enable = true;
      # fail the service if any of those does not come up
      chromium.autoStart = true;
      libreoffice.autoStart = 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")
  '';
}