mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-09 15:18:41 +00:00
Add testcase on V8Js::createSnapshot
This commit is contained in:
parent
a1cdd7537b
commit
4df6e80be9
32
tests/create_snapshot_basic.phpt
Normal file
32
tests/create_snapshot_basic.phpt
Normal file
@ -0,0 +1,32 @@
|
||||
--TEST--
|
||||
Test V8Js::createSnapshot() : Basic snapshot creation & re-use
|
||||
--SKIPIF--
|
||||
<?php
|
||||
require_once(dirname(__FILE__) . '/skipif.inc');
|
||||
|
||||
if (!method_exists('V8Js', 'createSnapshot')) {
|
||||
die('SKIP V8Js::createSnapshot not supported');
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
$doublifySource = <<<EOJS
|
||||
function doublify(x) {
|
||||
return 2 * x;
|
||||
}
|
||||
EOJS;
|
||||
|
||||
$snap = V8Js::createSnapshot($doublifySource);
|
||||
|
||||
if (strlen($snap) > 0) {
|
||||
var_dump("snapshot successfully created");
|
||||
}
|
||||
|
||||
$v8 = new V8Js('PHP', array(), array(), true, $snap);
|
||||
$v8->executeString('var_dump(doublify(23));');
|
||||
?>
|
||||
===EOF===
|
||||
--EXPECT--
|
||||
string(29) "snapshot successfully created"
|
||||
int(46)
|
||||
===EOF===
|
Loading…
Reference in New Issue
Block a user