mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-09 16:28:41 +00:00
add test on uninstallation of exception filter
This commit is contained in:
parent
4bfe2ef3ce
commit
b635a16789
53
tests/exception_filter_005.phpt
Normal file
53
tests/exception_filter_005.phpt
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
--TEST--
|
||||||
|
Test V8::setExceptionFilter() : Uninstall filter on NULL
|
||||||
|
--SKIPIF--
|
||||||
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
||||||
|
--FILE--
|
||||||
|
<?php
|
||||||
|
class myv8 extends V8Js
|
||||||
|
{
|
||||||
|
public function throwException(string $message) {
|
||||||
|
throw new Exception($message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$v8 = new myv8();
|
||||||
|
$v8->setExceptionFilter(function (Throwable $ex) {
|
||||||
|
echo "exception filter called.\n";
|
||||||
|
return "moep";
|
||||||
|
});
|
||||||
|
|
||||||
|
$v8->executeString('
|
||||||
|
try {
|
||||||
|
PHP.throwException("Oops");
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
var_dump(e);
|
||||||
|
}
|
||||||
|
', null, V8Js::FLAG_PROPAGATE_PHP_EXCEPTIONS);
|
||||||
|
|
||||||
|
$v8->setExceptionFilter(null);
|
||||||
|
|
||||||
|
try {
|
||||||
|
$v8->executeString('
|
||||||
|
try {
|
||||||
|
PHP.throwException("Oops");
|
||||||
|
print("done\\n");
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
print("caught\\n");
|
||||||
|
var_dump(e.getMessage());
|
||||||
|
}
|
||||||
|
', null, V8Js::FLAG_PROPAGATE_PHP_EXCEPTIONS);
|
||||||
|
} catch (Exception $ex) {
|
||||||
|
echo "caught in php: " . $ex->getMessage() . PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
===EOF===
|
||||||
|
--EXPECT--
|
||||||
|
exception filter called.
|
||||||
|
string(4) "moep"
|
||||||
|
caught
|
||||||
|
string(4) "Oops"
|
||||||
|
===EOF===
|
Loading…
Reference in New Issue
Block a user