mediawiki-extensions-Scribunto/tests/phpunit/Engines/LuaSandbox/SandboxInterpreterTest.php
Reedy 408f4d0bc6 Namespace tests
Change-Id: I4977bf534400643f83ab3400c3dfd736c53f9705
2022-09-30 00:59:00 +00:00

40 lines
1.1 KiB
PHP

<?php
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaSandbox;
use MediaWiki\Extension\Scribunto\Engines\LuaSandbox\LuaSandboxEngine;
use MediaWiki\Extension\Scribunto\Engines\LuaSandbox\LuaSandboxInterpreter;
use MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon\LuaInterpreterTest;
if ( !wfIsCLI() ) {
exit;
}
/**
* @group Lua
* @group LuaSandbox
* @covers \MediaWiki\Extension\Scribunto\Engines\LuaSandbox\LuaSandboxInterpreter
*/
class SandboxInterpreterTest extends LuaInterpreterTest {
/** @var array */
public $stdOpts = [
'memoryLimit' => 50000000,
'cpuLimit' => 30,
];
protected function newInterpreter( $opts = [] ) {
$opts += $this->stdOpts;
$engine = new LuaSandboxEngine( $this->stdOpts );
return new LuaSandboxInterpreter( $engine, $opts );
}
public function testGetMemoryUsage() {
$interpreter = $this->newInterpreter();
$chunk = $interpreter->loadString( 's = string.rep("x", 1000000)', 'mem' );
$interpreter->callFunction( $chunk );
$mem = $interpreter->getPeakMemoryUsage();
$this->assertGreaterThan( 1000000, $mem, 'memory usage' );
$this->assertLessThan( 10000000, $mem, 'memory usage' );
}
}