Merge "Remove parameter 'options' from hook 'SkinEditSectionLinks'"
[lhc/web/wiklou.git] / tests / phpunit / includes / LinkerTest.php
1 <?php
2
3 /**
4 * @group Database
5 */
6 class LinkerTest extends MediaWikiLangTestCase {
7
8 /**
9 * @dataProvider provideCasesForUserLink
10 * @covers Linker::userLink
11 */
12 public function testUserLink( $expected, $userId, $userName, $altUserName = false, $msg = '' ) {
13 $this->setMwGlobals( [
14 'wgArticlePath' => '/wiki/$1',
15 ] );
16
17 // We'd also test the warning, but injecting a mock logger into a static method is tricky.
18 if ( $userName === '' ) {
19 Wikimedia\suppressWarnings();
20 }
21 $actual = Linker::userLink( $userId, $userName, $altUserName );
22 if ( $userName === '' ) {
23 Wikimedia\restoreWarnings();
24 }
25
26 $this->assertEquals( $expected, $actual, $msg );
27 }
28
29 public static function provideCasesForUserLink() {
30 # Format:
31 # - expected
32 # - userid
33 # - username
34 # - optional altUserName
35 # - optional message
36 return [
37 # Empty name (T222529)
38 'Empty username, userid 0' => [ '(no username available)', 0, '' ],
39 'Empty username, userid > 0' => [ '(no username available)', 73, '' ],
40
41 # ## ANONYMOUS USER ########################################
42 [
43 '<a href="/wiki/Special:Contributions/JohnDoe" '
44 . 'class="mw-userlink mw-anonuserlink" '
45 . 'title="Special:Contributions/JohnDoe"><bdi>JohnDoe</bdi></a>',
46 0, 'JohnDoe', false,
47 ],
48 [
49 '<a href="/wiki/Special:Contributions/::1" '
50 . 'class="mw-userlink mw-anonuserlink" '
51 . 'title="Special:Contributions/::1"><bdi>::1</bdi></a>',
52 0, '::1', false,
53 'Anonymous with pretty IPv6'
54 ],
55 [
56 '<a href="/wiki/Special:Contributions/0:0:0:0:0:0:0:1" '
57 . 'class="mw-userlink mw-anonuserlink" '
58 . 'title="Special:Contributions/0:0:0:0:0:0:0:1"><bdi>::1</bdi></a>',
59 0, '0:0:0:0:0:0:0:1', false,
60 'Anonymous with almost pretty IPv6'
61 ],
62 [
63 '<a href="/wiki/Special:Contributions/0000:0000:0000:0000:0000:0000:0000:0001" '
64 . 'class="mw-userlink mw-anonuserlink" '
65 . 'title="Special:Contributions/0000:0000:0000:0000:0000:0000:0000:0001"><bdi>::1</bdi></a>',
66 0, '0000:0000:0000:0000:0000:0000:0000:0001', false,
67 'Anonymous with full IPv6'
68 ],
69 [
70 '<a href="/wiki/Special:Contributions/::1" '
71 . 'class="mw-userlink mw-anonuserlink" '
72 . 'title="Special:Contributions/::1"><bdi>AlternativeUsername</bdi></a>',
73 0, '::1', 'AlternativeUsername',
74 'Anonymous with pretty IPv6 and an alternative username'
75 ],
76
77 # IPV4
78 [
79 '<a href="/wiki/Special:Contributions/127.0.0.1" '
80 . 'class="mw-userlink mw-anonuserlink" '
81 . 'title="Special:Contributions/127.0.0.1"><bdi>127.0.0.1</bdi></a>',
82 0, '127.0.0.1', false,
83 'Anonymous with IPv4'
84 ],
85 [
86 '<a href="/wiki/Special:Contributions/127.0.0.1" '
87 . 'class="mw-userlink mw-anonuserlink" '
88 . 'title="Special:Contributions/127.0.0.1"><bdi>AlternativeUsername</bdi></a>',
89 0, '127.0.0.1', 'AlternativeUsername',
90 'Anonymous with IPv4 and an alternative username'
91 ],
92
93 # ## Regular user ##########################################
94 # TODO!
95 ];
96 }
97
98 /**
99 * @dataProvider provideUserToolLinks
100 * @covers Linker::userToolLinks
101 * @param string $expected
102 * @param int $userId
103 * @param string $userText
104 */
105 public function testUserToolLinks( $expected, $userId, $userText ) {
106 // We'd also test the warning, but injecting a mock logger into a static method is tricky.
107 if ( $userText === '' ) {
108 Wikimedia\suppressWarnings();
109 }
110 $actual = Linker::userToolLinks( $userId, $userText );
111 if ( $userText === '' ) {
112 Wikimedia\restoreWarnings();
113 }
114
115 $this->assertSame( $expected, $actual );
116 }
117
118 public static function provideUserToolLinks() {
119 return [
120 // Empty name (T222529)
121 'Empty username, userid 0' => [ ' (no username available)', 0, '' ],
122 'Empty username, userid > 0' => [ ' (no username available)', 73, '' ],
123 ];
124 }
125
126 /**
127 * @dataProvider provideUserTalkLink
128 * @covers Linker::userTalkLink
129 * @param string $expected
130 * @param int $userId
131 * @param string $userText
132 */
133 public function testUserTalkLink( $expected, $userId, $userText ) {
134 // We'd also test the warning, but injecting a mock logger into a static method is tricky.
135 if ( $userText === '' ) {
136 Wikimedia\suppressWarnings();
137 }
138 $actual = Linker::userTalkLink( $userId, $userText );
139 if ( $userText === '' ) {
140 Wikimedia\restoreWarnings();
141 }
142
143 $this->assertSame( $expected, $actual );
144 }
145
146 public static function provideUserTalkLink() {
147 return [
148 // Empty name (T222529)
149 'Empty username, userid 0' => [ '(no username available)', 0, '' ],
150 'Empty username, userid > 0' => [ '(no username available)', 73, '' ],
151 ];
152 }
153
154 /**
155 * @dataProvider provideBlockLink
156 * @covers Linker::blockLink
157 * @param string $expected
158 * @param int $userId
159 * @param string $userText
160 */
161 public function testBlockLink( $expected, $userId, $userText ) {
162 // We'd also test the warning, but injecting a mock logger into a static method is tricky.
163 if ( $userText === '' ) {
164 Wikimedia\suppressWarnings();
165 }
166 $actual = Linker::blockLink( $userId, $userText );
167 if ( $userText === '' ) {
168 Wikimedia\restoreWarnings();
169 }
170
171 $this->assertSame( $expected, $actual );
172 }
173
174 public static function provideBlockLink() {
175 return [
176 // Empty name (T222529)
177 'Empty username, userid 0' => [ '(no username available)', 0, '' ],
178 'Empty username, userid > 0' => [ '(no username available)', 73, '' ],
179 ];
180 }
181
182 /**
183 * @dataProvider provideEmailLink
184 * @covers Linker::emailLink
185 * @param string $expected
186 * @param int $userId
187 * @param string $userText
188 */
189 public function testEmailLink( $expected, $userId, $userText ) {
190 // We'd also test the warning, but injecting a mock logger into a static method is tricky.
191 if ( $userText === '' ) {
192 Wikimedia\suppressWarnings();
193 }
194 $actual = Linker::emailLink( $userId, $userText );
195 if ( $userText === '' ) {
196 Wikimedia\restoreWarnings();
197 }
198
199 $this->assertSame( $expected, $actual );
200 }
201
202 public static function provideEmailLink() {
203 return [
204 // Empty name (T222529)
205 'Empty username, userid 0' => [ '(no username available)', 0, '' ],
206 'Empty username, userid > 0' => [ '(no username available)', 73, '' ],
207 ];
208 }
209
210 /**
211 * @dataProvider provideCasesForFormatComment
212 * @covers Linker::formatComment
213 * @covers Linker::formatAutocomments
214 * @covers Linker::formatLinksInComment
215 */
216 public function testFormatComment(
217 $expected, $comment, $title = false, $local = false, $wikiId = null
218 ) {
219 $conf = new SiteConfiguration();
220 $conf->settings = [
221 'wgServer' => [
222 'enwiki' => '//en.example.org',
223 'dewiki' => '//de.example.org',
224 ],
225 'wgArticlePath' => [
226 'enwiki' => '/w/$1',
227 'dewiki' => '/w/$1',
228 ],
229 ];
230 $conf->suffixes = [ 'wiki' ];
231
232 $this->setMwGlobals( [
233 'wgScript' => '/wiki/index.php',
234 'wgArticlePath' => '/wiki/$1',
235 'wgCapitalLinks' => true,
236 'wgConf' => $conf,
237 ] );
238
239 if ( $title === false ) {
240 // We need a page title that exists
241 $title = Title::newFromText( 'Special:BlankPage' );
242 }
243
244 $this->assertEquals(
245 $expected,
246 Linker::formatComment( $comment, $title, $local, $wikiId )
247 );
248 }
249
250 public function provideCasesForFormatComment() {
251 $wikiId = 'enwiki'; // $wgConf has a fake entry for this
252
253 // phpcs:disable Generic.Files.LineLength
254 return [
255 // Linker::formatComment
256 [
257 'a&lt;script&gt;b',
258 'a<script>b',
259 ],
260 [
261 'a—b',
262 'a&mdash;b',
263 ],
264 [
265 "&#039;&#039;&#039;not bolded&#039;&#039;&#039;",
266 "'''not bolded'''",
267 ],
268 [
269 "try &lt;script&gt;evil&lt;/scipt&gt; things",
270 "try <script>evil</scipt> things",
271 ],
272 // Linker::formatAutocomments
273 [
274 '<span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment" title="Special:BlankPage">→‎autocomment</a></span></span>',
275 "/* autocomment */",
276 ],
277 [
278 '<span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#linkie.3F" title="Special:BlankPage">→‎&#91;[linkie?]]</a></span></span>',
279 "/* [[linkie?]] */",
280 ],
281 [
282 '<span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment" title="Special:BlankPage">→‎autocomment</a>: </span> post</span>',
283 "/* autocomment */ post",
284 ],
285 [
286 'pre <span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment" title="Special:BlankPage">→‎autocomment</a></span></span>',
287 "pre /* autocomment */",
288 ],
289 [
290 'pre <span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment" title="Special:BlankPage">→‎autocomment</a>: </span> post</span>',
291 "pre /* autocomment */ post",
292 ],
293 [
294 '<span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment" title="Special:BlankPage">→‎autocomment</a>: </span> multiple? <span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment2" title="Special:BlankPage">→‎autocomment2</a></span></span></span>',
295 "/* autocomment */ multiple? /* autocomment2 */",
296 ],
297 [
298 '<span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment_containing_.2F.2A" title="Special:BlankPage">→‎autocomment containing /*</a>: </span> T70361</span>',
299 "/* autocomment containing /* */ T70361"
300 ],
301 [
302 '<span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment_containing_.22quotes.22" title="Special:BlankPage">→‎autocomment containing &quot;quotes&quot;</a></span></span>',
303 "/* autocomment containing \"quotes\" */"
304 ],
305 [
306 '<span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment_containing_.3Cscript.3Etags.3C.2Fscript.3E" title="Special:BlankPage">→‎autocomment containing &lt;script&gt;tags&lt;/script&gt;</a></span></span>',
307 "/* autocomment containing <script>tags</script> */"
308 ],
309 [
310 '<span dir="auto"><span class="autocomment"><a href="#autocomment">→‎autocomment</a></span></span>',
311 "/* autocomment */",
312 false, true
313 ],
314 [
315 '<span dir="auto"><span class="autocomment">autocomment</span></span>',
316 "/* autocomment */",
317 null
318 ],
319 [
320 '<span dir="auto"><span class="autocomment"><a href="/wiki/Special:BlankPage#autocomment" title="Special:BlankPage">→‎autocomment</a></span></span>',
321 "/* autocomment */",
322 false, false
323 ],
324 [
325 '<span dir="auto"><span class="autocomment"><a class="external" rel="nofollow" href="//en.example.org/w/Special:BlankPage#autocomment">→‎autocomment</a></span></span>',
326 "/* autocomment */",
327 false, false, $wikiId
328 ],
329 // Linker::formatLinksInComment
330 [
331 'abc <a href="/wiki/index.php?title=Link&amp;action=edit&amp;redlink=1" class="new" title="Link (page does not exist)">link</a> def',
332 "abc [[link]] def",
333 ],
334 [
335 'abc <a href="/wiki/index.php?title=Link&amp;action=edit&amp;redlink=1" class="new" title="Link (page does not exist)">text</a> def',
336 "abc [[link|text]] def",
337 ],
338 [
339 'abc <a href="/wiki/Special:BlankPage" title="Special:BlankPage">Special:BlankPage</a> def',
340 "abc [[Special:BlankPage|]] def",
341 ],
342 [
343 'abc <a href="/wiki/index.php?title=%C4%84%C5%9B%C5%BC&amp;action=edit&amp;redlink=1" class="new" title="Ąśż (page does not exist)">ąśż</a> def',
344 "abc [[%C4%85%C5%9B%C5%BC]] def",
345 ],
346 [
347 'abc <a href="/wiki/Special:BlankPage#section" title="Special:BlankPage">#section</a> def',
348 "abc [[#section]] def",
349 ],
350 [
351 'abc <a href="/wiki/index.php?title=/subpage&amp;action=edit&amp;redlink=1" class="new" title="/subpage (page does not exist)">/subpage</a> def',
352 "abc [[/subpage]] def",
353 ],
354 [
355 'abc <a href="/wiki/index.php?title=%22evil!%22&amp;action=edit&amp;redlink=1" class="new" title="&quot;evil!&quot; (page does not exist)">&quot;evil!&quot;</a> def',
356 "abc [[\"evil!\"]] def",
357 ],
358 [
359 'abc [[&lt;script&gt;very evil&lt;/script&gt;]] def',
360 "abc [[<script>very evil</script>]] def",
361 ],
362 [
363 'abc [[|]] def',
364 "abc [[|]] def",
365 ],
366 [
367 'abc <a href="/wiki/index.php?title=Link&amp;action=edit&amp;redlink=1" class="new" title="Link (page does not exist)">link</a> def',
368 "abc [[link]] def",
369 false, false
370 ],
371 [
372 'abc <a class="external" rel="nofollow" href="//en.example.org/w/Link">link</a> def',
373 "abc [[link]] def",
374 false, false, $wikiId
375 ],
376 ];
377 // phpcs:enable
378 }
379
380 /**
381 * @covers Linker::formatLinksInComment
382 * @dataProvider provideCasesForFormatLinksInComment
383 */
384 public function testFormatLinksInComment( $expected, $input, $wiki ) {
385 $conf = new SiteConfiguration();
386 $conf->settings = [
387 'wgServer' => [
388 'enwiki' => '//en.example.org'
389 ],
390 'wgArticlePath' => [
391 'enwiki' => '/w/$1',
392 ],
393 ];
394 $conf->suffixes = [ 'wiki' ];
395 $this->setMwGlobals( [
396 'wgScript' => '/wiki/index.php',
397 'wgArticlePath' => '/wiki/$1',
398 'wgCapitalLinks' => true,
399 'wgConf' => $conf,
400 ] );
401
402 $this->assertEquals(
403 $expected,
404 Linker::formatLinksInComment( $input, Title::newFromText( 'Special:BlankPage' ), false, $wiki )
405 );
406 }
407
408 /**
409 * @covers Linker::generateRollback
410 * @dataProvider provideCasesForRollbackGeneration
411 */
412 public function testGenerateRollback( $rollbackEnabled, $expectedModules ) {
413 $this->markTestSkippedIfDbType( 'postgres' );
414
415 $context = RequestContext::getMain();
416 $user = $context->getUser();
417 $user->setOption( 'showrollbackconfirmation', $rollbackEnabled );
418
419 $pageData = $this->insertPage( 'Rollback_Test_Page' );
420 $page = WikiPage::factory( $pageData['title'] );
421
422 $updater = $page->newPageUpdater( $user );
423 $updater->setContent( \MediaWiki\Revision\SlotRecord::MAIN,
424 new TextContent( 'Technical Wishes 123!' )
425 );
426 $summary = CommentStoreComment::newUnsavedComment( 'Some comment!' );
427 $updater->saveRevision( $summary );
428
429 $rollbackOutput = Linker::generateRollback( $page->getRevision(), $context );
430 $modules = $context->getOutput()->getModules();
431
432 $this->assertEquals( $expectedModules, $modules );
433 $this->assertContains( 'rollback 1 edit', $rollbackOutput );
434 }
435
436 public static function provideCasesForRollbackGeneration() {
437 return [
438 [
439 true,
440 [ 'mediawiki.page.rollback.confirmation' ]
441
442 ],
443 [
444 false,
445 []
446 ]
447 ];
448 }
449
450 public static function provideCasesForFormatLinksInComment() {
451 // phpcs:disable Generic.Files.LineLength
452 return [
453 [
454 'foo bar <a href="/wiki/Special:BlankPage" title="Special:BlankPage">Special:BlankPage</a>',
455 'foo bar [[Special:BlankPage]]',
456 null,
457 ],
458 [
459 '<a href="/wiki/Special:BlankPage" title="Special:BlankPage">Special:BlankPage</a>',
460 '[[ :Special:BlankPage]]',
461 null,
462 ],
463 [
464 '<a class="external" rel="nofollow" href="//en.example.org/w/Foo%27bar">Foo\'bar</a>',
465 "[[Foo'bar]]",
466 'enwiki',
467 ],
468 [
469 'foo bar <a class="external" rel="nofollow" href="//en.example.org/w/Special:BlankPage">Special:BlankPage</a>',
470 'foo bar [[Special:BlankPage]]',
471 'enwiki',
472 ],
473 [
474 'foo bar <a class="external" rel="nofollow" href="//en.example.org/w/File:Example">Image:Example</a>',
475 'foo bar [[Image:Example]]',
476 'enwiki',
477 ],
478 ];
479 // phpcs:enable
480 }
481
482 public static function provideLinkBeginHook() {
483 // phpcs:disable Generic.Files.LineLength
484 return [
485 // Modify $html
486 [
487 function ( $dummy, $title, &$html, &$attribs, &$query, &$options, &$ret ) {
488 $html = 'foobar';
489 },
490 '<a href="/wiki/Special:BlankPage" title="Special:BlankPage">foobar</a>'
491 ],
492 // Modify $attribs
493 [
494 function ( $dummy, $title, &$html, &$attribs, &$query, &$options, &$ret ) {
495 $attribs['bar'] = 'baz';
496 },
497 '<a href="/wiki/Special:BlankPage" title="Special:BlankPage" bar="baz">Special:BlankPage</a>'
498 ],
499 // Modify $query
500 [
501 function ( $dummy, $title, &$html, &$attribs, &$query, &$options, &$ret ) {
502 $query['bar'] = 'baz';
503 },
504 '<a href="/w/index.php?title=Special:BlankPage&amp;bar=baz" title="Special:BlankPage">Special:BlankPage</a>'
505 ],
506 // Force HTTP $options
507 [
508 function ( $dummy, $title, &$html, &$attribs, &$query, &$options, &$ret ) {
509 $options = [ 'http' ];
510 },
511 '<a href="http://example.org/wiki/Special:BlankPage" title="Special:BlankPage">Special:BlankPage</a>'
512 ],
513 // Force 'forcearticlepath' in $options
514 [
515 function ( $dummy, $title, &$html, &$attribs, &$query, &$options, &$ret ) {
516 $options = [ 'forcearticlepath' ];
517 $query['foo'] = 'bar';
518 },
519 '<a href="/wiki/Special:BlankPage?foo=bar" title="Special:BlankPage">Special:BlankPage</a>'
520 ],
521 // Abort early
522 [
523 function ( $dummy, $title, &$html, &$attribs, &$query, &$options, &$ret ) {
524 $ret = 'foobar';
525 return false;
526 },
527 'foobar'
528 ],
529 ];
530 // phpcs:enable
531 }
532
533 /**
534 * @covers MediaWiki\Linker\LinkRenderer::runLegacyBeginHook
535 * @dataProvider provideLinkBeginHook
536 */
537 public function testLinkBeginHook( $callback, $expected ) {
538 $this->hideDeprecated( 'LinkBegin hook (used in hook-LinkBegin-closure)' );
539 $this->setMwGlobals( [
540 'wgArticlePath' => '/wiki/$1',
541 'wgServer' => '//example.org',
542 'wgCanonicalServer' => 'http://example.org',
543 'wgScriptPath' => '/w',
544 'wgScript' => '/w/index.php',
545 ] );
546
547 $this->setMwGlobals( 'wgHooks', [ 'LinkBegin' => [ $callback ] ] );
548 $title = SpecialPage::getTitleFor( 'Blankpage' );
549 $out = Linker::link( $title );
550 $this->assertEquals( $expected, $out );
551 }
552
553 public static function provideLinkEndHook() {
554 return [
555 // Override $html
556 [
557 function ( $dummy, $title, $options, &$html, &$attribs, &$ret ) {
558 $html = 'foobar';
559 },
560 '<a href="/wiki/Special:BlankPage" title="Special:BlankPage">foobar</a>'
561 ],
562 // Modify $attribs
563 [
564 function ( $dummy, $title, $options, &$html, &$attribs, &$ret ) {
565 $attribs['bar'] = 'baz';
566 },
567 '<a href="/wiki/Special:BlankPage" title="Special:BlankPage" bar="baz">Special:BlankPage</a>'
568 ],
569 // Fully override return value and abort hook
570 [
571 function ( $dummy, $title, $options, &$html, &$attribs, &$ret ) {
572 $ret = 'blahblahblah';
573 return false;
574 },
575 'blahblahblah'
576 ],
577
578 ];
579 }
580
581 /**
582 * @covers MediaWiki\Linker\LinkRenderer::buildAElement
583 * @dataProvider provideLinkEndHook
584 */
585 public function testLinkEndHook( $callback, $expected ) {
586 $this->hideDeprecated( 'LinkEnd hook (used in hook-LinkEnd-closure)' );
587 $this->setMwGlobals( [
588 'wgArticlePath' => '/wiki/$1',
589 ] );
590
591 $this->setMwGlobals( 'wgHooks', [ 'LinkEnd' => [ $callback ] ] );
592
593 $title = SpecialPage::getTitleFor( 'Blankpage' );
594 $out = Linker::link( $title );
595 $this->assertEquals( $expected, $out );
596 }
597 }