1 import ./make-test-python.nix (
7 meta.maintainers = with lib.maintainers; [ garbas taeer ];
9 nodes.machine = { config, ... }: {
10 services.zammad.enable = true;
11 services.zammad.secretKeyBaseFile = pkgs.writeText "secret" ''
12 52882ef142066e09ab99ce816ba72522e789505caba224a52d750ec7dc872c2c371b2fd19f16b25dfbdd435a4dd46cb3df9f82eb63fafad715056bdfe25740d6
15 systemd.services.zammad-locale-cheat =
16 let cfg = config.services.zammad; in
25 StateDirectory = "zammad";
26 WorkingDirectory = cfg.dataDir;
28 wantedBy = [ "zammad-web.service" ];
29 description = "Hack in the locale files so zammad doesn't try to access the internet";
31 mkdir -p ./config/translations
32 VERSION=$(cat ${cfg.package}/VERSION)
34 # If these files are not in place, zammad will try to access the internet.
35 # For the test, we only need to supply en-us.
36 echo '[{"locale":"en-us","alias":"en","name":"English (United States)","active":true,"dir":"ltr"}]' \
37 > ./config/locales-$VERSION.yml
38 echo '[{"locale":"en-us","format":"time","source":"date","target":"mm/dd/yyyy","target_initial":"mm/dd/yyyy"},{"locale":"en-us","format":"time","source":"timestamp","target":"mm/dd/yyyy HH:MM","target_initial":"mm/dd/yyyy HH:MM"}]' \
39 > ./config/translations/en-us-$VERSION.yml
46 machine.wait_for_unit("postgresql.service")
47 machine.wait_for_unit("zammad-web.service")
48 machine.wait_for_unit("zammad-websocket.service")
49 machine.wait_for_unit("zammad-scheduler.service")
50 # wait for zammad to fully come up
53 # without the grep the command does not produce valid utf-8 for some reason
54 with subtest("welcome screen loads"):
56 "curl -sSfL http://localhost:3000/ | grep '<title>Zammad Helpdesk</title>'"