nixpkgs/nixos/tests/web-apps/grav.nix
2025-02-21 23:09:42 +01:00

25 lines
628 B
Nix

{ pkgs, ... }:
{
name = "grav";
nodes = {
machine =
{ pkgs, ... }:
{
services.grav.enable = true;
};
};
testScript = ''
start_all()
machine.wait_for_unit("phpfpm-grav.service")
machine.wait_for_open_port(80)
# The first request to a fresh install should result in a redirect to the
# admin page, where the user is expected to set up an admin user.
actual = machine.succeed("curl -v --stderr - http://localhost/", timeout=10).splitlines()
expected = "< Location: /admin"
assert expected in actual, \
f"unexpected reply from Grav: '{actual}'"
'';
}