python312Packages.dissect-extfs: 3.11 -> 3.12
[NixPkgs.git] / nixos / tests / limesurvey.nix
blob87e9fe1cdc1490fb28fb2d0623a6e857d04be214
1 import ./make-test-python.nix ({ lib, pkgs, ... }: {
2   name = "limesurvey";
3   meta.maintainers = [ lib.maintainers.aanderse ];
5   nodes.machine = { ... }: {
6     services.limesurvey = {
7       enable = true;
8       virtualHost = {
9         hostName = "example.local";
10         adminAddr = "root@example.local";
11       };
12       encryptionKeyFile = pkgs.writeText "key" (lib.strings.replicate 32 "0");
13       encryptionNonceFile = pkgs.writeText "nonce" (lib.strings.replicate 24 "0");
14     };
16     # limesurvey won't work without a dot in the hostname
17     networking.hosts."127.0.0.1" = [ "example.local" ];
18   };
20   testScript = ''
21     start_all()
23     machine.wait_for_unit("phpfpm-limesurvey.service")
24     assert "The following surveys are available" in machine.succeed(
25         "curl -f http://example.local/"
26     )
27   '';