2019-11-06 14:27:14 +03:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }: {
|
2019-06-21 17:09:15 +03:00
|
|
|
name = "moodle";
|
|
|
|
meta.maintainers = [ lib.maintainers.aanderse ];
|
|
|
|
|
2022-03-21 02:15:30 +03:00
|
|
|
nodes.machine =
|
2019-06-21 17:09:15 +03:00
|
|
|
{ ... }:
|
|
|
|
{ services.moodle.enable = true;
|
|
|
|
services.moodle.virtualHost.hostName = "localhost";
|
|
|
|
services.moodle.virtualHost.adminAddr = "root@example.com";
|
|
|
|
services.moodle.initialPassword = "correcthorsebatterystaple";
|
|
|
|
|
|
|
|
# Ensure the virtual machine has enough memory to avoid errors like:
|
|
|
|
# Fatal error: Out of memory (allocated 152047616) (tried to allocate 33554440 bytes)
|
|
|
|
virtualisation.memorySize = 2000;
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-11-06 14:27:14 +03:00
|
|
|
start_all()
|
2022-09-02 21:09:00 +03:00
|
|
|
machine.wait_for_unit("phpfpm-moodle.service", timeout=1800)
|
2019-11-06 14:27:14 +03:00
|
|
|
machine.wait_until_succeeds("curl http://localhost/ | grep 'You are not logged in'")
|
2019-06-21 17:09:15 +03:00
|
|
|
'';
|
|
|
|
})
|