nixpkgs/nixos/tests/zammad.nix

30 lines
947 B
Nix
Raw Normal View History

2022-02-16 05:49:51 +00:00
import ./make-test-python.nix (
{ lib, pkgs, ... }:
2022-02-02 11:23:43 +00:00
2022-02-16 21:50:22 +00:00
{
name = "zammad";
2022-02-02 11:23:43 +00:00
2022-02-16 21:50:22 +00:00
meta.maintainers = with lib.maintainers; [ garbas taeer ];
2022-02-02 11:23:43 +00:00
2022-02-16 21:50:22 +00:00
nodes.machine = {
services.zammad.enable = true;
services.zammad.secretKeyBaseFile = pkgs.writeText "secret" ''
52882ef142066e09ab99ce816ba72522e789505caba224a52d750ec7dc872c2c371b2fd19f16b25dfbdd435a4dd46cb3df9f82eb63fafad715056bdfe25740d6
2022-02-02 11:23:43 +00:00
'';
2022-02-16 21:50:22 +00:00
};
testScript = ''
start_all()
machine.wait_for_unit("postgresql.service")
machine.wait_for_unit("zammad-web.service")
machine.wait_for_unit("zammad-websocket.service")
machine.wait_for_unit("zammad-scheduler.service")
# without the grep the command does not produce valid utf-8 for some reason
with subtest("welcome screen loads"):
machine.succeed(
"curl -sSfL http://localhost:3000/ | grep '<title>Zammad Helpdesk</title>'"
)
'';
}
2022-02-02 11:23:43 +00:00
)