0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 18:05:18 +00:00
phpv8/tests/commonjs_cust_normalise_002.phpt
2015-12-06 13:55:13 +01:00

34 lines
734 B
PHP

--TEST--
Test V8Js::setModuleNormaliser : Custom normalisation #002
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$JS = <<< EOT
var foo = require("./test");
EOT;
$v8 = new V8Js();
// setModuleNormaliser may redirect module requirement
// to a different path (and even rename the module)
$v8->setModuleNormaliser(function($base, $module) {
var_dump($base, $module);
return [ "path/to", "test-foo" ];
});
$v8->setModuleLoader(function($module) {
print("setModuleLoader called for ".$module."\n");
return 'exports.bar = 23;';
});
$v8->executeString($JS, 'module.js');
?>
===EOF===
--EXPECT--
string(0) ""
string(6) "./test"
setModuleLoader called for path/to/test-foo
===EOF===