mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-12 08:25:10 +00:00
cd885e83cb
::doUserEditContent() is available since 1.36 as a replacement for ::doEditContent(), which has been deprecated. Bump the required version of MediaWiki to 1.36 accordingly. Results in passing a user where previously the fallback to $wgUser was being used. Bug: T255507 Change-Id: I11e4a305e66935ea1d1b4692561fb5d49871a729
228 lines
6.8 KiB
PHP
228 lines
6.8 KiB
PHP
<?php
|
|
|
|
use MediaWiki\Interwiki\ClassicInterwikiLookup;
|
|
|
|
/**
|
|
* @covers Scribunto_LuaTitleLibrary
|
|
* @group Database
|
|
*/
|
|
class Scribunto_LuaTitleLibraryTest extends Scribunto_LuaEngineTestBase {
|
|
/** @inheritDoc */
|
|
protected static $moduleName = 'TitleLibraryTests';
|
|
|
|
/** @var Title|null */
|
|
private $testTitle = null;
|
|
|
|
/** @var int */
|
|
private $testPageId = null;
|
|
|
|
protected function setUp() : void {
|
|
$this->setTestTitle( null );
|
|
parent::setUp();
|
|
|
|
// Set up interwikis (via wgInterwikiCache) before creating any Titles
|
|
$this->setMwGlobals( [
|
|
'wgServer' => '//wiki.local',
|
|
'wgCanonicalServer' => 'http://wiki.local',
|
|
'wgUsePathInfo' => true,
|
|
'wgActionPaths' => [],
|
|
'wgScript' => '/w/index.php',
|
|
'wgScriptPath' => '/w',
|
|
'wgArticlePath' => '/wiki/$1',
|
|
'wgInterwikiCache' => ClassicInterwikiLookup::buildCdbHash( [
|
|
[
|
|
'iw_prefix' => 'interwikiprefix',
|
|
'iw_url' => '//test.wikipedia.org/wiki/$1',
|
|
'iw_local' => 0,
|
|
],
|
|
] ),
|
|
] );
|
|
|
|
$editor = $this->getTestSysop()->getUser();
|
|
|
|
// Page for getContent test
|
|
$page = WikiPage::factory( Title::newFromText( 'ScribuntoTestPage' ) );
|
|
$page->doUserEditContent(
|
|
new WikitextContent(
|
|
'{{int:mainpage}}<includeonly>...</includeonly><noinclude>...</noinclude>'
|
|
),
|
|
$editor,
|
|
'Summary'
|
|
);
|
|
$this->testPageId = $page->getId();
|
|
|
|
// Pages for redirectTarget tests
|
|
$page = WikiPage::factory( Title::newFromText( 'ScribuntoTestRedirect' ) );
|
|
$page->doUserEditContent(
|
|
new WikitextContent( '#REDIRECT [[ScribuntoTestTarget]]' ),
|
|
$editor,
|
|
'Summary'
|
|
);
|
|
$page = WikiPage::factory( Title::newFromText( 'ScribuntoTestNonRedirect' ) );
|
|
$page->doUserEditContent(
|
|
new WikitextContent( 'Not a redirect.' ),
|
|
$editor,
|
|
'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 = [ 'edit' => [], 'move' => [] ];
|
|
$title->mCascadeSources = [
|
|
Title::makeTitle( NS_MAIN, "Lockbox" ),
|
|
Title::makeTitle( NS_MAIN, "Lockbox2" ),
|
|
];
|
|
$title->mCascadingRestrictions = [ 'edit' => [ 'sysop' ] ];
|
|
$title = Title::newFromText( 'Module:TestFramework' );
|
|
$title->mRestrictionsLoaded = true;
|
|
$title->mRestrictions = [
|
|
'edit' => [ 'sysop', 'bogus' ],
|
|
'move' => [ 'sysop', 'bogus' ],
|
|
];
|
|
$title->mCascadeSources = [];
|
|
$title->mCascadingRestrictions = [];
|
|
$title = Title::newFromText( 'interwikiprefix:Module:TestFramework' );
|
|
$title->mRestrictionsLoaded = true;
|
|
$title->mRestrictions = [];
|
|
$title->mCascadeSources = [];
|
|
$title->mCascadingRestrictions = [];
|
|
$title = Title::newFromText( 'Talk:Has/A/Subpage' );
|
|
$title->mRestrictionsLoaded = true;
|
|
$title->mRestrictions = [ 'create' => [ 'sysop' ] ];
|
|
$title->mCascadeSources = [];
|
|
$title->mCascadingRestrictions = [];
|
|
$title = Title::newFromText( 'Not/A/Subpage' );
|
|
$title->mRestrictionsLoaded = true;
|
|
$title->mRestrictions = [ 'edit' => [ 'autoconfirmed' ], 'move' => [ 'sysop' ] ];
|
|
$title->mCascadeSources = [];
|
|
$title->mCascadingRestrictions = [];
|
|
$title = Title::newFromText( 'Module talk:Test Framework' );
|
|
$title->mRestrictionsLoaded = true;
|
|
$title->mRestrictions = [ 'edit' => [], 'move' => [ 'sysop' ] ];
|
|
$title->mCascadeSources = [];
|
|
$title->mCascadingRestrictions = [];
|
|
|
|
// 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 = $this->testPageId", 'fortest' )
|
|
);
|
|
}
|
|
|
|
protected function getTestTitle() {
|
|
return $this->testTitle ?? parent::getTestTitle();
|
|
}
|
|
|
|
protected function setTestTitle( $title ) {
|
|
$this->testTitle = $title !== null ? Title::newFromText( $title ) : null;
|
|
$this->resetEngine();
|
|
}
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'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(
|
|
'local _ = mw.title.new( "Project:Referenced from Lua" ).id', '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] );
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideVaryPageId
|
|
*/
|
|
public function testVaryPageId( $testTitle, $code, $flag ) {
|
|
$this->setTestTitle( $testTitle );
|
|
|
|
$code = strtr( $code, [ '$$ID$$' => $this->testPageId ] );
|
|
|
|
$engine = $this->getEngine();
|
|
$interpreter = $engine->getInterpreter();
|
|
$this->assertFalse(
|
|
$engine->getParser()->getOutput()->getFlag( 'vary-page-id' ), 'sanity check'
|
|
);
|
|
|
|
$interpreter->callFunction( $interpreter->loadString(
|
|
"local _ = $code", 'reference title but not id'
|
|
) );
|
|
$this->assertFalse( $engine->getParser()->getOutput()->getFlag( 'vary-page-id' ) );
|
|
|
|
$interpreter->callFunction( $interpreter->loadString(
|
|
"local _ = $code.id", 'reference id'
|
|
) );
|
|
$this->assertSame( $flag, $engine->getParser()->getOutput()->getFlag( 'vary-page-id' ) );
|
|
}
|
|
|
|
public function provideVaryPageId() {
|
|
return [
|
|
'by getCurrentTitle()' => [
|
|
'ScribuntoTestPage',
|
|
'mw.title.getCurrentTitle()',
|
|
true
|
|
],
|
|
'by name' => [
|
|
'ScribuntoTestPage',
|
|
'mw.title.new("ScribuntoTestPage")',
|
|
true
|
|
],
|
|
'by id' => [
|
|
'ScribuntoTestPage',
|
|
'mw.title.new( $$ID$$ )',
|
|
true
|
|
],
|
|
|
|
'other page by name' => [
|
|
'ScribuntoTestRedirect',
|
|
'mw.title.new("ScribuntoTestPage")',
|
|
false
|
|
],
|
|
'other page by id' => [
|
|
'ScribuntoTestRedirect',
|
|
'mw.title.new( $$ID$$ )',
|
|
false
|
|
],
|
|
|
|
'new page by getCurrentTitle()' => [
|
|
'ScribuntoTestPage/DoesNotExist',
|
|
'mw.title.getCurrentTitle()',
|
|
true
|
|
],
|
|
'new page by name' => [
|
|
'ScribuntoTestPage/DoesNotExist',
|
|
'mw.title.new("ScribuntoTestPage/DoesNotExist")',
|
|
true
|
|
],
|
|
];
|
|
}
|
|
}
|