mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 20:08:41 +00:00
46 lines
875 B
PHP
46 lines
875 B
PHP
--TEST--
|
|
Test V8::setMemoryLimit() : Memory limit can be imposed later
|
|
--SKIPIF--
|
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$JS = <<< EOT
|
|
var jsfunc = function() {
|
|
PHP.imposeMemoryLimit();
|
|
var text = "abcdefghijklmnopqrstuvwyxz0123456789";
|
|
var memory = "";
|
|
for (var i = 0; i < 100; ++i) {
|
|
for (var j = 0; j < 10000; ++j) {
|
|
memory += text;
|
|
}
|
|
sleep(0);
|
|
}
|
|
};
|
|
jsfunc;
|
|
EOT;
|
|
|
|
$v8 = new V8Js();
|
|
|
|
$v8->imposeMemoryLimit = function() use ($v8) {
|
|
$v8->setMemoryLimit(10000000);
|
|
};
|
|
|
|
$func = $v8->executeString($JS);
|
|
var_dump($func);
|
|
|
|
try {
|
|
$func();
|
|
} catch (V8JsMemoryLimitException $e) {
|
|
print get_class($e); print PHP_EOL;
|
|
print $e->getMessage(); print PHP_EOL;
|
|
}
|
|
?>
|
|
===EOF===
|
|
--EXPECTF--
|
|
object(V8Function)#%d (0) {
|
|
}
|
|
V8JsMemoryLimitException
|
|
Script memory limit of 10000000 bytes exceeded
|
|
===EOF===
|