nixosTests.plantuml-server: init

This commit is contained in:
Anthony Roussel 2023-11-14 23:09:23 +01:00
parent eb52b838ce
commit 2b455c1649
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
2 changed files with 21 additions and 0 deletions

View File

@ -656,6 +656,7 @@ in {
phylactery = handleTest ./web-apps/phylactery.nix {};
pict-rs = handleTest ./pict-rs.nix {};
pinnwand = handleTest ./pinnwand.nix {};
plantuml-server = handleTest ./plantuml-server.nix {};
plasma-bigscreen = handleTest ./plasma-bigscreen.nix {};
plasma5 = handleTest ./plasma5.nix {};
plasma5-systemd-start = handleTest ./plasma5-systemd-start.nix {};

View File

@ -0,0 +1,20 @@
import ./make-test-python.nix ({ 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))
'';
})