summaryrefslogtreecommitdiffstats
path: root/nixos/tests/plantuml-server.nix
blob: e46461bc55acacc68da78bbc7a69d4d438942722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ pkgs, lib, ... }:
{
  name = "plantuml-server";
  meta.maintainers = with lib.maintainers; [ anthonyroussel ];

  nodes.machine =
    { pkgs, ... }:
    {
      environment.systemPackages = [ pkgs.curl ];
      services.plantuml-server.enable = true;
    };

  testScript = ''
    start_all()

    machine.wait_for_unit("plantuml-server.service")
    machine.wait_for_open_port(8080)

    with subtest("Generate chart"):
      chart_id = machine.succeed("curl -sSf http://localhost:8080/plantuml/coder -d 'Alice -> Bob'")
      machine.succeed("curl -sSf http://localhost:8080/plantuml/txt/{}".format(chart_id))
  '';
}