2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
2019-04-03 08:47:57 +00:00
|
|
|
use MediaWiki\Linker\LinkTarget;
|
2018-06-11 06:55:11 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2020-12-03 08:52:55 +00:00
|
|
|
use MediaWiki\Page\PageIdentity;
|
2020-09-25 14:13:54 +00:00
|
|
|
use MediaWiki\Page\PageIdentityValue;
|
2021-03-26 22:41:06 +00:00
|
|
|
use MediaWiki\Page\PageReference;
|
|
|
|
|
use MediaWiki\Page\PageReferenceValue;
|
2021-05-05 00:03:26 +00:00
|
|
|
use MediaWiki\Tests\Unit\DummyServicesTrait;
|
2020-09-25 14:13:54 +00:00
|
|
|
use MediaWiki\User\UserIdentityValue;
|
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;
|
|
|
|
|
|
2019-10-20 18:11:08 +00:00
|
|
|
protected function setUp() : void {
|
2012-10-08 10:56:20 +00:00
|
|
|
parent::setUp();
|
|
|
|
|
|
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' );
|
|
|
|
|
$this->setContentLang( '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 ],
|
|
|
|
|
] );
|
|
|
|
|
$this->setService( 'InterwikiLookup', $interwikiLookup );
|
2012-10-08 10:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
2019-11-07 19:06:55 +00:00
|
|
|
protected function tearDown() : void {
|
|
|
|
|
parent::tearDown();
|
|
|
|
|
// delete dummy pages
|
|
|
|
|
$this->getNonexistingTestPage( 'UTest1' );
|
|
|
|
|
$this->getNonexistingTestPage( 'UTest2' );
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2014-08-28 18:38:18 +00:00
|
|
|
public static function provideSpecialNamesWithAndWithoutParameter() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'Special:Version', null ],
|
|
|
|
|
[ 'Special:Version/', '' ],
|
|
|
|
|
[ 'Special:Version/param', 'param' ],
|
|
|
|
|
];
|
2011-09-22 21:35:24 +00:00
|
|
|
}
|
2013-02-14 11:36:35 +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
|
|
|
|
2012-06-02 18:07:46 +00:00
|
|
|
/**
|
2013-10-21 21:09:13 +00:00
|
|
|
* @dataProvider provideGetPageViewLanguage
|
|
|
|
|
* @covers Title::getPageViewLanguage
|
2012-06-02 18:07:46 +00:00
|
|
|
*/
|
2014-04-24 12:50:36 +00:00
|
|
|
public function testGetPageViewLanguage( $expected, $titleText, $contLang,
|
|
|
|
|
$lang, $variant, $msg = ''
|
|
|
|
|
) {
|
2012-10-08 10:56:20 +00:00
|
|
|
// Setup environnement for this test
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->setMwGlobals( [
|
2014-10-16 17:44:39 +00:00
|
|
|
'wgDefaultLanguageVariant' => $variant,
|
|
|
|
|
'wgAllowUserJs' => true,
|
2016-02-17 09:09:32 +00:00
|
|
|
] );
|
2016-03-09 16:47:58 +00:00
|
|
|
$this->setUserLang( $lang );
|
|
|
|
|
$this->setContentLang( $contLang );
|
2012-06-02 18:07:46 +00:00
|
|
|
|
|
|
|
|
$title = Title::newFromText( $titleText );
|
2018-01-13 00:02:09 +00:00
|
|
|
$this->assertInstanceOf( Title::class, $title,
|
2012-06-02 18:07:46 +00:00
|
|
|
"Test must be passed a valid title text, you gave '$titleText'"
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals( $expected,
|
|
|
|
|
$title->getPageViewLanguage()->getCode(),
|
|
|
|
|
$msg
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideBaseTitleCases
|
2013-10-21 21:09:13 +00:00
|
|
|
* @covers Title::getBaseText
|
2012-08-30 20:04:42 +00:00
|
|
|
*/
|
2020-12-23 10:03:34 +00:00
|
|
|
public function testGetBaseText( $title, $expected ) {
|
2012-08-30 20:04:42 +00:00
|
|
|
$title = Title::newFromText( $title );
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertSame( $expected, $title->getBaseText() );
|
2012-08-30 20:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
2019-06-14 09:01:22 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideBaseTitleCases
|
|
|
|
|
* @covers Title::getBaseTitle
|
|
|
|
|
*/
|
2020-12-23 10:03:34 +00:00
|
|
|
public function testGetBaseTitle( $title, $expected ) {
|
2019-06-14 09:01:22 +00:00
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$base = $title->getBaseTitle();
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertTrue( $base->isValid() );
|
2019-06-14 09:01:22 +00:00
|
|
|
$this->assertTrue(
|
2020-12-23 10:03:34 +00:00
|
|
|
$base->equals( Title::makeTitleSafe( $title->getNamespace(), $expected ) )
|
2019-06-14 09:01:22 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-22 02:12:37 +00:00
|
|
|
public static function provideBaseTitleCases() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
2020-12-23 10:03:34 +00:00
|
|
|
# Title, expected base
|
2020-06-12 10:22:17 +00:00
|
|
|
[ 'User:John_Doe', 'John Doe' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'User:John_Doe/subOne/subTwo', 'John Doe/subOne' ],
|
2019-06-14 09:01:22 +00:00
|
|
|
[ 'User:Foo / Bar / Baz', 'Foo / Bar ' ],
|
2020-06-12 10:22:17 +00:00
|
|
|
[ 'User:Foo/', 'Foo' ],
|
|
|
|
|
[ 'User:Foo/Bar/', 'Foo/Bar' ],
|
|
|
|
|
[ 'User:/', '/' ],
|
|
|
|
|
[ 'User://', '/' ],
|
|
|
|
|
[ 'User:/oops/', '/oops' ],
|
2020-07-28 10:32:29 +00:00
|
|
|
[ 'User:/indeed', '/indeed' ],
|
|
|
|
|
[ 'User://indeed', '/' ],
|
2020-06-12 10:22:17 +00:00
|
|
|
[ 'User:/Ramba/Zamba/Mamba/', '/Ramba/Zamba/Mamba' ],
|
|
|
|
|
[ 'User://x//y//z//', '//x//y//z/' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2012-08-30 20:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideRootTitleCases
|
2013-10-21 21:09:13 +00:00
|
|
|
* @covers Title::getRootText
|
2012-08-30 20:04:42 +00:00
|
|
|
*/
|
2020-12-23 10:03:34 +00:00
|
|
|
public function testGetRootText( $title, $expected ) {
|
2012-08-30 20:04:42 +00:00
|
|
|
$title = Title::newFromText( $title );
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertEquals( $expected, $title->getRootText() );
|
2012-08-30 20:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
2019-06-14 09:01:22 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideRootTitleCases
|
|
|
|
|
* @covers Title::getRootTitle
|
|
|
|
|
*/
|
2020-12-23 10:03:34 +00:00
|
|
|
public function testGetRootTitle( $title, $expected ) {
|
2019-06-14 09:01:22 +00:00
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
$root = $title->getRootTitle();
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertTrue( $root->isValid() );
|
2019-06-14 09:01:22 +00:00
|
|
|
$this->assertTrue(
|
2020-12-23 10:03:34 +00:00
|
|
|
$root->equals( Title::makeTitleSafe( $title->getNamespace(), $expected ) )
|
2019-06-14 09:01:22 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
public static function provideRootTitleCases() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
2020-12-23 10:03:34 +00:00
|
|
|
# Title, expected base
|
2020-06-12 10:22:17 +00:00
|
|
|
[ 'User:John_Doe', 'John Doe' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'User:John_Doe/subOne/subTwo', 'John Doe' ],
|
2019-06-14 09:01:22 +00:00
|
|
|
[ 'User:Foo / Bar / Baz', 'Foo ' ],
|
2020-06-12 10:22:17 +00:00
|
|
|
[ 'User:Foo/', 'Foo' ],
|
|
|
|
|
[ 'User:Foo/Bar/', 'Foo' ],
|
|
|
|
|
[ 'User:/', '/' ],
|
|
|
|
|
[ 'User://', '/' ],
|
|
|
|
|
[ 'User:/oops/', '/oops' ],
|
|
|
|
|
[ 'User:/Ramba/Zamba/Mamba/', '/Ramba' ],
|
|
|
|
|
[ 'User://x//y//z//', '//x' ],
|
|
|
|
|
[ 'Talk:////', '///' ],
|
|
|
|
|
[ 'Template:////', '///' ],
|
2019-07-13 22:27:43 +00:00
|
|
|
[ 'Template:Foo////', 'Foo' ],
|
|
|
|
|
[ 'Template:Foo////Bar', 'Foo' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2012-08-30 20:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @todo Handle $wgNamespacesWithSubpages cases
|
|
|
|
|
* @dataProvider provideSubpageTitleCases
|
2013-10-21 21:09:13 +00:00
|
|
|
* @covers Title::getSubpageText
|
2012-08-30 20:04:42 +00:00
|
|
|
*/
|
2020-12-23 10:03:34 +00:00
|
|
|
public function testGetSubpageText( $title, $expected ) {
|
2012-08-30 20:04:42 +00:00
|
|
|
$title = Title::newFromText( $title );
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertEquals( $expected, $title->getSubpageText() );
|
2012-08-30 20:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
2013-03-22 02:12:37 +00:00
|
|
|
public static function provideSubpageTitleCases() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
2020-12-23 10:03:34 +00:00
|
|
|
# Title, expected base
|
2020-07-01 22:08:51 +00:00
|
|
|
[ 'User:John_Doe', 'John Doe' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'User:John_Doe/subOne/subTwo', 'subTwo' ],
|
|
|
|
|
[ 'User:John_Doe/subOne', 'subOne' ],
|
2020-07-01 22:08:51 +00:00
|
|
|
[ 'User:/', '/' ],
|
2020-06-12 10:22:17 +00:00
|
|
|
[ 'User://', '' ],
|
|
|
|
|
[ 'User:/oops/', '' ],
|
2020-07-28 10:32:29 +00:00
|
|
|
[ 'User:/indeed', '/indeed' ],
|
|
|
|
|
[ 'User://indeed', 'indeed' ],
|
2020-06-12 10:22:17 +00:00
|
|
|
[ 'User:/Ramba/Zamba/Mamba/', '' ],
|
|
|
|
|
[ 'User://x//y//z//', '' ],
|
2020-07-01 22:08:51 +00:00
|
|
|
[ 'Template:Foo', 'Foo' ]
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2012-08-30 20:04:42 +00:00
|
|
|
}
|
2014-04-06 13:18:07 +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' );
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-03 08:52:55 +00:00
|
|
|
public function provideCastFromPageIdentity() {
|
|
|
|
|
yield [ null ];
|
|
|
|
|
|
|
|
|
|
$fake = $this->createMock( PageIdentity::class );
|
|
|
|
|
$fake->method( 'getId' )->willReturn( 7 );
|
|
|
|
|
$fake->method( 'getNamespace' )->willReturn( NS_MAIN );
|
|
|
|
|
$fake->method( 'getDBkey' )->willReturn( 'Test' );
|
|
|
|
|
|
|
|
|
|
yield [ $fake ];
|
|
|
|
|
|
|
|
|
|
$fake = $this->createMock( Title::class );
|
|
|
|
|
$fake->method( 'getId' )->willReturn( 7 );
|
|
|
|
|
$fake->method( 'getNamespace' )->willReturn( NS_MAIN );
|
|
|
|
|
$fake->method( 'getDBkey' )->willReturn( 'Test' );
|
|
|
|
|
|
|
|
|
|
yield [ $fake ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::castFromPageIdentity
|
|
|
|
|
* @dataProvider provideCastFromPageIdentity
|
|
|
|
|
*/
|
|
|
|
|
public function testCastFromPageIdentity( ?PageIdentity $value ) {
|
|
|
|
|
$title = Title::castFromPageIdentity( $value );
|
|
|
|
|
|
|
|
|
|
if ( $value === null ) {
|
|
|
|
|
$this->assertNull( $title );
|
|
|
|
|
} elseif ( $value instanceof Title ) {
|
|
|
|
|
$this->assertSame( $value, $title );
|
|
|
|
|
} else {
|
|
|
|
|
$this->assertSame( $value->getId(), $title->getArticleID() );
|
|
|
|
|
$this->assertSame( $value->getNamespace(), $title->getNamespace() );
|
|
|
|
|
$this->assertSame( $value->getDBkey(), $title->getDBkey() );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-26 22:41:06 +00:00
|
|
|
public function provideCastFromPageReference() {
|
|
|
|
|
yield [ new PageReferenceValue( NS_MAIN, 'Test', PageReference::LOCAL ) ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::castFromPageReference
|
|
|
|
|
* @dataProvider provideCastFromPageIdentity
|
|
|
|
|
* @dataProvider provideCastFromPageReference
|
|
|
|
|
*/
|
|
|
|
|
public function testCastFromPageReference( ?PageReference $value ) {
|
|
|
|
|
$title = Title::castFromPageReference( $value );
|
|
|
|
|
|
|
|
|
|
if ( $value === null ) {
|
|
|
|
|
$this->assertNull( $title );
|
|
|
|
|
} elseif ( $value instanceof Title ) {
|
|
|
|
|
$this->assertSame( $value, $title );
|
|
|
|
|
} else {
|
|
|
|
|
$this->assertSame( $value->getNamespace(), $title->getNamespace() );
|
|
|
|
|
$this->assertSame( $value->getDBkey(), $title->getDBkey() );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-18 01:28:26 +00:00
|
|
|
public static function provideGetTitleValue() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'Foo' ],
|
|
|
|
|
[ 'Foo#bar' ],
|
|
|
|
|
[ 'User:Hansi_Maier' ],
|
|
|
|
|
];
|
2014-04-06 13:18:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-12-25 07:28:03 +00:00
|
|
|
* @covers Title::getTitleValue
|
2014-04-06 13:18:07 +00:00
|
|
|
* @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() );
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-18 01:28:26 +00:00
|
|
|
public static function provideGetFragment() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
|
|
|
|
[ 'Foo', '' ],
|
|
|
|
|
[ 'Foo#bar', 'bar' ],
|
|
|
|
|
[ 'Foo#bär', 'bär' ],
|
2014-04-06 13:18:07 +00:00
|
|
|
|
|
|
|
|
// Inner whitespace is normalized
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'Foo#bar_bar', 'bar bar' ],
|
|
|
|
|
[ 'Foo#bar bar', 'bar bar' ],
|
|
|
|
|
[ 'Foo#bar bar', 'bar bar' ],
|
2014-04-06 13:18:07 +00:00
|
|
|
|
|
|
|
|
// Leading whitespace is kept, trailing whitespace is trimmed.
|
|
|
|
|
// XXX: Is this really want we want?
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'Foo#_bar_bar_', ' bar bar' ],
|
|
|
|
|
[ 'Foo# bar bar ', ' bar bar' ],
|
|
|
|
|
];
|
2014-04-06 13:18:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-12-25 07:28:03 +00:00
|
|
|
* @covers Title::getFragment
|
2014-04-06 13:18:07 +00:00
|
|
|
* @dataProvider provideGetFragment
|
|
|
|
|
*
|
2014-04-17 18:43:42 +00:00
|
|
|
* @param string $full
|
|
|
|
|
* @param string $fragment
|
2014-04-06 13:18:07 +00:00
|
|
|
*/
|
|
|
|
|
public function testGetFragment( $full, $fragment ) {
|
|
|
|
|
$title = Title::newFromText( $full );
|
|
|
|
|
$this->assertEquals( $fragment, $title->getFragment() );
|
|
|
|
|
}
|
2014-06-19 18:36:56 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isAlwaysKnown
|
|
|
|
|
* @dataProvider provideIsAlwaysKnown
|
|
|
|
|
* @param string $page
|
|
|
|
|
* @param bool $isKnown
|
|
|
|
|
*/
|
|
|
|
|
public function testIsAlwaysKnown( $page, $isKnown ) {
|
|
|
|
|
$title = Title::newFromText( $page );
|
|
|
|
|
$this->assertEquals( $isKnown, $title->isAlwaysKnown() );
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
|
* @covers Title::isValid
|
|
|
|
|
* @dataProvider provideIsValid
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param bool $isValid
|
|
|
|
|
*/
|
|
|
|
|
public function testIsValid( Title $title, $isValid ) {
|
2019-08-29 17:09:05 +00:00
|
|
|
$this->assertEquals( $isValid, $title->isValid(), $title->getFullText() );
|
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
|
|
|
/**
|
|
|
|
|
* @covers Title::isValidRedirectTarget
|
|
|
|
|
* @dataProvider provideIsValidRedirectTarget
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param bool $isValid
|
|
|
|
|
*/
|
|
|
|
|
public function testIsValidRedirectTarget( Title $title, $isValid ) {
|
2021-05-05 00:03:26 +00:00
|
|
|
// InterwikiLookup is configured in setUp()
|
2021-03-24 21:29:49 +00:00
|
|
|
$this->assertEquals( $isValid, $title->isValidRedirectTarget(), $title->getFullText() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 ],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
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() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 ],
|
2017-06-12 19:11:42 +00:00
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), true ],
|
2019-06-14 09:01:22 +00:00
|
|
|
[ 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 ],
|
2017-06-12 19:11:42 +00:00
|
|
|
[ Title::makeTitle( -33, 'Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( 77663399, 'Test' ), false ],
|
2019-08-29 17:09:05 +00:00
|
|
|
|
|
|
|
|
// Valid but can't exist
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, '', 'test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_SPECIAL, 'Test' ), false ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test', '', 'acme' ), false ],
|
2017-06-12 19:11:42 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-21 19:54:51 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Title::isAlwaysKnown
|
|
|
|
|
*/
|
|
|
|
|
public function testIsAlwaysKnownOnInterwiki() {
|
|
|
|
|
$title = Title::makeTitle( NS_MAIN, 'Interwiki link', '', 'externalwiki' );
|
|
|
|
|
$this->assertTrue( $title->isAlwaysKnown() );
|
|
|
|
|
}
|
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() );
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
|
* @dataProvider provideIsMovable
|
|
|
|
|
* @covers Title::isMovable
|
|
|
|
|
*
|
|
|
|
|
* @param string|Title $title
|
|
|
|
|
* @param bool $expected
|
|
|
|
|
* @param callable|null $hookCallback For TitleIsMovable
|
|
|
|
|
*/
|
|
|
|
|
public function testIsMovable( $title, $expected, $hookCallback = null ) {
|
|
|
|
|
if ( $hookCallback ) {
|
|
|
|
|
$this->setTemporaryHook( 'TitleIsMovable', $hookCallback );
|
|
|
|
|
}
|
|
|
|
|
if ( is_string( $title ) ) {
|
|
|
|
|
$title = Title::newFromText( $title );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->assertSame( $expected, $title->isMovable() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
public function provideCreateFragmentTitle() {
|
|
|
|
|
return [
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test' ), 'foo' ],
|
|
|
|
|
[ Title::makeTitle( NS_TALK, 'Test', 'foo' ), '' ],
|
|
|
|
|
[ Title::makeTitle( NS_CATEGORY, 'Test', 'foo' ), 'bar' ],
|
|
|
|
|
[ Title::makeTitle( NS_MAIN, 'Test1', '', 'interwiki' ), 'baz' ]
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::createFragmentTarget
|
|
|
|
|
* @dataProvider provideCreateFragmentTitle
|
|
|
|
|
*/
|
|
|
|
|
public function testCreateFragmentTitle( Title $title, $fragment ) {
|
|
|
|
|
$fragmentTitle = $title->createFragmentTarget( $fragment );
|
|
|
|
|
|
|
|
|
|
$this->assertEquals( $title->getNamespace(), $fragmentTitle->getNamespace() );
|
|
|
|
|
$this->assertEquals( $title->getText(), $fragmentTitle->getText() );
|
|
|
|
|
$this->assertEquals( $title->getInterwiki(), $fragmentTitle->getInterwiki() );
|
|
|
|
|
$this->assertEquals( $fragment, $fragmentTitle->getFragment() );
|
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
/**
|
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() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideGetFragmentForURL() {
|
|
|
|
|
return [
|
|
|
|
|
[ 'Foo', '' ],
|
|
|
|
|
[ 'Foo#ümlåût', '#ümlåût' ],
|
|
|
|
|
[ 'de:Foo#Bå®', '#Bå®' ],
|
|
|
|
|
[ 'zz:Foo#тест', '#.D1.82.D0.B5.D1.81.D1.82' ],
|
|
|
|
|
];
|
|
|
|
|
}
|
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() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideIsRawHtmlMessage() {
|
|
|
|
|
return [
|
|
|
|
|
[ '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 ],
|
|
|
|
|
];
|
|
|
|
|
}
|
2019-03-16 19:40:13 +00:00
|
|
|
|
|
|
|
|
public function provideEquals() {
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(newFromText) same text' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::newFromText( 'Main Page' ),
|
|
|
|
|
Title::newFromText( 'Main Page' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(newFromText) different text' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::newFromText( 'Main Page' ),
|
|
|
|
|
Title::newFromText( 'Not The Main Page' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(newFromText) different namespace, same text' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::newFromText( 'Main Page' ),
|
|
|
|
|
Title::newFromText( 'Project:Main Page' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(newFromText) namespace alias' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::newFromText( 'File:Example.png' ),
|
|
|
|
|
Title::newFromText( 'Image:Example.png' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(newFromText) same special page' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::newFromText( 'Special:Version' ),
|
|
|
|
|
Title::newFromText( 'Special:Version' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(newFromText) different special page' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::newFromText( 'Special:Version' ),
|
|
|
|
|
Title::newFromText( 'Special:Recentchanges' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(newFromText) compare special and normal page' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::newFromText( 'Special:Version' ),
|
|
|
|
|
Title::newFromText( 'Main Page' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(makeTitle) same text' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', '' ),
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', '' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(makeTitle) different text' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', '' ),
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Bar', '', '' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(makeTitle) different namespace, same text' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', '' ),
|
|
|
|
|
Title::makeTitle( NS_TALK, 'Foo', '', '' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(makeTitle) same fragment' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', 'Bar', '' ),
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', 'Bar', '' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(makeTitle) different fragment (ignored)' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', 'Bar', '' ),
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', 'Baz', '' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(makeTitle) fragment vs no fragment (ignored)' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', 'Bar', '' ),
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', '' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(makeTitle) same interwiki' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', 'baz' ),
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', 'baz' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
yield '(makeTitle) different interwiki' => [
|
2019-03-16 19:40:13 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', '' ),
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo', '', 'baz' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
2020-09-25 14:13:54 +00:00
|
|
|
|
|
|
|
|
// Wrong type
|
|
|
|
|
yield '(makeTitle vs PageIdentityValue) name text' => [
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo' ),
|
|
|
|
|
new PageIdentityValue( 0, NS_MAIN, 'Foo', PageIdentity::LOCAL ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
yield '(makeTitle vs TitleValue) name text' => [
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo' ),
|
|
|
|
|
new TitleValue( NS_MAIN, 'Foo' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
yield '(makeTitle vs UserIdentityValue) name text' => [
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo' ),
|
2021-02-15 18:58:09 +00:00
|
|
|
new UserIdentityValue( 7, 'Foo' ),
|
2020-09-25 14:13:54 +00:00
|
|
|
false
|
|
|
|
|
];
|
2019-03-16 19:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::equals
|
|
|
|
|
* @dataProvider provideEquals
|
|
|
|
|
*/
|
2020-09-25 14:13:54 +00:00
|
|
|
public function testEquals( Title $firstValue, $secondValue, $expectedSame ) {
|
2019-03-16 19:40:13 +00:00
|
|
|
$this->assertSame(
|
|
|
|
|
$expectedSame,
|
|
|
|
|
$firstValue->equals( $secondValue )
|
|
|
|
|
);
|
|
|
|
|
}
|
2019-04-13 03:27:31 +00:00
|
|
|
|
2020-09-25 14:13:54 +00:00
|
|
|
public function provideIsSamePageAs() {
|
|
|
|
|
$title = Title::makeTitle( 0, 'Foo' );
|
|
|
|
|
$title->resetArticleID( 1 );
|
|
|
|
|
yield '(PageIdentityValue) same text, title has ID 0' => [
|
|
|
|
|
$title,
|
|
|
|
|
new PageIdentityValue( 1, 0, 'Foo', PageIdentity::LOCAL ),
|
|
|
|
|
true
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$title = Title::makeTitle( 1, 'Bar_Baz' );
|
|
|
|
|
$title->resetArticleID( 0 );
|
|
|
|
|
yield '(PageIdentityValue) same text, PageIdentityValue has ID 0' => [
|
|
|
|
|
$title,
|
|
|
|
|
new PageIdentityValue( 0, 1, 'Bar_Baz', PageIdentity::LOCAL ),
|
|
|
|
|
true
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$title = Title::makeTitle( 0, 'Foo' );
|
|
|
|
|
$title->resetArticleID( 0 );
|
|
|
|
|
yield '(PageIdentityValue) different text, both IDs are 0' => [
|
|
|
|
|
$title,
|
|
|
|
|
new PageIdentityValue( 0, 0, 'Foozz', PageIdentity::LOCAL ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$title = Title::makeTitle( 0, 'Foo' );
|
|
|
|
|
$title->resetArticleID( 0 );
|
|
|
|
|
yield '(PageIdentityValue) different namespace' => [
|
|
|
|
|
$title,
|
|
|
|
|
new PageIdentityValue( 0, 1, 'Foo', PageIdentity::LOCAL ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$title = Title::makeTitle( 0, 'Foo', '' );
|
|
|
|
|
$title->resetArticleID( 1 );
|
|
|
|
|
yield '(PageIdentityValue) different wiki, different ID' => [
|
|
|
|
|
$title,
|
|
|
|
|
new PageIdentityValue( 1, 0, 'Foo', 'bar' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$title = Title::makeTitle( 0, 'Foo', '' );
|
|
|
|
|
$title->resetArticleID( 0 );
|
|
|
|
|
yield '(PageIdentityValue) different wiki, both IDs are 0' => [
|
|
|
|
|
$title,
|
|
|
|
|
new PageIdentityValue( 0, 0, 'Foo', 'bar' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isSamePageAs
|
|
|
|
|
* @dataProvider provideIsSamePageAs
|
|
|
|
|
*/
|
|
|
|
|
public function testIsSamePageAs( Title $firstValue, $secondValue, $expectedSame ) {
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expectedSame,
|
|
|
|
|
$firstValue->isSamePageAs( $secondValue )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideIsSameLinkAs() {
|
|
|
|
|
yield 'same text' => [
|
|
|
|
|
Title::makeTitle( 0, 'Foo' ),
|
|
|
|
|
new TitleValue( 0, 'Foo' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
|
|
|
|
yield 'same namespace' => [
|
|
|
|
|
Title::makeTitle( 1, 'Bar_Baz' ),
|
|
|
|
|
new TitleValue( 1, 'Bar_Baz' ),
|
|
|
|
|
true
|
|
|
|
|
];
|
|
|
|
|
yield 'same text, different namespace' => [
|
|
|
|
|
Title::makeTitle( 0, 'Foo' ),
|
|
|
|
|
new TitleValue( 1, 'Foo' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
yield 'different text' => [
|
|
|
|
|
Title::makeTitle( 0, 'Foo' ),
|
|
|
|
|
new TitleValue( 0, 'Foozz' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
yield 'different fragment' => [
|
|
|
|
|
Title::makeTitle( 0, 'Foo', '' ),
|
|
|
|
|
new TitleValue( 0, 'Foo', 'Bar' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
yield 'different interwiki' => [
|
|
|
|
|
Title::makeTitle( 0, 'Foo', '', 'bar' ),
|
|
|
|
|
new TitleValue( 0, 'Foo', '', '' ),
|
|
|
|
|
false
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::isSameLinkAs
|
|
|
|
|
* @dataProvider provideIsSameLinkAs
|
|
|
|
|
*/
|
|
|
|
|
public function testIsSameLinkAs( Title $firstValue, $secondValue, $expectedSame ) {
|
|
|
|
|
$this->assertSame(
|
|
|
|
|
$expectedSame,
|
|
|
|
|
$firstValue->isSameLinkAs( $secondValue )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
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() );
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
$title->getRestrictionExpiry( 'create' ),
|
|
|
|
|
'infinity'
|
|
|
|
|
);
|
|
|
|
|
$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()
|
|
|
|
|
);
|
|
|
|
|
$title->mRestrictionsLoaded = false;
|
|
|
|
|
$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 )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getRestrictions
|
|
|
|
|
*/
|
|
|
|
|
public function testGetRestrictions() {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$title->mRestrictions = [
|
|
|
|
|
'a' => [ 'sysop' ],
|
|
|
|
|
'b' => [ 'sysop' ],
|
|
|
|
|
'c' => [ 'sysop' ]
|
|
|
|
|
];
|
|
|
|
|
$title->mRestrictionsLoaded = true;
|
|
|
|
|
$this->assertArrayEquals( [ 'sysop' ], $title->getRestrictions( 'a' ) );
|
|
|
|
|
$this->assertArrayEquals( [], $title->getRestrictions( 'error' ) );
|
|
|
|
|
// TODO: maybe test if loadRestrictionsFromRows() is called?
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getAllRestrictions
|
|
|
|
|
*/
|
|
|
|
|
public function testGetAllRestrictions() {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$title->mRestrictions = [
|
|
|
|
|
'a' => [ 'sysop' ],
|
|
|
|
|
'b' => [ 'sysop' ],
|
|
|
|
|
'c' => [ 'sysop' ]
|
|
|
|
|
];
|
|
|
|
|
$title->mRestrictionsLoaded = true;
|
|
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
$title->mRestrictions,
|
|
|
|
|
$title->getAllRestrictions()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getRestrictionExpiry
|
|
|
|
|
*/
|
|
|
|
|
public function testGetRestrictionExpiry() {
|
|
|
|
|
$title = $this->getExistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$reflection = new ReflectionClass( $title );
|
|
|
|
|
$reflection_property = $reflection->getProperty( 'mRestrictionsExpiry' );
|
|
|
|
|
$reflection_property->setAccessible( true );
|
|
|
|
|
$reflection_property->setValue( $title, [
|
|
|
|
|
'a' => 'infinity', 'b' => 'infinity', 'c' => 'infinity'
|
|
|
|
|
] );
|
|
|
|
|
$title->mRestrictionsLoaded = true;
|
|
|
|
|
$this->assertSame( 'infinity', $title->getRestrictionExpiry( 'a' ) );
|
|
|
|
|
$this->assertArrayEquals( [], $title->getRestrictions( 'error' ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Title::getTitleProtection
|
|
|
|
|
*/
|
|
|
|
|
public function testGetTitleProtection() {
|
|
|
|
|
$title = $this->getNonexistingTestPage( 'UTest1' )->getTitle();
|
|
|
|
|
$title->mTitleProtection = false;
|
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();
|
|
|
|
|
$title->mRestrictions = [
|
|
|
|
|
'edit' => [ 'sysop' ]
|
|
|
|
|
];
|
|
|
|
|
$this->setMwGlobals( [
|
|
|
|
|
'wgSemiprotectedRestrictionLevels' => [ 'autoconfirmed' ],
|
|
|
|
|
'wgRestrictionLevels' => [ '', 'autoconfirmed', 'sysop' ]
|
|
|
|
|
] );
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertFalse( $title->isSemiProtected( 'edit' ) );
|
2019-11-07 19:06:55 +00:00
|
|
|
$title->mRestrictions = [
|
|
|
|
|
'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' ]
|
|
|
|
|
] );
|
|
|
|
|
$title->mRestrictions = [
|
|
|
|
|
'edit' => [ 'sysop' ]
|
|
|
|
|
];
|
2020-12-23 10:03:34 +00:00
|
|
|
$this->assertFalse( $title->isProtected( 'edit' ) );
|
2019-11-07 19:06:55 +00:00
|
|
|
$title->mRestrictions = [
|
|
|
|
|
'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() {
|
|
|
|
|
$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();
|
|
|
|
|
$reflection = new ReflectionClass( $title );
|
|
|
|
|
$reflection_property = $reflection->getProperty( 'mHasCascadingRestrictions' );
|
|
|
|
|
$reflection_property->setAccessible( true );
|
|
|
|
|
$reflection_property->setValue( $title, true );
|
2020-01-09 23:23:19 +00:00
|
|
|
$this->assertTrue( $title->isCascadeProtected() );
|
2019-11-07 19:06:55 +00:00
|
|
|
$reflection_property->setValue( $title, null );
|
2020-01-09 23:23:19 +00:00
|
|
|
$this->assertFalse( $title->isCascadeProtected() );
|
2019-11-07 19:06:55 +00:00
|
|
|
$reflection_property->setValue( $title, null );
|
|
|
|
|
$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
|
|
|
|
|
*/
|
|
|
|
|
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() );
|
|
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|