nixpkgs/nixos/tests/limesurvey.nix

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

29 lines
819 B
Nix
Raw Normal View History

import ./make-test-python.nix ({ lib, pkgs, ... }: {
2019-03-16 13:24:23 +01:00
name = "limesurvey";
meta.maintainers = [ lib.maintainers.aanderse ];
2019-03-16 13:24:23 +01:00
2022-03-21 00:15:30 +01:00
nodes.machine = { ... }: {
2020-01-26 12:32:47 +01:00
services.limesurvey = {
enable = true;
virtualHost = {
hostName = "example.local";
adminAddr = "root@example.local";
};
encryptionKeyFile = pkgs.writeText "key" (lib.strings.replicate 32 "0");
encryptionNonceFile = pkgs.writeText "nonce" (lib.strings.replicate 24 "0");
2019-03-16 13:24:23 +01:00
};
2020-01-26 12:32:47 +01:00
# limesurvey won't work without a dot in the hostname
networking.hosts."127.0.0.1" = [ "example.local" ];
};
2019-03-16 13:24:23 +01:00
testScript = ''
2020-01-26 12:32:47 +01:00
start_all()
2019-03-16 13:24:23 +01:00
2020-01-26 12:32:47 +01:00
machine.wait_for_unit("phpfpm-limesurvey.service")
assert "The following surveys are available" in machine.succeed(
"curl -f http://example.local/"
2020-01-26 12:32:47 +01:00
)
2019-03-16 13:24:23 +01:00
'';
})