16 [
'hello this is ~~~',
17 "hello this is [[Special:Contributions/127.0.0.1|127.0.0.1]]",
19 [
'hello \'\'this\'\' is <nowiki>~~~</nowiki>',
20 'hello \'\'this\'\' is <nowiki>~~~</nowiki>',
31 $title = Title::newFromText(
str_replace(
'::',
'__', __METHOD__ ) );
33 $user->setName(
"127.0.0.1" );
34 $popts = ParserOptions::newFromUser( $user );
35 $text =
$wgParser->preSaveTransform( $text, $title, $user, $popts );
50 "<p class='foo'>Text.</p>",
51 "<p class='foo'>Text.</p>",
58 "<p>Text.</p><p>More text.</p>",
59 "<p>Text.</p><p>More text.</p>",
72 $this->
assertEquals( $expected, Parser::stripOuterParagraph( $text ) );
82 $title = Title::newFromText(
'foo' );
84 $wgParser->setHook(
'recursivecallparser', [ $this,
'helperParserFunc' ] );
85 $wgParser->parse(
'<recursivecallparser>baz</recursivecallparser>', $title, $po );
89 $title = Title::newFromText(
'foo' );
99 $title = Title::newFromText(
str_replace(
'::',
'__', __METHOD__ ) );
101 $frame =
$wgParser->getPreprocessor()->newFrame();
103 [
'pre',
'foo',
'style' =>
'margin-left: 1.6em' ]
108 'text' =>
'<pre style="margin-left: 1.6em">foo</pre>',
109 ],
$ret,
'callParserFunction works for {{#tag:pre|foo|style=margin-left: 1.6em}}' );
119 $title = Title::newFromText(
str_replace(
'::',
'__', __METHOD__ ) );
128 'fromtitle' => $title->getPrefixedDBkey(),
138 'fromtitle' =>
false,
139 'byteoffset' =>
null,
148 'fromtitle' => $title->getPrefixedDBkey(),
152 ],
$out->getSections(),
'getSections() with proper value when <h2> is used' );
159 $this->
assertEquals( $expected, Parser::normalizeLinkUrl( $url ), $explanation );
165 'Escaping of unsafe characters',
166 'http://example.org/foo bar?param[]="value"¶m[]=valüe',
167 'http://example.org/foo%20bar?param%5B%5D=%22value%22¶m%5B%5D=val%C3%BCe',
170 'Case normalization of percent-encoded characters',
171 'http://example.org/%ab%cD%Ef%FF',
172 'http://example.org/%AB%CD%EF%FF',
175 'Unescaping of safe characters',
176 'http://example.org/%3C%66%6f%6F%3E?%3C%66%6f%6F%3E#%3C%66%6f%6F%3E',
177 'http://example.org/%3Cfoo%3E?%3Cfoo%3E#%3Cfoo%3E',
180 'Context-sensitive replacement of sometimes-safe characters',
181 'http://example.org/%23%2F%3F%26%3D%2B%3B?%23%2F%3F%26%3D%2B%3B#%23%2F%3F%26%3D%2B%3B',
182 'http://example.org/%23%2F%3F&=+;?%23/?%26%3D%2B%3B#%23/?&=+;',
185 'IPv6 links aren\'t escaped',
186 'http://[::1]/foobar',
187 'http://[::1]/foobar',
190 'non-IPv6 links aren\'t unescaped',
191 'http://%5B::1%5D/foobar',
192 'http://%5B::1%5D/foobar',
199 $title = Title::newFromText(
'foo' );
201 $wgParser->parse(
'Hello World', $title, $po );
202 $text =
$wgParser->getOutput()->getText();
214 $title = $this->
getMock( Title::class );
215 $title->method(
'getPrefixedDBkey' )->willReturn( $name );
216 $title->method(
'getPrefixedText' )->willReturn( $name );
217 $title->method(
'getDBkey' )->willReturn( $name );
218 $title->method(
'getText' )->willReturn( $name );
219 $title->method(
'getNamespace' )->willReturn( 0 );
220 $title->method(
'getPageLanguage' )->willReturn( Language::factory(
'en' ) );
226 $title = $this->
getMockTitle(
'ParserRevisionAccessTest' );
229 ->disableOriginalConstructor()
232 $frank->method(
'getName' )->willReturn(
'Frank' );
234 $text =
'* user:{{REVISIONUSER}};id:{{REVISIONID}};time:{{REVISIONTIMESTAMP}};';
237 yield
'current' => [ $text,
$po, 0,
'user:CurrentAuthor;id:200;time:20160606000000;' ];
238 yield
'current with ID' => [ $text,
$po, 200,
'user:CurrentAuthor;id:200;time:20160606000000;' ];
240 $text =
'* user:{{REVISIONUSER}};id:{{REVISIONID}};time:{{REVISIONTIMESTAMP}};';
243 yield
'old' => [ $text,
$po, 100,
'user:OldAuthor;id:100;time:20140404000000;' ];
246 $oldRevision->setId( 100 );
248 $oldRevision->setTimestamp(
'20141111111111' );
249 $oldRevision->setContent( SlotRecord::MAIN,
new WikitextContent(
'FAUX' ) );
252 $po->setCurrentRevisionCallback(
function () use ( $oldRevision ) {
253 return new Revision( $oldRevision );
256 yield
'old with override' => [ $text,
$po, 100,
'user:FauxAuthor;id:100;time:20141111111111;' ];
258 $text =
'* user:{{REVISIONUSER}};user-subst:{{subst:REVISIONUSER}};';
261 $po->setIsPreview(
true );
263 yield
'preview without override, using context' => [
271 $text =
'* user:{{REVISIONUSER}};time:{{REVISIONTIMESTAMP}};'
272 .
'user-subst:{{subst:REVISIONUSER}};time-subst:{{subst:REVISIONTIMESTAMP}};';
276 $newRevision->setTimestamp(
'20180808000000' );
277 $newRevision->setContent( SlotRecord::MAIN,
new WikitextContent(
'NEW' ) );
280 $po->setIsPreview(
true );
281 $po->setCurrentRevisionCallback(
function () use ( $newRevision ) {
282 return new Revision( $newRevision );
289 'user:NewAuthor;time:20180808000000;',
290 'user-subst:NewAuthor;time-subst:20180808000000;',
294 $po->setCurrentRevisionCallback(
function () use ( $newRevision ) {
295 return new Revision( $newRevision );
298 yield
'pre-save' => [
302 'user:NewAuthor;time:20180808000000;',
303 'user-subst:NewAuthor;time-subst:20180808000000;',
306 $text =
"(ONE)<includeonly>(TWO)</includeonly>"
307 .
"<noinclude>#{{:ParserRevisionAccessTest}}#</noinclude>";
311 $newRevision->setTimestamp(
'20180808000000' );
312 $newRevision->setContent( SlotRecord::MAIN,
new WikitextContent( $text ) );
315 $po->setIsPreview(
true );
316 $po->setCurrentRevisionCallback(
function () use ( $newRevision ) {
317 return new Revision( $newRevision );
320 yield
'preview with self-transclude' => [ $text,
$po,
null,
'(ONE)#(ONE)(TWO)#' ];
331 $expectedInPst =
null
335 $title = $this->
getMockTitle(
'ParserRevisionAccessTest' );
340 $oldRevision->setId( 100 );
342 $oldRevision->setTimestamp(
'20140404000000' );
343 $oldRevision->setContent( SlotRecord::MAIN,
new WikitextContent(
'OLD' ) );
346 $currentRevision->setId( 200 );
348 $currentRevision->setTimestamp(
'20160606000000' );
349 $currentRevision->setContent( SlotRecord::MAIN,
new WikitextContent(
'CURRENT' ) );
352 ->disableOriginalConstructor()
356 ->method(
'getKnownCurrentRevision' )
358 [ $title, 100, $oldRevision ],
359 [ $title, 200, $currentRevision ],
360 [ $title, 0, $currentRevision ],
364 ->method(
'getRevisionById' )
366 [ 100, 0, $oldRevision ],
367 [ 200, 0, $currentRevision ],
370 $this->
setService(
'RevisionStore', $revisionStore );
372 $wgParser->parse( $text, $title, $po,
true,
true, $revId );
377 if ( $expectedInPst !==
null ) {
378 $pst =
$wgParser->preSaveTransform( $text, $title, $po->getUser(), $po );
379 $this->
assertContains( $expectedInPst, $pst,
'After Pre-Safe Transform' );
385 [
'1/2',
'html5',
'#1/2' ],
386 [
'1/2',
'legacy',
'#1.2F2' ],
392 $this->
setMwGlobals( [
'wgFragmentMode' => [ $mode ] ] );
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Database Parser BlockLevelPass.
static provideStripOuterParagraph()
static provideGuessSectionNameFromWikiText()
testNormalizeLinkUrl( $explanation, $url, $expected)
provideNormalizeLinkUrl
testGetSections()
Parser ParserOutput::getSections.
testStripOuterParagraph( $text, $expected)
provideStripOuterParagraph
testPreSaveTransform( $text, $expected)
providePreSaveTransform
testRevisionAccess( $text, ParserOptions $po, $revId, $expectedInHtml, $expectedInPst=null)
provideRevisionAccess
static providePreSaveTransform()
testGuessSectionNameFromWikiText( $input, $mode, $expected)
provideGuessSectionNameFromWikiText
helperParserFunc( $input, $args, $parser)
static provideNormalizeLinkUrl()
testRecursiveParse()
MWException Parser state cleared while parsing.
Set options of the Parser.
enableLimitReport( $x=true)
Enable limit report in an HTML comment on output.
Variant of the Message class.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Content object for wiki text pages.
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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
namespace and then decline to actually register it file or subcat img or subcat $title
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 & $ret
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 an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
if(is_array($mode)) switch( $mode) $input