nixpkgs/nixos/tests/zammad.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
2.4 KiB
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
2023-12-03 10:13:32 +00:00
meta.maintainers = with lib.maintainers; [ taeer n0emis netali ];
2022-02-02 11:23:43 +00:00
2022-02-22 10:37:03 +00:00
nodes.machine = { config, ... }: {
virtualisation = {
memorySize = 2048;
};
2022-02-16 21:50:22 +00:00
services.zammad.enable = true;
services.zammad.secretKeyBaseFile = pkgs.writeText "secret" ''
52882ef142066e09ab99ce816ba72522e789505caba224a52d750ec7dc872c2c371b2fd19f16b25dfbdd435a4dd46cb3df9f82eb63fafad715056bdfe25740d6
2022-02-02 11:23:43 +00:00
'';
2022-02-22 10:37:03 +00:00
systemd.services.zammad-locale-cheat =
let cfg = config.services.zammad; in
{
serviceConfig = {
Type = "simple";
Restart = "always";
User = "zammad";
Group = "zammad";
PrivateTmp = true;
StateDirectory = "zammad";
WorkingDirectory = cfg.dataDir;
};
wantedBy = [ "zammad-web.service" ];
description = "Hack in the locale files so zammad doesn't try to access the internet";
script = ''
mkdir -p ./config/translations
VERSION=$(cat ${cfg.package}/VERSION)
# If these files are not in place, zammad will try to access the internet.
# For the test, we only need to supply en-us.
echo '[{"locale":"en-us","alias":"en","name":"English (United States)","active":true,"dir":"ltr"}]' \
> ./config/locales-$VERSION.yml
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"}]' \
> ./config/translations/en-us-$VERSION.yml
'';
};
2022-02-16 21:50:22 +00:00
};
testScript = ''
start_all()
machine.wait_for_unit("postgresql.service")
2023-12-03 10:13:32 +00:00
machine.wait_for_unit("redis-zammad.service")
2022-02-16 21:50:22 +00:00
machine.wait_for_unit("zammad-web.service")
machine.wait_for_unit("zammad-websocket.service")
2023-12-03 10:13:32 +00:00
machine.wait_for_unit("zammad-worker.service")
2022-02-22 10:37:03 +00:00
# wait for zammad to fully come up
machine.sleep(120)
2022-02-16 21:50:22 +00:00
# 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
)