mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
69 lines
1.9 KiB
PHP
69 lines
1.9 KiB
PHP
--TEST--
|
|
registerPHPFunctions() with callables - error cases
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
|
|
$doc = new DOMDocument();
|
|
$doc->loadHTML('<a href="https://php.net">hello</a>');
|
|
|
|
$xpath = new DOMXPath($doc);
|
|
try {
|
|
$xpath->registerPhpFunctions("nonexistent");
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
$xpath->registerPhpFunctions(function () {});
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
$xpath->registerPhpFunctions([function () {}]);
|
|
} catch (Throwable $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
$xpath->registerPhpFunctions([var_dump(...)]);
|
|
} catch (Throwable $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
$xpath->registerPhpFunctions(["nonexistent"]);
|
|
} catch (Throwable $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
$xpath->registerPhpFunctions(["" => var_dump(...)]);
|
|
} catch (Throwable $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
$xpath->registerPhpFunctions(["\0" => var_dump(...)]);
|
|
} catch (Throwable $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
$xpath->registerPhpFunctions("");
|
|
} catch (Throwable $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be a callable, function "nonexistent" not found or invalid function name
|
|
DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be of type array|string|null, Closure given
|
|
Object of class Closure could not be converted to string
|
|
Object of class Closure could not be converted to string
|
|
DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be an array with valid callbacks as values, function "nonexistent" not found or invalid function name
|
|
DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be an array containing valid callback names
|
|
DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be an array containing valid callback names
|
|
DOMXPath::registerPhpFunctions(): Argument #1 ($restrict) must be a valid callback name
|