mediawiki-extensions-Scribunto/tests/engines/LuaCommon/TitleLibraryTest.php
Thiemo Mättig 55fe0b69d0 Add missing visibility keywords everywhere
Change-Id: I270d1dd9b6545e15398c2f8b8e9ae533844cc998
2014-11-14 10:10:23 +01:00

147 lines
5 KiB
PHP

<?php
class Scribunto_LuaTitleLibraryTests extends Scribunto_LuaEngineTestBase {
protected static $moduleName = 'TitleLibraryTests';
public static function suite( $className ) {
global $wgInterwikiCache;
if ( $wgInterwikiCache ) {
$suite = new PHPUnit_Framework_TestSuite;
$suite->setName( $className );
$suite->addTest(
new Scribunto_LuaEngineTestSkip(
$className, 'Cannot run TitleLibrary tests when $wgInterwikiCache is set'
), array( 'Lua' )
);
return $suite;
}
return parent::suite( $className );
}
protected function setUp() {
global $wgHooks;
parent::setUp();
// Hook to inject our interwiki prefix
$this->hooks = $wgHooks;
$wgHooks['InterwikiLoadPrefix'][] = function ( $prefix, &$data ) {
if ( $prefix !== 'scribuntotitletest' ) {
return true;
}
$data = array(
'iw_prefix' => 'scribuntotitletest',
'iw_url' => '//test.wikipedia.org/wiki/$1',
'iw_api' => 1,
'iw_wikiid' => 0,
'iw_local' => 0,
'iw_trans' => 0,
);
return false;
};
// Page for getContent test
$page = WikiPage::factory( Title::newFromText( 'ScribuntoTestPage' ) );
$page->doEditContent(
new WikitextContent( '{{int:mainpage}}<includeonly>...</includeonly><noinclude>...</noinclude>' ),
'Summary'
);
// Set restrictions for protectionLevels and cascadingProtection tests
// Since mRestrictionsLoaded is true, they don't count as expensive
$title = Title::newFromText( 'Main Page' );
$title->mRestrictionsLoaded = true;
$title->mRestrictions = array( 'edit' => array(), 'move' => array() );
$title->mCascadeSources = array( Title::makeTitle( NS_MAIN, "Lockbox" ), Title::makeTitle( NS_MAIN, "Lockbox2" ) );
$title->mCascadingRestrictions = array( 'edit' => array( 'sysop' ) );
$title = Title::newFromText( 'Module:TestFramework' );
$title->mRestrictionsLoaded = true;
$title->mRestrictions = array( 'edit' => array( 'sysop', 'bogus' ), 'move' => array( 'sysop', 'bogus' ) );
$title->mCascadeSources = array();
$title->mCascadingRestrictions = array();
$title = Title::newFromText( 'scribuntotitletest:Module:TestFramework' );
$title->mRestrictionsLoaded = true;
$title->mRestrictions = array();
$title->mCascadeSources = array();
$title->mCascadingRestrictions = array();
$title = Title::newFromText( 'Talk:Has/A/Subpage' );
$title->mRestrictionsLoaded = true;
$title->mRestrictions = array( 'create' => array( 'sysop' ) );
$title->mCascadeSources = array();
$title->mCascadingRestrictions = array();
$title = Title::newFromText( 'Not/A/Subpage' );
$title->mRestrictionsLoaded = true;
$title->mRestrictions = array( 'edit' => array( 'autoconfirmed' ), 'move' => array( 'sysop' ) );
$title->mCascadeSources = array();
$title->mCascadingRestrictions = array();
$title = Title::newFromText( 'Module talk:Test Framework' );
$title->mRestrictionsLoaded = true;
$title->mRestrictions = array( 'edit' => array(), 'move' => array( 'sysop' ) );
$title->mCascadeSources = array();
$title->mCascadingRestrictions = array();
// Note this depends on every iteration of the data provider running with a clean parser
$this->getEngine()->getParser()->getOptions()->setExpensiveParserFunctionLimit( 10 );
// Indicate to the tests that it's safe to create the title objects
$interpreter = $this->getEngine()->getInterpreter();
$interpreter->callFunction(
$interpreter->loadString( "mw.title.testPageId = {$page->getId()}", 'fortest' )
);
$this->setMwGlobals( array(
'wgServer' => '//wiki.local',
'wgCanonicalServer' => 'http://wiki.local',
'wgUsePathInfo' => true,
'wgActionPaths' => array(),
'wgScript' => '/w/index.php',
'wgScriptPath' => '/w',
'wgArticlePath' => '/wiki/$1',
) );
}
protected function tearDown() {
global $wgHooks;
$wgHooks = $this->hooks;
parent::tearDown();
}
protected function getTestModules() {
return parent::getTestModules() + array(
'TitleLibraryTests' => __DIR__ . '/TitleLibraryTests.lua',
);
}
public function testAddsLinks() {
$engine = $this->getEngine();
$interpreter = $engine->getInterpreter();
// Loading a title should create a link
$links = $engine->getParser()->getOutput()->getLinks();
$this->assertFalse( isset( $links[NS_PROJECT]['Referenced_from_Lua'] ) );
$interpreter->callFunction(
$interpreter->loadString( 'mw.title.new( "Project:Referenced from Lua" )', 'reference title' )
);
$links = $engine->getParser()->getOutput()->getLinks();
$this->assertArrayHasKey( NS_PROJECT, $links );
$this->assertArrayHasKey( 'Referenced_from_Lua', $links[NS_PROJECT] );
// Loading the page content should create a templatelink
$templates = $engine->getParser()->getOutput()->getTemplates();
$this->assertFalse( isset( $links[NS_PROJECT]['Loaded_from_Lua'] ) );
$interpreter->callFunction(
$interpreter->loadString( 'mw.title.new( "Project:Loaded from Lua" ):getContent()', 'load title' )
);
$templates = $engine->getParser()->getOutput()->getTemplates();
$this->assertArrayHasKey( NS_PROJECT, $templates );
$this->assertArrayHasKey( 'Loaded_from_Lua', $templates[NS_PROJECT] );
}
}