nixpkgs/nixos/tests/limesurvey.nix

27 lines
651 B
Nix
Raw Normal View History

2020-01-26 12:32:47 +01:00
import ./make-test-python.nix ({ pkgs, ... }: {
2019-03-16 13:24:23 +01:00
name = "limesurvey";
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(
"curl -f http://example.local/"
2020-01-26 12:32:47 +01:00
)
2019-03-16 13:24:23 +01:00
'';
})