MediaWiki  1.29.2
ExtraParserTest.php
Go to the documentation of this file.
1 <?php
2 
9 
11  protected $options;
13  protected $parser;
14 
15  protected function setUp() {
16  parent::setUp();
17 
18  $contLang = Language::factory( 'en' );
19  $this->setMwGlobals( [
20  'wgShowDBErrorBacktrace' => true,
21  'wgCleanSignatures' => true,
22  ] );
23  $this->setUserLang( 'en' );
24  $this->setContentLang( $contLang );
25 
26  // FIXME: This test should pass without setting global content language
27  $this->options = ParserOptions::newFromUserAndLang( new User, $contLang );
28  $this->options->setTemplateCallback( [ __CLASS__, 'statelessFetchTemplate' ] );
29  $this->parser = new Parser;
30 
32  }
33 
39  $longLine = '1.' . str_repeat( '1234567890', 100000 ) . "\n";
40 
41  $title = Title::newFromText( 'Unit test' );
43  $this->assertEquals( "<p>$longLine</p>",
44  $this->parser->parse( $longLine, $title, $options )->getText() );
45  }
46 
51  public function testParse() {
52  $title = Title::newFromText( __FUNCTION__ );
53  $parserOutput = $this->parser->parse( "Test\n{{Foo}}\n{{Bar}}", $title, $this->options );
54  $this->assertEquals(
55  "<p>Test\nContent of <i>Template:Foo</i>\nContent of <i>Template:Bar</i>\n</p>",
56  $parserOutput->getText()
57  );
58  }
59 
63  public function testPreSaveTransform() {
64  $title = Title::newFromText( __FUNCTION__ );
65  $outputText = $this->parser->preSaveTransform(
66  "Test\r\n{{subst:Foo}}\n{{Bar}}",
67  $title,
68  new User(),
69  $this->options
70  );
71 
72  $this->assertEquals( "Test\nContent of ''Template:Foo''\n{{Bar}}", $outputText );
73  }
74 
78  public function testPreprocess() {
79  $title = Title::newFromText( __FUNCTION__ );
80  $outputText = $this->parser->preprocess( "Test\n{{Foo}}\n{{Bar}}", $title, $this->options );
81 
82  $this->assertEquals(
83  "Test\nContent of ''Template:Foo''\nContent of ''Template:Bar''",
84  $outputText
85  );
86  }
87 
92  public function testCleanSig() {
93  $title = Title::newFromText( __FUNCTION__ );
94  $outputText = $this->parser->cleanSig( "{{Foo}} ~~~~" );
95 
96  $this->assertEquals( "{{SUBST:Foo}} ", $outputText );
97  }
98 
103  public function testCleanSigDisabled() {
104  $this->setMwGlobals( 'wgCleanSignatures', false );
105 
106  $title = Title::newFromText( __FUNCTION__ );
107  $outputText = $this->parser->cleanSig( "{{Foo}} ~~~~" );
108 
109  $this->assertEquals( "{{Foo}} ~~~~", $outputText );
110  }
111 
117  public function testCleanSigInSig( $in, $out ) {
118  $this->assertEquals( Parser::cleanSigInSig( $in ), $out );
119  }
120 
121  public static function provideStringsForCleanSigInSig() {
122  return [
123  [ "{{Foo}} ~~~~", "{{Foo}} " ],
124  [ "~~~", "" ],
125  [ "~~~~~", "" ],
126  ];
127  }
128 
132  public function testGetSection() {
133  $outputText2 = $this->parser->getSection(
134  "Section 0\n== Heading 1 ==\nSection 1\n=== Heading 2 ===\n"
135  . "Section 2\n== Heading 3 ==\nSection 3\n",
136  2
137  );
138  $outputText1 = $this->parser->getSection(
139  "Section 0\n== Heading 1 ==\nSection 1\n=== Heading 2 ===\n"
140  . "Section 2\n== Heading 3 ==\nSection 3\n",
141  1
142  );
143 
144  $this->assertEquals( "=== Heading 2 ===\nSection 2", $outputText2 );
145  $this->assertEquals( "== Heading 1 ==\nSection 1\n=== Heading 2 ===\nSection 2", $outputText1 );
146  }
147 
151  public function testReplaceSection() {
152  $outputText = $this->parser->replaceSection(
153  "Section 0\n== Heading 1 ==\nSection 1\n=== Heading 2 ===\n"
154  . "Section 2\n== Heading 3 ==\nSection 3\n",
155  1,
156  "New section 1"
157  );
158 
159  $this->assertEquals( "Section 0\nNew section 1\n\n== Heading 3 ==\nSection 3", $outputText );
160  }
161 
166  public function testGetPreloadText() {
167  $title = Title::newFromText( __FUNCTION__ );
168  $outputText = $this->parser->getPreloadText(
169  "{{Foo}}<noinclude> censored</noinclude> information <!-- is very secret -->",
170  $title,
171  $this->options
172  );
173 
174  $this->assertEquals( "{{Foo}} information <!-- is very secret -->", $outputText );
175  }
176 
183  static function statelessFetchTemplate( $title, $parser = false ) {
184  $text = "Content of ''" . $title->getFullText() . "''";
185  $deps = [];
186 
187  return [
188  'text' => $text,
189  'finalTitle' => $title,
190  'deps' => $deps ];
191  }
192 
197  public function testTrackingCategory() {
198  $title = Title::newFromText( __FUNCTION__ );
199  $catName = wfMessage( 'broken-file-category' )->inContentLanguage()->text();
200  $cat = Title::makeTitleSafe( NS_CATEGORY, $catName );
201  $expected = [ $cat->getDBkey() ];
202  $parserOutput = $this->parser->parse( "[[file:nonexistent]]", $title, $this->options );
203  $result = $parserOutput->getCategoryLinks();
204  $this->assertEquals( $expected, $result );
205  }
206 
211  public function testTrackingCategorySpecial() {
212  // Special pages shouldn't have tracking cats.
213  $title = SpecialPage::getTitleFor( 'Contributions' );
214  $parserOutput = $this->parser->parse( "[[file:nonexistent]]", $title, $this->options );
215  $result = $parserOutput->getCategoryLinks();
216  $this->assertEmpty( $result );
217  }
218 }
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:33
ExtraParserTest\testPreSaveTransform
testPreSaveTransform()
Parser::preSaveTransform.
Definition: ExtraParserTest.php:63
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
$result
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:Array with elements of the form "language:title" in the order that they will be output. & $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
Definition: hooks.txt:1954
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
User
User
Definition: All_system_messages.txt:425
ExtraParserTest\testPreprocess
testPreprocess()
Parser::preprocess.
Definition: ExtraParserTest.php:78
ExtraParserTest\testReplaceSection
testReplaceSection()
Parser::replaceSection.
Definition: ExtraParserTest.php:151
ExtraParserTest\testGetSection
testGetSection()
Parser::getSection.
Definition: ExtraParserTest.php:132
php
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
Definition: injection.txt:35
ExtraParserTest\provideStringsForCleanSigInSig
static provideStringsForCleanSigInSig()
Definition: ExtraParserTest.php:121
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
ExtraParserTest\statelessFetchTemplate
static statelessFetchTemplate( $title, $parser=false)
Definition: ExtraParserTest.php:183
ParserOptions\newFromUserAndLang
static newFromUserAndLang(User $user, Language $lang)
Get a ParserOptions object from a given user and language.
Definition: ParserOptions.php:716
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:658
MediaWikiTestCase
Definition: MediaWikiTestCase.php:13
NS_CATEGORY
const NS_CATEGORY
Definition: Defines.php:76
MediaWikiTestCase\setUserLang
setUserLang( $lang)
Definition: MediaWikiTestCase.php:834
ExtraParserTest\testCleanSigInSig
testCleanSigInSig( $in, $out)
cleanSigInSig() just removes tildes provideStringsForCleanSigInSig Parser::cleanSigInSig
Definition: ExtraParserTest.php:117
MagicWord\clearCache
static clearCache()
Clear the self::$mObjects variable For use in parser tests.
Definition: MagicWord.php:320
MediaWikiTestCase\setContentLang
setContentLang( $lang)
Definition: MediaWikiTestCase.php:843
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:538
options
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 and make changes or fix bugs In we can take all the code that deals with the little used title reversing options(say) and put it in one place. Instead of having little title-reversing if-blocks spread all over the codebase in showAnArticle
ExtraParserTest\testTrackingCategory
testTrackingCategory()
Database Parser::parse.
Definition: ExtraParserTest.php:197
ExtraParserTest\testLongNumericLinesDontKillTheParser
testLongNumericLinesDontKillTheParser()
Definition: ExtraParserTest.php:38
ExtraParserTest\testParse
testParse()
Test the parser entry points Parser::parse.
Definition: ExtraParserTest.php:51
ExtraParserTest\$options
ParserOptions $options
Definition: ExtraParserTest.php:11
ExtraParserTest\testGetPreloadText
testGetPreloadText()
Templates and comments are not affected, but noinclude/onlyinclude is.
Definition: ExtraParserTest.php:166
ExtraParserTest\testTrackingCategorySpecial
testTrackingCategorySpecial()
Database Parser::parse.
Definition: ExtraParserTest.php:211
captcha-old.parser
parser
Definition: captcha-old.py:187
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
ExtraParserTest\$parser
Parser $parser
Definition: ExtraParserTest.php:13
ExtraParserTest\testCleanSigDisabled
testCleanSigDisabled()
cleanSig() should do nothing if disabled Parser::cleanSig
Definition: ExtraParserTest.php:103
ExtraParserTest\setUp
setUp()
Definition: ExtraParserTest.php:15
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:50
ExtraParserTest
Parser-related tests that don't suit for parserTests.txt.
Definition: ExtraParserTest.php:8
$parserOutput
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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 $parserOutput
Definition: hooks.txt:1049
ParserOptions\newFromUser
static newFromUser( $user)
Get a ParserOptions object from a given user.
Definition: ParserOptions.php:705
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:783
ExtraParserTest\testCleanSig
testCleanSig()
cleanSig() makes all templates substs and removes tildes Parser::cleanSig
Definition: ExtraParserTest.php:92