mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-29 02:24:19 +00:00
b68cae904a
* Added tests for the engine classes. * Added some tests that run under Lua. * In the chunk names, fixed truncation of module names at 60 bytes by using an "=" prefix instead of @. * Fixed a bug in mw.clone() which was causing the metatable to be set on the source table instead of the destination. * Put restricted setfenv/getfenv in the cloned environment rather than the base environment, they work better that way. * In setfenv(), check for getfenv() == nil, since that's what our own restricted getfenv returns. * Fixed getfenv() handling of numeric arguments: add one where appropriate. Change-Id: I2b356fd65a3fcb348c4e99a3a4267408fb995739
26 lines
598 B
PHP
26 lines
598 B
PHP
<?php
|
|
|
|
if ( php_sapi_name() !== 'cli' ) exit;
|
|
require_once( dirname( __FILE__ ) .'/../LuaCommon/LuaEngineTest.php' );
|
|
|
|
class Scribunto_LuaStandaloneEngineTest extends Scribunto_LuaEngineTest {
|
|
var $stdOpts = array(
|
|
'errorFile' => null,
|
|
'luaPath' => null,
|
|
'memoryLimit' => 50000000,
|
|
'cpuLimit' => 30,
|
|
);
|
|
|
|
function newEngine( $opts = array() ) {
|
|
$opts = $opts + $this->stdOpts;
|
|
return new Scribunto_LuaStandaloneEngine( $opts );
|
|
}
|
|
|
|
function getTestModules() {
|
|
return parent::getTestModules() + array(
|
|
'StandloneTests' => dirname( __FILE__ ) . '/StandaloneTests.lua'
|
|
);
|
|
}
|
|
}
|
|
|