0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-20 00:45:19 +00:00
phpv8/tests/set_time_limit_002.phpt

48 lines
1.0 KiB
Plaintext
Raw Normal View History

2014-12-07 15:05:58 +00:00
--TEST--
Test V8::setTimeLimit() : Time limit can be changed
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$JS = <<< EOT
var jsfunc = function() {
PHP.incrTimeLimit();
2014-12-08 22:43:04 +00:00
var start = (new Date()).getTime();
2014-12-07 15:05:58 +00:00
var text = "abcdefghijklmnopqrstuvwyxz0123456789";
2014-12-10 18:27:04 +00:00
while ((new Date()).getTime() - start < 500) {
/* pass at least 500ms in the loop so the timer loop has plenty of
2014-12-08 22:43:04 +00:00
* time to trigger. */
2014-12-07 15:05:58 +00:00
var encoded = encodeURI(text);
}
};
jsfunc;
EOT;
$v8 = new V8Js();
2014-12-08 22:43:04 +00:00
/* Set very short time limit, but enough so v8 can start up safely. */
2014-12-10 18:27:04 +00:00
$v8->setTimeLimit(100);
2014-12-07 15:05:58 +00:00
$v8->incrTimeLimit = function() use ($v8) {
2014-12-10 18:27:04 +00:00
$v8->setTimeLimit(300);
2014-12-07 15:05:58 +00:00
};
$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
2014-12-10 18:27:04 +00:00
Script time limit of 300 milliseconds exceeded
2014-12-07 15:05:58 +00:00
===EOF===