mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 18:58:41 +00:00
e9e90bac65
Conflicts: config.w32 package.xml php_v8js_macros.h v8js.cc v8js_array_access.cc v8js_class.cc v8js_convert.cc v8js_exceptions.cc v8js_object_export.cc v8js_timer.cc v8js_v8.cc v8js_v8object_class.cc
54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
--TEST--
|
|
Test V8::setTimeLimit() : Time limit can be changed
|
|
--SKIPIF--
|
|
<?php
|
|
require_once(dirname(__FILE__) . '/skipif.inc');
|
|
|
|
if (getenv("SKIP_SLOW_TESTS")) {
|
|
die("skip slow test");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$JS = <<< EOT
|
|
var jsfunc = function() {
|
|
PHP.incrTimeLimit();
|
|
var start = (new Date()).getTime();
|
|
|
|
var text = "abcdefghijklmnopqrstuvwyxz0123456789";
|
|
while ((new Date()).getTime() - start < 800) {
|
|
/* pass at least 800ms in the loop so the timer loop has plenty of
|
|
* time to trigger. */
|
|
var encoded = encodeURI(text);
|
|
}
|
|
};
|
|
jsfunc;
|
|
EOT;
|
|
|
|
$v8 = new V8Js();
|
|
/* Set very short time limit, but enough so v8 can start up safely. */
|
|
$v8->setTimeLimit(200);
|
|
|
|
$v8->incrTimeLimit = function() use ($v8) {
|
|
$v8->setTimeLimit(500);
|
|
};
|
|
|
|
$func = $v8->executeString($JS);
|
|
var_dump($func);
|
|
|
|
try {
|
|
$func();
|
|
} catch (V8JsTimeLimitException $e) {
|
|
print get_class($e); print PHP_EOL;
|
|
print $e->getMessage(); print PHP_EOL;
|
|
}
|
|
?>
|
|
===EOF===
|
|
--EXPECTF--
|
|
object(V8Function)#%d (0) {
|
|
}
|
|
V8JsTimeLimitException
|
|
Script time limit of 500 milliseconds exceeded
|
|
===EOF===
|