nixosTests.php-pcre: Port tests to python

Changed files
+5 -4
nixos
tests
+5 -4
nixos/tests/php-pcre.nix
···
let testString = "can-use-subgroups"; in
-
import ./make-test.nix ({ ...}: {
name = "php-httpd-pcre-jit-test";
machine = { lib, pkgs, ... }: {
time.timeZone = "UTC";
···
};
testScript = { ... }:
''
-
$machine->waitForUnit('httpd.service');
# Ensure php evaluation by matching on the var_dump syntax
-
$machine->succeed('curl -vvv -s http://127.0.0.1:80/index.php \
-
| grep "string(${toString (builtins.stringLength testString)}) \"${testString}\""');
'';
})
···
let testString = "can-use-subgroups"; in
+
import ./make-test-python.nix ({ ...}: {
name = "php-httpd-pcre-jit-test";
machine = { lib, pkgs, ... }: {
time.timeZone = "UTC";
···
};
testScript = { ... }:
''
+
machine.wait_for_unit("httpd.service")
# Ensure php evaluation by matching on the var_dump syntax
+
assert 'string(${toString (builtins.stringLength testString)}) "${testString}"' in machine.succeed(
+
"curl -vvv -s http://127.0.0.1:80/index.php"
+
)
'';
})