2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
2021-07-26 13:24:22 +00:00
|
|
|
use MediaWiki\Cache\CacheKeyHelper;
|
2019-04-03 08:47:57 +00:00
|
|
|
use MediaWiki\Linker\LinkTarget;
|
2018-06-11 06:55:11 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2020-09-25 14:13:54 +00:00
|
|
|
use MediaWiki\Page\PageIdentityValue;
|
2021-07-26 13:24:22 +00:00
|
|
|
use MediaWiki\Permissions\RestrictionStore;
|
2021-05-05 00:03:26 +00:00
|
|
|
use MediaWiki\Tests\Unit\DummyServicesTrait;
|
2021-09-07 18:11:26 +00:00
|
|
|
use Wikimedia\Assert\PreconditionException;
|
2021-07-26 13:24:22 +00:00
|
|
|
use Wikimedia\TestingAccessWrapper;
|
2018-06-11 06:55:11 +00:00
|
|
|
|
2012-09-05 16:54:15 +00:00
|
|
|
/**
|
2015-04-01 07:35:32 +00:00
|
|
|
* @group Database
|
2014-01-09 14:35:16 +00:00
|
|
|
* @group Title
|
2012-09-05 16:54:15 +00:00
|
|
|
*/
|
2020-06-30 15:09:24 +00:00
|
|
|
class TitleTest extends MediaWikiIntegrationTestCase {
|
2021-05-05 00:03:26 +00:00
|
|
|
use DummyServicesTrait;
|
|
|
|
|
|
2021-07-22 03:11:47 +00:00
|
|
|
protected function setUp(): void {
|
2012-10-08 10:56:20 +00:00
|
|
|
parent::setUp();
|
|
|
|
|
|
2021-09-07 18:11:26 +00:00
|
|
|
$this->mergeMwGlobalArrayValue(
|
|
|
|
|
'wgExtraNamespaces',
|
|
|
|
|
[
|
|
|
|
|
12302 => 'TEST-JS',
|
|
|
|
|
12303 => 'TEST-JS_TALK',
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
$this->mergeMwGlobalArrayValue(
|
|
|
|
|
'wgNamespaceContentModels',
|
|
|
|
|
[
|
|
|
|
|
12302 => CONTENT_MODEL_JAVASCRIPT,
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->setMwGlobals( [
|
2012-10-08 10:56:20 +00:00
|
|
|
'wgAllowUserJs' => false,
|
|
|
|
|
'wgDefaultLanguageVariant' => false,
|
2014-11-13 18:15:40 +00:00
|
|
|
'wgMetaNamespace' => 'Project',
|
2020-04-17 17:39:53 +00:00
|
|
|
'wgServer' => 'https://example.org',
|
|
|
|
|
'wgCanonicalServer' => 'https://example.org',
|
|
|
|
|
'wgScriptPath' => '/w',
|
|
|
|
|
'wgScript' => '/w/index.php',
|
|
|
|
|
'wgArticlePath' => '/wiki/$1',
|
2016-02-17 09:09:32 +00:00
|
|
|
] );
|
2016-03-09 16:47:58 +00:00
|
|
|
$this->setUserLang( 'en' );
|
2021-09-07 18:11:26 +00:00
|
|
|
$this->setMwGlobals( 'wgLanguageCode', 'en' );
|
2021-05-05 00:03:26 +00:00
|
|
|
|
|
|
|
|
// For testSecureAndSplitValid, testSecureAndSplitInvalid
|
|
|
|
|
$this->setMwGlobals( 'wgLocalInterwikis', [ 'localtestiw' ] );
|
|
|
|
|
|
|
|
|
|
// Define valid interwiki prefixes and their configuration
|
|
|
|
|
// DummyServicesTrait::getDummyInterwikiLookup
|
|
|
|
|
$interwikiLookup = $this->getDummyInterwikiLookup( [
|
|
|
|
|
// testSecureAndSplitValid, testSecureAndSplitInvalid
|
|
|
|
|
[ 'iw_prefix' => 'localtestiw', 'iw_url' => 'localtestiw' ],
|
|
|
|
|
[ 'iw_prefix' => 'remotetestiw', 'iw_url' => 'remotetestiw' ],
|
|
|
|
|
|
|
|
|
|
// testSubpages
|
|
|
|
|
'wiki',
|
|
|
|
|
|
|
|
|
|
// testIsValid
|
|
|
|
|
'wikipedia',
|
|
|
|
|
|
|
|
|
|
// testIsValidRedirectTarget
|
|
|
|
|
'acme',
|
|
|
|
|
|
|
|
|
|
// testGetFragmentForURL
|
|
|
|
|
[ 'iw_prefix' => 'de', 'iw_local' => 1 ],
|
|
|
|
|
[ 'iw_prefix' => 'zz', 'iw_local' => 0 ],
|
2021-09-07 18:11:26 +00:00
|
|
|
|
|
|
|
|
// Some tests use interwikis - define valid prefixes and their configuration
|
|
|
|
|
// DummyServicesTrait::getDummyInterwikiLookup
|
|
|
|
|
[ 'iw_prefix' => 'acme', 'iw_url' => 'https://acme.test/$1' ],
|
|
|
|
|
[ 'iw_prefix' => 'yy', 'iw_url' => 'https://yy.wiki.test/wiki/$1', 'iw_local' => true ]
|
2021-05-05 00:03:26 +00:00
|
|
|
] );
|
|
|
|
|
$this->setService( 'InterwikiLookup', $interwikiLookup );
|
2012-10-08 10:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
2021-07-22 03:11:47 +00:00
|
|
|
protected function tearDown(): void {
|
2021-09-07 18:11:26 +00:00
|
|
|
Title::clearCaches();
|
2019-11-07 19:06:55 +00:00
|
|
|
parent::tearDown();
|
|
|
|
|
// delete dummy pages
|
|
|
|
|
$this->getNonexistingTestPage( 'UTest1' );
|
|
|
|
|
$this->getNonexistingTestPage( 'UTest2' );
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:11:26 +00:00
|
|
|
public static function provideInNamespace() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Main Page', NS_MAIN, true ],
|
|
|
|
|
[ 'Main Page', NS_TALK, false ],
|
|
|
|
|
[ 'Main Page', NS_USER, false ],
|
|
|
|
|
[ 'User:Foo', NS_USER, true ],
|
|
|
|
|
[ 'User:Foo', NS_USER_TALK, false ],
|
|
|
|
|
[ 'User:Foo', NS_TEMPLATE, false ],
|
|
|
|
|
[ 'User_talk:Foo', NS_USER_TALK, true ],
|
|
|
|
|
[ 'User_talk:Foo', NS_USER, false ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideInNamespace
|
|
|
|
|
* @covers Title::inNamespace
|
|
|
|
|
*/
|
|
|
|
|
public function testInNamespace( $title, $ns, $expectedBool ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$this->assertEquals( $expectedBool, $title->inNamespace( $ns ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::inNamespaces
|
|
|
|
|
*/
|
|
|
|
|
public function testInNamespaces() {
|
|
|
|
|
$mainpage = Title::newFromText( 'Main Page' );
|
|
|
|
|
$this->assertTrue( $mainpage->inNamespaces( NS_MAIN, NS_USER ) );
|
|
|
|
|
$this->assertTrue( $mainpage->inNamespaces( [ NS_MAIN, NS_USER ] ) );
|
|
|
|
|
$this->assertTrue( $mainpage->inNamespaces( [ NS_USER, NS_MAIN ] ) );
|
|
|
|
|
$this->assertFalse( $mainpage->inNamespaces( [ NS_PROJECT, NS_TEMPLATE ] ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideHasSubjectNamespace() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Main Page', NS_MAIN, true ],
|
|
|
|
|
[ 'Main Page', NS_TALK, true ],
|
|
|
|
|
[ 'Main Page', NS_USER, false ],
|
|
|
|
|
[ 'User:Foo', NS_USER, true ],
|
|
|
|
|
[ 'User:Foo', NS_USER_TALK, true ],
|
|
|
|
|
[ 'User:Foo', NS_TEMPLATE, false ],
|
|
|
|
|
[ 'User_talk:Foo', NS_USER_TALK, true ],
|
|
|
|
|
[ 'User_talk:Foo', NS_USER, true ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideHasSubjectNamespace
|
|
|
|
|
* @covers Title::hasSubjectNamespace
|
|
|
|
|
*/
|
|
|
|
|
public function testHasSubjectNamespace( $title, $ns, $expectedBool ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$this->assertEquals( $expectedBool, $title->hasSubjectNamespace( $ns ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function dataGetContentModel() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Help:Foo', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'Help:Foo.js', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'Help:Foo/bar.js', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'User:Foo', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'User:Foo.js', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'User:Foo/bar.js', CONTENT_MODEL_JAVASCRIPT ],
|
|
|
|
|
[ 'User:Foo/bar.css', CONTENT_MODEL_CSS ],
|
|
|
|
|
[ 'User talk:Foo/bar.css', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'User:Foo/bar.js.xxx', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'User:Foo/bar.xxx', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'MediaWiki:Foo.js', CONTENT_MODEL_JAVASCRIPT ],
|
|
|
|
|
[ 'MediaWiki:Foo.css', CONTENT_MODEL_CSS ],
|
|
|
|
|
[ 'MediaWiki:Foo/bar.css', CONTENT_MODEL_CSS ],
|
|
|
|
|
[ 'MediaWiki:Foo.JS', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'MediaWiki:Foo.CSS', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'MediaWiki:Foo.css.xxx', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
[ 'TEST-JS:Foo', CONTENT_MODEL_JAVASCRIPT ],
|
|
|
|
|
[ 'TEST-JS:Foo.js', CONTENT_MODEL_JAVASCRIPT ],
|
|
|
|
|
[ 'TEST-JS:Foo/bar.js', CONTENT_MODEL_JAVASCRIPT ],
|
|
|
|
|
[ 'TEST-JS_TALK:Foo.js', CONTENT_MODEL_WIKITEXT ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider dataGetContentModel
|
|
|
|
|
* @covers Title::getContentModel
|
|
|
|
|
*/
|
|
|
|
|
public function testGetContentModel( $title, $expectedModelId ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$this->assertEquals( $expectedModelId, $title->getContentModel() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider dataGetContentModel
|
|
|
|
|
* @covers Title::hasContentModel
|
|
|
|
|
*/
|
|
|
|
|
public function testHasContentModel( $title, $expectedModelId ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$this->assertTrue( $title->hasContentModel( $expectedModelId ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideIsSiteConfigPage() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Help:Foo', false ],
|
|
|
|
|
[ 'Help:Foo.js', false ],
|
|
|
|
|
[ 'Help:Foo/bar.js', false ],
|
|
|
|
|
[ 'User:Foo', false ],
|
|
|
|
|
[ 'User:Foo.js', false ],
|
|
|
|
|
[ 'User:Foo/bar.js', false ],
|
|
|
|
|
[ 'User:Foo/bar.json', false ],
|
|
|
|
|
[ 'User:Foo/bar.css', false ],
|
|
|
|
|
[ 'User:Foo/bar.JS', false ],
|
|
|
|
|
[ 'User:Foo/bar.JSON', false ],
|
|
|
|
|
[ 'User:Foo/bar.CSS', false ],
|
|
|
|
|
[ 'User talk:Foo/bar.css', false ],
|
|
|
|
|
[ 'User:Foo/bar.js.xxx', false ],
|
|
|
|
|
[ 'User:Foo/bar.xxx', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.js', 'javascript' ],
|
|
|
|
|
[ 'MediaWiki:Foo.json', 'json' ],
|
|
|
|
|
[ 'MediaWiki:Foo.css', 'css' ],
|
|
|
|
|
[ 'MediaWiki:Foo.JS', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.JSON', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.CSS', false ],
|
|
|
|
|
[ 'MediaWiki:Foo/bar.css', 'css' ],
|
|
|
|
|
[ 'MediaWiki:Foo.css.xxx', false ],
|
|
|
|
|
[ 'TEST-JS:Foo', false ],
|
|
|
|
|
[ 'TEST-JS:Foo.js', false ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideIsSiteConfigPage
|
|
|
|
|
* @covers Title::isSiteConfigPage
|
|
|
|
|
* @covers Title::isSiteJsConfigPage
|
|
|
|
|
* @covers Title::isSiteJsonConfigPage
|
|
|
|
|
* @covers Title::isSiteCssConfigPage
|
|
|
|
|
*/
|
|
|
|
|
public function testSiteConfigPage( $title, $expected ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
|
|
|
|
|
// $expected is either false or the relevant type ('javascript', 'json', 'css')
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expected !== false,
|
|
|
|
|
$title->isSiteConfigPage()
|
|
|
|
|
);
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expected === 'javascript',
|
|
|
|
|
$title->isSiteJsConfigPage()
|
|
|
|
|
);
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expected === 'json',
|
|
|
|
|
$title->isSiteJsonConfigPage()
|
|
|
|
|
);
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expected === 'css',
|
|
|
|
|
$title->isSiteCssConfigPage()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideIsUserConfigPage() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Help:Foo', false ],
|
|
|
|
|
[ 'Help:Foo.js', false ],
|
|
|
|
|
[ 'Help:Foo/bar.js', false ],
|
|
|
|
|
[ 'User:Foo', false ],
|
|
|
|
|
[ 'User:Foo.js', false ],
|
|
|
|
|
[ 'User:Foo/bar.js', 'javascript' ],
|
|
|
|
|
[ 'User:Foo/bar.JS', false ],
|
|
|
|
|
[ 'User:Foo/bar.json', 'json' ],
|
|
|
|
|
[ 'User:Foo/bar.JSON', false ],
|
|
|
|
|
[ 'User:Foo/bar.css', 'css' ],
|
|
|
|
|
[ 'User:Foo/bar.CSS', false ],
|
|
|
|
|
[ 'User talk:Foo/bar.css', false ],
|
|
|
|
|
[ 'User:Foo/bar.js.xxx', false ],
|
|
|
|
|
[ 'User:Foo/bar.xxx', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.js', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.json', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.css', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.JS', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.JSON', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.CSS', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.css.xxx', false ],
|
|
|
|
|
[ 'TEST-JS:Foo', false ],
|
|
|
|
|
[ 'TEST-JS:Foo.js', false ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideIsUserConfigPage
|
|
|
|
|
* @covers Title::isUserConfigPage
|
|
|
|
|
* @covers Title::isUserJsConfigPage
|
|
|
|
|
* @covers Title::isUserJsonConfigPage
|
|
|
|
|
* @covers Title::isUserCssConfigPage
|
|
|
|
|
*/
|
|
|
|
|
public function testIsUserConfigPage( $title, $expected ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
|
|
|
|
|
// $expected is either false or the relevant type ('javascript', 'json', 'css')
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expected !== false,
|
|
|
|
|
$title->isUserConfigPage()
|
|
|
|
|
);
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expected === 'javascript',
|
|
|
|
|
$title->isUserJsConfigPage()
|
|
|
|
|
);
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expected === 'json',
|
|
|
|
|
$title->isUserJsonConfigPage()
|
|
|
|
|
);
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expected === 'css',
|
|
|
|
|
$title->isUserCssConfigPage()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideIsWikitextPage() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Help:Foo', true ],
|
|
|
|
|
[ 'Help:Foo.js', true ],
|
|
|
|
|
[ 'Help:Foo/bar.js', true ],
|
|
|
|
|
[ 'User:Foo', true ],
|
|
|
|
|
[ 'User:Foo.js', true ],
|
|
|
|
|
[ 'User:Foo/bar.js', false ],
|
|
|
|
|
[ 'User:Foo/bar.json', false ],
|
|
|
|
|
[ 'User:Foo/bar.css', false ],
|
|
|
|
|
[ 'User talk:Foo/bar.css', true ],
|
|
|
|
|
[ 'User:Foo/bar.js.xxx', true ],
|
|
|
|
|
[ 'User:Foo/bar.xxx', true ],
|
|
|
|
|
[ 'MediaWiki:Foo.js', false ],
|
|
|
|
|
[ 'User:Foo/bar.JS', true ],
|
|
|
|
|
[ 'User:Foo/bar.JSON', true ],
|
|
|
|
|
[ 'User:Foo/bar.CSS', true ],
|
|
|
|
|
[ 'MediaWiki:Foo.json', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.css', false ],
|
|
|
|
|
[ 'MediaWiki:Foo.JS', true ],
|
|
|
|
|
[ 'MediaWiki:Foo.JSON', true ],
|
|
|
|
|
[ 'MediaWiki:Foo.CSS', true ],
|
|
|
|
|
[ 'MediaWiki:Foo.css.xxx', true ],
|
|
|
|
|
[ 'TEST-JS:Foo', false ],
|
|
|
|
|
[ 'TEST-JS:Foo.js', false ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideIsWikitextPage
|
|
|
|
|
* @covers Title::isWikitextPage
|
|
|
|
|
*/
|
|
|
|
|
public function testIsWikitextPage( $title, $expectedBool ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$this->assertEquals( $expectedBool, $title->isWikitextPage() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideGetOtherPage() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Main Page', 'Talk:Main Page' ],
|
|
|
|
|
[ 'Talk:Main Page', 'Main Page' ],
|
|
|
|
|
[ 'Help:Main Page', 'Help talk:Main Page' ],
|
|
|
|
|
[ 'Help talk:Main Page', 'Help:Main Page' ],
|
|
|
|
|
[ 'Special:FooBar', null ],
|
|
|
|
|
[ 'Media:File.jpg', null ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetOtherpage
|
|
|
|
|
* @covers Title::getOtherPage
|
|
|
|
|
*
|
|
|
|
|
* @param string $text
|
|
|
|
|
* @param string|null $expected
|
|
|
|
|
*/
|
|
|
|
|
public function testGetOtherPage( $text, $expected ) {
|
|
|
|
|
if ( $expected === null ) {
|
|
|
|
|
$this->expectException( MWException::class );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$title = Title::newFromText( $text );
|
|
|
|
|
$this->assertEquals( $expected, $title->getOtherPage()->getPrefixedText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::clearCaches
|
|
|
|
|
*/
|
|
|
|
|
public function testClearCaches() {
|
|
|
|
|
$linkCache = MediaWikiServices::getInstance()->getLinkCache();
|
|
|
|
|
|
|
|
|
|
$title1 = Title::newFromText( 'Foo' );
|
|
|
|
|
$linkCache->addGoodLinkObj( 23, $title1 );
|
|
|
|
|
|
|
|
|
|
Title::clearCaches();
|
|
|
|
|
|
|
|
|
|
$title2 = Title::newFromText( 'Foo' );
|
|
|
|
|
$this->assertNotSame( $title1, $title2, 'title cache should be empty' );
|
|
|
|
|
$this->assertSame( 0, $linkCache->getGoodLinkID( 'Foo' ), 'link cache should be empty' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideGetLinkURL() {
|
|
|
|
|
yield 'Simple' => [
|
|
|
|
|
'/wiki/Goats',
|
|
|
|
|
NS_MAIN,
|
|
|
|
|
'Goats'
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
yield 'Fragment' => [
|
|
|
|
|
'/wiki/Goats#Goatificatiön',
|
|
|
|
|
NS_MAIN,
|
|
|
|
|
'Goats',
|
|
|
|
|
'Goatificatiön'
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
yield 'Fragment only (query is ignored)' => [
|
|
|
|
|
'#Goatificatiön',
|
|
|
|
|
NS_MAIN,
|
|
|
|
|
'',
|
|
|
|
|
'Goatificatiön',
|
|
|
|
|
'',
|
|
|
|
|
[
|
|
|
|
|
'a' => 1,
|
|
|
|
|
]
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
yield 'Unknown interwiki with fragment' => [
|
|
|
|
|
'https://xx.wiki.test/wiki/xyzzy:Goats#Goatificatiön',
|
|
|
|
|
NS_MAIN,
|
|
|
|
|
'Goats',
|
|
|
|
|
'Goatificatiön',
|
|
|
|
|
'xyzzy'
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
yield 'Interwiki with fragment' => [
|
|
|
|
|
'https://acme.test/Goats#Goatificati.C3.B6n',
|
|
|
|
|
NS_MAIN,
|
|
|
|
|
'Goats',
|
|
|
|
|
'Goatificatiön',
|
|
|
|
|
'acme'
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
yield 'Interwiki with query' => [
|
|
|
|
|
'https://acme.test/Goats?a=1&b=blank+blank#Goatificati.C3.B6n',
|
|
|
|
|
NS_MAIN,
|
|
|
|
|
'Goats',
|
|
|
|
|
'Goatificatiön',
|
|
|
|
|
'acme',
|
|
|
|
|
[
|
|
|
|
|
'a' => 1,
|
|
|
|
|
'b' => 'blank blank'
|
|
|
|
|
]
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
yield 'Local interwiki with fragment' => [
|
|
|
|
|
'https://yy.wiki.test/wiki/Goats#Goatificatiön',
|
|
|
|
|
NS_MAIN,
|
|
|
|
|
'Goats',
|
|
|
|
|
'Goatificatiön',
|
|
|
|
|
'yy'
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetLinkURL
|
|
|
|
|
*
|
|
|
|
|
* @covers Title::getLinkURL
|
|
|
|
|
* @covers Title::getFullURL
|
|
|
|
|
* @covers Title::getLocalURL
|
|
|
|
|
* @covers Title::getFragmentForURL
|
|
|
|
|
*/
|
|
|
|
|
public function testGetLinkURL(
|
|
|
|
|
$expected,
|
|
|
|
|
$ns,
|
|
|
|
|
$title,
|
|
|
|
|
$fragment = '',
|
|
|
|
|
$interwiki = '',
|
|
|
|
|
$query = '',
|
|
|
|
|
$query2 = false,
|
|
|
|
|
$proto = false
|
|
|
|
|
) {
|
|
|
|
|
$this->setMwGlobals( [
|
|
|
|
|
'wgServer' => 'https://xx.wiki.test',
|
|
|
|
|
'wgArticlePath' => '/wiki/$1',
|
|
|
|
|
'wgExternalInterwikiFragmentMode' => 'legacy',
|
|
|
|
|
'wgFragmentMode' => [ 'html5', 'legacy' ]
|
|
|
|
|
] );
|
|
|
|
|
|
|
|
|
|
$title = Title::makeTitle( $ns, $title, $fragment, $interwiki );
|
|
|
|
|
$this->assertSame( $expected, $title->getLinkURL( $query, $query2, $proto ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideProperPage() {
|
|
|
|
|
return [
|
|
|
|
|
[ NS_MAIN, 'Test' ],
|
|
|
|
|
[ NS_MAIN, 'User' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideProperPage
|
|
|
|
|
* @covers Title::toPageIdentity
|
|
|
|
|
*/
|
|
|
|
|
public function testToPageIdentity( $ns, $text ) {
|
|
|
|
|
$title = Title::makeTitle( $ns, $text );
|
|
|
|
|
|
|
|
|
|
$page = $title->toPageIdentity();
|
|
|
|
|
|
|
|
|
|
$this->assertNotSame( $title, $page );
|
|
|
|
|
$this->assertSame( $title->getId(), $page->getId() );
|
|
|
|
|
$this->assertSame( $title->getNamespace(), $page->getNamespace() );
|
|
|
|
|
$this->assertSame( $title->getDBkey(), $page->getDBkey() );
|
|
|
|
|
$this->assertSame( $title->getWikiId(), $page->getWikiId() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideProperPage
|
|
|
|
|
* @covers Title::toPageRecord
|
|
|
|
|
*/
|
|
|
|
|
public function testToPageRecord( $ns, $text ) {
|
|
|
|
|
$title = Title::makeTitle( $ns, $text );
|
|
|
|
|
$wikiPage = $this->getExistingTestPage( $title );
|
|
|
|
|
|
|
|
|
|
$record = $title->toPageRecord();
|
|
|
|
|
|
|
|
|
|
$this->assertNotSame( $title, $record );
|
|
|
|
|
$this->assertNotSame( $title, $wikiPage );
|
|
|
|
|
|
|
|
|
|
$this->assertSame( $title->getId(), $record->getId() );
|
|
|
|
|
$this->assertSame( $title->getNamespace(), $record->getNamespace() );
|
|
|
|
|
$this->assertSame( $title->getDBkey(), $record->getDBkey() );
|
|
|
|
|
$this->assertSame( $title->getWikiId(), $record->getWikiId() );
|
|
|
|
|
|
|
|
|
|
$this->assertSame( $title->getLatestRevID(), $record->getLatest() );
|
|
|
|
|
$this->assertSame( MWTimestamp::convert( TS_MW, $title->getTouched() ), $record->getTouched() );
|
|
|
|
|
$this->assertSame( $title->isNewPage(), $record->isNew() );
|
|
|
|
|
$this->assertSame( $title->isRedirect(), $record->isRedirect() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideImproperPage
|
|
|
|
|
* @covers Title::toPageRecord
|
|
|
|
|
*/
|
|
|
|
|
public function testToPageRecord_fail( $ns, $text, $fragment = '', $interwiki = '' ) {
|
|
|
|
|
$title = Title::makeTitle( $ns, $text, $fragment, $interwiki );
|
|
|
|
|
|
|
|
|
|
$this->expectException( PreconditionException::class );
|
|
|
|
|
$title->toPageRecord();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideImproperPage() {
|
|
|
|
|
return [
|
|
|
|
|
[ NS_MAIN, '' ],
|
|
|
|
|
[ NS_MAIN, '<>' ],
|
|
|
|
|
[ NS_MAIN, '|' ],
|
|
|
|
|
[ NS_MAIN, '#' ],
|
|
|
|
|
[ NS_PROJECT, '#test' ],
|
|
|
|
|
[ NS_MAIN, '', 'test', 'acme' ],
|
|
|
|
|
[ NS_MAIN, ' Test' ],
|
|
|
|
|
[ NS_MAIN, '_Test' ],
|
|
|
|
|
[ NS_MAIN, 'Test ' ],
|
|
|
|
|
[ NS_MAIN, 'Test_' ],
|
|
|
|
|
[ NS_MAIN, "Test\nthis" ],
|
|
|
|
|
[ NS_MAIN, "Test\tthis" ],
|
|
|
|
|
[ -33, 'Test' ],
|
|
|
|
|
[ 77663399, 'Test' ],
|
|
|
|
|
|
|
|
|
|
// Valid but can't exist
|
|
|
|
|
[ NS_MAIN, '', 'test' ],
|
|
|
|
|
[ NS_SPECIAL, 'Test' ],
|
|
|
|
|
[ NS_MAIN, 'Test', '', 'acme' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideImproperPage
|
|
|
|
|
* @covers Title::getId
|
|
|
|
|
*/
|
|
|
|
|
public function testGetId_fail( $ns, $text, $fragment = '', $interwiki = '' ) {
|
|
|
|
|
$title = Title::makeTitle( $ns, $text, $fragment, $interwiki );
|
|
|
|
|
|
|
|
|
|
$this->expectException( PreconditionException::class );
|
|
|
|
|
$title->getId();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideImproperPage
|
|
|
|
|
* @covers Title::getId
|
|
|
|
|
*/
|
|
|
|
|
public function testGetId_fragment() {
|
|
|
|
|
$title = Title::makeTitle( NS_MAIN, 'Test', 'References' );
|
|
|
|
|
|
|
|
|
|
// should not throw
|
|
|
|
|
$this->assertIsInt( $title->getId() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideImproperPage
|
|
|
|
|
* @covers Title::toPageIdentity
|
|
|
|
|
*/
|
|
|
|
|
public function testToPageIdentity_fail( $ns, $text, $fragment = '', $interwiki = '' ) {
|
|
|
|
|
$title = Title::makeTitle( $ns, $text, $fragment, $interwiki );
|
|
|
|
|
|
|
|
|
|
$this->expectException( PreconditionException::class );
|
|
|
|
|
$title->toPageIdentity();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideMakeTitle() {
|
|
|
|
|
yield 'main namespace' => [ 'Foo', NS_MAIN, 'Foo' ];
|
|
|
|
|
yield 'user namespace' => [ 'User:Foo', NS_USER, 'Foo' ];
|
|
|
|
|
yield 'fragment' => [ 'Foo#Section', NS_MAIN, 'Foo', 'Section' ];
|
|
|
|
|
yield 'only fragment' => [ '#Section', NS_MAIN, '', 'Section' ];
|
|
|
|
|
yield 'interwiki' => [ 'acme:Foo', NS_MAIN, 'Foo', '', 'acme' ];
|
|
|
|
|
yield 'normalized underscores' => [ 'Foo Bar', NS_MAIN, 'Foo_Bar' ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideMakeTitle
|
|
|
|
|
* @covers Title::makeTitle
|
|
|
|
|
*/
|
|
|
|
|
public function testMakeTitle( $expected, $ns, $text, $fragment = '', $interwiki = '' ) {
|
|
|
|
|
$title = Title::makeTitle( $ns, $text, $fragment, $interwiki );
|
|
|
|
|
|
|
|
|
|
$this->assertTrue( $title->isValid() );
|
|
|
|
|
$this->assertSame( $expected, $title->getFullText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideMakeTitle_invalid() {
|
|
|
|
|
yield 'bad namespace' => [ 'Special:Badtitle/NS-1234:Foo', -1234, 'Foo' ];
|
|
|
|
|
yield 'lower case' => [ 'User:foo', NS_USER, 'foo' ];
|
|
|
|
|
yield 'empty' => [ '', NS_MAIN, '' ];
|
|
|
|
|
yield 'bad character' => [ 'Foo|Bar', NS_MAIN, 'Foo|Bar' ];
|
|
|
|
|
yield 'bad interwiki' => [ 'qwerty:Foo', NS_MAIN, 'Foo', null, 'qwerty' ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideMakeTitle_invalid
|
|
|
|
|
* @covers Title::makeTitle
|
|
|
|
|
*/
|
|
|
|
|
public function testMakeTitle_invalid( $expected, $ns, $text, $fragment = '', $interwiki = '' ) {
|
|
|
|
|
$title = Title::makeTitle( $ns, $text, $fragment, $interwiki );
|
|
|
|
|
|
|
|
|
|
$this->assertFalse( $title->isValid() );
|
|
|
|
|
$this->assertSame( $expected, $title->getFullText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideMakeTitleSafe() {
|
|
|
|
|
yield 'main namespace' => [ 'Foo', NS_MAIN, 'Foo' ];
|
|
|
|
|
yield 'user namespace' => [ 'User:Foo', NS_USER, 'Foo' ];
|
|
|
|
|
yield 'fragment' => [ 'Foo#Section', NS_MAIN, 'Foo', 'Section' ];
|
|
|
|
|
yield 'only fragment' => [ '#Section', NS_MAIN, '', 'Section' ];
|
|
|
|
|
yield 'interwiki' => [ 'acme:Foo', NS_MAIN, 'Foo', '', 'acme' ];
|
|
|
|
|
|
|
|
|
|
// Normalize
|
|
|
|
|
yield 'normalized underscores' => [ 'Foo Bar', NS_MAIN, 'Foo_Bar' ];
|
|
|
|
|
yield 'lower case' => [ 'User:Foo', NS_USER, 'foo' ];
|
|
|
|
|
|
|
|
|
|
// Bad interwiki becomes part of the title text. Is this intentional?
|
|
|
|
|
yield 'bad interwiki' => [ 'Qwerty:Foo', NS_MAIN, 'Foo', '', 'qwerty' ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideMakeTitleSafe
|
|
|
|
|
* @covers Title::makeTitleSafe
|
|
|
|
|
*/
|
|
|
|
|
public function testMakeTitleSafe( $expected, $ns, $text, $fragment = '', $interwiki = '' ) {
|
|
|
|
|
$title = Title::makeTitleSafe( $ns, $text, $fragment, $interwiki );
|
|
|
|
|
|
|
|
|
|
$this->assertTrue( $title->isValid() );
|
|
|
|
|
$this->assertSame( $expected, $title->getFullText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideMakeTitleSafe_invalid() {
|
|
|
|
|
yield 'bad namespace' => [ -1234, 'Foo' ];
|
|
|
|
|
yield 'empty' => [ '', NS_MAIN, '' ];
|
|
|
|
|
yield 'bad character' => [ NS_MAIN, 'Foo|Bar' ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideMakeTitleSafe_invalid
|
|
|
|
|
* @covers Title::makeTitleSafe
|
|
|
|
|
*/
|
|
|
|
|
public function testMakeTitleSafe_invalid( $ns, $text, $fragment = '', $interwiki = '' ) {
|
|
|
|
|
$title = Title::makeTitleSafe( $ns, $text, $fragment, $interwiki );
|
|
|
|
|
|
|
|
|
|
$this->assertNull( $title );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getContentModel
|
|
|
|
|
* @covers Title::setContentModel
|
|
|
|
|
* @covers Title::uncache
|
|
|
|
|
*/
|
|
|
|
|
public function testSetContentModel() {
|
|
|
|
|
// NOTE: must use newFromText to test behavior of internal instance cache (T281337)
|
|
|
|
|
$title = Title::newFromText( 'Foo' );
|
|
|
|
|
|
|
|
|
|
$title->setContentModel( CONTENT_MODEL_UNKNOWN );
|
|
|
|
|
$this->assertSame( CONTENT_MODEL_UNKNOWN, $title->getContentModel() );
|
|
|
|
|
|
|
|
|
|
// Ensure that the instance we get back from newFromText isn't the modified one.
|
|
|
|
|
$title = Title::newFromText( 'Foo' );
|
|
|
|
|
$this->assertNotSame( CONTENT_MODEL_UNKNOWN, $title->getContentModel() );
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 19:03:13 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::newFromID
|
|
|
|
|
* @covers Title::newFromIDs
|
|
|
|
|
* @covers Title::newFromRow
|
|
|
|
|
*/
|
|
|
|
|
public function testNewFromIds() {
|
|
|
|
|
// First id
|
|
|
|
|
$existingPage1 = $this->getExistingTestPage( 'UTest1' );
|
|
|
|
|
$existingTitle1 = $existingPage1->getTitle();
|
|
|
|
|
$existingId1 = $existingTitle1->getId();
|
|
|
|
|
|
|
|
|
|
$this->assertGreaterThan( 0, $existingId1, 'Sanity: Existing test page should have a positive id' );
|
|
|
|
|
|
|
|
|
|
$newFromId1 = Title::newFromID( $existingId1 );
|
|
|
|
|
$this->assertInstanceOf( Title::class, $newFromId1, 'newFromID returns a title for an existing id' );
|
|
|
|
|
$this->assertTrue(
|
|
|
|
|
$newFromId1->equals( $existingTitle1 ),
|
|
|
|
|
'newFromID returns the correct title'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Second id
|
|
|
|
|
$existingPage2 = $this->getExistingTestPage( 'UTest2' );
|
|
|
|
|
$existingTitle2 = $existingPage2->getTitle();
|
|
|
|
|
$existingId2 = $existingTitle2->getId();
|
|
|
|
|
|
|
|
|
|
$this->assertGreaterThan( 0, $existingId2, 'Sanity: Existing test page should have a positive id' );
|
|
|
|
|
|
|
|
|
|
$newFromId2 = Title::newFromID( $existingId2 );
|
|
|
|
|
$this->assertInstanceOf( Title::class, $newFromId2, 'newFromID returns a title for an existing id' );
|
|
|
|
|
$this->assertTrue(
|
|
|
|
|
$newFromId2->equals( $existingTitle2 ),
|
|
|
|
|
'newFromID returns the correct title'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// newFromIDs using both
|
|
|
|
|
$titles = Title::newFromIDs( [ $existingId1, $existingId2 ] );
|
|
|
|
|
$this->assertCount( 2, $titles );
|
|
|
|
|
$this->assertTrue(
|
|
|
|
|
$titles[0]->equals( $existingTitle1 ) &&
|
|
|
|
|
$titles[1]->equals( $existingTitle2 ),
|
|
|
|
|
'newFromIDs returns an array that matches the correct titles'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// newFromIds early return for an empty array of ids
|
|
|
|
|
$this->assertSame( [], Title::newFromIDs( [] ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::newFromID
|
|
|
|
|
*/
|
|
|
|
|
public function testNewFromMissingId() {
|
|
|
|
|
// Testing return of null for an id that does not exist
|
|
|
|
|
$maxPageId = (int)$this->db->selectField(
|
|
|
|
|
'page',
|
|
|
|
|
'max(page_id)',
|
|
|
|
|
'',
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
$res = Title::newFromId( $maxPageId + 1 );
|
|
|
|
|
$this->assertNull( $res, 'newFromID returns null for missing ids' );
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-18 01:28:26 +00:00
|
|
|
public static function provideValidSecureAndSplit() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'Sandbox' ],
|
|
|
|
|
[ 'A "B"' ],
|
|
|
|
|
[ 'A \'B\'' ],
|
|
|
|
|
[ '.com' ],
|
|
|
|
|
[ '~' ],
|
|
|
|
|
[ '#' ],
|
|
|
|
|
[ '"' ],
|
|
|
|
|
[ '\'' ],
|
|
|
|
|
[ 'Talk:Sandbox' ],
|
|
|
|
|
[ 'Talk:Foo:Sandbox' ],
|
|
|
|
|
[ 'File:Example.svg' ],
|
|
|
|
|
[ 'File_talk:Example.svg' ],
|
|
|
|
|
[ 'Foo/.../Sandbox' ],
|
|
|
|
|
[ 'Sandbox/...' ],
|
|
|
|
|
[ 'A~~' ],
|
|
|
|
|
[ ':A' ],
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
// Length is 256 total, but only title part matters
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'Category:' . str_repeat( 'x', 248 ) ],
|
|
|
|
|
[ str_repeat( 'x', 252 ) ],
|
2014-01-10 20:40:25 +00:00
|
|
|
// interwiki prefix
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'localtestiw: #anchor' ],
|
|
|
|
|
[ 'localtestiw:' ],
|
|
|
|
|
[ 'localtestiw:foo' ],
|
|
|
|
|
[ 'localtestiw: foo # anchor' ],
|
|
|
|
|
[ 'localtestiw: Talk: Sandbox # anchor' ],
|
|
|
|
|
[ 'remotetestiw:' ],
|
|
|
|
|
[ 'remotetestiw: Talk: # anchor' ],
|
|
|
|
|
[ 'remotetestiw: #bar' ],
|
|
|
|
|
[ 'remotetestiw: Talk:' ],
|
|
|
|
|
[ 'remotetestiw: Talk: Foo' ],
|
|
|
|
|
[ 'localtestiw:remotetestiw:' ],
|
|
|
|
|
[ 'localtestiw:remotetestiw:foo' ]
|
|
|
|
|
];
|
2014-09-05 17:52:31 +00:00
|
|
|
}
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
|
2014-09-18 01:28:26 +00:00
|
|
|
public static function provideInvalidSecureAndSplit() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ '', 'title-invalid-empty' ],
|
|
|
|
|
[ ':', 'title-invalid-empty' ],
|
|
|
|
|
[ '__ __', 'title-invalid-empty' ],
|
|
|
|
|
[ ' __ ', 'title-invalid-empty' ],
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
// Bad characters forbidden regardless of wgLegalTitleChars
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'A [ B', 'title-invalid-characters' ],
|
|
|
|
|
[ 'A ] B', 'title-invalid-characters' ],
|
|
|
|
|
[ 'A { B', 'title-invalid-characters' ],
|
|
|
|
|
[ 'A } B', 'title-invalid-characters' ],
|
|
|
|
|
[ 'A < B', 'title-invalid-characters' ],
|
|
|
|
|
[ 'A > B', 'title-invalid-characters' ],
|
|
|
|
|
[ 'A | B', 'title-invalid-characters' ],
|
2016-08-24 19:33:45 +00:00
|
|
|
[ "A \t B", 'title-invalid-characters' ],
|
|
|
|
|
[ "A \n B", 'title-invalid-characters' ],
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
// URL encoding
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'A%20B', 'title-invalid-characters' ],
|
|
|
|
|
[ 'A%23B', 'title-invalid-characters' ],
|
|
|
|
|
[ 'A%2523B', 'title-invalid-characters' ],
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
// XML/HTML character entity references
|
|
|
|
|
// Note: Commented out because they are not marked invalid by the PHP test as
|
|
|
|
|
// Title::newFromText runs Sanitizer::decodeCharReferencesAndNormalize first.
|
2015-09-11 13:44:59 +00:00
|
|
|
// 'A é B',
|
|
|
|
|
// 'A é B',
|
|
|
|
|
// 'A é B',
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
// Subject of NS_TALK does not roundtrip to NS_MAIN
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'Talk:File:Example.svg', 'title-invalid-talk-namespace' ],
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
// Directory navigation
|
2016-02-17 09:09:32 +00:00
|
|
|
[ '.', 'title-invalid-relative' ],
|
|
|
|
|
[ '..', 'title-invalid-relative' ],
|
|
|
|
|
[ './Sandbox', 'title-invalid-relative' ],
|
|
|
|
|
[ '../Sandbox', 'title-invalid-relative' ],
|
|
|
|
|
[ 'Foo/./Sandbox', 'title-invalid-relative' ],
|
|
|
|
|
[ 'Foo/../Sandbox', 'title-invalid-relative' ],
|
|
|
|
|
[ 'Sandbox/.', 'title-invalid-relative' ],
|
|
|
|
|
[ 'Sandbox/..', 'title-invalid-relative' ],
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
// Tilde
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'A ~~~ Name', 'title-invalid-magic-tilde' ],
|
|
|
|
|
[ 'A ~~~~ Signature', 'title-invalid-magic-tilde' ],
|
|
|
|
|
[ 'A ~~~~~ Timestamp', 'title-invalid-magic-tilde' ],
|
2015-04-25 22:43:37 +00:00
|
|
|
// Length
|
2016-02-17 09:09:32 +00:00
|
|
|
[ str_repeat( 'x', 256 ), 'title-invalid-too-long' ],
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
// Namespace prefix without actual title
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'Talk:', 'title-invalid-empty' ],
|
|
|
|
|
[ 'Talk:#', 'title-invalid-empty' ],
|
|
|
|
|
[ 'Category: ', 'title-invalid-empty' ],
|
|
|
|
|
[ 'Category: #bar', 'title-invalid-empty' ],
|
2014-01-10 20:40:25 +00:00
|
|
|
// interwiki prefix
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'localtestiw: Talk: # anchor', 'title-invalid-empty' ],
|
|
|
|
|
[ 'localtestiw: Talk:', 'title-invalid-empty' ]
|
|
|
|
|
];
|
2014-09-05 17:52:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* See also mediawiki.Title.test.js
|
|
|
|
|
* @covers Title::secureAndSplit
|
|
|
|
|
* @dataProvider provideValidSecureAndSplit
|
|
|
|
|
* @note This mainly tests MediaWikiTitleCodec::parseTitle().
|
|
|
|
|
*/
|
|
|
|
|
public function testSecureAndSplitValid( $text ) {
|
2018-01-13 00:02:09 +00:00
|
|
|
$this->assertInstanceOf( Title::class, Title::newFromText( $text ), "Valid: $text" );
|
2014-09-05 17:52:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* See also mediawiki.Title.test.js
|
|
|
|
|
* @covers Title::secureAndSplit
|
|
|
|
|
* @dataProvider provideInvalidSecureAndSplit
|
|
|
|
|
* @note This mainly tests MediaWikiTitleCodec::parseTitle().
|
|
|
|
|
*/
|
2015-04-25 22:43:37 +00:00
|
|
|
public function testSecureAndSplitInvalid( $text, $expectedErrorMessage ) {
|
|
|
|
|
try {
|
|
|
|
|
Title::newFromTextThrow( $text ); // should throw
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->fail( "Title::newFromTextThrow should have thrown with $text" );
|
2015-04-25 22:43:37 +00:00
|
|
|
} catch ( MalformedTitleException $ex ) {
|
|
|
|
|
$this->assertEquals( $expectedErrorMessage, $ex->getErrorMessage(), "Invalid: $text" );
|
|
|
|
|
}
|
mw.Title: Rewrite from scratch (porting logic from Title.php)
Changes:
* Add support for fragments.
* Use wgLegalTitleChars instead of the old clean() method
that stripped out characters instead of throwing an exception.
* Implemented various other parts of Title.php to make it more
strict like Title.php. It is still slightly looser, but it
now takes care of the following that Title.php did already:
- Directory patterns ("../" etc.)
- Extra initial colons
- Titles in NS_TALK that don't round-trip to NS_MAIN
- 3 or more consecutive tildes
- Limited title size (255 bytes)
* Extracted parsing logic into a private static #parse method
and introduced mw.Title.newFromText (a constructor that returns
null|Title instead of throwing an exception).
* Extended test suite to cover the added features and fixed bugs.
* Since the PHP test suite was lacking these, added them there
as well.
Bug fixes:
* Fragments are now excluded from the title instead of causing
the input to be invalid or malformed (e.g. "Foo#bar" was being
normalised to "Foo_bar").
* ".com" now parses and round-trips properly. The extension and
rest of title are still separated, but only at the very end
after all other processing, so though title cannot be empty,
since we only do a lazy split afterwards, it will split into
title="", ext="com" internally and join back together when
needed (bug 38081).
* "Example.js " (trailing space after extension) was previously
incorrectly parsed as title=Example.js,ext=null.
* "Foo bar" (multiple consecutive spaces) was transformed
into 1 space correctly, but "Foo___bar" was not. This has been
fixed to match the PHP implementation (it merges underscores
and whitespace of any kind).
Clean up:
* Removed various redundant private helper methods.
* Removed fixNsId as getNsIdByName uses wgNamespaceIds which
always yields a valid value. The fixNsId was verifying
something that was already valid.
* Yoda conditional in Title.php, got rid of.
* Use newFromText in jquery.byteLimit.test. It was previously
using a very basic invalid test (=== '') and no try-catch.
Since we're getting more strict, typing 'User:' results in
an invalid title, which should result in the same behaviour
as it previously did for the lazy === '' check.
Bug: 38081
Change-Id: Ief1c11dabadc2f822065c40be91e04d655933e4f
2013-07-31 22:12:16 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
public static function provideSpecialNamesWithAndWithoutParameter() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Special:Version', null ],
|
|
|
|
|
[ 'Special:Version/', '' ],
|
|
|
|
|
[ 'Special:Version/param', 'param' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-22 21:35:24 +00:00
|
|
|
/**
|
2014-08-28 18:38:18 +00:00
|
|
|
* @dataProvider provideSpecialNamesWithAndWithoutParameter
|
2013-10-21 21:09:13 +00:00
|
|
|
* @covers Title::fixSpecialName
|
2011-09-22 21:35:24 +00:00
|
|
|
*/
|
2014-08-28 18:38:18 +00:00
|
|
|
public function testFixSpecialNameRetainsParameter( $text, $expectedParam ) {
|
2011-09-22 21:35:24 +00:00
|
|
|
$title = Title::newFromText( $text );
|
|
|
|
|
$fixed = $title->fixSpecialName();
|
2013-03-22 07:39:02 +00:00
|
|
|
$stuff = explode( '/', $fixed->getDBkey(), 2 );
|
2011-09-22 21:35:24 +00:00
|
|
|
if ( count( $stuff ) == 2 ) {
|
|
|
|
|
$par = $stuff[1];
|
|
|
|
|
} else {
|
|
|
|
|
$par = null;
|
|
|
|
|
}
|
2014-04-24 12:50:36 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
$expectedParam,
|
|
|
|
|
$par,
|
2017-02-20 23:45:58 +00:00
|
|
|
"T33100 regression check: Title->fixSpecialName() should preserve parameter"
|
2014-04-24 12:50:36 +00:00
|
|
|
);
|
2011-09-22 21:35:24 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-21 21:09:13 +00:00
|
|
|
public function flattenErrorsArray( $errors ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$result = [];
|
2011-09-29 18:35:34 +00:00
|
|
|
foreach ( $errors as $error ) {
|
|
|
|
|
$result[] = $error[0];
|
|
|
|
|
}
|
2013-04-26 12:00:22 +00:00
|
|
|
|
2011-09-29 18:35:34 +00:00
|
|
|
return $result;
|
|
|
|
|
}
|
2013-02-14 11:36:35 +00:00
|
|
|
|
2013-10-21 21:09:13 +00:00
|
|
|
public static function provideGetPageViewLanguage() {
|
2012-06-02 18:07:46 +00:00
|
|
|
# Format:
|
|
|
|
|
# - expected
|
|
|
|
|
# - Title name
|
2018-07-29 12:24:54 +00:00
|
|
|
# - content language (expected in most cases)
|
2012-06-02 18:07:46 +00:00
|
|
|
# - wgLang (on some specific pages)
|
|
|
|
|
# - wgDefaultLanguageVariant
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'fr', 'Help:I_need_somebody', 'fr', 'fr', false ],
|
|
|
|
|
[ 'es', 'Help:I_need_somebody', 'es', 'zh-tw', false ],
|
|
|
|
|
[ 'zh', 'Help:I_need_somebody', 'zh', 'zh-tw', false ],
|
|
|
|
|
|
|
|
|
|
[ 'es', 'Help:I_need_somebody', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'es', 'MediaWiki:About', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'es', 'MediaWiki:About/', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'de', 'MediaWiki:About/de', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'en', 'MediaWiki:Common.js', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'en', 'MediaWiki:Common.css', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'en', 'User:JohnDoe/Common.js', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'en', 'User:JohnDoe/Monobook.css', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
|
|
|
|
|
[ 'zh-cn', 'Help:I_need_somebody', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'zh', 'MediaWiki:About', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'zh', 'MediaWiki:About/', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'de', 'MediaWiki:About/de', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'zh-cn', 'MediaWiki:About/zh-cn', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'zh-tw', 'MediaWiki:About/zh-tw', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'en', 'MediaWiki:Common.js', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'en', 'MediaWiki:Common.css', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'en', 'User:JohnDoe/Common.js', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'en', 'User:JohnDoe/Monobook.css', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
|
|
|
|
|
[ 'zh-tw', 'Special:NewPages', 'es', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
[ 'zh-tw', 'Special:NewPages', 'zh', 'zh-tw', 'zh-cn' ],
|
|
|
|
|
|
|
|
|
|
];
|
2012-06-02 18:07:46 +00:00
|
|
|
}
|
2012-08-30 20:04:42 +00:00
|
|
|
|
|
|
|
|
/**
|
2021-09-07 18:45:21 +00:00
|
|
|
* @dataProvider provideGetPageViewLanguage
|
|
|
|
|
* @covers Title::getPageViewLanguage
|
2012-08-30 20:04:42 +00:00
|
|
|
*/
|
2021-09-07 18:45:21 +00:00
|
|
|
public function testGetPageViewLanguage( $expected, $titleText, $contLang,
|
|
|
|
|
$lang, $variant, $msg = ''
|
|
|
|
|
) {
|
|
|
|
|
// Setup environnement for this test
|
|
|
|
|
$this->setMwGlobals( [
|
|
|
|
|
'wgDefaultLanguageVariant' => $variant,
|
|
|
|
|
'wgAllowUserJs' => true,
|
|
|
|
|
] );
|
|
|
|
|
$this->setUserLang( $lang );
|
|
|
|
|
$this->setMwGlobals( 'wgLanguageCode', $contLang );
|
2012-08-30 20:04:42 +00:00
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
$title = Title::newFromText( $titleText );
|
|
|
|
|
$this->assertInstanceOf( Title::class, $title,
|
|
|
|
|
"Test must be passed a valid title text, you gave '$titleText'"
|
2019-06-14 09:01:22 +00:00
|
|
|
);
|
2021-09-07 18:45:21 +00:00
|
|
|
$this->assertEquals( $expected,
|
|
|
|
|
$title->getPageViewLanguage()->getCode(),
|
|
|
|
|
$msg
|
2019-06-14 09:01:22 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 10:21:44 +00:00
|
|
|
public function provideSubpage() {
|
|
|
|
|
// NOTE: avoid constructing Title objects in the provider, since it may access the database.
|
|
|
|
|
return [
|
|
|
|
|
[ 'Foo', 'x', new TitleValue( NS_MAIN, 'Foo/x' ) ],
|
|
|
|
|
[ 'Foo#bar', 'x', new TitleValue( NS_MAIN, 'Foo/x' ) ],
|
|
|
|
|
[ 'User:Foo', 'x', new TitleValue( NS_USER, 'Foo/x' ) ],
|
|
|
|
|
[ 'wiki:User:Foo', 'x', new TitleValue( NS_MAIN, 'User:Foo/x', '', 'wiki' ) ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideSubpage
|
|
|
|
|
* @covers Title::getSubpage
|
|
|
|
|
*/
|
|
|
|
|
public function testSubpage( $title, $sub, LinkTarget $expected ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$expected = Title::newFromLinkTarget( $expected );
|
|
|
|
|
$actual = $title->getSubpage( $sub );
|
|
|
|
|
|
|
|
|
|
// NOTE: convert to string for comparison
|
|
|
|
|
$this->assertSame( $expected->getPrefixedText(), $actual->getPrefixedText(), 'text form' );
|
|
|
|
|
$this->assertTrue( $expected->equals( $actual ), 'Title equality' );
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-18 01:28:26 +00:00
|
|
|
public static function provideIsAlwaysKnown() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'Some nonexistent page', false ],
|
|
|
|
|
[ 'UTPage', false ],
|
|
|
|
|
[ '#test', true ],
|
|
|
|
|
[ 'Special:BlankPage', true ],
|
|
|
|
|
[ 'Special:SomeNonexistentSpecialPage', false ],
|
|
|
|
|
[ 'MediaWiki:Parentheses', true ],
|
|
|
|
|
[ 'MediaWiki:Some nonexistent message', false ],
|
|
|
|
|
];
|
2014-06-19 18:36:56 +00:00
|
|
|
}
|
2014-08-21 19:54:51 +00:00
|
|
|
|
2017-06-12 19:11:42 +00:00
|
|
|
/**
|
2021-09-07 18:45:21 +00:00
|
|
|
* @covers Title::isAlwaysKnown
|
|
|
|
|
* @dataProvider provideIsAlwaysKnown
|
|
|
|
|
* @param string $page
|
|
|
|
|
* @param bool $isKnown
|
2017-06-12 19:11:42 +00:00
|
|
|
*/
|
2021-09-07 18:45:21 +00:00
|
|
|
public function testIsAlwaysKnown( $page, $isKnown ) {
|
|
|
|
|
$title = Title::newFromText( $page );
|
|
|
|
|
$this->assertEquals( $isKnown, $title->isAlwaysKnown() );
|
2017-06-12 19:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideIsValid() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '<>' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '|' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '#' ), false ],
|
2019-08-29 17:09:05 +00:00
|
|
|
[ Title::makeTitle( NS_PROJECT, '#' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '', 'test' ), true ],
|
|
|
|
|
[ Title::makeTitle( NS_PROJECT, '#test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '', 'test', 'wikipedia' ), true ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test', '', 'wikipedia' ), true ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), true ],
|
|
|
|
|
[ Title::makeTitle( NS_SPECIAL, 'Test' ), true ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, ' Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '_Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test ' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test_' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, "Test\nthis" ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, "Test\tthis" ), false ],
|
|
|
|
|
[ Title::makeTitle( -33, 'Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( 77663399, 'Test' ), false ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-24 21:29:49 +00:00
|
|
|
/**
|
2021-09-07 18:45:21 +00:00
|
|
|
* @covers Title::isValid
|
|
|
|
|
* @dataProvider provideIsValid
|
2021-03-24 21:29:49 +00:00
|
|
|
* @param Title $title
|
|
|
|
|
* @param bool $isValid
|
|
|
|
|
*/
|
2021-09-07 18:45:21 +00:00
|
|
|
public function testIsValid( Title $title, $isValid ) {
|
|
|
|
|
$this->assertEquals( $isValid, $title->isValid(), $title->getFullText() );
|
2021-03-24 21:29:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideIsValidRedirectTarget() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '', 'test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Foo', 'test' ), true ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '<>' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '_' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test', '', 'acme' ), true ],
|
|
|
|
|
[ Title::makeTitle( NS_SPECIAL, 'UserLogout' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_SPECIAL, 'RecentChanges' ), true ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::isValidRedirectTarget
|
|
|
|
|
* @dataProvider provideIsValidRedirectTarget
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param bool $isValid
|
|
|
|
|
*/
|
|
|
|
|
public function testIsValidRedirectTarget( Title $title, $isValid ) {
|
|
|
|
|
// InterwikiLookup is configured in setUp()
|
|
|
|
|
$this->assertEquals( $isValid, $title->isValidRedirectTarget(), $title->getFullText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideCanExist() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '<>' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '|' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '#' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_PROJECT, '#test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '', 'test', 'acme' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), true ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, ' Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '_Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test ' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test_' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, "Test\nthis" ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, "Test\tthis" ), false ],
|
|
|
|
|
[ Title::makeTitle( -33, 'Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( 77663399, 'Test' ), false ],
|
|
|
|
|
|
|
|
|
|
// Valid but can't exist
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '', 'test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_SPECIAL, 'Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test', '', 'acme' ), false ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 17:09:05 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::canExist
|
|
|
|
|
* @dataProvider provideCanExist
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param bool $canExist
|
|
|
|
|
*/
|
|
|
|
|
public function testCanExist( Title $title, $canExist ) {
|
|
|
|
|
$this->assertEquals( $canExist, $title->canExist(), $title->getFullText() );
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::isAlwaysKnown
|
|
|
|
|
*/
|
|
|
|
|
public function testIsAlwaysKnownOnInterwiki() {
|
|
|
|
|
$title = Title::makeTitle( NS_MAIN, 'Interwiki link', '', 'externalwiki' );
|
|
|
|
|
$this->assertTrue( $title->isAlwaysKnown() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideGetSkinFromConfigSubpage() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'User:Foo', '' ],
|
|
|
|
|
[ 'User:Foo.css', '' ],
|
|
|
|
|
[ 'User:Foo/', '' ],
|
|
|
|
|
[ 'User:Foo/bar', '' ],
|
|
|
|
|
[ 'User:Foo./bar', '' ],
|
|
|
|
|
[ 'User:Foo/bar.', 'bar' ],
|
|
|
|
|
[ 'User:Foo/bar.css', 'bar' ],
|
|
|
|
|
[ '/bar.css', '' ],
|
|
|
|
|
[ '//bar.css', 'bar' ],
|
|
|
|
|
[ '.css', '' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetSkinFromConfigSubpage
|
|
|
|
|
* @covers Title::getSkinFromConfigSubpage
|
|
|
|
|
*/
|
|
|
|
|
public function testGetSkinFromConfigSubpage( $title, $expected ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$this->assertSame( $expected, $title->getSkinFromConfigSubpage() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getWikiId
|
|
|
|
|
*/
|
|
|
|
|
public function testGetWikiId() {
|
|
|
|
|
$title = Title::newFromText( 'Foo' );
|
|
|
|
|
$this->assertFalse( $title->getWikiId() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getFragment
|
|
|
|
|
* @covers Title::getFragment
|
|
|
|
|
* @covers Title::uncache
|
|
|
|
|
*/
|
|
|
|
|
public function testSetFragment() {
|
|
|
|
|
// NOTE: must use newFromText to test behavior of internal instance cache (T281337)
|
|
|
|
|
$title = Title::newFromText( 'Foo' );
|
|
|
|
|
|
|
|
|
|
$title->setFragment( '#Xyzzy' );
|
|
|
|
|
$this->assertSame( 'Xyzzy', $title->getFragment() );
|
|
|
|
|
|
|
|
|
|
// Ensure that the instance we get back from newFromText isn't the modified one.
|
|
|
|
|
$title = Title::newFromText( 'Foo' );
|
|
|
|
|
$this->assertNotSame( 'Xyzzy', $title->getFragment() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::__clone
|
|
|
|
|
*/
|
|
|
|
|
public function testClone() {
|
|
|
|
|
// NOTE: must use newFromText to test behavior of internal instance cache (T281337)
|
|
|
|
|
$title = Title::newFromText( 'Foo' );
|
|
|
|
|
|
|
|
|
|
$clone = clone $title;
|
|
|
|
|
$clone->setFragment( '#Xyzzy' );
|
|
|
|
|
|
|
|
|
|
// Ensure that the instance we get back from newFromText is the original one
|
|
|
|
|
$title2 = Title::newFromText( 'Foo' );
|
|
|
|
|
$this->assertSame( $title, $title2 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideBaseTitleCases() {
|
|
|
|
|
return [
|
|
|
|
|
# Namespace, Title text, expected base
|
|
|
|
|
[ NS_USER, 'John_Doe', 'John Doe' ],
|
|
|
|
|
[ NS_USER, 'John_Doe/subOne/subTwo', 'John Doe/subOne' ],
|
|
|
|
|
[ NS_USER, 'Foo / Bar / Baz', 'Foo / Bar ' ],
|
|
|
|
|
[ NS_USER, 'Foo/', 'Foo' ],
|
|
|
|
|
[ NS_USER, 'Foo/Bar/', 'Foo/Bar' ],
|
|
|
|
|
[ NS_USER, '/', '/' ],
|
|
|
|
|
[ NS_USER, '//', '/' ],
|
|
|
|
|
[ NS_USER, '/oops/', '/oops' ],
|
|
|
|
|
[ NS_USER, '/indeed', '/indeed' ],
|
|
|
|
|
[ NS_USER, '//indeed', '/' ],
|
|
|
|
|
[ NS_USER, '/Ramba/Zamba/Mamba/', '/Ramba/Zamba/Mamba' ],
|
|
|
|
|
[ NS_USER, '//x//y//z//', '//x//y//z/' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideBaseTitleCases
|
|
|
|
|
* @covers Title::getBaseText
|
|
|
|
|
*/
|
|
|
|
|
public function testGetBaseText( $namespace, $title, $expected ) {
|
|
|
|
|
$title = Title::makeTitle( $namespace, $title );
|
|
|
|
|
$this->assertSame( $expected, $title->getBaseText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideBaseTitleCases
|
|
|
|
|
* @covers Title::getBaseTitle
|
|
|
|
|
*/
|
|
|
|
|
public function testGetBaseTitle( $namespace, $title, $expected ) {
|
|
|
|
|
$title = Title::makeTitle( $namespace, $title );
|
|
|
|
|
$base = $title->getBaseTitle();
|
|
|
|
|
$this->assertTrue( $base->isValid() );
|
|
|
|
|
$this->assertTrue(
|
|
|
|
|
$base->equals( Title::makeTitleSafe( $title->getNamespace(), $expected ) )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideRootTitleCases() {
|
|
|
|
|
return [
|
|
|
|
|
# Namespace, Title, expected base
|
|
|
|
|
[ NS_USER, 'John_Doe', 'John Doe' ],
|
|
|
|
|
[ NS_USER, 'John_Doe/subOne/subTwo', 'John Doe' ],
|
|
|
|
|
[ NS_USER, 'Foo / Bar / Baz', 'Foo ' ],
|
|
|
|
|
[ NS_USER, 'Foo/', 'Foo' ],
|
|
|
|
|
[ NS_USER, 'Foo/Bar/', 'Foo' ],
|
|
|
|
|
[ NS_USER, '/', '/' ],
|
|
|
|
|
[ NS_USER, '//', '/' ],
|
|
|
|
|
[ NS_USER, '/oops/', '/oops' ],
|
|
|
|
|
[ NS_USER, '/Ramba/Zamba/Mamba/', '/Ramba' ],
|
|
|
|
|
[ NS_USER, '//x//y//z//', '//x' ],
|
|
|
|
|
[ NS_TALK, '////', '///' ],
|
|
|
|
|
[ NS_TEMPLATE, '////', '///' ],
|
|
|
|
|
[ NS_TEMPLATE, 'Foo////', 'Foo' ],
|
|
|
|
|
[ NS_TEMPLATE, 'Foo////Bar', 'Foo' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideRootTitleCases
|
|
|
|
|
* @covers Title::getRootText
|
|
|
|
|
*/
|
|
|
|
|
public function testGetRootText( $namespace, $title, $expected ) {
|
|
|
|
|
$title = Title::makeTitle( $namespace, $title );
|
|
|
|
|
$this->assertEquals( $expected, $title->getRootText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideRootTitleCases
|
|
|
|
|
* @covers Title::getRootTitle
|
|
|
|
|
*/
|
|
|
|
|
public function testGetRootTitle( $namespace, $title, $expected ) {
|
|
|
|
|
$title = Title::makeTitle( $namespace, $title );
|
|
|
|
|
$root = $title->getRootTitle();
|
|
|
|
|
$this->assertTrue( $root->isValid() );
|
|
|
|
|
$this->assertTrue(
|
|
|
|
|
$root->equals( Title::makeTitleSafe( $title->getNamespace(), $expected ) )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideSubpageTitleCases() {
|
|
|
|
|
return [
|
|
|
|
|
# Namespace, Title, expected base
|
|
|
|
|
[ NS_USER, 'John_Doe', 'John Doe' ],
|
|
|
|
|
[ NS_USER, 'John_Doe/subOne/subTwo', 'subTwo' ],
|
|
|
|
|
[ NS_USER, 'John_Doe/subOne', 'subOne' ],
|
|
|
|
|
[ NS_USER, '/', '/' ],
|
|
|
|
|
[ NS_USER, '//', '' ],
|
|
|
|
|
[ NS_USER, '/oops/', '' ],
|
|
|
|
|
[ NS_USER, '/indeed', '/indeed' ],
|
|
|
|
|
[ NS_USER, '//indeed', 'indeed' ],
|
|
|
|
|
[ NS_USER, '/Ramba/Zamba/Mamba/', '' ],
|
|
|
|
|
[ NS_USER, '//x//y//z//', '' ],
|
|
|
|
|
[ NS_TEMPLATE, 'Foo', 'Foo' ],
|
|
|
|
|
[ NS_CATEGORY, 'Foo', 'Foo' ],
|
|
|
|
|
[ NS_MAIN, 'Bar', 'Bar' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideSubpageTitleCases
|
|
|
|
|
* @covers Title::getSubpageText
|
|
|
|
|
*/
|
|
|
|
|
public function testGetSubpageText( $namespace, $title, $expected ) {
|
|
|
|
|
$title = Title::makeTitle( $namespace, $title );
|
|
|
|
|
$this->assertEquals( $expected, $title->getSubpageText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideGetTitleValue() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Foo' ],
|
|
|
|
|
[ 'Foo#bar' ],
|
|
|
|
|
[ 'User:Hansi_Maier' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getTitleValue
|
|
|
|
|
* @dataProvider provideGetTitleValue
|
|
|
|
|
*/
|
|
|
|
|
public function testGetTitleValue( $text ) {
|
|
|
|
|
$title = Title::newFromText( $text );
|
|
|
|
|
$value = $title->getTitleValue();
|
|
|
|
|
|
|
|
|
|
$dbkey = str_replace( ' ', '_', $value->getText() );
|
|
|
|
|
$this->assertEquals( $title->getDBkey(), $dbkey );
|
|
|
|
|
$this->assertEquals( $title->getNamespace(), $value->getNamespace() );
|
|
|
|
|
$this->assertEquals( $title->getFragment(), $value->getFragment() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideGetFragment() {
|
2019-08-29 17:09:05 +00:00
|
|
|
return [
|
2021-09-07 18:45:21 +00:00
|
|
|
[ 'Foo', '' ],
|
|
|
|
|
[ 'Foo#bar', 'bar' ],
|
|
|
|
|
[ 'Foo#bär', 'bär' ],
|
2019-08-29 17:09:05 +00:00
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
// Inner whitespace is normalized
|
|
|
|
|
[ 'Foo#bar_bar', 'bar bar' ],
|
|
|
|
|
[ 'Foo#bar bar', 'bar bar' ],
|
|
|
|
|
[ 'Foo#bar bar', 'bar bar' ],
|
|
|
|
|
|
|
|
|
|
// Leading whitespace is kept, trailing whitespace is trimmed.
|
|
|
|
|
// XXX: Is this really want we want?
|
|
|
|
|
[ 'Foo#_bar_bar_', ' bar bar' ],
|
|
|
|
|
[ 'Foo# bar bar ', ' bar bar' ],
|
2017-06-12 19:11:42 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-21 19:54:51 +00:00
|
|
|
/**
|
2021-09-07 18:45:21 +00:00
|
|
|
* @covers Title::getFragment
|
|
|
|
|
* @dataProvider provideGetFragment
|
|
|
|
|
*
|
|
|
|
|
* @param string $full
|
|
|
|
|
* @param string $fragment
|
2014-08-21 19:54:51 +00:00
|
|
|
*/
|
2021-09-07 18:45:21 +00:00
|
|
|
public function testGetFragment( $full, $fragment ) {
|
|
|
|
|
$title = Title::newFromText( $full );
|
|
|
|
|
$this->assertEquals( $fragment, $title->getFragment() );
|
2014-08-21 19:54:51 +00:00
|
|
|
}
|
2015-04-30 18:55:23 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::exists
|
|
|
|
|
*/
|
|
|
|
|
public function testExists() {
|
|
|
|
|
$title = Title::makeTitle( NS_PROJECT, 'New page' );
|
2018-06-11 06:55:11 +00:00
|
|
|
$linkCache = MediaWikiServices::getInstance()->getLinkCache();
|
2015-04-30 18:55:23 +00:00
|
|
|
|
|
|
|
|
$article = new Article( $title );
|
|
|
|
|
$page = $article->getPage();
|
2021-06-24 08:42:19 +00:00
|
|
|
$page->doUserEditContent(
|
|
|
|
|
new WikitextContent( 'Some [[link]]' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'summary'
|
|
|
|
|
);
|
2015-04-30 18:55:23 +00:00
|
|
|
|
|
|
|
|
// Tell Title it doesn't know whether it exists
|
|
|
|
|
$title->mArticleID = -1;
|
|
|
|
|
|
2019-08-08 13:01:15 +00:00
|
|
|
// Tell the link cache it doesn't exist when it really does
|
2015-04-30 18:55:23 +00:00
|
|
|
$linkCache->clearLink( $title );
|
|
|
|
|
$linkCache->addBadLinkObj( $title );
|
|
|
|
|
|
2019-09-17 14:19:26 +00:00
|
|
|
$this->assertFalse(
|
2015-09-30 08:01:28 +00:00
|
|
|
$title->exists(),
|
2019-07-04 21:24:34 +00:00
|
|
|
'exists() should rely on link cache unless READ_LATEST is used'
|
2015-09-30 08:01:28 +00:00
|
|
|
);
|
2020-01-09 23:23:19 +00:00
|
|
|
$this->assertTrue(
|
2019-07-04 21:24:34 +00:00
|
|
|
$title->exists( Title::READ_LATEST ),
|
|
|
|
|
'exists() should re-query database when READ_LATEST is used'
|
2015-09-30 08:01:28 +00:00
|
|
|
);
|
2015-04-30 18:55:23 +00:00
|
|
|
}
|
2016-04-20 08:09:23 +00:00
|
|
|
|
2020-12-03 08:52:55 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::getArticleID
|
|
|
|
|
* @covers Title::getId
|
|
|
|
|
*/
|
|
|
|
|
public function testGetArticleID() {
|
|
|
|
|
$title = Title::makeTitle( NS_PROJECT, __METHOD__ );
|
|
|
|
|
$this->assertSame( 0, $title->getArticleID() );
|
|
|
|
|
$this->assertSame( $title->getArticleID(), $title->getId() );
|
|
|
|
|
|
|
|
|
|
$article = new Article( $title );
|
|
|
|
|
$page = $article->getPage();
|
2021-06-24 08:42:19 +00:00
|
|
|
$page->doUserEditContent(
|
|
|
|
|
new WikitextContent( 'Some [[link]]' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'summary'
|
|
|
|
|
);
|
2020-12-03 08:52:55 +00:00
|
|
|
|
|
|
|
|
$this->assertGreaterThan( 0, $title->getArticleID() );
|
|
|
|
|
$this->assertSame( $title->getArticleID(), $title->getId() );
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-01 20:14:36 +00:00
|
|
|
public function provideNonProperTitles() {
|
|
|
|
|
return [
|
|
|
|
|
'section link' => [ Title::makeTitle( NS_MAIN, '', 'Section' ) ],
|
|
|
|
|
'empty' => [ Title::makeTitle( NS_MAIN, '' ) ],
|
|
|
|
|
'bad chars' => [ Title::makeTitle( NS_MAIN, '_|_' ) ],
|
|
|
|
|
'empty in namspace' => [ Title::makeTitle( NS_USER, '' ) ],
|
|
|
|
|
'special' => [ Title::makeTitle( NS_SPECIAL, 'RecentChanges' ) ],
|
|
|
|
|
'interwiki' => [ Title::makeTitle( NS_MAIN, 'Test', '', 'acme' ) ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideNonProperTitles
|
|
|
|
|
* @covers Title::getArticleID
|
|
|
|
|
*/
|
|
|
|
|
public function testGetArticleIDFromNonProperTitle( $title ) {
|
|
|
|
|
// make sure nothing explodes
|
|
|
|
|
$this->assertSame( 0, $title->getArticleID() );
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-09 18:29:18 +00:00
|
|
|
public function provideCanHaveTalkPage() {
|
|
|
|
|
return [
|
|
|
|
|
'User page has talk page' => [
|
|
|
|
|
Title::makeTitle( NS_USER, 'Jane' ), true
|
|
|
|
|
],
|
|
|
|
|
'Talke page has talk page' => [
|
|
|
|
|
Title::makeTitle( NS_TALK, 'Foo' ), true
|
|
|
|
|
],
|
|
|
|
|
'Special page cannot have talk page' => [
|
|
|
|
|
Title::makeTitle( NS_SPECIAL, 'Thing' ), false
|
|
|
|
|
],
|
|
|
|
|
'Virtual namespace cannot have talk page' => [
|
|
|
|
|
Title::makeTitle( NS_MEDIA, 'Kitten.jpg' ), false
|
|
|
|
|
],
|
2019-06-03 22:56:22 +00:00
|
|
|
'Relative link has no talk page' => [
|
|
|
|
|
Title::makeTitle( NS_MAIN, '', 'Kittens' ), false
|
|
|
|
|
],
|
|
|
|
|
'Interwiki link has no talk page' => [
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Kittens', '', 'acme' ), false
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideIsWatchable() {
|
|
|
|
|
return [
|
|
|
|
|
'User page is watchable' => [
|
|
|
|
|
Title::makeTitle( NS_USER, 'Jane' ), true
|
|
|
|
|
],
|
2020-12-21 11:43:39 +00:00
|
|
|
'Talk page is watchable' => [
|
2019-06-03 22:56:22 +00:00
|
|
|
Title::makeTitle( NS_TALK, 'Foo' ), true
|
|
|
|
|
],
|
|
|
|
|
'Special page is not watchable' => [
|
|
|
|
|
Title::makeTitle( NS_SPECIAL, 'Thing' ), false
|
|
|
|
|
],
|
|
|
|
|
'Virtual namespace is not watchable' => [
|
|
|
|
|
Title::makeTitle( NS_MEDIA, 'Kitten.jpg' ), false
|
|
|
|
|
],
|
|
|
|
|
'Relative link is not watchable' => [
|
|
|
|
|
Title::makeTitle( NS_MAIN, '', 'Kittens' ), false
|
|
|
|
|
],
|
|
|
|
|
'Interwiki link is not watchable' => [
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Kittens', '', 'acme' ), false
|
|
|
|
|
],
|
2021-03-30 21:12:15 +00:00
|
|
|
'Invalid title is not watchable' => [
|
|
|
|
|
Title::makeTitle( NS_MAIN, '<' ), false
|
|
|
|
|
]
|
2019-06-03 22:56:22 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideGetTalkPage_good() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), Title::makeTitle( NS_TALK, 'Test' ) ],
|
|
|
|
|
[ Title::makeTitle( NS_TALK, 'Test' ), Title::makeTitle( NS_TALK, 'Test' ) ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideGetTalkPage_bad() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_SPECIAL, 'Test' ) ],
|
|
|
|
|
[ Title::makeTitle( NS_MEDIA, 'Test' ) ],
|
2019-08-29 13:25:16 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideGetTalkPage_broken() {
|
|
|
|
|
// These cases *should* be bad, but are not treated as bad, for backwards compatibility.
|
|
|
|
|
// See discussion on T227817.
|
|
|
|
|
return [
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_MAIN, '', 'Kittens' ),
|
|
|
|
|
Title::makeTitle( NS_TALK, '' ), // Section is lost!
|
|
|
|
|
false,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Kittens', '', 'acme' ),
|
|
|
|
|
Title::makeTitle( NS_TALK, 'Kittens', '' ), // Interwiki prefix is lost!
|
|
|
|
|
true,
|
|
|
|
|
],
|
2019-06-03 22:56:22 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideGetSubjectPage_good() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_TALK, 'Test' ), Title::makeTitle( NS_MAIN, 'Test' ) ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), Title::makeTitle( NS_MAIN, 'Test' ) ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideGetOtherPage_good() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), Title::makeTitle( NS_TALK, 'Test' ) ],
|
|
|
|
|
[ Title::makeTitle( NS_TALK, 'Test' ), Title::makeTitle( NS_MAIN, 'Test' ) ],
|
2017-06-09 18:29:18 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideCanHaveTalkPage
|
|
|
|
|
* @covers Title::canHaveTalkPage
|
|
|
|
|
*
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param bool $expected
|
|
|
|
|
*/
|
|
|
|
|
public function testCanHaveTalkPage( Title $title, $expected ) {
|
|
|
|
|
$actual = $title->canHaveTalkPage();
|
|
|
|
|
$this->assertSame( $expected, $actual, $title->getPrefixedDBkey() );
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-03 22:56:22 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideIsWatchable
|
|
|
|
|
* @covers Title::isWatchable
|
|
|
|
|
*
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param bool $expected
|
|
|
|
|
*/
|
|
|
|
|
public function testIsWatchable( Title $title, $expected ) {
|
2021-04-29 18:43:00 +00:00
|
|
|
$this->hideDeprecated( 'Title::isWatchable' );
|
2020-12-21 11:43:39 +00:00
|
|
|
$actual = $title->isWatchable();
|
2019-06-03 22:56:22 +00:00
|
|
|
$this->assertSame( $expected, $actual, $title->getPrefixedDBkey() );
|
2017-08-01 17:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetTalkPage_good
|
|
|
|
|
* @covers Title::getTalkPageIfDefined
|
|
|
|
|
*/
|
2019-06-03 22:56:22 +00:00
|
|
|
public function testGetTalkPage_good( Title $title, Title $expected ) {
|
|
|
|
|
$actual = $title->getTalkPage();
|
|
|
|
|
$this->assertTrue( $expected->equals( $actual ), $title->getPrefixedDBkey() );
|
2017-08-01 17:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
2019-06-03 22:56:22 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetTalkPage_bad
|
|
|
|
|
* @covers Title::getTalkPageIfDefined
|
|
|
|
|
*/
|
|
|
|
|
public function testGetTalkPage_bad( Title $title ) {
|
2019-10-05 22:14:35 +00:00
|
|
|
$this->expectException( MWException::class );
|
2019-06-03 22:56:22 +00:00
|
|
|
$title->getTalkPage();
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 13:25:16 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetTalkPage_broken
|
|
|
|
|
* @covers Title::getTalkPageIfDefined
|
|
|
|
|
*/
|
|
|
|
|
public function testGetTalkPage_broken( Title $title, Title $expected, $valid ) {
|
|
|
|
|
$errorLevel = error_reporting( E_ERROR );
|
|
|
|
|
|
|
|
|
|
// NOTE: Eventually we want to throw in this case. But while there is still code that
|
|
|
|
|
// calls this method without checking, we want to avoid fatal errors.
|
|
|
|
|
// See discussion on T227817.
|
|
|
|
|
$result = $title->getTalkPage();
|
|
|
|
|
$this->assertTrue( $expected->equals( $result ) );
|
|
|
|
|
$this->assertSame( $valid, $result->isValid() );
|
|
|
|
|
|
|
|
|
|
error_reporting( $errorLevel );
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-03 22:56:22 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetTalkPage_good
|
|
|
|
|
* @covers Title::getTalkPageIfDefined
|
|
|
|
|
*/
|
|
|
|
|
public function testGetTalkPageIfDefined_good( Title $title, Title $expected ) {
|
|
|
|
|
$actual = $title->getTalkPageIfDefined();
|
|
|
|
|
$this->assertNotNull( $actual, $title->getPrefixedDBkey() );
|
|
|
|
|
$this->assertTrue( $expected->equals( $actual ), $title->getPrefixedDBkey() );
|
2017-08-01 17:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetTalkPage_bad
|
|
|
|
|
* @covers Title::getTalkPageIfDefined
|
|
|
|
|
*/
|
|
|
|
|
public function testGetTalkPageIfDefined_bad( Title $title ) {
|
|
|
|
|
$talk = $title->getTalkPageIfDefined();
|
|
|
|
|
$this->assertNull(
|
|
|
|
|
$talk,
|
2019-06-03 22:56:22 +00:00
|
|
|
$title->getPrefixedDBkey()
|
2017-08-01 17:09:13 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-03 22:56:22 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetSubjectPage_good
|
|
|
|
|
* @covers Title::getSubjectPage
|
|
|
|
|
*/
|
|
|
|
|
public function testGetSubjectPage_good( Title $title, Title $expected ) {
|
|
|
|
|
$actual = $title->getSubjectPage();
|
|
|
|
|
$this->assertTrue( $expected->equals( $actual ), $title->getPrefixedDBkey() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetOtherPage_good
|
|
|
|
|
* @covers Title::getOtherPage
|
|
|
|
|
*/
|
|
|
|
|
public function testGetOtherPage_good( Title $title, Title $expected ) {
|
|
|
|
|
$actual = $title->getOtherPage();
|
|
|
|
|
$this->assertTrue( $expected->equals( $actual ), $title->getPrefixedDBkey() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideGetTalkPage_bad
|
|
|
|
|
* @covers Title::getOtherPage
|
|
|
|
|
*/
|
|
|
|
|
public function testGetOtherPage_bad( Title $title ) {
|
2019-10-05 22:14:35 +00:00
|
|
|
$this->expectException( MWException::class );
|
2019-06-03 22:56:22 +00:00
|
|
|
$title->getOtherPage();
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-06 09:47:46 +00:00
|
|
|
public static function provideIsMovable() {
|
|
|
|
|
return [
|
|
|
|
|
'Simple title' => [ 'Foo', true ],
|
|
|
|
|
// @todo Should these next two really be true?
|
|
|
|
|
'Empty name' => [ Title::makeTitle( NS_MAIN, '' ), true ],
|
|
|
|
|
'Invalid name' => [ Title::makeTitle( NS_MAIN, '<' ), true ],
|
|
|
|
|
'Interwiki' => [ Title::makeTitle( NS_MAIN, 'Test', '', 'otherwiki' ), false ],
|
|
|
|
|
'Special page' => [ 'Special:FooBar', false ],
|
|
|
|
|
'Aborted by hook' => [ 'Hooked in place', false,
|
2021-02-07 13:10:36 +00:00
|
|
|
static function ( Title $title, &$result ) {
|
2019-05-06 09:47:46 +00:00
|
|
|
$result = false;
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-20 08:09:23 +00:00
|
|
|
/**
|
2021-09-07 18:45:21 +00:00
|
|
|
* @dataProvider provideIsMovable
|
|
|
|
|
* @covers Title::isMovable
|
|
|
|
|
*
|
|
|
|
|
* @param string|Title $title
|
|
|
|
|
* @param bool $expected
|
|
|
|
|
* @param callable|null $hookCallback For TitleIsMovable
|
2016-04-20 08:09:23 +00:00
|
|
|
*/
|
2021-09-07 18:45:21 +00:00
|
|
|
public function testIsMovable( $title, $expected, $hookCallback = null ) {
|
|
|
|
|
if ( $hookCallback ) {
|
|
|
|
|
$this->setTemporaryHook( 'TitleIsMovable', $hookCallback );
|
|
|
|
|
}
|
|
|
|
|
if ( is_string( $title ) ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
}
|
2016-04-20 08:09:23 +00:00
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
$this->assertSame( $expected, $title->isMovable() );
|
2016-04-20 08:09:23 +00:00
|
|
|
}
|
2016-05-12 18:14:47 +00:00
|
|
|
|
|
|
|
|
public function provideGetPrefixedText() {
|
|
|
|
|
return [
|
|
|
|
|
// ns = 0
|
|
|
|
|
[
|
2017-06-09 16:39:33 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo bar' ),
|
|
|
|
|
'Foo bar'
|
2016-05-12 18:14:47 +00:00
|
|
|
],
|
|
|
|
|
// ns = 2
|
|
|
|
|
[
|
2017-06-09 16:39:33 +00:00
|
|
|
Title::makeTitle( NS_USER, 'Foo bar' ),
|
|
|
|
|
'User:Foo bar'
|
|
|
|
|
],
|
|
|
|
|
// ns = 3
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_USER_TALK, 'Foo bar' ),
|
|
|
|
|
'User talk:Foo bar'
|
2016-05-12 18:14:47 +00:00
|
|
|
],
|
|
|
|
|
// fragment not included
|
|
|
|
|
[
|
2017-06-09 16:39:33 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo bar', 'fragment' ),
|
|
|
|
|
'Foo bar'
|
2016-05-12 18:14:47 +00:00
|
|
|
],
|
|
|
|
|
// ns = -2
|
|
|
|
|
[
|
2017-06-09 16:39:33 +00:00
|
|
|
Title::makeTitle( NS_MEDIA, 'Foo bar' ),
|
|
|
|
|
'Media:Foo bar'
|
2016-05-12 18:14:47 +00:00
|
|
|
],
|
|
|
|
|
// non-existent namespace
|
|
|
|
|
[
|
2017-06-09 16:39:33 +00:00
|
|
|
Title::makeTitle( 100777, 'Foo bar' ),
|
|
|
|
|
'Special:Badtitle/NS100777:Foo bar'
|
2016-05-12 18:14:47 +00:00
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getPrefixedText
|
|
|
|
|
* @dataProvider provideGetPrefixedText
|
|
|
|
|
*/
|
|
|
|
|
public function testGetPrefixedText( Title $title, $expected ) {
|
|
|
|
|
$this->assertEquals( $expected, $title->getPrefixedText() );
|
|
|
|
|
}
|
2017-06-09 16:39:33 +00:00
|
|
|
|
|
|
|
|
public function provideGetPrefixedDBKey() {
|
|
|
|
|
return [
|
|
|
|
|
// ns = 0
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo_bar' ),
|
|
|
|
|
'Foo_bar'
|
|
|
|
|
],
|
|
|
|
|
// ns = 2
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_USER, 'Foo_bar' ),
|
|
|
|
|
'User:Foo_bar'
|
|
|
|
|
],
|
|
|
|
|
// ns = 3
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_USER_TALK, 'Foo_bar' ),
|
|
|
|
|
'User_talk:Foo_bar'
|
|
|
|
|
],
|
|
|
|
|
// fragment not included
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo_bar', 'fragment' ),
|
|
|
|
|
'Foo_bar'
|
|
|
|
|
],
|
|
|
|
|
// ns = -2
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_MEDIA, 'Foo_bar' ),
|
|
|
|
|
'Media:Foo_bar'
|
|
|
|
|
],
|
|
|
|
|
// non-existent namespace
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( 100777, 'Foo_bar' ),
|
|
|
|
|
'Special:Badtitle/NS100777:Foo_bar'
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getPrefixedDBKey
|
|
|
|
|
* @dataProvider provideGetPrefixedDBKey
|
|
|
|
|
*/
|
|
|
|
|
public function testGetPrefixedDBKey( Title $title, $expected ) {
|
|
|
|
|
$this->assertEquals( $expected, $title->getPrefixedDBkey() );
|
|
|
|
|
}
|
2017-11-28 23:17:46 +00:00
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
public function provideGetFragmentForURL() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Foo', '' ],
|
|
|
|
|
[ 'Foo#ümlåût', '#ümlåût' ],
|
|
|
|
|
[ 'de:Foo#Bå®', '#Bå®' ],
|
|
|
|
|
[ 'zz:Foo#тест', '#.D1.82.D0.B5.D1.81.D1.82' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-28 23:17:46 +00:00
|
|
|
/**
|
2017-12-25 07:28:03 +00:00
|
|
|
* @covers Title::getFragmentForURL
|
2017-11-28 23:17:46 +00:00
|
|
|
* @dataProvider provideGetFragmentForURL
|
|
|
|
|
*
|
|
|
|
|
* @param string $titleStr
|
|
|
|
|
* @param string $expected
|
|
|
|
|
*/
|
|
|
|
|
public function testGetFragmentForURL( $titleStr, $expected ) {
|
|
|
|
|
$this->setMwGlobals( [
|
|
|
|
|
'wgFragmentMode' => [ 'html5' ],
|
|
|
|
|
'wgExternalInterwikiFragmentMode' => 'legacy',
|
|
|
|
|
] );
|
2021-05-05 00:03:26 +00:00
|
|
|
// InterwikiLookup is configured in setUp()
|
2017-11-28 23:17:46 +00:00
|
|
|
|
|
|
|
|
$title = Title::newFromText( $titleStr );
|
|
|
|
|
self::assertEquals( $expected, $title->getFragmentForURL() );
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
public function provideIsRawHtmlMessage() {
|
2017-11-28 23:17:46 +00:00
|
|
|
return [
|
2021-09-07 18:45:21 +00:00
|
|
|
[ 'MediaWiki:Foobar', true ],
|
|
|
|
|
[ 'MediaWiki:Foo bar', true ],
|
|
|
|
|
[ 'MediaWiki:Foo-bar', true ],
|
|
|
|
|
[ 'MediaWiki:foo bar', true ],
|
|
|
|
|
[ 'MediaWiki:foo-bar', true ],
|
|
|
|
|
[ 'MediaWiki:foobar', true ],
|
|
|
|
|
[ 'MediaWiki:some-other-message', false ],
|
|
|
|
|
[ 'Main Page', false ],
|
2017-11-28 23:17:46 +00:00
|
|
|
];
|
|
|
|
|
}
|
2018-08-28 19:47:49 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isRawHtmlMessage
|
|
|
|
|
* @dataProvider provideIsRawHtmlMessage
|
|
|
|
|
*/
|
|
|
|
|
public function testIsRawHtmlMessage( $textForm, $expected ) {
|
|
|
|
|
$this->setMwGlobals( 'wgRawHtmlMessages', [
|
|
|
|
|
'foobar',
|
|
|
|
|
'foo_bar',
|
|
|
|
|
'foo-bar',
|
|
|
|
|
] );
|
|
|
|
|
|
|
|
|
|
$title = Title::newFromText( $textForm );
|
|
|
|
|
$this->assertSame( $expected, $title->isRawHtmlMessage() );
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-13 03:27:31 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::newMainPage
|
|
|
|
|
*/
|
|
|
|
|
public function testNewMainPage() {
|
2019-04-08 15:21:49 +00:00
|
|
|
$mock = $this->createMock( MessageCache::class );
|
|
|
|
|
$mock->method( 'get' )->willReturn( 'Foresheet' );
|
|
|
|
|
$mock->method( 'transform' )->willReturn( 'Foresheet' );
|
|
|
|
|
|
|
|
|
|
$this->setService( 'MessageCache', $mock );
|
2019-04-13 03:27:31 +00:00
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
'Foresheet',
|
|
|
|
|
Title::newMainPage()->getText()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::newMainPage
|
|
|
|
|
*/
|
|
|
|
|
public function testNewMainPageWithLocal() {
|
|
|
|
|
$local = $this->createMock( MessageLocalizer::class );
|
|
|
|
|
$local->method( 'msg' )->willReturn( new RawMessage( 'Prime Article' ) );
|
|
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
'Prime Article',
|
|
|
|
|
Title::newMainPage( $local )->getText()
|
|
|
|
|
);
|
|
|
|
|
}
|
2019-11-07 19:06:55 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::loadRestrictions
|
|
|
|
|
*/
|
|
|
|
|
public function testLoadRestrictions() {
|
|
|
|
|
$title = Title::newFromText( 'UTPage1' );
|
|
|
|
|
$title->loadRestrictions();
|
|
|
|
|
$this->assertTrue( $title->areRestrictionsLoaded() );
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$title->loadRestrictions();
|
|
|
|
|
$this->assertTrue( $title->areRestrictionsLoaded() );
|
2021-07-26 13:24:22 +00:00
|
|
|
$this->assertFalse( $title->getRestrictionExpiry( 'create' ),
|
|
|
|
|
"Existing page can't have create protection" );
|
|
|
|
|
$this->assertSame( 'infinity', $title->getRestrictionExpiry( 'edit' ) );
|
2019-11-07 19:06:55 +00:00
|
|
|
$page = $this->getNonexistingTestPage( 'UTest1' );
|
|
|
|
|
$title = $page->getTitle();
|
|
|
|
|
$protectExpiry = wfTimestamp( TS_MW, time() + 10000 );
|
|
|
|
|
$cascade = 0;
|
|
|
|
|
$page->doUpdateRestrictions(
|
|
|
|
|
[ 'create' => 'sysop' ],
|
|
|
|
|
[ 'create' => $protectExpiry ],
|
|
|
|
|
$cascade,
|
|
|
|
|
'test',
|
|
|
|
|
$this->getTestSysop()->getUser()
|
|
|
|
|
);
|
2021-07-26 13:24:22 +00:00
|
|
|
$title->flushRestrictions();
|
2019-11-07 19:06:55 +00:00
|
|
|
$title->loadRestrictions();
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$title->getRestrictionExpiry( 'create' ),
|
|
|
|
|
$protectExpiry
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideRestrictionsRows() {
|
|
|
|
|
yield [ [ (object)[
|
|
|
|
|
'pr_id' => 1,
|
|
|
|
|
'pr_page' => 1,
|
|
|
|
|
'pr_type' => 'edit',
|
|
|
|
|
'pr_level' => 'sysop',
|
|
|
|
|
'pr_cascade' => 0,
|
|
|
|
|
'pr_user' => null,
|
|
|
|
|
'pr_expiry' => 'infinity'
|
|
|
|
|
] ] ];
|
|
|
|
|
yield [ [ (object)[
|
|
|
|
|
'pr_id' => 1,
|
|
|
|
|
'pr_page' => 1,
|
|
|
|
|
'pr_type' => 'edit',
|
|
|
|
|
'pr_level' => 'sysop',
|
|
|
|
|
'pr_cascade' => 0,
|
|
|
|
|
'pr_user' => null,
|
|
|
|
|
'pr_expiry' => 'infinity'
|
|
|
|
|
] ] ];
|
|
|
|
|
yield [ [ (object)[
|
|
|
|
|
'pr_id' => 1,
|
|
|
|
|
'pr_page' => 1,
|
|
|
|
|
'pr_type' => 'move',
|
|
|
|
|
'pr_level' => 'sysop',
|
|
|
|
|
'pr_cascade' => 0,
|
|
|
|
|
'pr_user' => null,
|
|
|
|
|
'pr_expiry' => wfTimestamp( TS_MW, time() + 10000 )
|
|
|
|
|
] ] ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::loadRestrictionsFromRows
|
|
|
|
|
* @dataProvider provideRestrictionsRows
|
|
|
|
|
*/
|
|
|
|
|
public function testloadRestrictionsFromRows( $rows ) {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$title->loadRestrictionsFromRows( $rows );
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$rows[0]->pr_level,
|
|
|
|
|
$title->getRestrictions( $rows[0]->pr_type )[0]
|
|
|
|
|
);
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$rows[0]->pr_expiry,
|
|
|
|
|
$title->getRestrictionExpiry( $rows[0]->pr_type )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-26 13:24:22 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideRestrictionStoreForwarding
|
|
|
|
|
* @covers Title::getFilteredRestrictionTypes
|
|
|
|
|
* @covers Title::getRestrictionTypes
|
|
|
|
|
* @covers Title::getTitleProtection
|
|
|
|
|
* @covers Title::deleteTitleProtection
|
|
|
|
|
* @covers Title::isSemiProtected
|
|
|
|
|
* @covers Title::isProtected
|
|
|
|
|
* @covers Title::isCascadeProtected
|
|
|
|
|
* @covers Title::areCascadeProtectionSourcesLoaded
|
|
|
|
|
* @covers Title::getCascadeProtectionSources
|
|
|
|
|
* @covers Title::areRestrictionsLoaded
|
|
|
|
|
* @covers Title::getRestrictions
|
|
|
|
|
* @covers Title::getAllRestrictions
|
|
|
|
|
* @covers Title::getRestrictionExpiry
|
|
|
|
|
* @covers Title::areRestrictionsCascading
|
|
|
|
|
* @covers Title::loadRestrictionsFromRows
|
|
|
|
|
* @covers Title::loadRestrictions
|
|
|
|
|
* @covers Title::flushRestrictions
|
|
|
|
|
*/
|
|
|
|
|
public function testRestrictionStoreForwarding(
|
|
|
|
|
string $method, array $params, $return, array $options = []
|
|
|
|
|
) {
|
|
|
|
|
$expectedParams = $options['expectedParams'] ?? $params;
|
|
|
|
|
|
|
|
|
|
if ( isset( $options['static'] ) ) {
|
|
|
|
|
$callee = 'Title';
|
|
|
|
|
} else {
|
|
|
|
|
$callee = $this->getExistingTestPage()->getTitle();
|
|
|
|
|
$expectedParams = array_merge( [ $callee ], $expectedParams );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$mockRestrictionStore = $this->createMock( RestrictionStore::class );
|
|
|
|
|
|
|
|
|
|
$expectedMethod = $options['expectedMethod'] ?? $method;
|
|
|
|
|
|
|
|
|
|
// Don't try to forward to a method that doesn't exist!
|
|
|
|
|
$this->assertIsCallable( [ $mockRestrictionStore, $expectedMethod ] );
|
|
|
|
|
|
|
|
|
|
$expectedCall = $mockRestrictionStore->expects( $this->once() )
|
|
|
|
|
->method( $expectedMethod )
|
|
|
|
|
->with( ...$expectedParams );
|
|
|
|
|
if ( !isset( $options['void'] ) ) {
|
|
|
|
|
$expectedCall->willReturn( $return );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$mockRestrictionStore->expects( $this->never() )
|
|
|
|
|
->method( $this->anythingBut( $expectedMethod ) );
|
|
|
|
|
|
|
|
|
|
$this->setService( 'RestrictionStore', $mockRestrictionStore );
|
|
|
|
|
|
|
|
|
|
$options['expectedReturn'] = $options['expectedReturn'] ?? $return;
|
|
|
|
|
|
|
|
|
|
$comparisonMethod = isset( $options['weakCompareReturn'] ) ? 'assertEquals' : 'assertSame';
|
|
|
|
|
|
|
|
|
|
$this->$comparisonMethod( $options['expectedReturn'], [ $callee, $method ]( ...$params ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function provideRestrictionStoreForwarding() {
|
|
|
|
|
$pageIdentity = PageIdentityValue::localIdentity( 144, NS_MAIN, 'Sample' );
|
|
|
|
|
$title = Title::castFromPageIdentity( $pageIdentity );
|
|
|
|
|
return [
|
|
|
|
|
[ 'getFilteredRestrictionTypes', [ true ], [ 'abc' ],
|
|
|
|
|
[ 'static' => true, 'expectedMethod' => 'listAllRestrictionTypes' ] ],
|
|
|
|
|
[ 'getFilteredRestrictionTypes', [ false ], [ 'def' ],
|
|
|
|
|
[ 'static' => true, 'expectedMethod' => 'listAllRestrictionTypes' ] ],
|
|
|
|
|
[ 'getRestrictionTypes', [], [ 'ghi' ],
|
|
|
|
|
[ 'expectedMethod' => 'listApplicableRestrictionTypes' ] ],
|
|
|
|
|
[ 'getTitleProtection', [], [ 'jkl' ], [ 'expectedMethod' => 'getCreateProtection' ] ],
|
|
|
|
|
[ 'getTitleProtection', [], null,
|
|
|
|
|
[ 'expectedMethod' => 'getCreateProtection', 'expectedReturn' => false ] ],
|
|
|
|
|
[ 'deleteTitleProtection', [], null,
|
|
|
|
|
[ 'expectedMethod' => 'deleteCreateProtection', 'void' => true ] ],
|
|
|
|
|
[ 'isSemiProtected', [ 'phlebotomize' ], true ],
|
|
|
|
|
[ 'isSemiProtected', [ 'splecotomize' ], false ],
|
|
|
|
|
[ 'isProtected', [ 'strezotomize' ], true ],
|
|
|
|
|
[ 'isProtected', [ 'chrelotomize' ], false ],
|
|
|
|
|
[ 'isCascadeProtected', [], true ],
|
|
|
|
|
[ 'isCascadeProtected', [], false ],
|
|
|
|
|
[ 'areCascadeProtectionSourcesLoaded', [ true ], true, [ 'expectedParams' => [] ] ],
|
|
|
|
|
[ 'areCascadeProtectionSourcesLoaded', [ true ], false, [ 'expectedParams' => [] ] ],
|
|
|
|
|
[ 'areCascadeProtectionSourcesLoaded', [ false ], true, [ 'expectedParams' => [] ] ],
|
|
|
|
|
[ 'areCascadeProtectionSourcesLoaded', [ false ], false, [ 'expectedParams' => [] ] ],
|
|
|
|
|
[ 'getCascadeProtectionSources', [], [ [ $pageIdentity ], [ 'mno' ] ],
|
|
|
|
|
[ 'expectedReturn' => [ [ $title ], [ 'mno' ] ], 'weakCompareReturn' => true ] ],
|
|
|
|
|
[ 'getCascadeProtectionSources', [], [ [], [] ],
|
2021-09-08 15:11:01 +00:00
|
|
|
[ 'expectedReturn' => [ [], [] ] ] ],
|
2021-07-26 13:24:22 +00:00
|
|
|
[ 'getCascadeProtectionSources', [ true ], [ [ $pageIdentity ], [ 'mno' ] ],
|
|
|
|
|
[ 'expectedParams' => [], 'expectedReturn' => [ [ $title ], [ 'mno' ] ],
|
|
|
|
|
'weakCompareReturn' => true ] ],
|
|
|
|
|
[ 'getCascadeProtectionSources', [ true ], [ [], [] ],
|
2021-09-08 15:11:01 +00:00
|
|
|
[ 'expectedParams' => [], 'expectedReturn' => [ [], [] ] ] ],
|
2021-07-26 13:24:22 +00:00
|
|
|
[ 'getCascadeProtectionSources', [ false ], false,
|
|
|
|
|
[ 'expectedMethod' => 'isCascadeProtected', 'expectedParams' => [],
|
|
|
|
|
'expectedReturn' => [ false, [] ] ] ],
|
|
|
|
|
[ 'getCascadeProtectionSources', [ false ], true,
|
|
|
|
|
[ 'expectedMethod' => 'isCascadeProtected', 'expectedParams' => [],
|
|
|
|
|
'expectedReturn' => [ true, [] ] ] ],
|
|
|
|
|
[ 'areRestrictionsLoaded', [], true ],
|
|
|
|
|
[ 'areRestrictionsLoaded', [], false ],
|
|
|
|
|
[ 'getRestrictions', [ 'stu' ], [ 'vwx' ] ],
|
|
|
|
|
[ 'getAllRestrictions', [], [ 'yza' ] ],
|
|
|
|
|
[ 'getRestrictionExpiry', [ 'bcd' ], 'efg' ],
|
|
|
|
|
[ 'getRestrictionExpiry', [ 'hij' ], null, [ 'expectedReturn' => false ] ],
|
|
|
|
|
[ 'areRestrictionsCascading', [], true ],
|
|
|
|
|
[ 'areRestrictionsCascading', [], false ],
|
|
|
|
|
[ 'loadRestrictionsFromRows', [ [ 'hij' ], 'klm' ], null, [ 'void' => true ] ],
|
|
|
|
|
[ 'loadRestrictions', [ 'nop', 123 ], null,
|
|
|
|
|
[ 'void' => true, 'expectedParams' => [ 123, 'nop' ] ] ],
|
|
|
|
|
[ 'flushRestrictions', [], null, [ 'void' => true ] ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-07 19:06:55 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::getRestrictions
|
|
|
|
|
*/
|
|
|
|
|
public function testGetRestrictions() {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
2021-07-26 13:24:22 +00:00
|
|
|
$rs = MediaWikiServices::getInstance()->getRestrictionStore();
|
|
|
|
|
$wrapper = TestingAccessWrapper::newFromObject( $rs );
|
|
|
|
|
$wrapper->cache = [ CacheKeyHelper::getKeyForPage( $title ) => [
|
|
|
|
|
'restrictions' => [
|
|
|
|
|
'a' => [ 'sysop' ],
|
|
|
|
|
'b' => [ 'sysop' ],
|
|
|
|
|
'c' => [ 'sysop' ]
|
|
|
|
|
],
|
|
|
|
|
] ];
|
2019-11-07 19:06:55 +00:00
|
|
|
$this->assertArrayEquals( [ 'sysop' ], $title->getRestrictions( 'a' ) );
|
|
|
|
|
$this->assertArrayEquals( [], $title->getRestrictions( 'error' ) );
|
|
|
|
|
// TODO: maybe test if loadRestrictionsFromRows() is called?
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getAllRestrictions
|
|
|
|
|
*/
|
|
|
|
|
public function testGetAllRestrictions() {
|
2021-07-26 13:24:22 +00:00
|
|
|
$restrictions = [
|
2019-11-07 19:06:55 +00:00
|
|
|
'a' => [ 'sysop' ],
|
|
|
|
|
'b' => [ 'sysop' ],
|
2021-07-26 13:24:22 +00:00
|
|
|
'c' => [ 'sysop' ],
|
2019-11-07 19:06:55 +00:00
|
|
|
];
|
2021-07-26 13:24:22 +00:00
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$rs = MediaWikiServices::getInstance()->getRestrictionStore();
|
|
|
|
|
$wrapper = TestingAccessWrapper::newFromObject( $rs );
|
|
|
|
|
$wrapper->cache = [ CacheKeyHelper::getKeyForPage( $title ) => [
|
|
|
|
|
'restrictions' => $restrictions
|
|
|
|
|
] ];
|
2019-11-07 19:06:55 +00:00
|
|
|
$this->assertArrayEquals(
|
2021-07-26 13:24:22 +00:00
|
|
|
$restrictions,
|
2019-11-07 19:06:55 +00:00
|
|
|
$title->getAllRestrictions()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getRestrictionExpiry
|
|
|
|
|
*/
|
|
|
|
|
public function testGetRestrictionExpiry() {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
2021-07-26 13:24:22 +00:00
|
|
|
$rs = MediaWikiServices::getInstance()->getRestrictionStore();
|
|
|
|
|
$wrapper = TestingAccessWrapper::newFromObject( $rs );
|
|
|
|
|
$wrapper->cache = [ CacheKeyHelper::getKeyForPage( $title ) => [
|
|
|
|
|
'expiry' => [
|
|
|
|
|
'a' => 'infinity', 'b' => 'infinity', 'c' => 'infinity'
|
|
|
|
|
],
|
|
|
|
|
// XXX This is bogus, restrictions will never be empty when expiry is not
|
|
|
|
|
'restrictions' => [],
|
|
|
|
|
] ];
|
2019-11-07 19:06:55 +00:00
|
|
|
$this->assertSame( 'infinity', $title->getRestrictionExpiry( 'a' ) );
|
|
|
|
|
$this->assertArrayEquals( [], $title->getRestrictions( 'error' ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getTitleProtection
|
|
|
|
|
*/
|
|
|
|
|
public function testGetTitleProtection() {
|
|
|
|
|
$title = $this->getNonexistingTestPage( 'UTest1' )->getTitle();
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertFalse( $title->getTitleProtection() );
|
2019-11-07 19:06:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isSemiProtected
|
|
|
|
|
*/
|
|
|
|
|
public function testIsSemiProtected() {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$this->setMwGlobals( [
|
|
|
|
|
'wgSemiprotectedRestrictionLevels' => [ 'autoconfirmed' ],
|
|
|
|
|
'wgRestrictionLevels' => [ '', 'autoconfirmed', 'sysop' ]
|
|
|
|
|
] );
|
2021-07-26 13:24:22 +00:00
|
|
|
$rs = MediaWikiServices::getInstance()->getRestrictionStore();
|
|
|
|
|
$wrapper = TestingAccessWrapper::newFromObject( $rs );
|
|
|
|
|
$wrapper->cache = [ CacheKeyHelper::getKeyForPage( $title ) => [
|
|
|
|
|
'restrictions' => [ 'edit' => [ 'sysop' ] ],
|
|
|
|
|
] ];
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertFalse( $title->isSemiProtected( 'edit' ) );
|
2021-07-26 13:24:22 +00:00
|
|
|
$wrapper->cache = [ CacheKeyHelper::getKeyForPage( $title ) => [
|
|
|
|
|
'restrictions' => [ 'edit' => [ 'autoconfirmed' ] ],
|
|
|
|
|
] ];
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertTrue( $title->isSemiProtected( 'edit' ) );
|
2019-11-07 19:06:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::deleteTitleProtection
|
|
|
|
|
*/
|
|
|
|
|
public function testDeleteTitleProtection() {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertFalse( $title->getTitleProtection() );
|
2019-11-07 19:06:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isProtected
|
|
|
|
|
*/
|
|
|
|
|
public function testIsProtected() {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$this->setMwGlobals( [
|
|
|
|
|
'wgRestrictionLevels' => [ '', 'autoconfirmed', 'sysop' ],
|
|
|
|
|
'wgRestrictionTypes' => [ 'create', 'edit', 'move', 'upload' ]
|
|
|
|
|
] );
|
2021-07-26 13:24:22 +00:00
|
|
|
$rs = MediaWikiServices::getInstance()->getRestrictionStore();
|
|
|
|
|
$wrapper = TestingAccessWrapper::newFromObject( $rs );
|
|
|
|
|
$wrapper->cache = [ CacheKeyHelper::getKeyForPage( $title ) => [
|
|
|
|
|
'restrictions' => [ 'edit' => [ 'sysop' ] ],
|
|
|
|
|
] ];
|
|
|
|
|
$this->assertTrue( $title->isProtected( 'edit' ) );
|
|
|
|
|
$wrapper->cache = [ CacheKeyHelper::getKeyForPage( $title ) => [
|
|
|
|
|
'restrictions' => [ 'edit' => [ 'test' ] ],
|
|
|
|
|
] ];
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertFalse( $title->isProtected( 'edit' ) );
|
2019-11-07 19:06:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isNamespaceProtected
|
|
|
|
|
*/
|
|
|
|
|
public function testIsNamespaceProtected() {
|
2021-07-27 14:46:35 +00:00
|
|
|
$this->hideDeprecated( 'Title::isNamespaceProtected' );
|
2019-11-07 19:06:55 +00:00
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$this->setMwGlobals( [
|
|
|
|
|
'wgNamespaceProtection' => []
|
|
|
|
|
] );
|
2020-01-09 23:23:19 +00:00
|
|
|
$this->assertFalse(
|
2019-11-07 19:06:55 +00:00
|
|
|
$title->isNamespaceProtected( $this->getTestUser()->getUser() )
|
|
|
|
|
);
|
|
|
|
|
$this->setMwGlobals( [
|
|
|
|
|
'wgNamespaceProtection' => [
|
|
|
|
|
NS_MAIN => [ 'edit-main' ]
|
|
|
|
|
]
|
|
|
|
|
] );
|
2020-01-09 23:23:19 +00:00
|
|
|
$this->assertTrue(
|
2019-11-07 19:06:55 +00:00
|
|
|
$title->isNamespaceProtected( $this->getTestUser()->getUser() )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isCascadeProtected
|
|
|
|
|
*/
|
|
|
|
|
public function testIsCascadeProtected() {
|
|
|
|
|
$page = $this->getExistingTestPage( 'UTest1' );
|
|
|
|
|
$title = $page->getTitle();
|
2021-07-26 13:24:22 +00:00
|
|
|
$rs = MediaWikiServices::getInstance()->getRestrictionStore();
|
|
|
|
|
$wrapper = TestingAccessWrapper::newFromObject( $rs );
|
|
|
|
|
$wrapper->cache = [ CacheKeyHelper::getKeyForPage( $title ) => [
|
|
|
|
|
'has_cascading' => true,
|
|
|
|
|
] ];
|
2020-01-09 23:23:19 +00:00
|
|
|
$this->assertTrue( $title->isCascadeProtected() );
|
2021-07-26 13:24:22 +00:00
|
|
|
$wrapper->cache = [];
|
2020-01-09 23:23:19 +00:00
|
|
|
$this->assertFalse( $title->isCascadeProtected() );
|
2021-07-26 13:24:22 +00:00
|
|
|
$wrapper->cache = [];
|
2019-11-07 19:06:55 +00:00
|
|
|
$cascade = 1;
|
|
|
|
|
$anotherPage = $this->getExistingTestPage( 'UTest2' );
|
2021-06-24 08:42:19 +00:00
|
|
|
$anotherPage->doUserEditContent(
|
|
|
|
|
new WikitextContent( '{{:UTest1}}' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'test'
|
|
|
|
|
);
|
2019-11-07 19:06:55 +00:00
|
|
|
$anotherPage->doUpdateRestrictions(
|
|
|
|
|
[ 'edit' => 'sysop' ],
|
|
|
|
|
[],
|
|
|
|
|
$cascade,
|
|
|
|
|
'test',
|
|
|
|
|
$this->getTestSysop()->getUser()
|
|
|
|
|
);
|
2020-01-09 23:23:19 +00:00
|
|
|
$this->assertTrue( $title->isCascadeProtected() );
|
2019-11-07 19:06:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getCascadeProtectionSources
|
2021-07-26 13:24:22 +00:00
|
|
|
* @group Broken
|
2019-11-07 19:06:55 +00:00
|
|
|
*/
|
|
|
|
|
public function testGetCascadeProtectionSources() {
|
|
|
|
|
$page = $this->getExistingTestPage( 'UTest1' );
|
|
|
|
|
$title = $page->getTitle();
|
|
|
|
|
|
|
|
|
|
$title->mCascadeSources = [];
|
|
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
[ [], [] ],
|
|
|
|
|
$title->getCascadeProtectionSources( true )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$reflection = new ReflectionClass( $title );
|
|
|
|
|
$reflection_property = $reflection->getProperty( 'mHasCascadingRestrictions' );
|
|
|
|
|
$reflection_property->setAccessible( true );
|
|
|
|
|
$reflection_property->setValue( $title, true );
|
|
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
[ true, [] ],
|
|
|
|
|
$title->getCascadeProtectionSources( false )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$title->mCascadeSources = null;
|
|
|
|
|
$reflection_property->setValue( $title, null );
|
|
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
[ false, [] ],
|
|
|
|
|
$title->getCascadeProtectionSources( false )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$title->mCascadeSources = null;
|
|
|
|
|
$reflection_property->setValue( $title, null );
|
|
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
[ [], [] ],
|
|
|
|
|
$title->getCascadeProtectionSources( true )
|
|
|
|
|
);
|
|
|
|
|
|
2020-05-10 00:09:19 +00:00
|
|
|
// TODO: this might partially duplicate testIsCascadeProtected method above
|
2019-11-07 19:06:55 +00:00
|
|
|
|
|
|
|
|
$cascade = 1;
|
|
|
|
|
$anotherPage = $this->getExistingTestPage( 'UTest2' );
|
2021-06-24 08:42:19 +00:00
|
|
|
$anotherPage->doUserEditContent(
|
|
|
|
|
new WikitextContent( '{{:UTest1}}' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'test'
|
|
|
|
|
);
|
2019-11-07 19:06:55 +00:00
|
|
|
$anotherPage->doUpdateRestrictions(
|
|
|
|
|
[ 'edit' => 'sysop' ],
|
|
|
|
|
[],
|
|
|
|
|
$cascade,
|
|
|
|
|
'test',
|
|
|
|
|
$this->getTestSysop()->getUser()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
[ true, [] ],
|
|
|
|
|
$title->getCascadeProtectionSources( false )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$title->mCascadeSources = null;
|
|
|
|
|
$result = $title->getCascadeProtectionSources( true );
|
|
|
|
|
$this->assertArrayEquals(
|
2020-10-03 17:23:00 +00:00
|
|
|
[ 'edit' => [ 'sysop' ] ],
|
|
|
|
|
$result[1]
|
2019-11-07 19:06:55 +00:00
|
|
|
);
|
2021-01-30 12:51:38 +00:00
|
|
|
$this->assertArrayHasKey(
|
|
|
|
|
$anotherPage->getTitle()->getArticleID(), $result[0]
|
2019-11-07 19:06:55 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 17:39:53 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::getCdnUrls
|
|
|
|
|
*/
|
|
|
|
|
public function testGetCdnUrls() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
[
|
|
|
|
|
'https://example.org/wiki/Example',
|
|
|
|
|
'https://example.org/w/index.php?title=Example&action=history',
|
|
|
|
|
],
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Example' )->getCdnUrls(),
|
|
|
|
|
'article'
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-03-22 22:42:20 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers \MediaWiki\Page\PageStore::getSubpages
|
|
|
|
|
*/
|
|
|
|
|
public function testGetSubpages() {
|
|
|
|
|
$existingPage = $this->getExistingTestPage();
|
|
|
|
|
$title = $existingPage->getTitle();
|
|
|
|
|
|
|
|
|
|
$this->setMwGlobals( 'wgNamespacesWithSubpages', [ $title->getNamespace() => true ] );
|
|
|
|
|
|
|
|
|
|
$this->getExistingTestPage( $title->getSubpage( 'A' ) );
|
|
|
|
|
$this->getExistingTestPage( $title->getSubpage( 'B' ) );
|
|
|
|
|
|
|
|
|
|
$notQuiteSubpageTitle = $title->getPrefixedDBkey() . 'X'; // no slash!
|
|
|
|
|
$this->getExistingTestPage( $notQuiteSubpageTitle );
|
|
|
|
|
|
|
|
|
|
$subpages = iterator_to_array( $title->getSubpages() );
|
|
|
|
|
|
|
|
|
|
$this->assertCount( 2, $subpages );
|
|
|
|
|
$this->assertCount( 1, $title->getSubpages( 1 ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers \MediaWiki\Page\PageStore::getSubpages
|
|
|
|
|
*/
|
|
|
|
|
public function testGetSubpages_disabled() {
|
|
|
|
|
$this->setMwGlobals( 'wgNamespacesWithSubpages', [] );
|
|
|
|
|
|
|
|
|
|
$existingPage = $this->getExistingTestPage();
|
|
|
|
|
$title = $existingPage->getTitle();
|
|
|
|
|
|
|
|
|
|
$this->getExistingTestPage( $title->getSubpage( 'A' ) );
|
|
|
|
|
$this->getExistingTestPage( $title->getSubpage( 'B' ) );
|
|
|
|
|
|
|
|
|
|
$this->assertEmpty( $title->getSubpages() );
|
|
|
|
|
}
|
2021-09-02 12:12:25 +00:00
|
|
|
|
|
|
|
|
public function provideNamespaces() {
|
|
|
|
|
// For ->isExternal() code path, construct a title with interwiki
|
|
|
|
|
$title = Title::makeTitle( NS_FILE, 'test', 'frag', 'meta' );
|
|
|
|
|
return [
|
|
|
|
|
[ NS_MAIN, '' ],
|
|
|
|
|
[ NS_FILE, 'File' ],
|
|
|
|
|
[ NS_MEDIA, 'Media' ],
|
|
|
|
|
[ NS_TALK, 'Talk' ],
|
|
|
|
|
[ NS_CATEGORY, 'Category' ],
|
|
|
|
|
[ $title, 'File' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2021-09-07 18:45:21 +00:00
|
|
|
* @covers Title::getNsText
|
|
|
|
|
* @dataProvider provideNamespaces
|
2021-09-02 12:12:25 +00:00
|
|
|
*/
|
2021-09-07 18:45:21 +00:00
|
|
|
public function testGetNsText( $namespace, $expected ) {
|
|
|
|
|
if ( $namespace instanceof Title ) {
|
|
|
|
|
$this->assertSame( $expected, $namespace->getNsText() );
|
|
|
|
|
} else {
|
|
|
|
|
$actual = Title::makeTitle( $namespace, 'Title_test' )->getNsText();
|
|
|
|
|
$this->assertSame( $expected, $actual );
|
|
|
|
|
}
|
2021-09-02 12:12:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function providePagesWithSubjects() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_USER_TALK, 'User_test' ), 'User' ],
|
|
|
|
|
[ Title::makeTitle( NS_PROJECT, 'Test' ), 'Project' ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), '' ],
|
|
|
|
|
[ Title::makeTitle( NS_CATEGORY, 'Cat_test' ), 'Category' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2021-09-07 18:45:21 +00:00
|
|
|
* @covers Title::getSubjectNsText
|
|
|
|
|
* @dataProvider providePagesWithSubjects
|
2021-09-02 12:12:25 +00:00
|
|
|
*/
|
2021-09-07 18:45:21 +00:00
|
|
|
public function testGetSubjectNsText( Title $title, $expected ) {
|
|
|
|
|
$actual = $title->getSubjectNsText();
|
2021-09-02 12:12:25 +00:00
|
|
|
$this->assertSame( $expected, $actual );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideTitlesWithTalkPages() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_HELP, 'Help page' ), 'Help_talk' ],
|
|
|
|
|
[ Title::newMainPage(), 'Talk' ],
|
|
|
|
|
[ Title::makeTitle( NS_PROJECT, 'Test' ), 'Project_talk' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::getTalkNsText
|
|
|
|
|
* @dataProvider provideTitlesWithTalkPages
|
|
|
|
|
*/
|
|
|
|
|
public function testGetTalkNsText( Title $title, $expected ) {
|
|
|
|
|
$actual = $title->getTalkNsText();
|
|
|
|
|
$this->assertSame( $expected, $actual );
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-02 12:12:25 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::isSpecial
|
|
|
|
|
*/
|
|
|
|
|
public function testIsSpecial() {
|
|
|
|
|
$title = Title::makeTitle( NS_SPECIAL, 'Recentchanges/Subpage' );
|
|
|
|
|
$this->assertTrue( $title->isSpecial( 'Recentchanges' ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isSpecial
|
|
|
|
|
*/
|
|
|
|
|
public function testIsNotSpecial() {
|
|
|
|
|
$title = Title::newFromText( 'NotSpecialPage/Subpage', NS_SPECIAL );
|
|
|
|
|
$this->assertFalse( $title->isSpecial( 'NotSpecialPage' ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isTalkPage
|
|
|
|
|
*/
|
|
|
|
|
public function testIsTalkPage() {
|
|
|
|
|
$title = Title::newFromText( 'Talk page', NS_TALK );
|
|
|
|
|
$this->assertTrue( $title->isTalkPage() );
|
|
|
|
|
|
|
|
|
|
$titleNotInTalkNs = Title::makeTitle( NS_HELP, 'Test' );
|
|
|
|
|
$this->assertFalse( $titleNotInTalkNs->isTalkPage() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getBacklinkCache
|
|
|
|
|
*/
|
|
|
|
|
public function testGetBacklinkCache() {
|
2021-09-08 22:07:01 +00:00
|
|
|
$blcFactory = $this->getServiceContainer()->getBacklinkCacheFactory();
|
|
|
|
|
$backlinkCache = $blcFactory->getBacklinkCache( Title::makeTitle( NS_FILE, 'Test' ) );
|
|
|
|
|
$this->assertInstanceOf( BacklinkCache::class, $backlinkCache );
|
2021-09-02 12:12:25 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
public function provideNsWithSubpagesSupport() {
|
|
|
|
|
return [
|
|
|
|
|
[ NS_HELP, 'Mainhelp', 'Mainhelp/Subhelp' ],
|
|
|
|
|
[ NS_USER, 'Mainuser', 'Mainuser/Subuser' ],
|
|
|
|
|
[ NS_TALK, 'Maintalk', 'Maintalk/Subtalk' ],
|
|
|
|
|
[ NS_PROJECT, 'Mainproject', 'Mainproject/Subproject' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-02 12:12:25 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::isSubpage
|
|
|
|
|
* @covers Title::isSubpageOf
|
|
|
|
|
* @dataProvider provideNsWithSubpagesSupport
|
|
|
|
|
*/
|
|
|
|
|
public function testIsSubpageOfWithNamespacesSubpages( $namespace, $pageName, $subpageName ) {
|
|
|
|
|
$page = Title::makeTitle( $namespace, $pageName, '', 'meta' );
|
|
|
|
|
$subPage = Title::makeTitle( $namespace, $subpageName, '', 'meta' );
|
|
|
|
|
|
|
|
|
|
$this->assertTrue( $subPage->isSubpageOf( $page ) );
|
|
|
|
|
$this->assertTrue( $subPage->isSubpage() );
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
public function provideNsWithNoSubpages() {
|
2021-09-02 12:12:25 +00:00
|
|
|
return [
|
2021-09-07 18:45:21 +00:00
|
|
|
[ NS_CATEGORY, 'Maincat', 'Maincat/Subcat' ],
|
|
|
|
|
[ NS_MAIN, 'Mainpage', 'Mainpage/Subpage' ]
|
2021-09-02 12:12:25 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isSubpage
|
|
|
|
|
* @covers Title::isSubpageOf
|
|
|
|
|
* @dataProvider provideNsWithNoSubpages
|
|
|
|
|
*/
|
|
|
|
|
public function testIsSubpageOfWithoutNamespacesSubpages( $namespace, $pageName, $subpageName ) {
|
|
|
|
|
$page = Title::makeTitle( $namespace, $pageName, '', 'meta' );
|
|
|
|
|
$subPage = Title::makeTitle( $namespace, $subpageName, '', 'meta' );
|
|
|
|
|
|
|
|
|
|
$this->assertFalse( $page->isSubpageOf( $page ) );
|
|
|
|
|
$this->assertFalse( $subPage->isSubpage() );
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
public function provideTitleEditURLs() {
|
2021-09-02 12:12:25 +00:00
|
|
|
return [
|
2021-09-07 18:45:21 +00:00
|
|
|
[ Title::makeTitle( NS_MAIN, 'Title' ), '/w/index.php?title=Title&action=edit' ],
|
|
|
|
|
[ Title::makeTitle( NS_HELP, 'Test', '', 'mw' ), '' ],
|
|
|
|
|
[ Title::makeTitle( NS_HELP, 'Test' ), '/w/index.php?title=Help:Test&action=edit' ],
|
2021-09-02 12:12:25 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getEditURL
|
|
|
|
|
* @dataProvider provideTitleEditURLs
|
|
|
|
|
*/
|
|
|
|
|
public function testGetEditURL( Title $title, $expected ) {
|
|
|
|
|
$actual = $title->getEditURL();
|
|
|
|
|
$this->assertSame( $expected, $actual );
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-07 18:45:21 +00:00
|
|
|
public function provideTitleEditURLsWithActionPaths() {
|
2021-09-02 12:12:25 +00:00
|
|
|
return [
|
2021-09-07 18:45:21 +00:00
|
|
|
[ Title::newFromText( 'Title', NS_MAIN ), '/wiki/edit/Title' ],
|
2021-09-02 12:12:25 +00:00
|
|
|
[ Title::makeTitle( NS_HELP, 'Test', '', 'mw' ), '' ],
|
2021-09-07 18:45:21 +00:00
|
|
|
[ Title::newFromText( 'Test', NS_HELP ), '/wiki/edit/Help:Test' ],
|
2021-09-02 12:12:25 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getEditURL
|
|
|
|
|
* @dataProvider provideTitleEditURLsWithActionPaths
|
|
|
|
|
*/
|
|
|
|
|
public function testGetEditUrlWithActionPaths( Title $title, $expected ) {
|
|
|
|
|
$this->setMwGlobals( 'wgActionPaths', [ 'edit' => '/wiki/edit/$1' ] );
|
|
|
|
|
$actual = $title->getEditURL();
|
|
|
|
|
$this->assertSame( $expected, $actual );
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-03 13:10:28 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::isMainPage
|
|
|
|
|
* @covers Title::equals
|
|
|
|
|
*/
|
|
|
|
|
public function testIsMainPage() {
|
|
|
|
|
$this->assertTrue( Title::newMainPage()->isMainPage() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isMainPage
|
|
|
|
|
* @covers Title::equals
|
|
|
|
|
* @dataProvider provideMainPageTitles
|
|
|
|
|
*/
|
|
|
|
|
public function testIsNotMainPage( Title $title, $expected ) {
|
|
|
|
|
$this->assertSame( $title->isMainPage(), $expected );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideMainPageTitles() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_CATEGORY, 'mw:Category' ), false ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getPrefixedURL
|
|
|
|
|
* @covers Title::prefix
|
|
|
|
|
* @dataProvider provideDataForTestGetPrefixedURL
|
|
|
|
|
*/
|
|
|
|
|
public function testGetPrefixedURL( Title $title, $expected ) {
|
|
|
|
|
$actual = $title->getPrefixedURL();
|
|
|
|
|
|
|
|
|
|
$this->assertSame( $expected, $actual );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideDataForTestGetPrefixedURL() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_FILE, 'Title' ), 'File:Title' ],
|
|
|
|
|
[ Title::makeTitle( NS_MEDIA, 'Title' ), 'Media:Title' ],
|
|
|
|
|
[ Title::makeTitle( NS_CATEGORY, 'Title' ), 'Category:Title' ],
|
|
|
|
|
[ Title::makeTitle( NS_FILE, 'Title with spaces' ), 'File:Title_with_spaces' ],
|
|
|
|
|
[
|
|
|
|
|
Title::makeTitle( NS_FILE, 'Title with spaces', '', 'mw' ),
|
|
|
|
|
'mw:File:Title_with_spaces'
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::__toString
|
|
|
|
|
*/
|
|
|
|
|
public function testToString() {
|
|
|
|
|
$title = Title::makeTitle( NS_USER, 'User test' );
|
|
|
|
|
|
|
|
|
|
$this->assertSame( 'User:User test', (string)$title );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getFullText
|
|
|
|
|
* @dataProvider provideDataForTestGetFullText
|
|
|
|
|
*/
|
|
|
|
|
public function testGetFullText( Title $title, $expected ) {
|
|
|
|
|
$actual = $title->getFullText();
|
|
|
|
|
|
|
|
|
|
$this->assertSame( $expected, $actual );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideDataForTestGetFullText() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_TALK, 'Test' ), 'Talk:Test' ],
|
|
|
|
|
[ Title::makeTitle( NS_HELP, 'Test', 'frag' ), 'Help:Test#frag' ],
|
|
|
|
|
[ Title::makeTitle( NS_TALK, 'Test', 'frag', 'phab' ), 'phab:Talk:Test#frag' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
2021-09-07 18:45:21 +00:00
|
|
|
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|