0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 18:05:18 +00:00
phpv8/tests/unicode.phpt

51 lines
1.8 KiB
PHP

--TEST--
Test V8::executeString() : Check if imported code works with umlauts
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
# maybe more characters (e.g. from http://www.ltg.ed.ac.uk/~richard/unicode-sample.html?)
$unicode = 'äöüßÜÄÖÜ߀áàâÁÀµ²³▁▂▃▄▅▆▇█    ㌀ ㌁ ㌂ ㌃';
# insert unicode via snapshot
$snapshot = V8Js::createSnapshot("var snapshot = {unicode: '" . $unicode . "'}");
# start V8Js
$jscript = new V8Js('php', array(), $snapshot);
# insert unicode via php var
$jscript->unicode = $unicode;
# insert unicode via executeString
$jscript->executeString("var execStr = {unicode: '" . $unicode . "'}");
# insert via module loader
$jscript->setModuleLoader(function ($path) use ($unicode) {
return "module.exports = {unicode: '" . $unicode . "'}";
});
# return to php
$jscript->executeString("values = {}");
$jscript->executeString("values['snapshot'] = snapshot.unicode");
$jscript->executeString("values['php'] = php.unicode");
$jscript->executeString("values['execStr'] = execStr.unicode");
$jscript->executeString("values['module'] = require('module').unicode");
$values = $jscript->executeString("values");
echo "snapshot: $values->snapshot\n";
echo "php : $values->php\n";
echo "execStr : $values->execStr\n";
echo "module : $values->module\n";
?>
===EOF===
--EXPECT--
snapshot: äöüßÜÄÖÜ߀áàâÁÀµ²³▁▂▃▄▅▆▇█    ㌀ ㌁ ㌂ ㌃
php : äöüßÜÄÖÜ߀áàâÁÀµ²³▁▂▃▄▅▆▇█    ㌀ ㌁ ㌂ ㌃
execStr : äöüßÜÄÖÜ߀áàâÁÀµ²³▁▂▃▄▅▆▇█    ㌀ ㌁ ㌂ ㌃
module : äöüßÜÄÖÜ߀áàâÁÀµ²³▁▂▃▄▅▆▇█    ㌀ ㌁ ㌂ ㌃
===EOF===