8 protected function setUp() {
12 'wgAllowUserJs' =>
false,
13 'wgDefaultLanguageVariant' =>
false,
14 'wgMetaNamespace' =>
'Project',
26 foreach ( range( 1, 255 )
as $num ) {
28 if ( strpos(
"#[]{}<>|", $chr ) !==
false || preg_match(
"/[\\x00-\\x1f\\x7f]/", $chr ) ) {
30 (
bool)preg_match(
"/[$titlechars]/", $chr ),
31 "chr($num) = $chr is not a valid titlechar"
35 (
bool)preg_match(
"/[$titlechars]/", $chr ),
36 "chr($num) = $chr is a valid titlechar"
53 [
'Talk:Foo:Sandbox' ],
54 [
'File:Example.svg' ],
55 [
'File_talk:Example.svg' ],
56 [
'Foo/.../Sandbox' ],
61 [
'Category:' . str_repeat(
'x', 248 ) ],
62 [ str_repeat(
'x', 252 ) ],
64 [
'localtestiw: #anchor' ],
66 [
'localtestiw:foo' ],
67 [
'localtestiw: foo # anchor' ],
68 [
'localtestiw: Talk: Sandbox # anchor' ],
70 [
'remotetestiw: Talk: # anchor' ],
71 [
'remotetestiw: #bar' ],
72 [
'remotetestiw: Talk:' ],
73 [
'remotetestiw: Talk: Foo' ],
74 [
'localtestiw:remotetestiw:' ],
75 [
'localtestiw:remotetestiw:foo' ]
81 [
'',
'title-invalid-empty' ],
82 [
':',
'title-invalid-empty' ],
83 [
'__ __',
'title-invalid-empty' ],
84 [
' __ ',
'title-invalid-empty' ],
86 [
'A [ B',
'title-invalid-characters' ],
87 [
'A ] B',
'title-invalid-characters' ],
88 [
'A { B',
'title-invalid-characters' ],
89 [
'A } B',
'title-invalid-characters' ],
90 [
'A < B',
'title-invalid-characters' ],
91 [
'A > B',
'title-invalid-characters' ],
92 [
'A | B',
'title-invalid-characters' ],
93 [
"A \t B",
'title-invalid-characters' ],
94 [
"A \n B",
'title-invalid-characters' ],
96 [
'A%20B',
'title-invalid-characters' ],
97 [
'A%23B',
'title-invalid-characters' ],
98 [
'A%2523B',
'title-invalid-characters' ],
106 [
'Talk:File:Example.svg',
'title-invalid-talk-namespace' ],
108 [
'.',
'title-invalid-relative' ],
109 [
'..',
'title-invalid-relative' ],
110 [
'./Sandbox',
'title-invalid-relative' ],
111 [
'../Sandbox',
'title-invalid-relative' ],
112 [
'Foo/./Sandbox',
'title-invalid-relative' ],
113 [
'Foo/../Sandbox',
'title-invalid-relative' ],
114 [
'Sandbox/.',
'title-invalid-relative' ],
115 [
'Sandbox/..',
'title-invalid-relative' ],
117 [
'A ~~~ Name',
'title-invalid-magic-tilde' ],
118 [
'A ~~~~ Signature',
'title-invalid-magic-tilde' ],
119 [
'A ~~~~~ Timestamp',
'title-invalid-magic-tilde' ],
121 [ str_repeat(
'x', 256 ),
'title-invalid-too-long' ],
123 [
'Talk:',
'title-invalid-empty' ],
124 [
'Talk:#',
'title-invalid-empty' ],
125 [
'Category: ',
'title-invalid-empty' ],
126 [
'Category: #bar',
'title-invalid-empty' ],
128 [
'localtestiw: Talk: # anchor',
'title-invalid-empty' ],
129 [
'localtestiw: Talk:',
'title-invalid-empty' ]
135 'wgLocalInterwikis' => [
'localtestiw' ],
137 'InterwikiLoadPrefix' => [
138 function ( $prefix, &$data ) {
139 if ( $prefix ===
'localtestiw' ) {
140 $data = [
'iw_url' =>
'localtestiw' ];
141 } elseif ( $prefix ===
'remotetestiw' ) {
142 $data = [
'iw_url' =>
'remotetestiw' ];
179 $this->assertTrue(
false,
"Invalid: $text" );
181 $this->assertEquals( $expectedErrorMessage, $ex->
getErrorMessage(),
"Invalid: $text" );
188 ' %!"$&\'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+',
189 ' %!"$&\'()*,\\-./0-9:;=?@A-Z\\\\\\^_`a-z~+\\u0080-\\uFFFF',
193 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
196 'QWERTY\\x66-\\xFD+',
197 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
205 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
208 'QWERTY\\x66-\\x80+\\x23',
209 'QWERTYf-\\x7F+#\\u0080-\\uFFFF',
212 'QWERTY\\x66-\\x80+\\xD3',
213 'QWERTYf-\\x7F+\\u0080-\\uFFFF',
217 '\\\\\\u0080-\\uFFFF',
221 '\\-\\u0080-\\uFFFF',
225 'QWERTY\\-\\u0080-\\uFFFF',
233 'A-\\x7F\\u0080-\\uFFFF',
236 '\\x66-\\x77QWERTY\\x88-\\x91FXZ',
237 'f-wQWERTYFXZ\\u0080-\\uFFFF',
240 '\\x66-\\x99QWERTY\\xAA-\\xEEFXZ',
241 'f-\\x7FQWERTYFXZ\\u0080-\\uFFFF',
260 $fixed =
$title->fixSpecialName();
261 $stuff = explode(
'/', $fixed->getDBkey(), 2 );
262 if ( count( $stuff ) == 2 ) {
270 "Bug 31100 regression check: Title->fixSpecialName() should preserve parameter"
276 [
'Special:Version', null ],
277 [
'Special:Version/',
'' ],
278 [
'Special:Version/param',
'param' ],
297 $errors =
$title->isValidMoveOperation( $nt,
false );
298 if ( $expected ===
true ) {
299 $this->assertTrue( $errors );
302 foreach ( (
array)$expected
as $error ) {
303 $this->assertContains( $error, $errors );
311 [
'Some page',
'',
'badtitletext' ],
312 [
'Test',
'Test',
'selfmove' ],
313 [
'Special:FooBar',
'Test',
'immobile-source-namespace' ],
314 [
'Test',
'Special:FooBar',
'immobile-target-namespace' ],
315 [
'MediaWiki:Common.js',
'Help:Some wikitext page',
'bad-target-model' ],
316 [
'Page',
'File:Test.jpg',
'nonfile-cannot-move-to-file' ],
318 [
'File:Test.jpg',
'Page',
'imagenocrossnamespace' ],
338 if ( is_string( $whitelistRegexp ) ) {
339 $whitelistRegexp = [ $whitelistRegexp ];
344 'wgGroupPermissions' => [
'*' => [
'read' =>
false ] ],
345 'wgWhitelistRead' => [
'some random non sense title' ],
346 'wgWhitelistReadRegexp' => $whitelistRegexp,
356 if ( is_bool( $expected ) ) {
357 # Forge the assertion message depending on the assertion expectation
358 $allowableness = $expected
359 ?
" should be allowed"
360 :
" should NOT be allowed";
364 "User action '$action' on [[$source]] $allowableness."
368 foreach ( (
array)$expected
as $error ) {
369 $this->assertContains( $error, $errors );
383 [
'/.*/',
'Main_Page',
'read', $ALLOWED ],
384 [
'/.*/',
'Main_Page',
'edit', $DISALLOWED ],
387 [
'/^Main_Page$/',
'Main_Page',
'read', $DISALLOWED ],
389 [
'/^Main/',
'Main_Page',
'read', $ALLOWED ],
390 [
'/^Main.*/',
'Main_Page',
'read', $ALLOWED ],
392 [
'/Mic\sCheck/',
'Mic Check',
'read', $ALLOWED ],
395 [
'/Unicode Test . Yes/',
'Unicode Test Ñ Yes',
'read', $DISALLOWED ],
397 [
'/Unicode Test . Yes/u',
'Unicode Test Ñ Yes',
'read', $ALLOWED ],
399 [
'/MiC ChEcK/',
'mic check',
'read', $DISALLOWED ],
400 [
'/MiC ChEcK/i',
'mic check',
'read', $ALLOWED ],
403 [
"@^UsEr.*@i",
'User is banned',
'read', $ALLOWED ],
404 [
"@^UsEr.*@i",
'User:John Doe',
'read', $ALLOWED ],
407 [
'/^Special:NewPages$/',
'Special:NewPages',
'read', $ALLOWED ],
408 [ null,
'Special:Newpages',
'read', $DISALLOWED ],
415 foreach ( $errors
as $error ) {
427 $lang, $variant, $msg =
''
431 'wgDefaultLanguageVariant' => $variant,
432 'wgAllowUserJs' =>
true,
438 $this->assertInstanceOf(
'Title',
$title,
439 "Test must be passed a valid title text, you gave '$titleText'"
441 $this->assertEquals( $expected,
442 $title->getPageViewLanguage()->getCode(),
451 # - wgContLang (expected in most case)
452 # - wgLang (on some specific pages)
453 # - wgDefaultLanguageVariant
456 [
'fr',
'Help:I_need_somebody',
'fr',
'fr',
false ],
457 [
'es',
'Help:I_need_somebody',
'es',
'zh-tw',
false ],
458 [
'zh',
'Help:I_need_somebody',
'zh',
'zh-tw',
false ],
460 [
'es',
'Help:I_need_somebody',
'es',
'zh-tw',
'zh-cn' ],
461 [
'es',
'MediaWiki:About',
'es',
'zh-tw',
'zh-cn' ],
462 [
'es',
'MediaWiki:About/',
'es',
'zh-tw',
'zh-cn' ],
463 [
'de',
'MediaWiki:About/de',
'es',
'zh-tw',
'zh-cn' ],
464 [
'en',
'MediaWiki:Common.js',
'es',
'zh-tw',
'zh-cn' ],
465 [
'en',
'MediaWiki:Common.css',
'es',
'zh-tw',
'zh-cn' ],
466 [
'en',
'User:JohnDoe/Common.js',
'es',
'zh-tw',
'zh-cn' ],
467 [
'en',
'User:JohnDoe/Monobook.css',
'es',
'zh-tw',
'zh-cn' ],
469 [
'zh-cn',
'Help:I_need_somebody',
'zh',
'zh-tw',
'zh-cn' ],
470 [
'zh',
'MediaWiki:About',
'zh',
'zh-tw',
'zh-cn' ],
471 [
'zh',
'MediaWiki:About/',
'zh',
'zh-tw',
'zh-cn' ],
472 [
'de',
'MediaWiki:About/de',
'zh',
'zh-tw',
'zh-cn' ],
473 [
'zh-cn',
'MediaWiki:About/zh-cn',
'zh',
'zh-tw',
'zh-cn' ],
474 [
'zh-tw',
'MediaWiki:About/zh-tw',
'zh',
'zh-tw',
'zh-cn' ],
475 [
'en',
'MediaWiki:Common.js',
'zh',
'zh-tw',
'zh-cn' ],
476 [
'en',
'MediaWiki:Common.css',
'zh',
'zh-tw',
'zh-cn' ],
477 [
'en',
'User:JohnDoe/Common.js',
'zh',
'zh-tw',
'zh-cn' ],
478 [
'en',
'User:JohnDoe/Monobook.css',
'zh',
'zh-tw',
'zh-cn' ],
480 [
'zh-tw',
'Special:NewPages',
'es',
'zh-tw',
'zh-cn' ],
481 [
'zh-tw',
'Special:NewPages',
'zh',
'zh-tw',
'zh-cn' ],
492 $this->assertEquals( $expected,
500 # Title, expected base, optional message
501 [
'User:John_Doe/subOne/subTwo',
'John Doe/subOne' ],
502 [
'User:Foo/Bar/Baz',
'Foo/Bar' ],
512 $this->assertEquals( $expected,
520 # Title, expected base, optional message
521 [
'User:John_Doe/subOne/subTwo',
'John Doe' ],
522 [
'User:Foo/Bar/Baz',
'Foo' ],
533 $this->assertEquals( $expected,
541 # Title, expected base, optional message
542 [
'User:John_Doe/subOne/subTwo',
'subTwo' ],
543 [
'User:John_Doe/subOne',
'subOne' ],
561 $dbkey = str_replace(
' ',
'_', $value->
getText() );
562 $this->assertEquals( $dbkey,
$title->getDBkey() );
571 [
'User:Hansi_Maier' ],
582 $dbkey = str_replace(
' ',
'_',
$value->getText() );
583 $this->assertEquals(
$title->getDBkey(), $dbkey );
584 $this->assertEquals(
$title->getNamespace(),
$value->getNamespace() );
585 $this->assertEquals(
$title->getFragment(),
$value->getFragment() );
591 [
'Foo#bar',
'bar' ],
592 [
'Foo#bär',
'bär' ],
595 [
'Foo#bar_bar',
'bar bar' ],
596 [
'Foo#bar bar',
'bar bar' ],
597 [
'Foo#bar bar',
'bar bar' ],
601 [
'Foo#_bar_bar_',
' bar bar' ],
602 [
'Foo# bar bar ',
' bar bar' ],
614 $this->assertEquals( $fragment,
$title->getFragment() );
625 $this->assertEquals( $isKnown,
$title->isAlwaysKnown() );
630 [
'Some nonexistent page',
false ],
633 [
'Special:BlankPage',
true ],
634 [
'Special:SomeNonexistentSpecialPage',
false ],
635 [
'MediaWiki:Parentheses',
true ],
636 [
'MediaWiki:Some nonexistent message',
false ],
645 $this->assertTrue(
$title->isAlwaysKnown() );
663 $linkCache->clearLink(
$title );
664 $linkCache->addBadLinkObj(
$title );
669 'exists() should rely on link cache unless GAID_FOR_UPDATE is used'
674 'exists() should re-query database when GAID_FOR_UPDATE is used'
693 'InterwikiLoadPrefix' => [
694 function ( $prefix, &$iwdata ) {
695 if ( $prefix ===
'interwiki' ) {
697 'iw_url' =>
'http://example.com/',
709 $this->assertEquals( $title->
getNamespace(), $fragmentTitle->getNamespace() );
710 $this->assertEquals( $title->
getText(), $fragmentTitle->getText() );
711 $this->assertEquals( $title->
getInterwiki(), $fragmentTitle->getInterwiki() );
712 $this->assertEquals( $fragment, $fragmentTitle->getFragment() );
getText()
Returns the title in text form, without namespace prefix or fragment.
testIsAlwaysKnownOnInterwiki()
Title::isAlwaysKnown.
the array() calling protocol came about after MediaWiki 1.4rc1.
static provideGetPageViewLanguage()
static provideValidSecureAndSplit()
getText()
Get the text form (spaces not underscores) of the main part.
processing should stop and the error should be shown to the user * false
static provideSpecialNamesWithAndWithoutParameter()
static provideGetFragment()
if(!isset($args[0])) $lang
testGetTitleValue($text)
provideGetTitleValue
Class for viewing MediaWiki article and history.
Represents a page (or page fragment) title within MediaWiki.
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
static provideConvertByteClassToUnicodeClass()
testGetRootText($title, $expected, $msg= '')
provideRootTitleCases Title::getRootText
getPrefixedText()
Get the prefixed title with spaces.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
static provideRootTitleCases()
static provideSubpageTitleCases()
static provideNewFromTitleValue()
static provideBaseTitleCases()
testFixSpecialNameRetainsParameter($text, $expectedParam)
provideSpecialNamesWithAndWithoutParameter Title::fixSpecialName
static provideTestIsValidMoveOperation()
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
testGetFragment($full, $fragment)
provideGetFragment
testExists()
Title::exists.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
createFragmentTarget($fragment)
Creates a new Title for a different fragment of the same page.
static singleton()
Get an instance of this class.
testGetBaseText($title, $expected, $msg= '')
provideBaseTitleCases Title::getBaseText
static newFromDBkey($key)
Create a new Title from a prefixed DB key.
testConvertByteClassToUnicodeClass($byteClass, $unicodeClass)
provideConvertByteClassToUnicodeClass Title::convertByteClassToUnicodeClass
testGetSubpageText($title, $expected, $msg= '')
const GAID_FOR_UPDATE
Used to be GAID_FOR_UPDATE define.
testSecureAndSplitInvalid($text, $expectedErrorMessage)
See also mediawiki.Title.test.js Title::secureAndSplit provideInvalidSecureAndSplit.
dataWgWhitelistReadRegexp()
Provides test parameter values for testWgWhitelistReadRegexp()
namespace and then decline to actually register it file or subcat img or subcat $title
testIsValidMoveOperation($source, $target, $expected)
Auth-less test of Title::isValidMoveOperation.
getNamespace()
Get the namespace index, i.e.
provideCreateFragmentTitle()
testLegalChars()
Title::legalChars.
Content object for wiki text pages.
getInterwiki()
Get the interwiki prefix.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static provideInvalidSecureAndSplit()
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
static newFromTitleValue(TitleValue $titleValue)
Create a new Title from a TitleValue.
static provideIsAlwaysKnown()
testGetPrefixedText(Title $title, $expected)
Title::getPrefixedText provideGetPrefixedText.
testCreateFragmentTitle(Title $title, $fragment)
Title::createFragmentTarget provideCreateFragmentTitle.
static newFromTextThrow($text, $defaultNamespace=NS_MAIN)
Like Title::newFromText(), but throws MalformedTitleException when the title is invalid, rather than returning null.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static convertByteClassToUnicodeClass($byteClass)
Utility method for converting a character sequence from bytes to Unicode.
flattenErrorsArray($errors)
testWgWhitelistReadRegexp($whitelistRegexp, $source, $action, $expected)
Auth-less test of Title::userCan.
static provideGetTitleValue()
testIsAlwaysKnown($page, $isKnown)
Title::isAlwaysKnown provideIsAlwaysKnown.
static legalChars()
Get a regex character class describing the legal characters in a link.
static factory($code)
Get a cached or new language object for a given language code.
testGetPageViewLanguage($expected, $titleText, $contLang, $lang, $variant, $msg= '')
provideGetPageViewLanguage Title::getPageViewLanguage
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
testNewFromTitleValue(TitleValue $value)
provideNewFromTitleValue
testSecureAndSplitValid($text)
See also mediawiki.Title.test.js Title::secureAndSplit provideValidSecureAndSplit.