2020-01-26 12:32:47 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
2019-03-16 13:24:23 +01:00
|
|
|
name = "limesurvey";
|
2021-01-10 20:08:30 +01:00
|
|
|
meta.maintainers = [ pkgs.lib.maintainers.aanderse ];
|
2019-03-16 13:24:23 +01:00
|
|
|
|
2020-01-26 12:32:47 +01:00
|
|
|
machine = { ... }: {
|
|
|
|
services.limesurvey = {
|
|
|
|
enable = true;
|
|
|
|
virtualHost = {
|
|
|
|
hostName = "example.local";
|
|
|
|
adminAddr = "root@example.local";
|
|
|
|
};
|
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(
|
2020-09-16 17:48:13 +02:00
|
|
|
"curl -f http://example.local/"
|
2020-01-26 12:32:47 +01:00
|
|
|
)
|
2019-03-16 13:24:23 +01:00
|
|
|
'';
|
|
|
|
})
|