mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaCommon/LuaDataProvider.php
Lucas Werkmeister (WMDE) 18d122b60d Revert "Namespace LuaCommon"
This reverts commit 62e1fb0b5f.

Reason for revert: caused several errors:
* unnamespaced HooksTest collides with core’s class of the same name
* Scribunto_LuaError renamed without class alias despite being used in Wikibase

Bug: T314464
Change-Id: I8b151327236bf86945e59823fba155497e4b3fc6
2022-08-03 10:03:12 +00:00

66 lines
1.6 KiB
PHP

<?php
class Scribunto_LuaDataProvider implements Iterator {
/** @var Scribunto_LuaEngine|null */
protected $engine = null;
/** @var mixed|null */
protected $exports = null;
/** @var int */
protected $key = 1;
/**
* @param Scribunto_LuaEngine $engine
* @param string $moduleName
*/
public function __construct( $engine, $moduleName ) {
$this->engine = $engine;
$this->key = 1;
$module = $engine->fetchModuleFromParser(
Title::makeTitle( NS_MODULE, $moduleName )
);
if ( $module === null ) {
throw new Exception( "Failed to load module $moduleName" );
}
// Calling executeModule with null isn't the best idea, since it brings
// the whole export table into PHP and throws away metatables and such,
// but for this use case, we don't have anything like that to worry about
$this->exports = $engine->executeModule( $module->getInitChunk(), null, null );
}
public function destroy() {
$this->engine = null;
$this->exports = null;
}
public function rewind(): void {
$this->key = 1;
}
public function valid(): bool {
return $this->key <= $this->exports['count'];
}
#[\ReturnTypeWillChange]
public function key() {
return $this->key;
}
public function next(): void {
$this->key++;
}
#[\ReturnTypeWillChange]
public function current() {
return $this->engine->getInterpreter()->callFunction( $this->exports['provide'], $this->key );
}
/**
* @param string $key Test to run
* @return mixed Test result
*/
public function run( $key ) {
list( $ret ) = $this->engine->getInterpreter()->callFunction( $this->exports['run'], $key );
return $ret;
}
}