nixosTests.php.fpm: Clean up to match httpd test
This commit is contained in:
parent
b69556c580
commit
23a6903bb7
@ -43,13 +43,11 @@ import ../make-test-python.nix ({pkgs, ...}: {
|
|||||||
machine.wait_for_unit("phpfpm-foobar.service")
|
machine.wait_for_unit("phpfpm-foobar.service")
|
||||||
|
|
||||||
# Check so we get an evaluated PHP back
|
# Check so we get an evaluated PHP back
|
||||||
assert "PHP Version ${pkgs.php.version}" in machine.succeed("curl -vvv -s http://127.0.0.1:80/")
|
response = machine.succeed("curl -vvv -s http://127.0.0.1:80/")
|
||||||
|
assert "PHP Version ${pkgs.php.version}" in response, "PHP version not detected"
|
||||||
|
|
||||||
# Check so we have database and some other extensions loaded
|
# Check so we have database and some other extensions loaded
|
||||||
assert "json" in machine.succeed("curl -vvv -s http://127.0.0.1:80/")
|
for ext in ["json", "opcache", "pdo_mysql", "pdo_pgsql", "pdo_sqlite"]:
|
||||||
assert "opcache" in machine.succeed("curl -vvv -s http://127.0.0.1:80/")
|
assert ext in response, f"Missing {ext} extension"
|
||||||
assert "pdo_mysql" in machine.succeed("curl -vvv -s http://127.0.0.1:80/")
|
|
||||||
assert "pdo_pgsql" in machine.succeed("curl -vvv -s http://127.0.0.1:80/")
|
|
||||||
assert "pdo_sqlite" in machine.succeed("curl -vvv -s http://127.0.0.1:80/")
|
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user