7 protected function setUp() {
11 unlink( $readOnlyFile );
14 'wgReadOnlyFile' => $readOnlyFile,
20 'file://', # Non-
default
45 [ [
'a' ], [
'a',
'b',
'c' ] ],
46 [ [
'a' ], [
'a',
'b' ] ],
47 [ 1 => [
'a',
'b',
'c' ] ],
86 "%E7%89%B9%E5%88%A5:Contributions/Foobar",
87 wfUrlencode(
"\xE7\x89\xB9\xE5\x88\xA5:Contributions/Foobar" ) );
95 "https://te.wikibooks.org/wiki/ఉబుంటు_వాడుకరి_మార్గదర్శని",
97 .
"%E0%B0%89%E0%B0%AC%E0%B1%81%E0%B0%82%E0%B0%9F%E0%B1%81_"
98 .
"%E0%B0%B5%E0%B0%BE%E0%B0%A1%E0%B1%81%E0%B0%95%E0%B0%B0%E0%B0%BF_"
99 .
"%E0%B0%AE%E0%B0%BE%E0%B0%B0%E0%B1%8D%E0%B0%97%E0%B0%A6%E0%B0%B0"
100 .
"%E0%B1%8D%E0%B0%B6%E0%B0%A8%E0%B0%BF" ) );
118 global $wgReadOnly, $wgReadOnlyFile;
120 $f = fopen( $wgReadOnlyFile,
"wt" );
121 fwrite( $f,
'Message' );
123 $wgReadOnly = null; # Check
on $wgReadOnlyFile
126 $this->assertTrue(
wfReadOnly() ); # Check cached
128 unlink( $wgReadOnlyFile );
129 $wgReadOnly = null; # Clean
cache
138 [ [
'foo' =>
'bar' ],
'foo=bar' ],
139 [ [
'foo' =>
'' ],
'foo=' ],
140 [ [
'foo' => 1 ],
'foo=1' ],
141 [ [
'foo' =>
true ],
'foo=1' ],
142 [ [
'foo' =>
false ],
'' ],
143 [ [
'foo' => null ],
'' ],
144 [ [
'foo' =>
'A&B=5+6@!"\'' ],
'foo=A%26B%3D5%2B6%40%21%22%27' ],
146 [
'foo' =>
'bar',
'baz' =>
'is',
'asdf' =>
'qwerty' ],
147 'foo=bar&baz=is&asdf=qwerty'
149 [ [
'foo' => [
'bar' =>
'baz' ] ],
'foo%5Bbar%5D=baz' ],
151 [
'foo' => [
'bar' =>
'baz',
'qwerty' =>
'asdf' ] ],
152 'foo%5Bbar%5D=baz&foo%5Bqwerty%5D=asdf'
154 [ [
'foo' => [
'bar',
'baz' ] ],
'foo%5B0%5D=bar&foo%5B1%5D=baz' ],
156 [
'foo' => [
'bar' => [
'bar' =>
'baz' ] ] ],
157 'foo%5Bbar%5D%5Bbar%5D=baz'
178 [
'foo' =>
'bar',
'baz' =>
'overridden value' ] ) );
184 [
'foo=bar', [
'foo' =>
'bar' ] ],
185 [
'foo=', [
'foo' =>
'' ] ],
186 [
'foo', [
'foo' =>
'' ] ],
187 [
'foo=bar&qwerty=asdf', [
'foo' =>
'bar',
'qwerty' =>
'asdf' ] ],
188 [
'foo=A%26B%3D5%2B6%40%21%22%27', [
'foo' =>
'A&B=5+6@!"\'' ] ],
189 [
'foo%5Bbar%5D=baz', [
'foo' => [
'bar' =>
'baz' ] ] ],
191 'foo%5Bbar%5D=baz&foo%5Bqwerty%5D=asdf',
192 [
'foo' => [
'bar' =>
'baz',
'qwerty' =>
'asdf' ] ]
194 [
'foo%5B0%5D=bar&foo%5B1%5D=baz', [
'foo' => [ 0 =>
'bar', 1 =>
'baz' ] ] ],
196 'foo%5Bbar%5D%5Bbar%5D=baz',
197 [
'foo' => [
'bar' => [
'bar' =>
'baz' ] ] ]
215 [
'foo=bar&baz=biz' ],
216 [
'foo=A%26B%3D5%2B6%40%21%22%27' ],
217 [
'foo%5Bbar%5D=baz' ],
218 [
'foo%5B0%5D=bar&foo%5B1%5D=baz' ],
219 [
'foo%5Bbar%5D%5Bbar%5D=baz' ],
238 [
'application/xhtml+xml' => 1.0,
240 'text/plain' => 0.3 ] ) );
245 'text/*' => 0.5 ] ) );
249 [
'*/*' => 1.0 ] ) );
252 [
'image/png' => 1.0,
253 'image/svg+xml' => 0.5 ] ) );
263 [
'application/xhtml+xml' => 1.0,
267 [
'text/html' => 1.0 ] ) );
269 'application/xhtml+xml',
271 [
'application/xhtml+xml' => 1.0,
275 [
'application/xhtml+xml' => 1.0,
276 'text/html' => 0.5 ] ) );
280 [
'text/html' => 1.0,
283 'application/xhtml+xml' => 0.2 ],
284 [
'application/xhtml+xml' => 1.0,
285 'text/html' => 0.5 ] ) );
292 [
'application/xhtml+xml' => 1.0,
293 'text/html' => 0.5 ] ) );
297 [
'application/xhtml+xml' => 1.0 ] ) );
308 'wgDebugLogFile' => $debugLogFile,
309 # @todo FIXME: $wgDebugTimestamps should be tested
310 'wgDebugTimestamps' =>
false
313 wfDebug(
"This is a normal string" );
314 $this->assertEquals(
"This is a normal string\n", file_get_contents( $debugLogFile ) );
315 unlink( $debugLogFile );
317 wfDebug(
"This is nöt an ASCII string" );
318 $this->assertEquals(
"This is nöt an ASCII string\n", file_get_contents( $debugLogFile ) );
319 unlink( $debugLogFile );
321 wfDebug(
"\00305This has böth UTF and control chars\003" );
323 " 05This has böth UTF and control chars \n",
324 file_get_contents( $debugLogFile )
326 unlink( $debugLogFile );
329 $this->assertGreaterThan(
331 preg_replace(
'/\D/',
'', file_get_contents( $debugLogFile ) )
333 unlink( $debugLogFile );
336 $this->assertGreaterThan(
338 preg_replace(
'/\D/',
'', file_get_contents( $debugLogFile ) )
340 unlink( $debugLogFile );
352 'compress, gzip' =>
true,
353 'gzip;q=1.0' =>
true,
356 'gzip;q=abcde' =>
true,
357 'gzip;q=12345678.9' =>
true,
361 if ( isset( $_SERVER[
'HTTP_ACCEPT_ENCODING'] ) ) {
362 $old_server_setting = $_SERVER[
'HTTP_ACCEPT_ENCODING'];
365 foreach ( $settings
as $encoding => $expect ) {
366 $_SERVER[
'HTTP_ACCEPT_ENCODING'] = $encoding;
372 if ( isset( $old_server_setting ) ) {
373 $_SERVER[
'HTTP_ACCEPT_ENCODING'] = $old_server_setting;
383 [ 6 / 7,
'0.86%', 2,
false ],
385 [ 22 / 7,
'3.14286%', 5 ],
388 [ 10 / 3,
'0%', -1 ],
389 [ 3 / 4 / 5,
'0.1%', 1 ],
390 [ 6 / 7 * 8,
'6.8571428571%', 10 ],
393 foreach ( $pcts
as $pct ) {
394 if ( !isset( $pct[2] ) ) {
397 if ( !isset( $pct[3] ) ) {
401 $this->assertEquals(
wfPercent( $pct[0], $pct[2], $pct[3] ), $pct[1], $pct[1] );
411 $this->assertEquals( $expected,
424 # Failures returns 0 :(
428 # Int, strings with spaces
437 [
'1m', 1024 * 1024 ],
438 [
'1M', 1024 * 1024 ],
439 [
'1g', 1024 * 1024 * 1024 ],
440 [
'1G', 1024 * 1024 * 1024 ],
471 public function testMerge( $old, $mine, $yours, $expectedMergeResult, $expectedText ) {
475 $isMerged =
wfMerge( $old, $mine, $yours, $mergedText );
477 $msg =
'Merge should be a ';
478 $msg .= $expectedMergeResult ?
'success' :
'failure';
479 $this->assertEquals( $expectedMergeResult, $isMerged, $msg );
483 $this->assertEquals( $expectedText, $mergedText,
484 'is merged text as expected?' );
489 $EXPECT_MERGE_SUCCESS =
true;
490 $EXPECT_MERGE_FAILURE =
false;
501 "one one one ONE ONE\n" .
511 $EXPECT_MERGE_SUCCESS,
514 "one one one ONE ONE\n" .
525 "one one one ONE ONE\n" .
535 $EXPECT_MERGE_FAILURE,
549 $this->assertEquals( $expected, $index,
"wfMakeUrlIndexes(\"$url\")" );
556 'https://example.org/test.cgi?id=12345',
557 [
'https://org.example./test.cgi?id=12345' ]
562 'mailto:wiki@wikimedia.org',
563 [
'mailto:org.wikimedia@wiki.' ]
569 'file:///whatever/you/like.txt',
570 [
'file://./whatever/you/like.txt' ]
574 'file:///c:/whatever/you/like.txt',
575 [
'file://./c:/whatever/you/like.txt' ]
579 'file://intranet/whatever/you/like.txt',
580 [
'file://intranet./whatever/you/like.txt' ]
591 '//example.org/test.cgi?id=12345',
593 'http://org.example./test.cgi?id=12345',
594 'https://org.example./test.cgi?id=12345'
606 $this->assertEquals( $expected, $actual, $description );
611 $protocols = [
'HTTP' =>
'http:',
'HTTPS' =>
'https:',
'protocol-relative' =>
'' ];
612 foreach ( $protocols
as $pDesc => $p ) {
613 $a = array_merge( $a, [
615 "$p//www.example.com",
618 "No matches for empty domains array, $pDesc URL"
621 "$p//www.example.com",
622 [
'www.example.com' ],
624 "Exact match in domains array, $pDesc URL"
627 "$p//www.example.com",
630 "Match without subdomain in domains array, $pDesc URL"
633 "$p//www.example2.com",
634 [
'www.example.com',
'www.example2.com',
'www.example3.com' ],
636 "Exact match with other domains in array, $pDesc URL"
639 "$p//www.example2.com",
640 [
'example.com',
'example2.com',
'example3,com' ],
642 "Match without subdomain with other domains in array, $pDesc URL"
645 "$p//www.example4.com",
646 [
'example.com',
'example2.com',
'example3,com' ],
648 "Domain not in array, $pDesc URL"
651 "$p//nds-nl.wikipedia.org",
652 [
'nl.wikipedia.org' ],
654 "Non-matching substring of domain, $pDesc URL"
668 MediaWiki\suppressWarnings();
670 MediaWiki\restoreWarnings();
671 $this->assertFalse( $ok );
679 $expected, $description
683 $expected = str_replace(
"'",
'"', $expected );
686 $this->assertEquals( $expected, $actual, $description );
691 'wgDBname' =>
'example',
700 'wgDBname' =>
'example',
701 'wgDBprefix' =>
'mw_',
712 $cache->makeKey(
'foo', 123,
'bar' ),
719 $keyspace = $this->readAttribute(
$cache,
'keyspace' );
722 $cache->makeKey(
'foo',
'bar' )
729 $cache->makeGlobalKey(
'foo', 123,
'bar' ),
738 [
'eval.php', [
'--help',
'--test' ], [],
739 "'$wgPhpCli' 'eval.php' '--help' '--test'",
740 "Called eval.php --help --test" ],
741 [
'eval.php', [
'--help',
'--test space' ], [
'php' =>
'php5' ],
742 "'php5' 'eval.php' '--help' '--test space'",
743 "Called eval.php --help --test with php option" ],
744 [
'eval.php', [
'--help',
'--test',
'X' ], [
'wrapper' =>
'MWScript.php' ],
745 "'$wgPhpCli' 'MWScript.php' 'eval.php' '--help' '--test' 'X'",
746 "Called eval.php --help --test with wrapper option" ],
749 [
'--help',
'--test',
'y' ],
750 [
'php' =>
'php5',
'wrapper' =>
'MWScript.php' ],
751 "'php5' 'MWScript.php' 'eval.php' '--help' '--test' 'y'",
752 "Called eval.php --help --test with wrapper and php option"
wfPercent($nr, $acc=2, $round=true)
wfForeignMemcKey($db, $prefix)
Make a cache key for a foreign DB.
testDebugFunctionTest()
wfDebug wfDebugMem
processing should stop and the error should be shown to the user * false
wfShorthandToInteger($string= '', $default=-1)
Converts shorthand byte notation to integer form.
wfMkdirParents($dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
wfDebugMem($exact=false)
Send a line giving PHP memory usage.
static provideMakeUrlIndexes()
static provideWfMatchesDomainList()
mimeTypeMatch($type, $avail)
Checks if a given MIME type matches any of the keys in the given array.
static provideShorthand()
wfMakeUrlIndexes($url)
Make URL indexes, appropriate for the el_index field of externallinks.
static getLocalClusterInstance()
Get the main cluster-local cache object.
testUrlencode()
wfUrlencode
testArrayToCGI2()
wfArrayToCgi
wfUrlencode($s)
We want some things to be included as literal characters in our title URLs for prettiness, which urlencode encodes by default.
when a variable name is used in a it is silently declared as a new local masking the global
wfBoolToStr($value)
Convenience function converts boolean values into "true" or "false" (string) values.
wfIsWindows()
Check if the operating system is Windows.
wfExpandIRI($url)
Take a URL, make sure it's expanded to fully qualified, and replace any encoded non-ASCII Unicode cha...
wfRandomString($length=32)
Get a random string containing a number of pseudo-random hex characters.
wfNegotiateType($cprefs, $sprefs)
Returns the 'best' match between a client's requested internet media types and the server's list of a...
wfArrayDiff2($a, $b)
Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
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
testMakeUrlIndexes($url, $expected)
provideMakeUrlIndexes() wfMakeUrlIndexes
wfGlobalCacheKey()
Make a cache key with database-agnostic prefix.
testWfMatchesDomainList($url, $domains, $expected, $description)
provideWfMatchesDomainList wfMatchesDomainList
you have access to all of the normal MediaWiki so you can get a DB use the cache
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
static provideCgiToArray()
testArrayToCGI($array, $result)
provideArrayToCGI wfArrayToCgi
wfCgiToArray($query)
This is the logical opposite of wfArrayToCgi(): it accepts a query string as its argument and returns...
static provideForWfArrayDiff2()
testMerge($old, $mine, $yours, $expectedMergeResult, $expectedText)
wfReadOnly()
Check whether the wiki is in read-only mode.
static provideWfShellWikiCmdList()
wfShellWikiCmd($script, array $parameters=[], array $options=[])
Generate a shell-escaped command line string to run a MediaWiki cli script.
testReadOnlyEmpty()
wfReadOnly
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
wfClientAcceptsGzip($force=false)
wfMatchesDomainList($url, $domains)
Check whether a given URL has a domain that occurs in a given set of domains.
static provideCgiRoundTrip()
testNegotiateType()
wfNegotiateType
testMimeTypeMatch()
mimeTypeMatch
testWfMkdirParents()
wfMkdirParents
testRandomString()
wfRandomString
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
wfMerge($old, $mine, $yours, &$result)
wfMerge attempts to merge differences between three texts.
testWfShorthandToInteger($shorthand, $expected)
test
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
wfRandom()
Get a random decimal value between 0 and 1, in a way not likely to give duplicate values for any real...
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined...
wfArrayToCgi($array1, $array2=null, $prefix= '')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
testClientAcceptsGzipTest()
wfClientAcceptsGzip
testExpandIRI()
wfExpandIRI
We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going on
wfMemcKey()
Make a cache key for the local wiki.
testCgiRoundTrip($cgi)
provideCgiRoundTrip wfArrayToCgi
testWfArrayDiff2($a, $b, $expected)
provideForWfArrayDiff2 wfArrayDiff2
testWfPercentTest()
wfPercent
testWfShellWikiCmd($script, $parameters, $options, $expected, $description)
provideWfShellWikiCmdList wfShellWikiCmd
static provideArrayToCGI()
testReadOnlySet()
wfReadOnly
testCgiToArray($cgi, $result)
provideCgiToArray wfCgiToArray