mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-14 19:30:57 +00:00
55fe0b69d0
Change-Id: I270d1dd9b6545e15398c2f8b8e9ae533844cc998
112 lines
2.9 KiB
PHP
112 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group Lua
|
|
* @group LuaSandbox
|
|
* @group LuaStandalone
|
|
*/
|
|
class Scribunto_LuaEnvironmentComparisonTest extends MediaWikiTestCase {
|
|
public $sandboxOpts = array(
|
|
'memoryLimit' => 50000000,
|
|
'cpuLimit' => 30,
|
|
'allowEnvFuncs' => true,
|
|
);
|
|
public $standaloneOpts = array(
|
|
'errorFile' => null,
|
|
'luaPath' => null,
|
|
'memoryLimit' => 50000000,
|
|
'cpuLimit' => 30,
|
|
'allowEnvFuncs' => true,
|
|
);
|
|
|
|
protected $engines = array();
|
|
|
|
private function makeEngine( $class, $opts ) {
|
|
$parser = new Parser;
|
|
$options = new ParserOptions;
|
|
$options->setTemplateCallback( array( $this, 'templateCallback' ) );
|
|
$parser->startExternalParse( Title::newMainPage(), $options, Parser::OT_HTML, true );
|
|
$engine = new $class ( array( 'parser' => $parser ) + $opts );
|
|
$parser->scribunto_engine = $engine;
|
|
$engine->setTitle( $parser->getTitle() );
|
|
$engine->getInterpreter();
|
|
return $engine;
|
|
}
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
|
|
try {
|
|
$this->engines['LuaSandbox'] = $this->makeEngine(
|
|
'Scribunto_LuaSandboxEngine', $this->sandboxOpts
|
|
);
|
|
} catch ( Scribunto_LuaInterpreterNotFoundError $e ) {
|
|
$this->markTestSkipped( "LuaSandbox interpreter not available" );
|
|
return;
|
|
}
|
|
|
|
try {
|
|
$this->engines['LuaStandalone'] = $this->makeEngine(
|
|
'Scribunto_LuaStandaloneEngine', $this->standaloneOpts
|
|
);
|
|
} catch ( Scribunto_LuaInterpreterNotFoundError $e ) {
|
|
$this->markTestSkipped( "LuaStandalone interpreter not available" );
|
|
return;
|
|
}
|
|
}
|
|
|
|
protected function tearDown() {
|
|
foreach ( $this->engines as $engine ) {
|
|
$engine->destroy();
|
|
}
|
|
$this->engines = array();
|
|
parent::tearDown();
|
|
}
|
|
|
|
private function getGlobalEnvironment( $engine ) {
|
|
static $script = <<<LUA
|
|
xxxseen = {}
|
|
function xxxGetTable( t )
|
|
if xxxseen[t] then
|
|
return 'table'
|
|
end
|
|
local ret = {}
|
|
xxxseen[t] = ret
|
|
for k, v in pairs( t ) do
|
|
if k ~= '_G' and string.sub( k, 1, 3 ) ~= 'xxx' then
|
|
if type( v ) == 'table' then
|
|
ret[k] = xxxGetTable( v )
|
|
elseif type( v ) == 'string'
|
|
or type( v ) == 'number'
|
|
or type( v ) == 'boolean'
|
|
or type( v ) == 'nil'
|
|
then
|
|
ret[k] = v
|
|
else
|
|
ret[k] = type( v )
|
|
end
|
|
end
|
|
end
|
|
return ret
|
|
end
|
|
return xxxGetTable( _G )
|
|
LUA;
|
|
$func = $engine->getInterpreter()->loadString( $script, 'script' );
|
|
return $engine->getInterpreter()->callFunction( $func );
|
|
}
|
|
|
|
public function testGlobalEnvironment() {
|
|
// Grab the first engine as the "standard"
|
|
reset( $this->engines );
|
|
list( $firstName, $firstEngine ) = each( $this->engines );
|
|
$firstEnv = $this->getGlobalEnvironment( $firstEngine );
|
|
|
|
// Test all others against it
|
|
while ( list( $secondName, $secondEngine ) = each( $this->engines ) ) {
|
|
$secondEnv = $this->getGlobalEnvironment( $secondEngine );
|
|
$this->assertEquals( $firstEnv, $secondEnv,
|
|
"Environments for $firstName and $secondName are not equivalent" );
|
|
}
|
|
}
|
|
}
|