Localisation updates German
[mediawiki.git] / maintenance / parserTests.txt
blob2e72415c813e3185ed19de5742c23998d15cca2d
1 # MediaWiki Parser test cases
2 # Some taken from http://meta.wikimedia.org/wiki/Parser_testing
3 # All (C) their respective authors and released under the GPL
5 # The syntax should be fairly self-explanatory.
7 # Currently supported test options:
8 #       One of the following three:
10 #       (default)       generate HTML output
11 #       pst             apply pre-save transform
12 #       msg             apply message transform
14 #       Plus any combination of these:
16 #       cat             add category links
17 #       ill             add inter-language links
18 #       subpage         enable subpages (disabled by default)
19 #       noxml           don't check for XML well formdness
20 #       title=[[XXX]]   run test using article title XXX
21 #       language=XXX    set content language to XXX for this test
22 #       variant=XXX     set the variant of language for this test (eg zh-tw)
23 #       disabled        do not run test
25 # For testing purposes, temporary articles can created:
26 # !!article / NAMESPACE:TITLE / !!text / ARTICLE TEXT / !!endarticle
27 # where '/' denotes a newline.
29 # This is the standard article assumed to exist.
30 !! article
31 Main Page
32 !! text
33 blah blah
34 !! endarticle
36 !!article 
37 Template:Foo
38 !!text
39 FOO
40 !!endarticle
42 !! article 
43 Template:Blank
44 !! text
45 !! endarticle
47 !! article
48 Template:!
49 !! text
51 !! endarticle
53 ###
54 ### Basic tests
55 ###
56 !! test
57 Blank input
58 !! input
59 !! result
60 !! end
63 !! test
64 Simple paragraph
65 !! input
66 This is a simple paragraph.
67 !! result
68 <p>This is a simple paragraph.
69 </p>
70 !! end
72 !! test
73 Simple list
74 !! input
75 * Item 1
76 * Item 2
77 !! result
78 <ul><li> Item 1
79 </li><li> Item 2
80 </li></ul>
82 !! end
84 !! test
85 Italics and bold
86 !! input
87 * plain
88 * plain''italic''plain
89 * plain''italic''plain''italic''plain
90 * plain'''bold'''plain
91 * plain'''bold'''plain'''bold'''plain
92 * plain''italic''plain'''bold'''plain
93 * plain'''bold'''plain''italic''plain
94 * plain''italic'''bold-italic'''italic''plain
95 * plain'''bold''bold-italic''bold'''plain
96 * plain'''''bold-italic'''italic''plain
97 * plain'''''bold-italic''bold'''plain
98 * plain''italic'''bold-italic'''''plain
99 * plain'''bold''bold-italic'''''plain
100 * plain l'''italic''plain
101 * plain l''''bold''' plain
102 !! result
103 <ul><li> plain
104 </li><li> plain<i>italic</i>plain
105 </li><li> plain<i>italic</i>plain<i>italic</i>plain
106 </li><li> plain<b>bold</b>plain
107 </li><li> plain<b>bold</b>plain<b>bold</b>plain
108 </li><li> plain<i>italic</i>plain<b>bold</b>plain
109 </li><li> plain<b>bold</b>plain<i>italic</i>plain
110 </li><li> plain<i>italic<b>bold-italic</b>italic</i>plain
111 </li><li> plain<b>bold<i>bold-italic</i>bold</b>plain
112 </li><li> plain<i><b>bold-italic</b>italic</i>plain
113 </li><li> plain<b><i>bold-italic</i>bold</b>plain
114 </li><li> plain<i>italic<b>bold-italic</b></i>plain
115 </li><li> plain<b>bold<i>bold-italic</i></b>plain
116 </li><li> plain l'<i>italic</i>plain
117 </li><li> plain l'<b>bold</b> plain
118 </li></ul>
120 !! end
123 ### <nowiki> test cases
126 !! test
127 <nowiki> unordered list
128 !! input
129 <nowiki>* This is not an unordered list item.</nowiki>
130 !! result
131 <p>* This is not an unordered list item.
132 </p>
133 !! end
135 !! test
136 <nowiki> spacing
137 !! input
138 <nowiki>Lorem ipsum dolor
140 sed abit.
141   sed nullum.
143 :and a colon
144 </nowiki>
145 !! result
146 <p>Lorem ipsum dolor
148 sed abit.
149   sed nullum.
151 :and a colon
153 </p>
154 !! end
156 !! test
157 nowiki 3
158 !! input
159 :There is not nowiki.
160 :There is <nowiki>nowiki</nowiki>.
162 #There is not nowiki.
163 #There is <nowiki>nowiki</nowiki>.
165 *There is not nowiki.
166 *There is <nowiki>nowiki</nowiki>.
167 !! result
168 <dl><dd>There is not nowiki.
169 </dd><dd>There is nowiki.
170 </dd></dl>
171 <ol><li>There is not nowiki.
172 </li><li>There is nowiki.
173 </li></ol>
174 <ul><li>There is not nowiki.
175 </li><li>There is nowiki.
176 </li></ul>
178 !! end
182 ### Comments
184 !! test
185 Comment test 1
186 !! input
187 <!-- comment 1 --> asdf
188 <!-- comment 2 -->
189 !! result
190 <pre>asdf
191 </pre>
193 !! end
195 !! test
196 Comment test 2
197 !! input
198 asdf
199 <!-- comment 1 -->
201 !! result
202 <p>asdf
204 </p>
205 !! end
207 !! test
208 Comment test 3
209 !! input
210 asdf
211 <!-- comment 1 -->
212 <!-- comment 2 -->
214 !! result
215 <p>asdf
217 </p>
218 !! end
220 !! test
221 Comment test 4
222 !! input
223 asdf<!-- comment 1 -->jkl
224 !! result
225 <p>asdfjkl
226 </p>
227 !! end
229 !! test
230 Comment spacing
231 !! input
233  <!-- foo --> b <!-- bar -->
235 !! result
236 <p>a
237 </p>
238 <pre> b 
239 </pre>
240 <p>c
241 </p>
242 !! end
244 !! test
245 Comment whitespace
246 !! input
247 <!-- returns a single newline, not nothing, since the newline after > is not stripped -->
248 !! result
250 !! end
252 !! test
253 Comment semantics and delimiters
254 !! input
255 <!-- --><!----><!-----><!------>
256 !! result
258 !! end
260 !! test
261 Comment semantics and delimiters, redux
262 !! input
263 <!-- In SGML every "foo" here would actually show up in the text -- foo -- bar
264 -- foo -- funky huh? ... -->
265 !! result
267 !! end
269 !! test
270 Comment semantics and delimiters: directors cut
271 !! input
272 <!-- ... However we like to keep things simple and somewhat XML-ish so we eat
273 everything starting with < followed by !-- until the first -- and > we see,
274 that wouldn't be valid XML however, since in XML -- has to terminate a comment
275 -->-->
276 !! result
277 <p>--&gt;
278 </p>
279 !! end
281 !! test
282 Comment semantics: nesting
283 !! input
284 <!--<!-- no, we're not going to do anything fancy here -->-->
285 !! result
286 <p>--&gt;
287 </p>
288 !! end
290 !! test
291 Comment semantics: unclosed comment at end
292 !! input
293 <!--This comment will run out to the end of the document
294 !! result
296 !! end
298 !! test
299 Comment in template title
300 !! input
301 {{f<!---->oo}}
302 !! result
303 <p>FOO
304 </p>
305 !! end
307 !! test
308 Comment on its own line post-expand
309 !! input
311 {{blank}}<!---->
313 !! result
314 <p>a
315 </p><p>b
316 </p>
317 !! end
320 ### Preformatted text
322 !! test
323 Preformatted text
324 !! input
325  This is some
326  Preformatted text
327  With ''italic''
328  And '''bold'''
329  And a [[Main Page|link]]
330 !! result
331 <pre>This is some
332 Preformatted text
333 With <i>italic</i>
334 And <b>bold</b>
335 And a <a href="/wiki/Main_Page" title="Main Page">link</a>
336 </pre>
337 !! end
339 !! test
340 <pre> with <nowiki> inside (compatibility with 1.6 and earlier)
341 !! input
342 <pre><nowiki>
344 <cite>
345 <em>
346 </nowiki></pre>
347 !! result
348 <pre>
349 &lt;b&gt;
350 &lt;cite&gt;
351 &lt;em&gt;
352 </pre>
354 !! end
356 !! test
357 Regression with preformatted in <center>
358 !! input
359 <center>
360  Blah
361 </center>
362 !! result
363 <center>
364 <pre>Blah
365 </pre>
366 </center>
368 !! end
370 !! test
371 <pre> with attributes (bug 3202)
372 !! input
373 <pre style="background: blue; color:white">Bluescreen of WikiDeath</pre>
374 !! result
375 <pre style="background: blue; color:white">Bluescreen of WikiDeath</pre>
377 !! end
379 !! test
380 <pre> with width attribute (bug 3202)
381 !! input
382 <pre width="8">Narrow screen goodies</pre>
383 !! result
384 <pre width="8">Narrow screen goodies</pre>
386 !! end
388 !! test
389 <pre> with forbidden attribute (bug 3202)
390 !! input
391 <pre width="8" onmouseover="alert(document.cookie)">Narrow screen goodies</pre>
392 !! result
393 <pre width="8">Narrow screen goodies</pre>
395 !! end
397 !! test
398 <pre> with forbidden attribute values (bug 3202)
399 !! input
400 <pre width="8" style="border-width: expression(alert(document.cookie))">Narrow screen goodies</pre>
401 !! result
402 <pre width="8">Narrow screen goodies</pre>
404 !! end
407 ### Definition lists
409 !! test
410 Simple definition
411 !! input
412 ; name : Definition
413 !! result
414 <dl><dt> name&nbsp;</dt><dd> Definition
415 </dd></dl>
417 !! end
419 !! test
420 Definition list for indentation only
421 !! input
422 : Indented text
423 !! result
424 <dl><dd> Indented text
425 </dd></dl>
427 !! end
429 !! test
430 Definition list with no space
431 !! input
432 ;name:Definition
433 !! result
434 <dl><dt>name</dt><dd>Definition
435 </dd></dl>
437 !!end
439 !! test
440 Definition list with URL link
441 !! input
442 ; http://example.com/ : definition
443 !! result
444 <dl><dt> <a href="http://example.com/" class="external free" title="http://example.com/" rel="nofollow">http://example.com/</a>&nbsp;</dt><dd> definition
445 </dd></dl>
447 !! end
449 !! test
450 Definition list with bracketed URL link
451 !! input
452 ;[http://www.example.com/ Example]:Something about it
453 !! result
454 <dl><dt><a href="http://www.example.com/" class="external text" title="http://www.example.com/" rel="nofollow">Example</a></dt><dd>Something about it
455 </dd></dl>
457 !! end
459 !! test
460 Definition list with wikilink containing colon
461 !! input
462 ; [[Help:FAQ]]: The least-read page on Wikipedia
463 !! result
464 <dl><dt> <a href="/index.php?title=Help:FAQ&amp;action=edit&amp;redlink=1" class="new" title="Help:FAQ (not yet written)">Help:FAQ</a></dt><dd> The least-read page on Wikipedia
465 </dd></dl>
467 !! end
469 # At Brion's and JeLuF's insistence... :)
470 !! test
471 Definition list with news link containing colon
472 !! input
473 ;  news:alt.wikipedia.rox: This isn't even a real newsgroup!
474 !! result
475 <dl><dt>  <a href="news:alt.wikipedia.rox" class="external free" title="news:alt.wikipedia.rox" rel="nofollow">news:alt.wikipedia.rox</a></dt><dd> This isn't even a real newsgroup!
476 </dd></dl>
478 !! end
480 !! test
481 Malformed definition list with colon
482 !! input
483 ;  news:alt.wikipedia.rox -- don't crash or enter an infinite loop
484 !! result
485 <dl><dt>  <a href="news:alt.wikipedia.rox" class="external free" title="news:alt.wikipedia.rox" rel="nofollow">news:alt.wikipedia.rox</a> -- don't crash or enter an infinite loop
486 </dt></dl>
488 !! end
490 !! test
491 Definition lists: colon in external link text
492 !! input
493 ; [http://www.wikipedia2.org/ Wikipedia : The Next Generation]: OK, I made that up
494 !! result
495 <dl><dt> <a href="http://www.wikipedia2.org/" class="external text" title="http://www.wikipedia2.org/" rel="nofollow">Wikipedia&nbsp;: The Next Generation</a></dt><dd> OK, I made that up
496 </dd></dl>
498 !! end
500 !! test
501 Definition lists: colon in HTML attribute
502 !! input
503 ;<b style="display: inline">bold</b>
504 !! result
505 <dl><dt><b style="display: inline">bold</b>
506 </dt></dl>
508 !! end
511 !! test
512 Definition lists: self-closed tag
513 !! input
514 ;one<br/>two : two-line fun
515 !! result
516 <dl><dt>one<br />two&nbsp;</dt><dd> two-line fun
517 </dd></dl>
519 !! end
523 ### External links
525 !! test
526 External links: non-bracketed
527 !! input
528 Non-bracketed: http://example.com
529 !! result
530 <p>Non-bracketed: <a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a>
531 </p>
532 !! end
534 !! test
535 External links: numbered
536 !! input
537 Numbered: [http://example.com]
538 Numbered: [http://example.net]
539 Numbered: [http://example.org]
540 !! result
541 <p>Numbered: <a href="http://example.com" class="external autonumber" title="http://example.com" rel="nofollow">[1]</a>
542 Numbered: <a href="http://example.net" class="external autonumber" title="http://example.net" rel="nofollow">[2]</a>
543 Numbered: <a href="http://example.org" class="external autonumber" title="http://example.org" rel="nofollow">[3]</a>
544 </p>
545 !!end
547 !! test
548 External links: specified text
549 !! input
550 Specified text: [http://example.com link]
551 !! result
552 <p>Specified text: <a href="http://example.com" class="external text" title="http://example.com" rel="nofollow">link</a>
553 </p>
554 !!end
556 !! test
557 External links: trail
558 !! input
559 Linktrails should not work for external links: [http://example.com link]s
560 !! result
561 <p>Linktrails should not work for external links: <a href="http://example.com" class="external text" title="http://example.com" rel="nofollow">link</a>s
562 </p>
563 !! end
565 !! test
566 External links: dollar sign in URL
567 !! input
568 http://example.com/1$2345
569 !! result
570 <p><a href="http://example.com/1$2345" class="external free" title="http://example.com/1$2345" rel="nofollow">http://example.com/1$2345</a>
571 </p>
572 !! end
574 !! test
575 External links: dollar sign in URL (named)
576 !! input
577 [http://example.com/1$2345]
578 !! result
579 <p><a href="http://example.com/1$2345" class="external autonumber" title="http://example.com/1$2345" rel="nofollow">[1]</a>
580 </p>
581 !!end
583 !! test
584 External links: open square bracket forbidden in URL (bug 4377)
585 !! input
586 http://example.com/1[2345
587 !! result
588 <p><a href="http://example.com/1" class="external free" title="http://example.com/1" rel="nofollow">http://example.com/1</a>[2345
589 </p>
590 !! end
592 !! test
593 External links: open square bracket forbidden in URL (named) (bug 4377)
594 !! input
595 [http://example.com/1[2345]
596 !! result
597 <p><a href="http://example.com/1" class="external text" title="http://example.com/1" rel="nofollow">[2345</a>
598 </p>
599 !!end
601 !! test
602 External links: nowiki in URL link text (bug 6230)
603 !!input
604 [http://example.com/ <nowiki>''example site''</nowiki>]
605 !! result
606 <p><a href="http://example.com/" class="external text" title="http://example.com/" rel="nofollow">''example site''</a>
607 </p>
608 !! end
610 !! test
611 External links: newline forbidden in text (bug 6230 regression check)
612 !! input
613 [http://example.com/ first
614 second]
615 !! result
616 <p>[<a href="http://example.com/" class="external free" title="http://example.com/" rel="nofollow">http://example.com/</a> first
617 second]
618 </p>
619 !!end
621 !! test
622 External image
623 !! input
624 External image: http://meta.wikimedia.org/upload/f/f1/Ncwikicol.png
625 !! result
626 <p>External image: <img src="http://meta.wikimedia.org/upload/f/f1/Ncwikicol.png" alt="Ncwikicol.png" />
627 </p>
628 !! end
630 !! test
631 External image from https
632 !! input
633 External image from https: https://meta.wikimedia.org/upload/f/f1/Ncwikicol.png
634 !! result
635 <p>External image from https: <img src="https://meta.wikimedia.org/upload/f/f1/Ncwikicol.png" alt="Ncwikicol.png" />
636 </p>
637 !! end
639 !! test
640 Link to non-http image, no img tag
641 !! input
642 Link to non-http image, no img tag: ftp://example.com/test.jpg
643 !! result
644 <p>Link to non-http image, no img tag: <a href="ftp://example.com/test.jpg" class="external free" title="ftp://example.com/test.jpg" rel="nofollow">ftp://example.com/test.jpg</a>
645 </p>
646 !! end
648 !! test
649 External links: terminating separator
650 !! input
651 Terminating separator: http://example.com/thing,
652 !! result
653 <p>Terminating separator: <a href="http://example.com/thing" class="external free" title="http://example.com/thing" rel="nofollow">http://example.com/thing</a>,
654 </p>
655 !! end
657 !! test
658 External links: intervening separator
659 !! input
660 Intervening separator: http://example.com/1,2,3
661 !! result
662 <p>Intervening separator: <a href="http://example.com/1,2,3" class="external free" title="http://example.com/1,2,3" rel="nofollow">http://example.com/1,2,3</a>
663 </p>
664 !! end
666 !! test
667 External links: old bug with URL in query
668 !! input
669 Old bug with URL in query: [http://example.com/thing?url=http://example.com link]
670 !! result
671 <p>Old bug with URL in query: <a href="http://example.com/thing?url=http://example.com" class="external text" title="http://example.com/thing?url=http://example.com" rel="nofollow">link</a>
672 </p>
673 !! end
675 !! test
676 External links: old URL-in-URL bug, mixed protocols
677 !! input
678 And again with mixed protocols: [ftp://example.com?url=http://example.com link]
679 !! result
680 <p>And again with mixed protocols: <a href="ftp://example.com?url=http://example.com" class="external text" title="ftp://example.com?url=http://example.com" rel="nofollow">link</a>
681 </p>
682 !!end
684 !! test
685 External links: URL in text
686 !! input
687 URL in text: [http://example.com http://example.com]
688 !! result
689 <p>URL in text: <a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a>
690 </p>
691 !! end
693 !! test
694 External links: Clickable images
695 !! input
696 ja-style clickable images: [http://example.com http://meta.wikimedia.org/upload/f/f1/Ncwikicol.png]
697 !! result
698 <p>ja-style clickable images: <a href="http://example.com" class="external text" title="http://example.com" rel="nofollow"><img src="http://meta.wikimedia.org/upload/f/f1/Ncwikicol.png" alt="Ncwikicol.png" /></a>
699 </p>
700 !!end
702 !! test
703 External links: raw ampersand
704 !! input
705 Old &amp; use: http://x&y
706 !! result
707 <p>Old &amp; use: <a href="http://x&amp;y" class="external free" title="http://x&amp;y" rel="nofollow">http://x&amp;y</a>
708 </p>
709 !! end
711 !! test
712 External links: encoded ampersand
713 !! input
714 Old &amp; use: http://x&amp;y
715 !! result
716 <p>Old &amp; use: <a href="http://x&amp;y" class="external free" title="http://x&amp;y" rel="nofollow">http://x&amp;y</a>
717 </p>
718 !! end
720 !! test
721 External links: encoded equals (bug 6102)
722 !! input
723 http://example.com/?foo&#61;bar
724 !! result
725 <p><a href="http://example.com/?foo=bar" class="external free" title="http://example.com/?foo=bar" rel="nofollow">http://example.com/?foo=bar</a>
726 </p>
727 !! end
729 !! test
730 External links: [raw ampersand]
731 !! input
732 Old &amp; use: [http://x&y]
733 !! result
734 <p>Old &amp; use: <a href="http://x&amp;y" class="external autonumber" title="http://x&amp;y" rel="nofollow">[1]</a>
735 </p>
736 !! end
738 !! test
739 External links: [encoded ampersand]
740 !! input
741 Old &amp; use: [http://x&amp;y]
742 !! result
743 <p>Old &amp; use: <a href="http://x&amp;y" class="external autonumber" title="http://x&amp;y" rel="nofollow">[1]</a>
744 </p>
745 !! end
747 !! test
748 External links: [encoded equals] (bug 6102)
749 !! input
750 [http://example.com/?foo&#61;bar]
751 !! result
752 <p><a href="http://example.com/?foo=bar" class="external autonumber" title="http://example.com/?foo=bar" rel="nofollow">[1]</a>
753 </p>
754 !! end
756 !! test
757 External links: [IDN ignored character reference in hostname; strip it right off]
758 !! input
759 [http://e&zwnj;xample.com/]
760 !! result
761 <p><a href="http://example.com/" class="external autonumber" title="http://example.com/" rel="nofollow">[1]</a>
762 </p>
763 !! end
765 !! test
766 External links: IDN ignored character reference in hostname; strip it right off
767 !! input
768 http://e&zwnj;xample.com/
769 !! result
770 <p><a href="http://example.com/" class="external free" title="http://example.com/" rel="nofollow">http://example.com/</a>
771 </p>
772 !! end
774 !! test
775 External links: www.jpeg.org (bug 554)
776 !! input
777 http://www.jpeg.org
778 !!result
779 <p><a href="http://www.jpeg.org" class="external free" title="http://www.jpeg.org" rel="nofollow">http://www.jpeg.org</a>
780 </p>
781 !! end
783 !! test
784 External links: URL within URL (original bug 2)
785 !! input
786 [http://www.unausa.org/newindex.asp?place=http://www.unausa.org/programs/mun.asp]
787 !! result
788 <p><a href="http://www.unausa.org/newindex.asp?place=http://www.unausa.org/programs/mun.asp" class="external autonumber" title="http://www.unausa.org/newindex.asp?place=http://www.unausa.org/programs/mun.asp" rel="nofollow">[1]</a>
789 </p>
790 !! end
792 !! test
793 BUG 361: URL inside bracketed URL
794 !! input
795 [http://www.example.com/foo http://www.example.com/bar]
796 !! result
797 <p><a href="http://www.example.com/foo" class="external text" title="http://www.example.com/foo" rel="nofollow">http://www.example.com/bar</a>
798 </p>
799 !! end
801 !! test
802 BUG 361: URL within URL, not bracketed
803 !! input
804 http://www.example.com/foo?=http://www.example.com/bar
805 !! result
806 <p><a href="http://www.example.com/foo?=http://www.example.com/bar" class="external free" title="http://www.example.com/foo?=http://www.example.com/bar" rel="nofollow">http://www.example.com/foo?=http://www.example.com/bar</a>
807 </p>
808 !! end
810 !! test
811 BUG 289: ">"-token in URL-tail
812 !! input
813 http://www.example.com/<hello>
814 !! result
815 <p><a href="http://www.example.com/" class="external free" title="http://www.example.com/" rel="nofollow">http://www.example.com/</a>&lt;hello&gt;
816 </p>
817 !!end
819 !! test
820 BUG 289: literal ">"-token in URL-tail
821 !! input
822 http://www.example.com/<b>html</b>
823 !! result
824 <p><a href="http://www.example.com/" class="external free" title="http://www.example.com/" rel="nofollow">http://www.example.com/</a><b>html</b>
825 </p>
826 !!end
828 !! test
829 BUG 289: ">"-token in bracketed URL
830 !! input
831 [http://www.example.com/<hello> stuff]
832 !! result
833 <p><a href="http://www.example.com/" class="external text" title="http://www.example.com/" rel="nofollow">&lt;hello&gt; stuff</a>
834 </p>
835 !!end
837 !! test
838 BUG 289: literal ">"-token in bracketed URL
839 !! input
840 [http://www.example.com/<b>html</b> stuff]
841 !! result
842 <p><a href="http://www.example.com/" class="external text" title="http://www.example.com/" rel="nofollow"><b>html</b> stuff</a>
843 </p>
844 !!end
846 !! test
847 BUG 289: literal double quote at end of URL
848 !! input
849 http://www.example.com/"hello"
850 !! result
851 <p><a href="http://www.example.com/" class="external free" title="http://www.example.com/" rel="nofollow">http://www.example.com/</a>"hello"
852 </p>
853 !!end
855 !! test
856 BUG 289: literal double quote in bracketed URL
857 !! input
858 [http://www.example.com/"hello" stuff]
859 !! result
860 <p><a href="http://www.example.com/" class="external text" title="http://www.example.com/" rel="nofollow">"hello" stuff</a>
861 </p>
862 !!end
864 !! test
865 External links: invalid character
866 Fixme: the missing char seems to have gone missing
867 !! options
868 disabled
869 !! input
870 [http://www.example.com  test]
871 !! result
872 <p>[<a href="http://www.example.com" class="external free" title="http://www.example.com" rel="nofollow">http://www.example.com</a>  test]
873 </p>
874 !! end
876 !! test
877 External links: multiple legal whitespace is fine, Magnus. Don't break it please. (bug 5081)
878 !! input
879 [http://www.example.com  test]
880 !! result
881 <p><a href="http://www.example.com" class="external text" title="http://www.example.com" rel="nofollow">test</a>
882 </p>
883 !! end
885 !! test
886 External links: wiki links within external link (Bug 3695)
887 !! input
888 [http://example.com [[wikilink]] embedded in ext link]
889 !! result
890 <p><a href="http://example.com" class="external text" title="http://example.com" rel="nofollow"></a><a href="/index.php?title=Wikilink&amp;action=edit&amp;redlink=1" class="new" title="Wikilink (not yet written)">wikilink</a><a href="http://example.com" class="external text" title="http://example.com" rel="nofollow"> embedded in ext link</a>
891 </p>
892 !! end
894 !! test
895 BUG 787: Links with one slash after the url protocol are invalid
896 !! input
897 http:/example.com
899 [http:/example.com title]
900 !! result
901 <p>http:/example.com
902 </p><p>[http:/example.com title]
903 </p>
904 !! end
906 !! test
907 Bug 2702: Mismatched <i>, <b> and <a> tags are invalid
908 !! input
909 ''[http://example.com text'']
910 [http://example.com '''text]'''
911 ''Something [http://example.com in italic'']
912 ''Something [http://example.com mixed''''', even bold]'''
913 '''''Now [http://example.com both''''']
914 !! result
915 <p><a href="http://example.com" class="external text" title="http://example.com" rel="nofollow"><i>text</i></a>
916 <a href="http://example.com" class="external text" title="http://example.com" rel="nofollow"><b>text</b></a>
917 <i>Something </i><a href="http://example.com" class="external text" title="http://example.com" rel="nofollow"><i>in italic</i></a>
918 <i>Something </i><a href="http://example.com" class="external text" title="http://example.com" rel="nofollow"><i>mixed</i><b>, even bold</b></a>
919 <i><b>Now </b></i><a href="http://example.com" class="external text" title="http://example.com" rel="nofollow"><i><b>both</b></i></a>
920 </p>
921 !! end
924 !! test
925 Bug 4781: %26 in URL
926 !! input
927 http://www.example.com/?title=AT%26T
928 !! result
929 <p><a href="http://www.example.com/?title=AT%26T" class="external free" title="http://www.example.com/?title=AT%26T" rel="nofollow">http://www.example.com/?title=AT%26T</a>
930 </p>
931 !! end
933 !! test
934 Bug 4781, 5267: %26 in URL
935 !! input
936 http://www.example.com/?title=100%25_Bran
937 !! result
938 <p><a href="http://www.example.com/?title=100%25_Bran" class="external free" title="http://www.example.com/?title=100%25_Bran" rel="nofollow">http://www.example.com/?title=100%25_Bran</a>
939 </p>
940 !! end
942 !! test
943 Bug 4781, 5267: %28, %29 in URL
944 !! input
945 http://www.example.com/?title=Ben-Hur_%281959_film%29
946 !! result
947 <p><a href="http://www.example.com/?title=Ben-Hur_%281959_film%29" class="external free" title="http://www.example.com/?title=Ben-Hur_%281959_film%29" rel="nofollow">http://www.example.com/?title=Ben-Hur_%281959_film%29</a>
948 </p>
949 !! end
952 !! test
953 Bug 4781: %26 in autonumber URL
954 !! input
955 [http://www.example.com/?title=AT%26T]
956 !! result
957 <p><a href="http://www.example.com/?title=AT%26T" class="external autonumber" title="http://www.example.com/?title=AT%26T" rel="nofollow">[1]</a>
958 </p>
959 !! end
961 !! test
962 Bug 4781, 5267: %26 in autonumber URL
963 !! input
964 [http://www.example.com/?title=100%25_Bran]
965 !! result
966 <p><a href="http://www.example.com/?title=100%25_Bran" class="external autonumber" title="http://www.example.com/?title=100%25_Bran" rel="nofollow">[1]</a>
967 </p>
968 !! end
970 !! test
971 Bug 4781, 5267: %28, %29 in autonumber URL
972 !! input
973 [http://www.example.com/?title=Ben-Hur_%281959_film%29]
974 !! result
975 <p><a href="http://www.example.com/?title=Ben-Hur_%281959_film%29" class="external autonumber" title="http://www.example.com/?title=Ben-Hur_%281959_film%29" rel="nofollow">[1]</a>
976 </p>
977 !! end
980 !! test
981 Bug 4781: %26 in bracketed URL
982 !! input
983 [http://www.example.com/?title=AT%26T link]
984 !! result
985 <p><a href="http://www.example.com/?title=AT%26T" class="external text" title="http://www.example.com/?title=AT%26T" rel="nofollow">link</a>
986 </p>
987 !! end
989 !! test
990 Bug 4781, 5267: %26 in bracketed URL
991 !! input
992 [http://www.example.com/?title=100%25_Bran link]
993 !! result
994 <p><a href="http://www.example.com/?title=100%25_Bran" class="external text" title="http://www.example.com/?title=100%25_Bran" rel="nofollow">link</a>
995 </p>
996 !! end
998 !! test
999 Bug 4781, 5267: %28, %29 in bracketed URL
1000 !! input
1001 [http://www.example.com/?title=Ben-Hur_%281959_film%29 link]
1002 !! result
1003 <p><a href="http://www.example.com/?title=Ben-Hur_%281959_film%29" class="external text" title="http://www.example.com/?title=Ben-Hur_%281959_film%29" rel="nofollow">link</a>
1004 </p>
1005 !! end
1007 !! test
1008 External link containing double-single-quotes in text '' (bug 4598 sanity check)
1009 !! input
1010 Some [http://example.com/ pretty ''italics'' and stuff]!
1011 !! result
1012 <p>Some <a href="http://example.com/" class="external text" title="http://example.com/" rel="nofollow">pretty <i>italics</i> and stuff</a>!
1013 </p>
1014 !! end
1016 !! test
1017 External link containing double-single-quotes in text embedded in italics (bug 4598 sanity check)
1018 !! input
1019 ''Some [http://example.com/ pretty ''italics'' and stuff]!''
1020 !! result
1021 <p><i>Some </i><a href="http://example.com/" class="external text" title="http://example.com/" rel="nofollow"><i>pretty </i>italics<i> and stuff</i></a><i>!</i>
1022 </p>
1023 !! end
1025 !! test
1026 URL-encoding in URL functions (single parameter)
1027 !! input
1028 {{localurl:Some page|amp=&}}
1029 !! result
1030 <p>/index.php?title=Some_page&amp;amp=%26
1031 </p>
1032 !! end
1034 !! test
1035 URL-encoding in URL functions (multiple parameters)
1036 !! input
1037 {{localurl:Some page|q=?&amp=&}}
1038 !! result
1039 <p>/index.php?title=Some_page&amp;q=%3F&amp;amp=%26
1040 </p>
1041 !! end
1044 ### Quotes
1047 !! test
1048 Quotes
1049 !! input
1050 Normal text. '''Bold text.''' Normal text. ''Italic text.''
1052 Normal text. '''''Bold italic text.''''' Normal text.
1053 !!result
1054 <p>Normal text. <b>Bold text.</b> Normal text. <i>Italic text.</i>
1055 </p><p>Normal text. <i><b>Bold italic text.</b></i> Normal text.
1056 </p>
1057 !! end
1060 !! test
1061 Unclosed and unmatched quotes
1062 !! input
1063 '''''Bold italic text '''with bold deactivated''' in between.'''''
1065 '''''Bold italic text ''with italic deactivated'' in between.'''''
1067 '''Bold text..
1069 ..spanning two paragraphs (should not work).'''
1071 '''Bold tag left open
1073 ''Italic tag left open
1075 Normal text.
1077 <!-- Unmatching number of opening, closing tags: -->
1078 '''This year''''s election ''should'' beat '''last year''''s.
1080 ''Tom'''s car is bigger than ''Susan'''s.
1081 !! result
1082 <p><i><b>Bold italic text </b>with bold deactivated<b> in between.</b></i>
1083 </p><p><b><i>Bold italic text </i>with italic deactivated<i> in between.</i></b>
1084 </p><p><b>Bold text..</b>
1085 </p><p>..spanning two paragraphs (should not work).
1086 </p><p><b>Bold tag left open</b>
1087 </p><p><i>Italic tag left open</i>
1088 </p><p>Normal text.
1089 </p><p><b>This year'</b>s election <i>should</i> beat <b>last year'</b>s.
1090 </p><p><i>Tom<b>s car is bigger than </b></i><b>Susan</b>s.
1091 </p>
1092 !! end
1095 ### Tables
1097 ### some content taken from http://meta.wikimedia.org/wiki/MediaWiki_User%27s_Guide:_Using_tables
1100 # This should not produce <table></table> as <table><tr><td></td></tr></table>
1101 # is the bare minimun required by the spec, see:
1102 # http://www.w3.org/TR/xhtml-modularization/dtd_module_defs.html#a_module_Basic_Tables
1103 !! test
1104 A table with no data.
1105 !! input
1106 {||}
1107 !! result
1108 !! end
1110 # A table with nothing but a caption is invalid XHTML, we might want to render
1111 # this as <p>caption</p>
1112 !! test
1113 A table with nothing but a caption
1114 !! input 
1116 |+ caption
1118 !! result
1119 <table>
1120 <caption> caption
1121 </caption><tr><td></td></tr></table>
1123 !! end
1125 !! test
1126 Simple table
1127 !! input
1128 {| 
1129 | 1 || 2
1130 |- 
1131 | 3 || 4
1133 !! result
1134 <table>
1135 <tr>
1136 <td> 1 </td><td> 2
1137 </td></tr>
1138 <tr>
1139 <td> 3 </td><td> 4
1140 </td></tr></table>
1142 !! end
1144 !! test
1145 Multiplication table
1146 !! input
1147 {| border="1" cellpadding="2"
1148 |+Multiplication table
1150 ! &times; !! 1 !! 2 !! 3
1152 ! 1
1153 | 1 || 2 || 3
1155 ! 2
1156 | 2 || 4 || 6
1158 ! 3
1159 | 3 || 6 || 9
1161 ! 4
1162 | 4 || 8 || 12
1164 ! 5
1165 | 5 || 10 || 15
1167 !! result
1168 <table border="1" cellpadding="2">
1169 <caption>Multiplication table
1170 </caption>
1171 <tr>
1172 <th> &times; </th><th> 1 </th><th> 2 </th><th> 3
1173 </th></tr>
1174 <tr>
1175 <th> 1
1176 </th><td> 1 </td><td> 2 </td><td> 3
1177 </td></tr>
1178 <tr>
1179 <th> 2
1180 </th><td> 2 </td><td> 4 </td><td> 6
1181 </td></tr>
1182 <tr>
1183 <th> 3
1184 </th><td> 3 </td><td> 6 </td><td> 9
1185 </td></tr>
1186 <tr>
1187 <th> 4
1188 </th><td> 4 </td><td> 8 </td><td> 12
1189 </td></tr>
1190 <tr>
1191 <th> 5
1192 </th><td> 5 </td><td> 10 </td><td> 15
1193 </td></tr></table>
1195 !! end
1197 !! test
1198 Table rowspan
1199 !! input
1200 {| align=right border=1
1201 | Cell 1, row 1 
1202 |rowspan=2| Cell 2, row 1 (and 2) 
1203 | Cell 3, row 1 
1204 |- 
1205 | Cell 1, row 2 
1206 | Cell 3, row 2 
1208 !! result
1209 <table align="right" border="1">
1210 <tr>
1211 <td> Cell 1, row 1
1212 </td><td rowspan="2"> Cell 2, row 1 (and 2)
1213 </td><td> Cell 3, row 1
1214 </td></tr>
1215 <tr>
1216 <td> Cell 1, row 2
1217 </td><td> Cell 3, row 2
1218 </td></tr></table>
1220 !! end
1222 !! test
1223 Nested table
1224 !! input
1225 {| border=1
1226 | &alpha;
1228 {| bgcolor=#ABCDEF border=2
1229 |nested
1231 |table
1233 |the original table again
1235 !! result
1236 <table border="1">
1237 <tr>
1238 <td> &alpha;
1239 </td><td>
1240 <table bgcolor="#ABCDEF" border="2">
1241 <tr>
1242 <td>nested
1243 </td></tr>
1244 <tr>
1245 <td>table
1246 </td></tr></table>
1247 </td><td>the original table again
1248 </td></tr></table>
1250 !! end
1252 !! test
1253 Invalid attributes in table cell (bug 1830)
1254 !! input
1256 |Cell:|broken
1258 !! result
1259 <table>
1260 <tr>
1261 <td>broken
1262 </td></tr></table>
1264 !! end
1267 # FIXME: this one has incorrect tag nesting still.
1268 !! test
1269 Table security: embedded pipes (http://lists.wikimedia.org/mailman/htdig/wikitech-l/2006-April/022293.html)
1270 !! input
1272 | |[ftp://|x||]" onmouseover="alert(document.cookie)">test
1273 !! result
1274 <table>
1275 <tr>
1276 <td><a href="ftp://|x||" class="external autonumber" title="ftp://|x||" rel="nofollow">[1]</td><td></a>" onmouseover="alert(document.cookie)">test
1277 </td>
1278 </tr>
1279 </table>
1281 !! end
1285 ### Internal links
1287 !! test
1288 Plain link, capitalized
1289 !! input
1290 [[Main Page]]
1291 !! result
1292 <p><a href="/wiki/Main_Page" title="Main Page">Main Page</a>
1293 </p>
1294 !! end
1296 !! test
1297 Plain link, uncapitalized
1298 !! input
1299 [[main Page]]
1300 !! result
1301 <p><a href="/wiki/Main_Page" title="Main Page">main Page</a>
1302 </p>
1303 !! end
1305 !! test
1306 Piped link
1307 !! input
1308 [[Main Page|The Main Page]]
1309 !! result
1310 <p><a href="/wiki/Main_Page" title="Main Page">The Main Page</a>
1311 </p>
1312 !! end
1314 !! test
1315 Broken link
1316 !! input
1317 [[Zigzagzogzagzig]]
1318 !! result
1319 <p><a href="/index.php?title=Zigzagzogzagzig&amp;action=edit&amp;redlink=1" class="new" title="Zigzagzogzagzig (not yet written)">Zigzagzogzagzig</a>
1320 </p>
1321 !! end
1323 !! test
1324 Link with prefix
1325 !! input
1326 xxx[[main Page]], xxx[[Main Page]], Xxx[[main Page]] XXX[[main Page]], XXX[[Main Page]]
1327 !! result
1328 <p>xxx<a href="/wiki/Main_Page" title="Main Page">main Page</a>, xxx<a href="/wiki/Main_Page" title="Main Page">Main Page</a>, Xxx<a href="/wiki/Main_Page" title="Main Page">main Page</a> XXX<a href="/wiki/Main_Page" title="Main Page">main Page</a>, XXX<a href="/wiki/Main_Page" title="Main Page">Main Page</a>
1329 </p>
1330 !! end
1332 !! test
1333 Link with suffix
1334 !! input
1335 [[Main Page]]xxx, [[Main Page]]XXX
1336 !! result
1337 <p><a href="/wiki/Main_Page" title="Main Page">Main Pagexxx</a>, <a href="/wiki/Main_Page" title="Main Page">Main Page</a>XXX
1338 </p>
1339 !! end
1341 !! test
1342 Link with 3 brackets
1343 !! input
1344 [[[main page]]]
1345 !! result
1346 <p>[[[main page]]]
1347 </p>
1348 !! end
1350 !! test
1351 Piped link with 3 brackets
1352 !! input
1353 [[[main page|the main page]]]
1354 !! result
1355 <p>[[[main page|the main page]]]
1356 </p>
1357 !! end
1359 !! test
1360 Link with multiple pipes
1361 !! input
1362 [[Main Page|The|Main|Page]]
1363 !! result
1364 <p><a href="/wiki/Main_Page" title="Main Page">The|Main|Page</a>
1365 </p>
1366 !! end
1368 !! test
1369 Link to namespaces
1370 !! input
1371 [[Talk:Parser testing]], [[Meta:Disclaimers]]
1372 !! result
1373 <p><a href="/index.php?title=Talk:Parser_testing&amp;action=edit&amp;redlink=1" class="new" title="Talk:Parser testing (not yet written)">Talk:Parser testing</a>, <a href="/index.php?title=Meta:Disclaimers&amp;action=edit&amp;redlink=1" class="new" title="Meta:Disclaimers (not yet written)">Meta:Disclaimers</a>
1374 </p>
1375 !! end
1377 !! test
1378 Piped link to namespace
1379 !! input
1380 [[Meta:Disclaimers|The disclaimers]]
1381 !! result
1382 <p><a href="/index.php?title=Meta:Disclaimers&amp;action=edit&amp;redlink=1" class="new" title="Meta:Disclaimers (not yet written)">The disclaimers</a>
1383 </p>
1384 !! end
1386 !! test
1387 Link containing }
1388 !! input
1389 [[Usually caused by a typo (oops}]]
1390 !! result
1391 <p>[[Usually caused by a typo (oops}]]
1392 </p>
1393 !! end
1395 !! test
1396 Link containing % (not as a hex sequence)
1397 !! input
1398 [[7% Solution]]
1399 !! result
1400 <p><a href="/index.php?title=7%25_Solution&amp;action=edit&amp;redlink=1" class="new" title="7% Solution (not yet written)">7% Solution</a>
1401 </p>
1402 !! end
1404 !! test
1405 Link containing % as a single hex sequence interpreted to char
1406 !! input
1407 [[7%25 Solution]]
1408 !! result
1409 <p><a href="/index.php?title=7%25_Solution&amp;action=edit&amp;redlink=1" class="new" title="7% Solution (not yet written)">7% Solution</a>
1410 </p>
1411 !!end
1413 !! test
1414 Link containing % as a double hex sequence interpreted to hex sequence
1415 !! input
1416 [[7%2525 Solution]]
1417 !! result
1418 <p>[[7%2525 Solution]]
1419 </p>
1420 !!end
1422 !! test
1423 Link containing "#<" and "#>" % as a hex sequences- these are valid section anchors
1424 Example for such a section: == < ==
1425 !! input
1426 [[%23%3c]][[%23%3e]]
1427 !! result
1428 <p><a href="#.3C" title="">#&lt;</a><a href="#.3E" title="">#&gt;</a>
1429 </p>
1430 !! end
1432 !! test
1433 Link containing "<#" and ">#" as a hex sequences
1434 !! input
1435 [[%3c%23]][[%3e%23]]
1436 !! result
1437 <p>[[%3c%23]][[%3e%23]]
1438 </p>
1439 !! end
1441 !! test
1442 Link containing double-single-quotes '' (bug 4598)
1443 !! input
1444 [[Lista d''e paise d''o munno]]
1445 !! result
1446 <p><a href="/index.php?title=Lista_d%27%27e_paise_d%27%27o_munno&amp;action=edit" class="new" title="Lista d''e paise d''o munno">Lista d''e paise d''o munno</a>
1447 </p>
1448 !! end
1450 !! test
1451 Link containing double-single-quotes '' in text (bug 4598 sanity check)
1452 !! input
1453 Some [[Link|pretty ''italics'' and stuff]]!
1454 !! result
1455 <p>Some <a href="/index.php?title=Link&amp;action=edit&amp;redlink=1" class="new" title="Link (not yet written)">pretty <i>italics</i> and stuff</a>!
1456 </p>
1457 !! end
1459 !! test
1460 Link containing double-single-quotes '' in text embedded in italics (bug 4598 sanity check)
1461 !! input
1462 ''Some [[Link|pretty ''italics'' and stuff]]!
1463 !! result
1464 <p><i>Some </i><a href="/index.php?title=Link&amp;action=edit&amp;redlink=1" class="new" title="Link (not yet written)"><i>pretty </i>italics<i> and stuff</i></a><i>!</i>
1465 </p>
1466 !! end
1468 !! test
1469 Plain link to URL
1470 !! input
1471 [[http://www.example.org]]
1472 !! result
1473 <p>[<a href="http://www.example.org" class="external autonumber" title="http://www.example.org" rel="nofollow">[1]</a>]
1474 </p>
1475 !! end
1477 # I'm fairly sure the expected result here is wrong.
1478 # We want these to be URL links, not pseudo-pages with URLs for titles....
1479 # However the current output is also pretty screwy.
1481 # ----
1482 # I'm changing it to match the current output--it arguably makes more
1483 # sense in the light of the test above. Old expected result was:
1484 #<p>Piped link to URL: <a href="/index.php?title=Http://www.example.org&amp;action=edit" class="new" title="Http://www.example.org">an example URL</a>
1485 #</p>
1486 # But I think this test is bordering on "garbage in, garbage out" anyway.
1487 # -- wtm
1488 !! test
1489 Piped link to URL
1490 !! input
1491 Piped link to URL: [[http://www.example.org|an example URL]]
1492 !! result
1493 <p>Piped link to URL: [<a href="http://www.example.org|an" class="external text" title="http://www.example.org|an" rel="nofollow">example URL</a>]
1494 </p>
1495 !! end
1497 !! test
1498 BUG 2: [[page|http://url/]] should link to page, not http://url/
1499 !! input
1500 [[Main Page|http://url/]]
1501 !! result
1502 <p><a href="/wiki/Main_Page" title="Main Page">http://url/</a>
1503 </p>
1504 !! end
1506 !! test
1507 BUG 337: Escaped self-links should be bold
1508 !! options
1509 title=[[Bug462]]
1510 !! input
1511 [[Bu&#103;462]] [[Bug462]]
1512 !! result
1513 <p><strong class="selflink">Bu&#103;462</strong> <strong class="selflink">Bug462</strong>
1514 </p>
1515 !! end
1517 !! test
1518 Self-link to section should not be bold
1519 !! options
1520 title=[[Main Page]]
1521 !! input
1522 [[Main Page#section]]
1523 !! result
1524 <p><a href="/wiki/Main_Page#section" title="Main Page">Main Page#section</a>
1525 </p>
1526 !! end
1528 !! article
1530 !! text
1531 This is 00.
1532 !! endarticle
1534 !!test
1535 Self-link to numeric title
1536 !!options
1537 title=[[0]]
1538 !!input
1539 [[0]]
1540 !!result
1541 <p><strong class="selflink">0</strong>
1542 </p>
1543 !!end
1545 !!test
1546 Link to numeric-equivalent title
1547 !!options
1548 title=[[0]]
1549 !!input
1550 [[00]]
1551 !!result
1552 <p><a href="/wiki/00" title="00">00</a>
1553 </p>
1554 !!end
1556 !! test
1557 <nowiki> inside a link
1558 !! input
1559 [[Main<nowiki> Page</nowiki>]] [[Main Page|the main page <nowiki>[it's not very good]</nowiki>]]
1560 !! result
1561 <p>[[Main Page]] <a href="/wiki/Main_Page" title="Main Page">the main page [it's not very good]</a>
1562 </p>
1563 !! end
1566 ### Interwiki links (see maintenance/interwiki.sql)
1569 !! test
1570 Inline interwiki link
1571 !! input
1572 [[MeatBall:SoftSecurity]]
1573 !! result
1574 <p><a href="http://www.usemod.com/cgi-bin/mb.pl?SoftSecurity" class="extiw" title="meatball:SoftSecurity">MeatBall:SoftSecurity</a>
1575 </p>
1576 !! end
1578 !! test
1579 Inline interwiki link with empty title (bug 2372)
1580 !! input
1581 [[MeatBall:]]
1582 !! result
1583 <p><a href="http://www.usemod.com/cgi-bin/mb.pl?" class="extiw" title="meatball:">MeatBall:</a>
1584 </p>
1585 !! end
1587 !! test
1588 Interwiki link encoding conversion (bug 1636)
1589 !! input
1590 *[[Wikipedia:ro:Olteni&#0355;a]]
1591 *[[Wikipedia:ro:Olteni&#355;a]]
1592 !! result
1593 <ul><li><a href="http://en.wikipedia.org/wiki/ro:Olteni%C5%A3a" class="extiw" title="wikipedia:ro:Olteniţa">Wikipedia:ro:Olteni&#355;a</a>
1594 </li><li><a href="http://en.wikipedia.org/wiki/ro:Olteni%C5%A3a" class="extiw" title="wikipedia:ro:Olteniţa">Wikipedia:ro:Olteni&#355;a</a>
1595 </li></ul>
1597 !! end
1599 !! test
1600 Interwiki link with fragment (bug 2130)
1601 !! input
1602 [[MeatBall:SoftSecurity#foo]]
1603 !! result
1604 <p><a href="http://www.usemod.com/cgi-bin/mb.pl?SoftSecurity#foo" class="extiw" title="meatball:SoftSecurity">MeatBall:SoftSecurity#foo</a>
1605 </p>
1606 !! end
1608 !! test
1609 Interlanguage link
1610 !! input
1611 Blah blah blah
1612 [[zh:Chinese]]
1613 !!result
1614 <p>Blah blah blah
1615 </p>
1616 !! end
1618 !! test
1619 Double interlanguage link
1620 !! input
1621 Blah blah blah
1622 [[es:Spanish]]
1623 [[zh:Chinese]]
1624 !!result
1625 <p>Blah blah blah
1626 </p>
1627 !! end
1629 !! test
1630 Interlanguage link, with prefix links
1631 !! options
1632 language=ln
1633 !! input
1634 Blah blah blah
1635 [[zh:Chinese]]
1636 !!result
1637 <p>Blah blah blah
1638 </p>
1639 !! end
1641 !! test
1642 Double interlanguage link, with prefix links (bug 8897)
1643 !! options
1644 language=ln
1645 !! input
1646 Blah blah blah
1647 [[es:Spanish]]
1648 [[zh:Chinese]]
1649 !!result
1650 <p>Blah blah blah
1651 </p>
1652 !! end
1656 ## XHTML tidiness
1659 !! test
1660 <br> to <br />
1661 !! input
1662 1<br>2<br />3
1663 !! result
1664 <p>1<br />2<br />3
1665 </p>
1666 !! end
1668 !! test
1669 Incorrecly removing closing slashes from correctly formed XHTML
1670 !! input
1671 <br style="clear:both;" />
1672 !! result
1673 <p><br style="clear:both;" />
1674 </p>
1675 !! end
1677 !! test 
1678 Failing to transform badly formed HTML into correct XHTML
1679 !! input
1680 <br clear=left>
1681 <br clear=right>
1682 <br clear=all>
1683 !! result
1684 <p><br clear="left" />
1685 <br clear="right" />
1686 <br clear="all" />
1687 </p>
1688 !!end
1690 !! test 
1691 Horizontal ruler (should it add that extra space?)
1692 !! input 
1693 <hr>
1694 <hr >
1695 foo <hr
1696 > bar
1697 !! result 
1698 <hr />
1699 <hr />
1700 foo <hr /> bar
1702 !! end
1705 ### Block-level elements
1707 !! test
1708 Common list
1709 !! input
1710 *Common list
1711 * item 2
1712 *item 3
1713 !! result
1714 <ul><li>Common list
1715 </li><li> item 2
1716 </li><li>item 3
1717 </li></ul>
1719 !! end
1721 !! test
1722 Numbered list
1723 !! input
1724 #Numbered list
1725 #item 2
1726 # item 3
1727 !! result
1728 <ol><li>Numbered list
1729 </li><li>item 2
1730 </li><li> item 3
1731 </li></ol>
1733 !! end
1735 !! test
1736 Mixed list
1737 !! input
1738 *Mixed list
1739 *# with numbers
1740 ** and bullets
1741 *# and numbers
1742 *bullets again
1743 **bullet level 2
1744 ***bullet level 3
1745 ***#Number on level 4
1746 **bullet level 2
1747 **#Number on level 3
1748 **#Number on level 3
1749 *#number level 2
1750 *Level 1
1751 !! result
1752 <ul><li>Mixed list
1753 <ol><li> with numbers
1754 </li></ol>
1755 <ul><li> and bullets
1756 </li></ul>
1757 <ol><li> and numbers
1758 </li></ol>
1759 </li><li>bullets again
1760 <ul><li>bullet level 2
1761 <ul><li>bullet level 3
1762 <ol><li>Number on level 4
1763 </li></ol>
1764 </li></ul>
1765 </li><li>bullet level 2
1766 <ol><li>Number on level 3
1767 </li><li>Number on level 3
1768 </li></ol>
1769 </li></ul>
1770 <ol><li>number level 2
1771 </li></ol>
1772 </li><li>Level 1
1773 </li></ul>
1775 !! end
1777 !! test
1778 List items are not parsed correctly following a <pre> block (bug 785)
1779 !! input
1780 * <pre>foo</pre>
1781 * <pre>bar</pre>
1782 * zar
1783 !! result
1784 <ul><li> <pre>foo</pre>
1785 </li><li> <pre>bar</pre>
1786 </li><li> zar
1787 </li></ul>
1789 !! end
1792 ### Magic Words
1795 !! test
1796 Magic Word: {{CURRENTDAY}}
1797 !! input
1798 {{CURRENTDAY}}
1799 !! result
1800 <p>1
1801 </p>
1802 !! end
1804 !! test
1805 Magic Word: {{CURRENTDAY2}}
1806 !! input
1807 {{CURRENTDAY2}}
1808 !! result
1809 <p>01
1810 </p>
1811 !! end
1813 !! test
1814 Magic Word: {{CURRENTDAYNAME}}
1815 !! input
1816 {{CURRENTDAYNAME}}
1817 !! result
1818 <p>Thursday
1819 </p>
1820 !! end
1822 !! test
1823 Magic Word: {{CURRENTDOW}}
1824 !! input
1825 {{CURRENTDOW}}
1826 !! result
1827 <p>4
1828 </p>
1829 !! end
1831 !! test
1832 Magic Word: {{CURRENTMONTH}}
1833 !! input
1834 {{CURRENTMONTH}}
1835 !! result
1836 <p>01
1837 </p>
1838 !! end
1840 !! test
1841 Magic Word: {{CURRENTMONTHABBREV}}
1842 !! input
1843 {{CURRENTMONTHABBREV}}
1844 !! result
1845 <p>Jan
1846 </p>
1847 !! end
1849 !! test
1850 Magic Word: {{CURRENTMONTHNAME}}
1851 !! input
1852 {{CURRENTMONTHNAME}}
1853 !! result
1854 <p>January
1855 </p>
1856 !! end
1858 !! test
1859 Magic Word: {{CURRENTMONTHNAMEGEN}}
1860 !! input
1861 {{CURRENTMONTHNAMEGEN}}
1862 !! result
1863 <p>January
1864 </p>
1865 !! end
1867 !! test
1868 Magic Word: {{CURRENTTIME}}
1869 !! input
1870 {{CURRENTTIME}}
1871 !! result
1872 <p>00:02
1873 </p>
1874 !! end
1876 !! test
1877 Magic Word: {{CURRENTWEEK}} (@bug 4594)
1878 !! input
1879 {{CURRENTWEEK}}
1880 !! result
1881 <p>1
1882 </p>
1883 !! end
1885 !! test
1886 Magic Word: {{CURRENTYEAR}}
1887 !! input
1888 {{CURRENTYEAR}}
1889 !! result
1890 <p>1970
1891 </p>
1892 !! end
1894 !! test
1895 Magic Word: {{FULLPAGENAME}}
1896 !! options
1897 title=[[User:Ævar Arnfjörð Bjarmason]]
1898 !! input
1899 {{FULLPAGENAME}}
1900 !! result
1901 <p>User:Ævar Arnfjörð Bjarmason
1902 </p>
1903 !! end
1905 !! test
1906 Magic Word: {{FULLPAGENAMEE}}
1907 !! options
1908 title=[[User:Ævar Arnfjörð Bjarmason]]
1909 !! input
1910 {{FULLPAGENAMEE}}
1911 !! result
1912 <p>User:%C3%86var_Arnfj%C3%B6r%C3%B0_Bjarmason
1913 </p>
1914 !! end
1916 !! test
1917 Magic Word: {{NAMESPACE}}
1918 !! options
1919 title=[[User:Ævar Arnfjörð Bjarmason]]
1920 disabled # FIXME
1921 !! input
1922 {{NAMESPACE}}
1923 !! result
1924 <p>User
1925 </p>
1926 !! end
1928 !! test
1929 Magic Word: {{NAMESPACEE}}
1930 !! options
1931 title=[[User:Ævar Arnfjörð Bjarmason]]
1932 disabled # FIXME
1933 !! input
1934 {{NAMESPACEE}}
1935 !! result
1936 <p>User
1937 </p>
1938 !! end
1940 !! test
1941 Magic Word: {{NUMBEROFARTICLES}}
1942 !! input
1943 {{NUMBEROFARTICLES}}
1944 !! result
1945 <p>2
1946 </p>
1947 !! end
1949 !! test
1950 Magic Word: {{NUMBEROFFILES}}
1951 !! input
1952 {{NUMBEROFFILES}}
1953 !! result
1954 <p>1
1955 </p>
1956 !! end
1958 !! test
1959 Magic Word: {{PAGENAME}}
1960 !! options
1961 title=[[User:Ævar Arnfjörð Bjarmason]]
1962 disabled # FIXME
1963 !! input
1964 {{PAGENAME}}
1965 !! result
1966 <p>Ævar Arnfjörð Bjarmason
1967 </p>
1968 !! end
1970 !! test
1971 Magic Word: {{PAGENAMEE}}
1972 !! options
1973 title=[[User:Ævar Arnfjörð Bjarmason]]
1974 !! input
1975 {{PAGENAMEE}}
1976 !! result
1977 <p>User:%C3%86var_Arnfj%C3%B6r%C3%B0_Bjarmason
1978 </p>
1979 !! end
1981 !! test
1982 Magic Word: {{REVISIONID}}
1983 !! input
1984 {{REVISIONID}}
1985 !! result
1986 <p>1337
1987 </p>
1988 !! end
1990 !! test
1991 Magic Word: {{SCRIPTPATH}}
1992 !! input
1993 {{SCRIPTPATH}}
1994 !! result
1995 <p>/
1996 </p>
1997 !! end
1999 !! test
2000 Magic Word: {{SERVER}}
2001 !! input
2002 {{SERVER}}
2003 !! result
2004 <p><a href="http://localhost" class="external free" title="http://localhost" rel="nofollow">http://localhost</a>
2005 </p>
2006 !! end
2008 !! test
2009 Magic Word: {{SERVERNAME}}
2010 !! input
2011 {{SERVERNAME}}
2012 !! result
2013 <p>Britney Spears
2014 </p>
2015 !! end
2017 !! test
2018 Magic Word: {{SITENAME}}
2019 !! input
2020 {{SITENAME}}
2021 !! result
2022 <p>MediaWiki
2023 </p>
2024 !! end
2026 !! test
2027 Namespace 1 {{ns:1}}
2028 !! input
2029 {{ns:1}}
2030 !! result
2031 <p>Talk
2032 </p>
2033 !! end
2035 !! test
2036 Namespace 1 {{ns:01}}
2037 !! input
2038 {{ns:01}}
2039 !! result
2040 <p>Talk
2041 </p>
2042 !! end
2044 !! test
2045 Namespace 0 {{ns:0}} (bug 4783)
2046 !! input
2047 {{ns:0}}
2048 !! result
2050 !! end
2052 !! test
2053 Namespace 0 {{ns:00}} (bug 4783)
2054 !! input
2055 {{ns:00}}
2056 !! result
2058 !! end
2060 !! test
2061 Namespace -1 {{ns:-1}}
2062 !! input
2063 {{ns:-1}}
2064 !! result
2065 <p>Special
2066 </p>
2067 !! end
2069 !! test
2070 Namespace Project {{ns:User}}
2071 !! input
2072 {{ns:User}}
2073 !! result
2074 <p>User
2075 </p>
2076 !! end
2080 ### Magic links
2082 !! test
2083 Magic links: internal link to RFC (bug 479)
2084 !! input
2085 [[RFC 123]]
2086 !! result
2087 <p><a href="/index.php?title=RFC_123&amp;action=edit&amp;redlink=1" class="new" title="RFC 123 (not yet written)">RFC 123</a>
2088 </p>
2089 !! end
2091 !! test
2092 Magic links: RFC (bug 479)
2093 !! input
2094 RFC 822
2095 !! result
2096 <p><a href="http://tools.ietf.org/html/rfc822" class="external" title="http://tools.ietf.org/html/rfc822">RFC 822</a>
2097 </p>
2098 !! end
2100 !! test
2101 Magic links: ISBN (bug 1937)
2102 !! input
2103 ISBN 0-306-40615-2
2104 !! result
2105 <p><a href="/wiki/Special:BookSources/0306406152" class="internal">ISBN 0-306-40615-2</a>
2106 </p>
2107 !! end
2109 !! test
2110 Magic links: PMID incorrectly converts space to underscore
2111 !! input
2112 PMID 1234
2113 !! result
2114 <p><a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=1234" class="external" title="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;db=pubmed&amp;dopt=Abstract&amp;list_uids=1234">PMID 1234</a>
2115 </p>
2116 !! end
2119 ### Templates
2120 ####
2122 !! test
2123 Nonexistant template
2124 !! input
2125 {{thistemplatedoesnotexist}}
2126 !! result
2127 <p><a href="/index.php?title=Template:Thistemplatedoesnotexist&amp;action=edit&amp;redlink=1" class="new" title="Template:Thistemplatedoesnotexist (not yet written)">Template:Thistemplatedoesnotexist</a>
2128 </p>
2129 !! end
2131 !! article
2132 Template:test
2133 !! text
2134 This is a test template
2135 !! endarticle
2137 !! test
2138 Simple template
2139 !! input
2140 {{test}}
2141 !! result
2142 <p>This is a test template
2143 </p>
2144 !! end
2146 !! test
2147 Template with explicit namespace
2148 !! input
2149 {{Template:test}}
2150 !! result
2151 <p>This is a test template
2152 </p>
2153 !! end
2156 !! article
2157 Template:paramtest
2158 !! text
2159 This is a test template with parameter {{{param}}}
2160 !! endarticle
2162 !! test
2163 Template parameter
2164 !! input
2165 {{paramtest|param=foo}}
2166 !! result
2167 <p>This is a test template with parameter foo
2168 </p>
2169 !! end
2171 !! article
2172 Template:paramtestnum
2173 !! text
2174 [[{{{1}}}|{{{2}}}]]
2175 !! endarticle
2177 !! test
2178 Template unnamed parameter
2179 !! input
2180 {{paramtestnum|Main Page|the main page}}
2181 !! result
2182 <p><a href="/wiki/Main_Page" title="Main Page">the main page</a>
2183 </p>
2184 !! end
2186 !! article
2187 Template:templatesimple
2188 !! text
2189 (test)
2190 !! endarticle
2192 !! article
2193 Template:templateredirect
2194 !! text
2195 #redirect [[Template:templatesimple]]
2196 !! endarticle
2198 !! article
2199 Template:templateasargtestnum
2200 !! text
2201 {{{{{1}}}}}
2202 !! endarticle
2204 !! article
2205 Template:templateasargtest
2206 !! text
2207 {{template{{{templ}}}}}
2208 !! endarticle
2210 !! article
2211 Template:templateasargtest2
2212 !! text
2213 {{{{{templ}}}}}
2214 !! endarticle
2216 !! test
2217 Template with template name as unnamed argument
2218 !! input
2219 {{templateasargtestnum|templatesimple}}
2220 !! result
2221 <p>(test)
2222 </p>
2223 !! end
2225 !! test
2226 Template with template name as argument
2227 !! input
2228 {{templateasargtest|templ=simple}}
2229 !! result
2230 <p>(test)
2231 </p>
2232 !! end
2234 !! test
2235 Template with template name as argument (2)
2236 !! input
2237 {{templateasargtest2|templ=templatesimple}}
2238 !! result
2239 <p>(test)
2240 </p>
2241 !! end
2243 !! article
2244 Template:templateasargtestdefault
2245 !! text
2246 {{{{{templ|templatesimple}}}}}
2247 !! endarticle
2249 !! article
2250 Template:templa
2251 !! text
2252 '''templ'''
2253 !! endarticle
2255 !! test
2256 Template with default value
2257 !! input
2258 {{templateasargtestdefault}}
2259 !! result
2260 <p>(test)
2261 </p>
2262 !! end
2264 !! test
2265 Template with default value (value set)
2266 !! input
2267 {{templateasargtestdefault|templ=templa}}
2268 !! result
2269 <p><b>templ</b>
2270 </p>
2271 !! end
2273 !! test
2274 Template redirect
2275 !! input
2276 {{templateredirect}}
2277 !! result
2278 <p>(test)
2279 </p>
2280 !! end
2282 !! test
2283 Template with argument in separate line
2284 !! input
2285 {{ templateasargtest  |
2286  templ = simple }}
2287 !! result
2288 <p>(test)
2289 </p>
2290 !! end
2292 !! test
2293 Template with complex template as argument
2294 !! input
2295 {{paramtest|
2296   param ={{ templateasargtest  |
2297  templ = simple }}}}
2298 !! result
2299 <p>This is a test template with parameter (test)
2300 </p>
2301 !! end
2303 !! test
2304 Template with thumb image (with link in description)
2305 !! input
2306 {{paramtest|
2307   param =[[Image:noimage.png|thumb|[[no link|link]] [[no link|caption]]]]}}
2308 !! result
2309 This is a test template with parameter <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/index.php?title=Special:Upload&amp;wpDestFile=Noimage.png" class="new" title="Image:Noimage.png">Image:Noimage.png</a>  <div class="thumbcaption"><a href="/index.php?title=No_link&amp;action=edit" class="new" title="No link (not yet written)">link</a> <a href="/index.php?title=No_link&amp;action=edit&amp;redlink=1" class="new" title="No link (not yet written)">caption</a></div></div></div>
2311 !! end
2313 !! article
2314 Template:complextemplate
2315 !! text
2316 {{{1}}} {{paramtest|
2317   param ={{{param}}}}}
2318 !! endarticle
2320 !! test
2321 Template with complex arguments
2322 !! input
2323 {{complextemplate|
2324   param ={{ templateasargtest  |
2325  templ = simple }}|[[Template:complextemplate|link]]}}
2326 !! result
2327 <p><a href="/wiki/Template:Complextemplate" title="Template:Complextemplate">link</a> This is a test template with parameter (test)
2328 </p>
2329 !! end
2331 !! test
2332 BUG 553: link with two variables in a piped link
2333 !! input
2334 {| 
2335 |[[{{{1}}}|{{{2}}}]]
2337 !! result
2338 <table>
2339 <tr>
2340 <td>[[{{{1}}}|{{{2}}}]]
2341 </td></tr></table>
2343 !! end
2345 !! test
2346 Magic variable as template parameter
2347 !! input
2348 {{paramtest|param={{SITENAME}}}}
2349 !! result
2350 <p>This is a test template with parameter MediaWiki
2351 </p>
2352 !! end
2354 !! article
2355 Template:linktest
2356 !! text
2357 [[{{{param}}}|link]]
2358 !! endarticle
2360 !! test
2361 Template parameter as link source
2362 !! input
2363 {{linktest|param=Main Page}}
2364 !! result
2365 <p><a href="/wiki/Main_Page" title="Main Page">link</a>
2366 </p>
2367 !! end
2370 !!article
2371 Template:paramtest2
2372 !! text
2373 including another template, {{paramtest|param={{{arg}}}}}
2374 !! endarticle
2376 !! test
2377 Template passing argument to another template
2378 !! input
2379 {{paramtest2|arg='hmm'}}
2380 !! result
2381 <p>including another template, This is a test template with parameter 'hmm'
2382 </p>
2383 !! end
2385 !! article
2386 Template:Linktest2
2387 !! text
2388 Main Page
2389 !! endarticle
2391 !! test
2392 Template as link source
2393 !! input
2394 [[{{linktest2}}]]
2395 !! result
2396 <p><a href="/wiki/Main_Page" title="Main Page">Main Page</a>
2397 </p>
2398 !! end
2401 !! article
2402 Template:loop1
2403 !! text
2404 {{loop2}}
2405 !! endarticle
2407 !! article
2408 Template:loop2
2409 !! text
2410 {{loop1}}
2411 !! endarticle
2413 !! test
2414 Template infinite loop
2415 !! input
2416 {{loop1}}
2417 !! result
2418 <p><span class="error">Template loop detected: <a href="/wiki/Template:Loop1" title="Template:Loop1">Template:Loop1</a></span>
2419 </p>
2420 !! end
2422 !! test
2423 Template from main namespace
2424 !! input
2425 {{:Main Page}}
2426 !! result
2427 <p>blah blah
2428 </p>
2429 !! end
2431 !! article
2432 Template:table
2433 !! text
2434 {| 
2435 | 1 || 2
2436 |- 
2437 | 3 || 4
2439 !! endarticle
2441 !! test
2442 BUG 529: Template with table, not included at beginning of line
2443 !! input
2444 foo {{table}}
2445 !! result
2446 <p>foo 
2447 </p>
2448 <table>
2449 <tr>
2450 <td> 1 </td><td> 2
2451 </td></tr>
2452 <tr>
2453 <td> 3 </td><td> 4
2454 </td></tr></table>
2456 !! end
2458 !! test
2459 BUG 523: Template shouldn't eat newline (or add an extra one before table)
2460 !! input
2462 {{table}}
2463 !! result
2464 <p>foo
2465 </p>
2466 <table>
2467 <tr>
2468 <td> 1 </td><td> 2
2469 </td></tr>
2470 <tr>
2471 <td> 3 </td><td> 4
2472 </td></tr></table>
2474 !! end
2476 !! test
2477 BUG 41: Template parameters shown as broken links
2478 !! input
2479 {{{parameter}}}
2480 !! result
2481 <p>{{{parameter}}}
2482 </p>
2483 !! end
2486 !! article
2487 Template:MSGNW test
2488 !! text
2489 ''None'' of '''this''' should be 
2490 * interepreted
2491  but rather passed unmodified
2492 {{test}}
2493 !! endarticle
2495 # hmm, fix this or just deprecate msgnw and document its behavior?
2496 !! test
2497 msgnw keyword
2498 !! options
2499 disabled
2500 !! input
2501 {{msgnw:MSGNW test}}
2502 !! result
2503 <p>''None'' of '''this''' should be 
2504 * interepreted
2505  but rather passed unmodified
2506 {{test}}
2507 </p>
2508 !! end
2510 !! test
2511 int keyword
2512 !! input
2513 {{int:youhavenewmessages|lots of money|not!}}
2514 !! result
2515 <p>You have lots of money (not!).
2516 </p>
2517 !! end
2519 !! article
2520 Template:Includes
2521 !! text
2522 Foo<noinclude>zar</noinclude><includeonly>bar</includeonly>
2523 !! endarticle
2525 !! test
2526 <includeonly> and <noinclude> being included
2527 !! input
2528 {{Includes}}
2529 !! result
2530 <p>Foobar
2531 </p>
2532 !! end
2534 !! article
2535 Template:Includes2
2536 !! text
2537 <onlyinclude>Foo</onlyinclude>bar
2538 !! endarticle
2540 !! test
2541 <onlyinclude> being included
2542 !! input
2543 {{Includes2}}
2544 !! result
2545 <p>Foo
2546 </p>
2547 !! end
2550 !! article
2551 Template:Includes3
2552 !! text
2553 <onlyinclude>Foo</onlyinclude>bar<includeonly>zar</includeonly>
2554 !! endarticle
2556 !! test
2557 <onlyinclude> and <includeonly> being included
2558 !! input
2559 {{Includes3}}
2560 !! result
2561 <p>Foo
2562 </p>
2563 !! end
2565 !! test
2566 <includeonly> and <noinclude> on a page
2567 !! input
2568 Foo<noinclude>zar</noinclude><includeonly>bar</includeonly>
2569 !! result
2570 <p>Foozar
2571 </p>
2572 !! end
2574 !! test
2575 <onlyinclude> on a page
2576 !! input
2577 <onlyinclude>Foo</onlyinclude>bar
2578 !! result
2579 <p>Foobar
2580 </p>
2581 !! end
2583 !! article
2584 Template:Includeonly section
2585 !! text
2586 <includeonly>
2587 ==Includeonly section==
2588 </includeonly>
2589 ==Section T-1==
2590 !!endarticle
2592 !! test
2593 Bug 6563: Edit link generation for section shown by <includeonly>
2594 !! input
2595 {{includeonly section}}
2596 !! result
2597 <a name="Includeonly_section"></a><h2><span class="editsection">[<a href="/index.php?title=Template:Includeonly_section&amp;action=edit&amp;section=T-1" title="Template:Includeonly section">edit</a>]</span> <span class="mw-headline">Includeonly section</span></h2>
2598 <a name="Section_T-1"></a><h2><span class="editsection">[<a href="/index.php?title=Template:Includeonly_section&amp;action=edit&amp;section=T-2" title="Template:Includeonly section">edit</a>]</span> <span class="mw-headline">Section T-1</span></h2>
2600 !! end
2602 # Uses same input as the contents of [[Template:Includeonly section]]
2603 !! test
2604 Bug 6563: Section extraction for section shown by <includeonly>
2605 !! options
2606 section=T-2
2607 !! input
2608 <includeonly>
2609 ==Includeonly section==
2610 </includeonly>
2611 ==Section T-2==
2612 !! result
2613 ==Section T-2==
2614 !! end
2616 !! test
2617 Bug 6563: Edit link generation for section suppressed by <includeonly>
2618 !! input
2619 <includeonly>
2620 ==Includeonly section==
2621 </includeonly>
2622 ==Section 1==
2623 !! result
2624 <a name="Section_1"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: Section 1">edit</a>]</span> <span class="mw-headline">Section 1</span></h2>
2626 !! end
2628 !! test
2629 Bug 6563: Section extraction for section suppressed by <includeonly>
2630 !! options
2631 section=1
2632 !! input
2633 <includeonly>
2634 ==Includeonly section==
2635 </includeonly>
2636 ==Section 1==
2637 !! result
2638 ==Section 1==
2639 !! end
2642 ### Pre-save transform tests
2644 !! test
2645 pre-save transform: subst:
2646 !! options
2648 !! input
2649 {{subst:test}}
2650 !! result
2651 This is a test template
2652 !! end
2654 !! test
2655 pre-save transform: normal template
2656 !! options
2658 !! input
2659 {{test}}
2660 !! result
2661 {{test}}
2662 !! end
2664 !! test
2665 pre-save transform: nonexistant template
2666 !! options
2668 !! input
2669 {{thistemplatedoesnotexist}}
2670 !! result
2671 {{thistemplatedoesnotexist}}
2672 !! end
2675 !! test
2676 pre-save transform: subst magic variables
2677 !! options
2679 !! input
2680 {{subst:SITENAME}}
2681 !! result
2682 MediaWiki
2683 !! end
2685 # This is bug 89, which I fixed. -- wtm
2686 !! test
2687 pre-save transform: subst: templates with parameters
2688 !! options
2690 !! input
2691 {{subst:paramtest|param="something else"}}
2692 !! result
2693 This is a test template with parameter "something else"
2694 !! end
2696 !! article
2697 Template:nowikitest
2698 !! text
2699 <nowiki>'''not wiki'''</nowiki>
2700 !! endarticle
2702 !! test
2703 pre-save transform: nowiki in subst (bug 1188)
2704 !! options
2706 !! input
2707 {{subst:nowikitest}}
2708 !! result
2709 <nowiki>'''not wiki'''</nowiki>
2710 !! end
2713 !! article
2714 Template:commenttest
2715 !! text
2716 This template has <!-- a comment --> in it.
2717 !! endarticle
2719 !! test
2720 pre-save transform: comment in subst (bug 1936)
2721 !! options
2723 !! input
2724 {{subst:commenttest}}
2725 !! result
2726 This template has <!-- a comment --> in it.
2727 !! end
2729 !! test
2730 pre-save transform: unclosed tag
2731 !! options
2732 pst noxml
2733 !! input
2734 <nowiki>'''not wiki'''
2735 !! result
2736 <nowiki>'''not wiki'''
2737 !! end
2739 !! test
2740 pre-save transform: mixed tag case
2741 !! options
2742 pst noxml
2743 !! input
2744 <NOwiki>'''not wiki'''</noWIKI>
2745 !! result
2746 <NOwiki>'''not wiki'''</noWIKI>
2747 !! end
2749 !! test
2750 pre-save transform: unclosed comment in <nowiki>
2751 !! options
2752 pst noxml
2753 !! input
2754 wiki<nowiki>nowiki<!--nowiki</nowiki>wiki
2755 !! result
2756 wiki<nowiki>nowiki<!--nowiki</nowiki>wiki
2757 !!end
2759 !! article
2760 Template:dangerous
2761 !!text
2762 <span onmouseover="alert('crap')">Oh no</span>
2763 !!endarticle
2765 !!test
2766 (confirming safety of fix for subst bug 1936)
2767 !! input
2768 {{Template:dangerous}}
2769 !! result
2770 <p><span>Oh no</span>
2771 </p>
2772 !! end
2774 !! test
2775 pre-save transform: comment containing gallery (bug 5024)
2776 !! options
2778 !! input
2779 <!-- <gallery>data</gallery> -->
2780 !!result
2781 <!-- <gallery>data</gallery> -->
2782 !!end
2784 !! test
2785 pre-save transform: comment containing extension
2786 !! options
2788 !! input
2789 <!-- <tag>data</tag> -->
2790 !!result
2791 <!-- <tag>data</tag> -->
2792 !!end
2794 !! test
2795 pre-save transform: comment containing nowiki
2796 !! options
2798 !! input
2799 <!-- <nowiki>data</nowiki> -->
2800 !!result
2801 <!-- <nowiki>data</nowiki> -->
2802 !!end
2804 !! test
2805 pre-save transform: comment containing math
2806 !! options
2808 !! input
2809 <!-- <math>data</math> -->
2810 !!result
2811 <!-- <math>data</math> -->
2812 !!end
2814 !! test
2815 pre-save transform: <noinclude> in subst (bug 3298)
2816 !! options
2818 !! input
2819 {{subst:Includes}}
2820 !! result
2821 Foobar
2822 !! end
2824 !! test
2825 pre-save transform: <onlyinclude> in subst (bug 3298)
2826 !! options
2828 !! input
2829 {{subst:Includes2}}
2830 !! result
2832 !! end
2834 !! test
2835 pre-save transform: context links ("pipe trick")
2836 !! options
2838 !! input
2839 [[Article (context)|]]
2840 [[Bar:Article|]]
2841 [[:Bar:Article|]]
2842 [[Bar:Article (context)|]]
2843 [[:Bar:Article (context)|]]
2844 [[|Article]]
2845 [[|Article (context)]]
2846 [[Bar:X (Y) Z|]]
2847 [[:Bar:X (Y) Z|]]
2848 !! result
2849 [[Article (context)|Article]]
2850 [[Bar:Article|Article]]
2851 [[:Bar:Article|Article]]
2852 [[Bar:Article (context)|Article]]
2853 [[:Bar:Article (context)|Article]]
2854 [[Article]]
2855 [[Article (context)]]
2856 [[Bar:X (Y) Z|X (Y) Z]]
2857 [[:Bar:X (Y) Z|X (Y) Z]]
2858 !! end
2860 !! test
2861 pre-save transform: context links ("pipe trick") with interwiki prefix
2862 !! options
2864 !! input
2865 [[interwiki:Article|]]
2866 [[:interwiki:Article|]]
2867 [[interwiki:Bar:Article|]]
2868 [[:interwiki:Bar:Article|]]
2869 !! result
2870 [[interwiki:Article|Article]]
2871 [[:interwiki:Article|Article]]
2872 [[interwiki:Bar:Article|Bar:Article]]
2873 [[:interwiki:Bar:Article|Bar:Article]]
2874 !! end
2876 !! test
2877 pre-save transform: context links ("pipe trick") with parens in title
2878 !! options
2879 pst title=[[Somearticle (context)]]
2880 !! input
2881 [[|Article]]
2882 !! result
2883 [[Article (context)|Article]]
2884 !! end
2886 !! test
2887 pre-save transform: context links ("pipe trick") with comma in title
2888 !! options
2889 pst title=[[Someplace, Somewhere]]
2890 !! input
2891 [[|Otherplace]]
2892 [[Otherplace, Elsewhere|]]
2893 [[Otherplace, Elsewhere, Anywhere|]]
2894 !! result
2895 [[Otherplace, Somewhere|Otherplace]]
2896 [[Otherplace, Elsewhere|Otherplace]]
2897 [[Otherplace, Elsewhere, Anywhere|Otherplace]]
2898 !! end
2900 !! test
2901 pre-save transform: context links ("pipe trick") with parens and comma
2902 !! options
2903 pst title=[[Someplace (IGNORED), Somewhere]]
2904 !! input
2905 [[|Otherplace]]
2906 [[Otherplace (place), Elsewhere|]]
2907 !! result
2908 [[Otherplace, Somewhere|Otherplace]]
2909 [[Otherplace (place), Elsewhere|Otherplace]]
2910 !! end
2912 !! test
2913 pre-save transform: context links ("pipe trick") with comma and parens
2914 !! options
2915 pst title=[[Who, me? (context)]]
2916 !! input
2917 [[|Yes, you.]]
2918 [[Me, Myself, and I (1937 song)|]]
2919 !! result
2920 [[Yes, you. (context)|Yes, you.]]
2921 [[Me, Myself, and I (1937 song)|Me, Myself, and I]]
2922 !! end
2924 !! test
2925 pre-save transform: context links ("pipe trick") with namespace
2926 !! options
2927 pst title=[[Ns:Somearticle]]
2928 !! input
2929 [[|Article]]
2930 !! result
2931 [[Ns:Article|Article]]
2932 !! end
2934 !! test
2935 pre-save transform: context links ("pipe trick") with namespace and parens
2936 !! options
2937 pst title=[[Ns:Somearticle (context)]]
2938 !! input
2939 [[|Article]]
2940 !! result
2941 [[Ns:Article (context)|Article]]
2942 !! end
2944 !! test
2945 pre-save transform: context links ("pipe trick") with namespace and comma
2946 !! options
2947 pst title=[[Ns:Somearticle, Context, Whatever]]
2948 !! input
2949 [[|Article]]
2950 !! result
2951 [[Ns:Article, Context, Whatever|Article]]
2952 !! end
2954 !! test
2955 pre-save transform: context links ("pipe trick") with namespace, comma and parens
2956 !! options
2957 pst title=[[Ns:Somearticle, Context (context)]]
2958 !! input
2959 [[|Article]]
2960 !! result
2961 [[Ns:Article (context)|Article]]
2962 !! end
2964 !! test
2965 pre-save transform: context links ("pipe trick") with namespace, parens and comma
2966 !! options
2967 pst title=[[Ns:Somearticle (IGNORED), Context]]
2968 !! input
2969 [[|Article]]
2970 !! result
2971 [[Ns:Article, Context|Article]]
2972 !! end
2976 ### Message transform tests
2978 !! test
2979 message transform: magic variables
2980 !! options
2982 !! input
2983 {{SITENAME}}
2984 !! result
2985 MediaWiki
2986 !! end
2988 !! test
2989 message transform: should not transform wiki markup
2990 !! options
2992 !! input
2993 ''test''
2994 !! result
2995 ''test''
2996 !! end
2998 !! test
2999 message transform: <noinclude> in transcluded template (bug 4926)
3000 !! options
3002 !! input
3003 {{Includes}}
3004 !! result
3005 Foobar
3006 !! end
3008 !! test
3009 message transform: <onlyinclude> in transcluded template (bug 4926)
3010 !! options
3012 !! input
3013 {{Includes2}}
3014 !! result
3016 !! end
3018 !! test
3019 {{#special:}} page name, known
3020 !! options
3022 !! input
3023 {{#special:Recentchanges}}
3024 !! result
3025 Special:RecentChanges
3026 !! end
3028 !! test
3029 {{#special:}} page name, unknown
3030 !! options
3032 !! input
3033 {{#special:foobarnonexistent}}
3034 !! result
3035 No such special page
3036 !! end
3039 ### Images
3041 !! test
3042 Simple image
3043 !! input
3044 [[Image:foobar.jpg]]
3045 !! result
3046 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="Image:foobar.jpg"><img alt="Image:foobar.jpg" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3047 </p>
3048 !! end
3050 !! test
3051 Right-aligned image
3052 !! input
3053 [[Image:foobar.jpg|right]]
3054 !! result
3055 <div class="floatright"><span><a href="/wiki/Image:Foobar.jpg" class="image" title="Foobar.jpg"><img alt="" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a></span></div>
3057 !! end
3059 !! test
3060 Image with caption
3061 !! input
3062 [[Image:foobar.jpg|right|Caption text]]
3063 !! result
3064 <div class="floatright"><span><a href="/wiki/Image:Foobar.jpg" class="image" title="Caption text"><img alt="Caption text" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a></span></div>
3066 !! end
3068 !! test
3069 Image with frame and link
3070 !! input
3071 [[Image:Foobar.jpg|frame|left|This is a test image [[Main Page]]]]
3072 !! result
3073 <div class="thumb tleft"><div class="thumbinner" style="width:1943px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="This is a test image Main Page"><img alt="This is a test image Main Page" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" class="thumbimage" /></a>  <div class="thumbcaption">This is a test image <a href="/wiki/Main_Page" title="Main Page">Main Page</a></div></div></div>
3075 !! end
3077 !! test
3078 Link to image page- image page normally doesn't exists, hence edit link
3079 Add test with existing image page
3080 #<p><a href="/wiki/Image:Test" title="Image:Test">Image:test</a>
3081 !! input
3082 [[:Image:test]]
3083 !! result
3084 <p><a href="/index.php?title=Image:Test&amp;action=edit" class="new" title="Image:Test">Image:test</a>
3085 </p>
3086 !! end
3088 !! test
3089 Frameless image caption with a free URL
3090 !! input
3091 [[Image:foobar.jpg|http://example.com]]
3092 !! result
3093 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="http://example.com"><img alt="http://example.com" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3094 </p>
3095 !! end
3097 !! test
3098 Thumbnail image caption with a free URL
3099 !! input
3100 [[Image:foobar.jpg|thumb|http://example.com]]
3101 !! result
3102 <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="http://example.com"><img alt="http://example.com" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" width="180" height="20" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div><a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a></div></div></div>
3104 !! end
3106 !! test
3107 BUG 1887: A ISBN with a thumbnail
3108 !! input
3109 [[Image:foobar.jpg|thumb|ISBN 1235467890]]
3110 !! result
3111 <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="ISBN 1235467890"><img alt="ISBN 1235467890" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" width="180" height="20" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div><a href="/wiki/Special:BookSources/1235467890" class="internal">ISBN 1235467890</a></div></div></div>
3113 !! end
3115 !! test
3116 BUG 1887: A RFC with a thumbnail
3117 !! input
3118 [[Image:foobar.jpg|thumb|This is RFC 12354]]
3119 !! result
3120 <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="This is RFC 12354"><img alt="This is RFC 12354" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" width="180" height="20" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>This is <a href="http://tools.ietf.org/html/rfc12354" class="external" title="http://tools.ietf.org/html/rfc12354">RFC 12354</a></div></div></div>
3122 !! end
3124 !! test
3125 BUG 1887: A mailto link with a thumbnail
3126 !! input
3127 [[Image:foobar.jpg|thumb|Please mailto:nobody@example.com]]
3128 !! result
3129 <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="Please mailto:nobody@example.com"><img alt="Please mailto:nobody@example.com" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" width="180" height="20" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>Please <a href="mailto:nobody@example.com" class="external free" title="mailto:nobody@example.com" rel="nofollow">mailto:nobody@example.com</a></div></div></div>
3131 !! end
3133 !! test
3134 BUG 1887: A <math> with a thumbnail- we don't render math in the parsertests by default,
3135 so math is not stripped and turns up as escaped &lt;math&gt; tags.
3136 !! input
3137 [[Image:foobar.jpg|thumb|<math>2+2</math>]]
3138 !! result
3139 <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="&lt;math&gt;2+2&lt;/math&gt;"><img alt="&lt;math&gt;2+2&lt;/math&gt;" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" width="180" height="20" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>&lt;math&gt;2+2&lt;/math&gt;</div></div></div>
3141 !! end
3143 !! test
3144 BUG 1887, part 2: A <math> with a thumbnail- math enabled
3145 !! options
3146 math
3147 !! input
3148 [[Image:foobar.jpg|thumb|<math>2+2</math>]]
3149 !! result
3150 <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="2 + 2"><img alt="2 + 2" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" width="180" height="20" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div><span class="texhtml">2 + 2</span></div></div></div>
3152 !! end
3154 # Pending resolution to bug 368
3155 !! test
3156 BUG 648: Frameless image caption with a link
3157 !! input
3158 [[Image:foobar.jpg|text with a [[link]] in it]]
3159 !! result
3160 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="text with a link in it"><img alt="text with a link in it" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3161 </p>
3162 !! end
3164 !! test
3165 BUG 648: Frameless image caption with a link (suffix)
3166 !! input
3167 [[Image:foobar.jpg|text with a [[link]]foo in it]]
3168 !! result
3169 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="text with a linkfoo in it"><img alt="text with a linkfoo in it" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3170 </p>
3171 !! end
3173 !! test
3174 BUG 648: Frameless image caption with an interwiki link
3175 !! input
3176 [[Image:foobar.jpg|text with a [[MeatBall:Link]] in it]]
3177 !! result
3178 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="text with a MeatBall:Link in it"><img alt="text with a MeatBall:Link in it" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3179 </p>
3180 !! end
3182 !! test
3183 BUG 648: Frameless image caption with a piped interwiki link
3184 !! input
3185 [[Image:foobar.jpg|text with a [[MeatBall:Link|link]] in it]]
3186 !! result
3187 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="text with a link in it"><img alt="text with a link in it" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3188 </p>
3189 !! end
3191 !! test
3192 Escape HTML special chars in image alt text
3193 !! input
3194 [[Image:foobar.jpg|& < > "]]
3195 !! result
3196 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="&amp; &lt; &gt; &quot;"><img alt="&amp; &lt; &gt; &quot;" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3197 </p>
3198 !! end
3200 !! test
3201 BUG 499: Alt text should have &#1234;, not &amp;1234;
3202 !! input
3203 [[Image:foobar.jpg|&#9792;]]
3204 !! result
3205 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="♀"><img alt="♀" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3206 </p>
3207 !! end
3209 !! test
3210 Broken image caption with link
3211 !! input
3212 [[Image:Foobar.jpg|thumb|This is a broken caption. But [[Main Page|this]] is just an ordinary link.
3213 !! result
3214 <p>[[Image:Foobar.jpg|thumb|This is a broken caption. But <a href="/wiki/Main_Page" title="Main Page">this</a> is just an ordinary link.
3215 </p>
3216 !! end
3218 !! test
3219 Image caption containing another image
3220 !! input
3221 [[Image:Foobar.jpg|thumb|This is a caption with another [[Image:icon.png|image]] inside it!]]
3222 !! result
3223 <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="This is a caption with another Image:Icon.png inside it!"><img alt="This is a caption with another Image:Icon.png inside it!" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" width="180" height="20" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>This is a caption with another <a href="/index.php?title=Special:Upload&amp;wpDestFile=Icon.png" class="new" title="Image:Icon.png">Image:Icon.png</a> inside it!</div></div></div>
3225 !! end
3227 !! test
3228 Image caption containing a newline
3229 !! input
3230 [[Image:Foobar.jpg|This
3231 *is some text]]
3232 !! result
3233 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="This *is some text"><img alt="This *is some text" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3234 </p>
3235 !!end
3238 !! test
3239 Bug 3090: External links other than http: in image captions
3240 !! input
3241 [[Image:Foobar.jpg|thumb|200px|This caption has [irc://example.net irc] and [https://example.com Secure] ext links in it.]]
3242 !! result
3243 <div class="thumb tright"><div class="thumbinner" style="width:202px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="This caption has irc and Secure ext links in it."><img alt="This caption has irc and Secure ext links in it." src="http://example.com/images/thumb/3/3a/Foobar.jpg/200px-Foobar.jpg" width="200" height="23" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>This caption has <a href="irc://example.net" class="external text" title="irc://example.net" rel="nofollow">irc</a> and <a href="https://example.com" class="external text" title="https://example.com" rel="nofollow">Secure</a> ext links in it.</div></div></div>
3245 !! end
3249 ### Subpages
3251 !! article
3252 Subpage test/subpage
3253 !! text
3255 !! endarticle
3257 !! test
3258 Subpage link
3259 !! options
3260 subpage title=[[Subpage test]]
3261 !! input
3262 [[/subpage]]
3263 !! result
3264 <p><a href="/wiki/Subpage_test/subpage" title="Subpage test/subpage">/subpage</a>
3265 </p>
3266 !! end
3268 !! test
3269 Subpage noslash link
3270 !! options
3271 subpage title=[[Subpage test]]
3272 !!input
3273 [[/subpage/]]
3274 !! result
3275 <p><a href="/wiki/Subpage_test/subpage" title="Subpage test/subpage">subpage</a>
3276 </p>
3277 !! end
3279 !! test
3280 Disabled subpages
3281 !! input
3282 [[/subpage]]
3283 !! result
3284 <p><a href="/index.php?title=/subpage&amp;action=edit&amp;redlink=1" class="new" title="/subpage (not yet written)">/subpage</a>
3285 </p>
3286 !! end
3288 !! test
3289 BUG 561: {{/Subpage}}
3290 !! options
3291 subpage title=[[Page]]
3292 !! input
3293 {{/Subpage}}
3294 !! result
3295 <p><a href="/index.php?title=Page/Subpage&amp;action=edit&amp;redlink=1" class="new" title="Page/Subpage (not yet written)">Page/Subpage</a>
3296 </p>
3297 !! end
3300 ### Categories
3302 !! article
3303 Category:MediaWiki User's Guide
3304 !! text
3305 blah
3306 !! endarticle
3308 !! test
3309 Link to category
3310 !! input
3311 [[:Category:MediaWiki User's Guide]]
3312 !! result
3313 <p><a href="/wiki/Category:MediaWiki_User%27s_Guide" title="Category:MediaWiki User's Guide">Category:MediaWiki User's Guide</a>
3314 </p>
3315 !! end
3317 !! test
3318 Simple category
3319 !! options
3321 !! input
3322 [[Category:MediaWiki User's Guide]]
3323 !! result
3324 <a href="/wiki/Category:MediaWiki_User%27s_Guide" title="Category:MediaWiki User's Guide">MediaWiki User's Guide</a>
3325 !! end
3328 ### Inter-language links
3330 !! test
3331 Inter-language links
3332 !! options
3334 !! input
3335 [[es:Alimento]]
3336 [[fr:Nourriture]]
3337 [[zh:&#39135;&#21697;]]
3338 !! result
3339 es:Alimento fr:Nourriture zh:食品
3340 !! end
3343 ### Sections
3345 !! test
3346 Basic section headings
3347 !! input
3348 == Headline 1 ==
3349 Some text
3351 ==Headline 2==
3352 More
3353 ===Smaller headline===
3354 Blah blah
3355 !! result
3356 <a name="Headline_1"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: Headline 1">edit</a>]</span> <span class="mw-headline"> Headline 1 </span></h2>
3357 <p>Some text
3358 </p>
3359 <a name="Headline_2"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: Headline 2">edit</a>]</span> <span class="mw-headline">Headline 2</span></h2>
3360 <p>More
3361 </p>
3362 <a name="Smaller_headline"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: Smaller headline">edit</a>]</span> <span class="mw-headline">Smaller headline</span></h3>
3363 <p>Blah blah
3364 </p>
3365 !! end
3367 !! test
3368 Section headings with TOC
3369 !! input
3370 == Headline 1 ==
3371 === Subheadline 1 ===
3372 ===== Skipping a level =====
3373 ====== Skipping a level ======
3375 == Headline 2 ==
3376 Some text
3377 ===Another headline===
3378 !! result
3379 <table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
3380 <ul>
3381 <li class="toclevel-1"><a href="#Headline_1"><span class="tocnumber">1</span> <span class="toctext">Headline 1</span></a>
3382 <ul>
3383 <li class="toclevel-2"><a href="#Subheadline_1"><span class="tocnumber">1.1</span> <span class="toctext">Subheadline 1</span></a>
3384 <ul>
3385 <li class="toclevel-3"><a href="#Skipping_a_level"><span class="tocnumber">1.1.1</span> <span class="toctext">Skipping a level</span></a>
3386 <ul>
3387 <li class="toclevel-4"><a href="#Skipping_a_level_2"><span class="tocnumber">1.1.1.1</span> <span class="toctext">Skipping a level</span></a></li>
3388 </ul>
3389 </li>
3390 </ul>
3391 </li>
3392 </ul>
3393 </li>
3394 <li class="toclevel-1"><a href="#Headline_2"><span class="tocnumber">2</span> <span class="toctext">Headline 2</span></a>
3395 <ul>
3396 <li class="toclevel-2"><a href="#Another_headline"><span class="tocnumber">2.1</span> <span class="toctext">Another headline</span></a></li>
3397 </ul>
3398 </li>
3399 </ul>
3400 </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
3401 <a name="Headline_1"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: Headline 1">edit</a>]</span> <span class="mw-headline"> Headline 1 </span></h2>
3402 <a name="Subheadline_1"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: Subheadline 1">edit</a>]</span> <span class="mw-headline"> Subheadline 1 </span></h3>
3403 <a name="Skipping_a_level"></a><h5><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: Skipping a level">edit</a>]</span> <span class="mw-headline"> Skipping a level </span></h5>
3404 <a name="Skipping_a_level_2"></a><h6><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: Skipping a level">edit</a>]</span> <span class="mw-headline"> Skipping a level </span></h6>
3405 <a name="Headline_2"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: Headline 2">edit</a>]</span> <span class="mw-headline"> Headline 2 </span></h2>
3406 <p>Some text
3407 </p>
3408 <a name="Another_headline"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=6" title="Edit section: Another headline">edit</a>]</span> <span class="mw-headline">Another headline</span></h3>
3410 !! end
3412 # perl -e 'print "="x$_," Level $_ heading","="x$_,"\n" for 1..10'
3413 !! test
3414 Handling of sections up to level 6 and beyond
3415 !! input 
3416 = Level 1 Heading=
3417 == Level 2 Heading==
3418 === Level 3 Heading===
3419 ==== Level 4 Heading====
3420 ===== Level 5 Heading=====
3421 ====== Level 6 Heading======
3422 ======= Level 7 Heading=======
3423 ======== Level 8 Heading========
3424 ========= Level 9 Heading=========
3425 ========== Level 10 Heading==========
3426 !! result
3427 <table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
3428 <ul>
3429 <li class="toclevel-1"><a href="#Level_1_Heading"><span class="tocnumber">1</span> <span class="toctext">Level 1 Heading</span></a>
3430 <ul>
3431 <li class="toclevel-2"><a href="#Level_2_Heading"><span class="tocnumber">1.1</span> <span class="toctext">Level 2 Heading</span></a>
3432 <ul>
3433 <li class="toclevel-3"><a href="#Level_3_Heading"><span class="tocnumber">1.1.1</span> <span class="toctext">Level 3 Heading</span></a>
3434 <ul>
3435 <li class="toclevel-4"><a href="#Level_4_Heading"><span class="tocnumber">1.1.1.1</span> <span class="toctext">Level 4 Heading</span></a>
3436 <ul>
3437 <li class="toclevel-5"><a href="#Level_5_Heading"><span class="tocnumber">1.1.1.1.1</span> <span class="toctext">Level 5 Heading</span></a>
3438 <ul>
3439 <li class="toclevel-6"><a href="#Level_6_Heading"><span class="tocnumber">1.1.1.1.1.1</span> <span class="toctext">Level 6 Heading</span></a></li>
3440 <li class="toclevel-6"><a href="#.3D_Level_7_Heading.3D"><span class="tocnumber">1.1.1.1.1.2</span> <span class="toctext">= Level 7 Heading=</span></a></li>
3441 <li class="toclevel-6"><a href="#.3D.3D_Level_8_Heading.3D.3D"><span class="tocnumber">1.1.1.1.1.3</span> <span class="toctext">== Level 8 Heading==</span></a></li>
3442 <li class="toclevel-6"><a href="#.3D.3D.3D_Level_9_Heading.3D.3D.3D"><span class="tocnumber">1.1.1.1.1.4</span> <span class="toctext">=== Level 9 Heading===</span></a></li>
3443 <li class="toclevel-6"><a href="#.3D.3D.3D.3D_Level_10_Heading.3D.3D.3D.3D"><span class="tocnumber">1.1.1.1.1.5</span> <span class="toctext">==== Level 10 Heading====</span></a></li>
3444 </ul>
3445 </li>
3446 </ul>
3447 </li>
3448 </ul>
3449 </li>
3450 </ul>
3451 </li>
3452 </ul>
3453 </li>
3454 </ul>
3455 </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
3456 <a name="Level_1_Heading"></a><h1><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: Level 1 Heading">edit</a>]</span> <span class="mw-headline"> Level 1 Heading</span></h1>
3457 <a name="Level_2_Heading"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: Level 2 Heading">edit</a>]</span> <span class="mw-headline"> Level 2 Heading</span></h2>
3458 <a name="Level_3_Heading"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: Level 3 Heading">edit</a>]</span> <span class="mw-headline"> Level 3 Heading</span></h3>
3459 <a name="Level_4_Heading"></a><h4><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: Level 4 Heading">edit</a>]</span> <span class="mw-headline"> Level 4 Heading</span></h4>
3460 <a name="Level_5_Heading"></a><h5><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: Level 5 Heading">edit</a>]</span> <span class="mw-headline"> Level 5 Heading</span></h5>
3461 <a name="Level_6_Heading"></a><h6><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=6" title="Edit section: Level 6 Heading">edit</a>]</span> <span class="mw-headline"> Level 6 Heading</span></h6>
3462 <a name=".3D_Level_7_Heading.3D"></a><h6><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=7" title="Edit section: = Level 7 Heading=">edit</a>]</span> <span class="mw-headline">= Level 7 Heading=</span></h6>
3463 <a name=".3D.3D_Level_8_Heading.3D.3D"></a><h6><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=8" title="Edit section: == Level 8 Heading==">edit</a>]</span> <span class="mw-headline">== Level 8 Heading==</span></h6>
3464 <a name=".3D.3D.3D_Level_9_Heading.3D.3D.3D"></a><h6><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=9" title="Edit section: === Level 9 Heading===">edit</a>]</span> <span class="mw-headline">=== Level 9 Heading===</span></h6>
3465 <a name=".3D.3D.3D.3D_Level_10_Heading.3D.3D.3D.3D"></a><h6><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=10" title="Edit section: ==== Level 10 Heading====">edit</a>]</span> <span class="mw-headline">==== Level 10 Heading====</span></h6>
3467 !! end
3469 !! test
3470 TOC regression (bug 9764)
3471 !! input
3472 == title 1 ==
3473 === title 1.1 ===
3474 ==== title 1.1.1 ====
3475 === title 1.2 ===
3476 == title 2 ==
3477 === title 2.1 ===
3478 !! result
3479 <table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
3480 <ul>
3481 <li class="toclevel-1"><a href="#title_1"><span class="tocnumber">1</span> <span class="toctext">title 1</span></a>
3482 <ul>
3483 <li class="toclevel-2"><a href="#title_1.1"><span class="tocnumber">1.1</span> <span class="toctext">title 1.1</span></a>
3484 <ul>
3485 <li class="toclevel-3"><a href="#title_1.1.1"><span class="tocnumber">1.1.1</span> <span class="toctext">title 1.1.1</span></a></li>
3486 </ul>
3487 </li>
3488 <li class="toclevel-2"><a href="#title_1.2"><span class="tocnumber">1.2</span> <span class="toctext">title 1.2</span></a></li>
3489 </ul>
3490 </li>
3491 <li class="toclevel-1"><a href="#title_2"><span class="tocnumber">2</span> <span class="toctext">title 2</span></a>
3492 <ul>
3493 <li class="toclevel-2"><a href="#title_2.1"><span class="tocnumber">2.1</span> <span class="toctext">title 2.1</span></a></li>
3494 </ul>
3495 </li>
3496 </ul>
3497 </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
3498 <a name="title_1"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: title 1">edit</a>]</span> <span class="mw-headline"> title 1 </span></h2>
3499 <a name="title_1.1"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: title 1.1">edit</a>]</span> <span class="mw-headline"> title 1.1 </span></h3>
3500 <a name="title_1.1.1"></a><h4><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: title 1.1.1">edit</a>]</span> <span class="mw-headline"> title 1.1.1 </span></h4>
3501 <a name="title_1.2"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: title 1.2">edit</a>]</span> <span class="mw-headline"> title 1.2 </span></h3>
3502 <a name="title_2"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: title 2">edit</a>]</span> <span class="mw-headline"> title 2 </span></h2>
3503 <a name="title_2.1"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=6" title="Edit section: title 2.1">edit</a>]</span> <span class="mw-headline"> title 2.1 </span></h3>
3505 !! end
3507 !! test
3508 TOC with wgMaxTocLevel=3 (bug 6204)
3509 !! options
3510 wgMaxTocLevel=3
3511 !! input
3512 == title 1 ==
3513 === title 1.1 ===
3514 ==== title 1.1.1 ====
3515 === title 1.2 ===
3516 == title 2 ==
3517 === title 2.1 ===
3518 !! result
3519 <table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
3520 <ul>
3521 <li class="toclevel-1"><a href="#title_1"><span class="tocnumber">1</span> <span class="toctext">title 1</span></a>
3522 <ul>
3523 <li class="toclevel-2"><a href="#title_1.1"><span class="tocnumber">1.1</span> <span class="toctext">title 1.1</span></a></li>
3524 <li class="toclevel-2"><a href="#title_1.2"><span class="tocnumber">1.2</span> <span class="toctext">title 1.2</span></a></li>
3525 </ul>
3526 </li>
3527 <li class="toclevel-1"><a href="#title_2"><span class="tocnumber">2</span> <span class="toctext">title 2</span></a>
3528 <ul>
3529 <li class="toclevel-2"><a href="#title_2.1"><span class="tocnumber">2.1</span> <span class="toctext">title 2.1</span></a></li>
3530 </ul>
3531 </li>
3532 </ul>
3533 </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
3534 <a name="title_1"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: title 1">edit</a>]</span> <span class="mw-headline"> title 1 </span></h2>
3535 <a name="title_1.1"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: title 1.1">edit</a>]</span> <span class="mw-headline"> title 1.1 </span></h3>
3536 <a name="title_1.1.1"></a><h4><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: title 1.1.1">edit</a>]</span> <span class="mw-headline"> title 1.1.1 </span></h4>
3537 <a name="title_1.2"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: title 1.2">edit</a>]</span> <span class="mw-headline"> title 1.2 </span></h3>
3538 <a name="title_2"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: title 2">edit</a>]</span> <span class="mw-headline"> title 2 </span></h2>
3539 <a name="title_2.1"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=6" title="Edit section: title 2.1">edit</a>]</span> <span class="mw-headline"> title 2.1 </span></h3>
3541 !! end
3543 !! test
3544 Resolving duplicate section names
3545 !! input
3546 == Foo bar ==
3547 == Foo bar ==
3548 !! result
3549 <a name="Foo_bar"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: Foo bar">edit</a>]</span> <span class="mw-headline"> Foo bar </span></h2>
3550 <a name="Foo_bar_2"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: Foo bar">edit</a>]</span> <span class="mw-headline"> Foo bar </span></h2>
3552 !! end
3554 !! test
3555 Resolving duplicate section names with differing case (bug 10721)
3556 !! input
3557 == Foo bar ==
3558 == Foo Bar ==
3559 !! result
3560 <a name="Foo_bar"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: Foo bar">edit</a>]</span> <span class="mw-headline"> Foo bar </span></h2>
3561 <a name="Foo_Bar_2"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: Foo Bar">edit</a>]</span> <span class="mw-headline"> Foo Bar </span></h2>
3563 !! end
3565 !! article
3566 Template:sections
3567 !! text
3568 ===Section 1===
3569 ==Section 2==
3570 !! endarticle
3572 !! test
3573 Template with sections, __NOTOC__
3574 !! input
3575 __NOTOC__
3576 ==Section 0==
3577 {{sections}}
3578 ==Section 4==
3579 !! result
3580 <a name="Section_0"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: Section 0">edit</a>]</span> <span class="mw-headline">Section 0</span></h2>
3581 <a name="Section_1"></a><h3><span class="editsection">[<a href="/index.php?title=Template:Sections&amp;action=edit&amp;section=T-1" title="Template:Sections">edit</a>]</span> <span class="mw-headline">Section 1</span></h3>
3582 <a name="Section_2"></a><h2><span class="editsection">[<a href="/index.php?title=Template:Sections&amp;action=edit&amp;section=T-2" title="Template:Sections">edit</a>]</span> <span class="mw-headline">Section 2</span></h2>
3583 <a name="Section_4"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: Section 4">edit</a>]</span> <span class="mw-headline">Section 4</span></h2>
3585 !! end
3587 !! test
3588 __NOEDITSECTION__ keyword
3589 !! input
3590 __NOEDITSECTION__
3591 ==Section 1==
3592 ==Section 2==
3593 !! result
3594 <a name="Section_1"></a><h2> <span class="mw-headline">Section 1</span></h2>
3595 <a name="Section_2"></a><h2> <span class="mw-headline">Section 2</span></h2>
3597 !! end
3599 !! test
3600 Link inside a section heading
3601 !! input
3602 ==Section with a [[Main Page|link]] in it==
3603 !! result
3604 <a name="Section_with_a_link_in_it"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: Section with a link in it">edit</a>]</span> <span class="mw-headline">Section with a <a href="/wiki/Main_Page" title="Main Page">link</a> in it</span></h2>
3606 !! end
3609 !! test
3610 BUG 1219 URL next to image (good)
3611 !! input
3612 http://example.com [[Image:foobar.jpg]]
3613 !! result
3614 <p><a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a> <a href="/wiki/Image:Foobar.jpg" class="image" title="Image:foobar.jpg"><img alt="Image:foobar.jpg" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3615 </p>
3616 !!end
3618 !! test
3619 BUG 1219 URL next to image (broken)
3620 !! input
3621 http://example.com[[Image:foobar.jpg]]
3622 !! result
3623 <p><a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a><a href="/wiki/Image:Foobar.jpg" class="image" title="Image:foobar.jpg"><img alt="Image:foobar.jpg" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a>
3624 </p>
3625 !!end
3627 !! test
3628 Bug 1186 news: in the middle of text
3629 !! input
3630 http://en.wikinews.org/wiki/Wikinews:Workplace
3631 !! result
3632 <p><a href="http://en.wikinews.org/wiki/Wikinews:Workplace" class="external free" title="http://en.wikinews.org/wiki/Wikinews:Workplace" rel="nofollow">http://en.wikinews.org/wiki/Wikinews:Workplace</a>
3633 </p>
3634 !!end
3637 !! test
3638 Namespaced link must have a title
3639 !! input
3640 [[Project:]]
3641 !! result
3642 <p>[[Project:]]
3643 </p>
3644 !!end
3646 !! test
3647 Namespaced link must have a title (bad fragment version)
3648 !! input
3649 [[Project:#fragment]]
3650 !! result
3651 <p>[[Project:#fragment]]
3652 </p>
3653 !!end
3656 !! test
3657 div with no attributes
3658 !! input
3659 <div>HTML rocks</div>
3660 !! result
3661 <div>HTML rocks</div>
3663 !! end
3665 !! test
3666 div with double-quoted attribute
3667 !! input
3668 <div id="rock">HTML rocks</div>
3669 !! result
3670 <div id="rock">HTML rocks</div>
3672 !! end
3674 !! test
3675 div with single-quoted attribute
3676 !! input
3677 <div id='rock'>HTML rocks</div>
3678 !! result
3679 <div id="rock">HTML rocks</div>
3681 !! end
3683 !! test
3684 div with unquoted attribute
3685 !! input
3686 <div id=rock>HTML rocks</div>
3687 !! result
3688 <div id="rock">HTML rocks</div>
3690 !! end
3692 !! test
3693 div with illegal double attributes
3694 !! input
3695 <div align="center" align="right">HTML rocks</div>
3696 !! result
3697 <div align="right">HTML rocks</div>
3699 !!end
3701 !! test
3702 HTML multiple attributes correction
3703 !! input
3704 <p class="error" class="awesome">Awesome!</p>
3705 !! result
3706 <p class="awesome">Awesome!</p>
3708 !!end
3710 !! test
3711 Table multiple attributes correction
3712 !! input
3714 !+ class="error" class="awesome"| status
3716 !! result
3717 <table>
3718 <tr>
3719 <th class="awesome"> status
3720 </th></tr></table>
3722 !!end
3724 !! test
3725 DIV IN UPPERCASE
3726 !! input
3727 <DIV ALIGN="center">HTML ROCKS</DIV>
3728 !! result
3729 <div align="center">HTML ROCKS</div>
3731 !!end
3734 !! test
3735 text with amp in the middle of nowhere
3736 !! input
3737 Remember AT&T?
3738 !!result
3739 <p>Remember AT&amp;T?
3740 </p>
3741 !! end
3743 !! test
3744 text with character entity: eacute
3745 !! input
3746 I always thought &eacute; was a cute letter.
3747 !! result
3748 <p>I always thought &eacute; was a cute letter.
3749 </p>
3750 !! end
3752 !! test
3753 text with undefined character entity: xacute
3754 !! input
3755 I always thought &xacute; was a cute letter.
3756 !! result
3757 <p>I always thought &amp;xacute; was a cute letter.
3758 </p>
3759 !! end
3763 ### Media links
3766 !! test
3767 Media link
3768 !! input
3769 [[Media:Foobar.jpg]]
3770 !! result
3771 <p><a href="http://example.com/images/3/3a/Foobar.jpg" class="internal" title="Foobar.jpg">Media:Foobar.jpg</a>
3772 </p>
3773 !! end
3775 !! test
3776 Media link with text
3777 !! input
3778 [[Media:Foobar.jpg|A neat file to look at]]
3779 !! result
3780 <p><a href="http://example.com/images/3/3a/Foobar.jpg" class="internal" title="Foobar.jpg">A neat file to look at</a>
3781 </p>
3782 !! end
3784 # FIXME: this is still bad HTML tag nesting
3785 !! test
3786 Media link with nasty text
3787 fixme: doBlockLevels won't wrap this in a paragraph because it contains a div
3788 !! input
3789 [[Media:Foobar.jpg|Safe Link<div style=display:none>" onmouseover="alert(document.cookie)" onfoo="</div>]]
3790 !! result
3791 <a href="http://example.com/images/3/3a/Foobar.jpg" class="internal" title="Foobar.jpg">Safe Link&lt;div style="display:none"&gt;" onmouseover="alert(document.cookie)" onfoo="&lt;/div&gt;</a>
3793 !! end
3795 !! test
3796 Media link to nonexistent file (bug 1702)
3797 !! input
3798 [[Media:No such.jpg]]
3799 !! result
3800 <p><a href="/index.php?title=Special:Upload&amp;wpDestFile=No_such.jpg" class="new" title="No such.jpg">Media:No such.jpg</a>
3801 </p>
3802 !! end
3804 !! test
3805 Image link to nonexistent file (bug 1850 - good)
3806 !! input
3807 [[Image:No such.jpg]]
3808 !! result
3809 <p><a href="/index.php?title=Special:Upload&amp;wpDestFile=No_such.jpg" class="new" title="Image:No such.jpg">Image:No such.jpg</a>
3810 </p>
3811 !! end
3813 !! test
3814 :Image link to nonexistent file (bug 1850 - bad)
3815 !! input
3816 [[:Image:No such.jpg]]
3817 !! result
3818 <p><a href="/index.php?title=Image:No_such.jpg&amp;action=edit&amp;redlink=1" class="new" title="No such.jpg (not yet written)">Image:No such.jpg</a>
3819 </p>
3820 !! end
3824 !! test
3825 Character reference normalization in link text (bug 1938)
3826 !! input
3827 [[Main Page|this&that]]
3828 !! result
3829 <p><a href="/wiki/Main_Page" title="Main Page">this&amp;that</a>
3830 </p>
3831 !!end
3833 !! test
3834 Empty attribute crash test (bug 2067)
3835 !! input
3836 <font color="">foo</font>
3837 !! result
3838 <p><font color="">foo</font>
3839 </p>
3840 !! end
3842 !! test
3843 Empty attribute crash test single-quotes (bug 2067)
3844 !! input
3845 <font color=''>foo</font>
3846 !! result
3847 <p><font color="">foo</font>
3848 </p>
3849 !! end
3851 !! test
3852 Attribute test: equals, then nothing
3853 !! input
3854 <font color=>foo</font>
3855 !! result
3856 <p><font>foo</font>
3857 </p>
3858 !! end
3860 !! test
3861 Attribute test: unquoted value
3862 !! input
3863 <font color=x>foo</font>
3864 !! result
3865 <p><font color="x">foo</font>
3866 </p>
3867 !! end
3869 !! test
3870 Attribute test: unquoted but illegal value (hash)
3871 !! input
3872 <font color=#x>foo</font>
3873 !! result
3874 <p><font color="#x">foo</font>
3875 </p>
3876 !! end
3878 !! test
3879 Attribute test: no value
3880 !! input
3881 <font color>foo</font>
3882 !! result
3883 <p><font color="color">foo</font>
3884 </p>
3885 !! end
3887 !! test
3888 Bug 2095: link with three closing brackets
3889 !! input
3890 [[Main Page]]]
3891 !! result
3892 <p><a href="/wiki/Main_Page" title="Main Page">Main Page</a>]
3893 </p>
3894 !! end
3896 !! test
3897 Bug 2095: link with pipe and three closing brackets
3898 !! input
3899 [[Main Page|link]]]
3900 !! result
3901 <p><a href="/wiki/Main_Page" title="Main Page">link</a>]
3902 </p>
3903 !! end
3905 !! test
3906 Bug 2095: link with pipe and three closing brackets, version 2
3907 !! input
3908 [[Main Page|[http://example.com/]]]
3909 !! result
3910 <p><a href="/wiki/Main_Page" title="Main Page">[http://example.com/]</a>
3911 </p>
3912 !! end
3916 ### Safety
3919 !! article
3920 Template:Dangerous attribute
3921 !! text
3922 " onmouseover="alert(document.cookie)
3923 !! endarticle
3925 !! article
3926 Template:Dangerous style attribute
3927 !! text
3928 border-size: expression(alert(document.cookie))
3929 !! endarticle
3931 !! article
3932 Template:Div style
3933 !! text
3934 <div style="float: right; {{{1}}}">Magic div</div>
3935 !! endarticle
3937 !! test
3938 Bug 2304: HTML attribute safety (safe template; regression bug 2309)
3939 !! input
3940 <div title="{{test}}"></div>
3941 !! result
3942 <div title="This is a test template"></div>
3944 !! end
3946 !! test
3947 Bug 2304: HTML attribute safety (dangerous template; 2309)
3948 !! input
3949 <div title="{{dangerous attribute}}"></div>
3950 !! result
3951 <div title=""></div>
3953 !! end
3955 !! test
3956 Bug 2304: HTML attribute safety (dangerous style template; 2309)
3957 !! input
3958 <div style="{{dangerous style attribute}}"></div>
3959 !! result
3960 <div></div>
3962 !! end
3964 !! test
3965 Bug 2304: HTML attribute safety (safe parameter; 2309)
3966 !! input
3967 {{div style|width: 200px}}
3968 !! result
3969 <div style="float: right; width: 200px">Magic div</div>
3971 !! end
3973 !! test
3974 Bug 2304: HTML attribute safety (unsafe parameter; 2309)
3975 !! input
3976 {{div style|width: expression(alert(document.cookie))}}
3977 !! result
3978 <div>Magic div</div>
3980 !! end
3982 !! test
3983 Bug 2304: HTML attribute safety (unsafe breakout parameter; 2309)
3984 !! input
3985 {{div style|"><script>alert(document.cookie)</script>}}
3986 !! result
3987 <div style="float: right;">&lt;script&gt;alert(document.cookie)&lt;/script&gt;"&gt;Magic div</div>
3989 !! end
3991 !! test
3992 Bug 2304: HTML attribute safety (unsafe breakout parameter 2; 2309)
3993 !! input
3994 {{div style|" ><script>alert(document.cookie)</script>}}
3995 !! result
3996 <div style="float: right;">&lt;script&gt;alert(document.cookie)&lt;/script&gt;"&gt;Magic div</div>
3998 !! end
4000 !! test
4001 Bug 2304: HTML attribute safety (link)
4002 !! input
4003 <div title="[[Main Page]]"></div>
4004 !! result
4005 <div title="&#91;&#91;Main Page]]"></div>
4007 !! end
4009 !! test
4010 Bug 2304: HTML attribute safety (italics)
4011 !! input
4012 <div title="''foobar''"></div>
4013 !! result
4014 <div title="&#39;&#39;foobar&#39;&#39;"></div>
4016 !! end
4018 !! test
4019 Bug 2304: HTML attribute safety (bold)
4020 !! input
4021 <div title="'''foobar'''"></div>
4022 !! result
4023 <div title="&#39;&#39;&#39;foobar&#39;&#39;&#39;"></div>
4025 !! end
4028 !! test
4029 Bug 2304: HTML attribute safety (ISBN)
4030 !! input
4031 <div title="ISBN 1234567890"></div>
4032 !! result
4033 <div title="&#73;SBN 1234567890"></div>
4035 !! end
4037 !! test
4038 Bug 2304: HTML attribute safety (RFC)
4039 !! input
4040 <div title="RFC 1234"></div>
4041 !! result
4042 <div title="&#82;FC 1234"></div>
4044 !! end
4046 !! test
4047 Bug 2304: HTML attribute safety (PMID)
4048 !! input
4049 <div title="PMID 1234567890"></div>
4050 !! result
4051 <div title="&#80;MID 1234567890"></div>
4053 !! end
4055 !! test
4056 Bug 2304: HTML attribute safety (web link)
4057 !! input
4058 <div title="http://example.com/"></div>
4059 !! result
4060 <div title="http&#58;//example.com/"></div>
4062 !! end
4064 !! test
4065 Bug 2304: HTML attribute safety (named web link)
4066 !! input
4067 <div title="[http://example.com/ link]"></div>
4068 !! result
4069 <div title="&#91;http&#58;//example.com/ link]"></div>
4071 !! end
4073 !! test
4074 Bug 3244: HTML attribute safety (extension; safe)
4075 !! input
4076 <div style="<nowiki>background:blue</nowiki>"></div>
4077 !! result
4078 <div style="background:blue"></div>
4080 !! end
4082 !! test
4083 Bug 3244: HTML attribute safety (extension; unsafe)
4084 !! input
4085 <div style="<nowiki>border-left:expression(alert(document.cookie))</nowiki>"></div>
4086 !! result
4087 <div></div>
4089 !! end
4091 !! test
4092 Math section safety when disabled
4093 !! input
4094 <math><script>alert(document.cookies);</script></math>
4095 !! result
4096 <p>&lt;math&gt;&lt;script&gt;alert(document.cookies);&lt;/script&gt;&lt;/math&gt;
4097 </p>
4098 !! end
4100 # More MSIE fun discovered by Tom Gilder
4102 !! test
4103 MSIE CSS safety test: spurious slash
4104 !! input
4105 <div style="background-image:u\rl(javascript:alert('boo'))">evil</div>
4106 !! result
4107 <div>evil</div>
4109 !! end
4111 !! test
4112 MSIE CSS safety test: hex code
4113 !! input
4114 <div style="background-image:u\72l(javascript:alert('boo'))">evil</div>
4115 !! result
4116 <div>evil</div>
4118 !! end
4120 !! test
4121 MSIE CSS safety test: comment in url
4122 !! input
4123 <div style="background-image:u/**/rl(javascript:alert('boo'))">evil</div>
4124 !! result
4125 <div style="background-image:u rl(javascript:alert(&#39;boo&#39;))">evil</div>
4127 !! end
4129 !! test
4130 MSIE CSS safety test: comment in expression
4131 !! input
4132 <div style="background-image:expres/**/sion(alert('boo4'))">evil4</div>
4133 !! result
4134 <div style="background-image:expres sion(alert(&#39;boo4&#39;))">evil4</div>
4136 !! end
4139 !! test
4140 Table attribute legitimate extension
4141 !! input
4143 !+ style="<nowiki>color:blue</nowiki>"| status
4145 !! result
4146 <table>
4147 <tr>
4148 <th style="color:blue"> status
4149 </th></tr></table>
4151 !!end
4153 !! test
4154 Table attribute safety
4155 !! input
4157 !+ style="<nowiki>border-width:expression(0+alert(document.cookie))</nowiki>"| status
4159 !! result
4160 <table>
4161 <tr>
4162 <th> status
4163 </th></tr></table>
4165 !! end
4168 !! article
4169 Template:Identity
4170 !! text
4171 {{{1}}}
4172 !! endarticle
4174 !! test
4175 Expansion of multi-line templates in attribute values (bug 6255)
4176 !! input
4177 <div style="background: {{identity|#00FF00}}">-</div>
4178 !! result
4179 <div style="background: #00FF00">-</div>
4181 !! end
4184 !! test
4185 Expansion of multi-line templates in attribute values (bug 6255 sanity check)
4186 !! input
4187 <div style="background: 
4188 #00FF00">-</div>
4189 !! result
4190 <div style="background: #00FF00">-</div>
4192 !! end
4194 !! test
4195 Expansion of multi-line templates in attribute values (bug 6255 sanity check 2)
4196 !! input
4197 <div style="background: &#10;#00FF00">-</div>
4198 !! result
4199 <div style="background: &#10;#00FF00">-</div>
4201 !! end
4204 ### Parser hooks (see maintenance/parserTestsParserHook.php for the <tag> extension)
4206 !! test
4207 Parser hook: empty input
4208 !! input
4209 <tag></tag>
4210 !! result
4211 <pre>
4212 string(0) ""
4213 array(0) {
4215 </pre>
4217 !! end
4219 !! test
4220 Parser hook: empty input using terminated empty elements
4221 !! input
4222 <tag/>
4223 !! result
4224 <pre>
4225 NULL
4226 array(0) {
4228 </pre>
4230 !! end
4232 !! test
4233 Parser hook: empty input using terminated empty elements (space before)
4234 !! input
4235 <tag />
4236 !! result
4237 <pre>
4238 NULL
4239 array(0) {
4241 </pre>
4243 !! end
4245 !! test
4246 Parser hook: basic input
4247 !! input
4248 <tag>input</tag>
4249 !! result
4250 <pre>
4251 string(5) "input"
4252 array(0) {
4254 </pre>
4256 !! end
4259 !! test
4260 Parser hook: case insensitive
4261 !! input
4262 <TAG>input</TAG>
4263 !! result
4264 <pre>
4265 string(5) "input"
4266 array(0) {
4268 </pre>
4270 !! end
4273 !! test
4274 Parser hook: case insensitive, redux
4275 !! input
4276 <TaG>input</TAg>
4277 !! result
4278 <pre>
4279 string(5) "input"
4280 array(0) {
4282 </pre>
4284 !! end
4286 !! test
4287 Parser hook: nested tags
4288 !! options
4289 noxml
4290 !! input
4291 <tag><tag></tag></tag>
4292 !! result
4293 <pre>
4294 string(5) "<tag>"
4295 array(0) {
4297 </pre>&lt;/tag&gt;
4299 !! end
4301 !! test
4302 Parser hook: basic arguments
4303 !! input
4304 <tag width=200 height = "100" depth = '50' square></tag>
4305 !! result
4306 <pre>
4307 string(0) ""
4308 array(4) {
4309   ["width"]=>
4310   string(3) "200"
4311   ["height"]=>
4312   string(3) "100"
4313   ["depth"]=>
4314   string(2) "50"
4315   ["square"]=>
4316   string(6) "square"
4318 </pre>
4320 !! end
4322 !! test
4323 Parser hook: argument containing a forward slash (bug 5344)
4324 !! input
4325 <tag filename='/tmp/bla'></tag>
4326 !! result
4327 <pre>
4328 string(0) ""
4329 array(1) {
4330   ["filename"]=>
4331   string(8) "/tmp/bla"
4333 </pre>
4335 !! end
4337 !! test
4338 Parser hook: empty input using terminated empty elements (bug 2374)
4339 !! input
4340 <tag foo=bar/>text
4341 !! result
4342 <pre>
4343 NULL
4344 array(1) {
4345   ["foo"]=>
4346   string(3) "bar"
4348 </pre>text
4350 !! end
4352 # </tag> should be output literally since there is no matching tag that begins it
4353 !! test
4354 Parser hook: basic arguments using terminated empty elements (bug 2374)
4355 !! input
4356 <tag width=200 height = "100" depth = '50' square/>
4357 other stuff
4358 </tag>
4359 !! result
4360 <pre>
4361 NULL
4362 array(4) {
4363   ["width"]=>
4364   string(3) "200"
4365   ["height"]=>
4366   string(3) "100"
4367   ["depth"]=>
4368   string(2) "50"
4369   ["square"]=>
4370   string(6) "square"
4372 </pre>
4373 <p>other stuff
4374 &lt;/tag&gt;
4375 </p>
4376 !! end
4379 ### (see maintenance/parserTestsStaticParserHook.php for the <statictag> extension)
4382 !! test
4383 Parser hook: static parser hook not inside a comment
4384 !! input
4385 <statictag>hello, world</statictag>
4386 <statictag action=flush/>
4387 !! result
4388 <p>hello, world
4389 </p>
4390 !! end
4393 !! test
4394 Parser hook: static parser hook inside a comment
4395 !! input
4396 <!-- <statictag>hello, world</statictag> -->
4397 <statictag action=flush/>
4398 !! result
4399 <p><br />
4400 </p>
4401 !! end
4403 # Nested template calls; this case was broken by Parser.php rev 1.506,
4404 # since reverted.
4406 !! article
4407 Template:One-parameter
4408 !! text
4409 (My parameter is: {{{1}}})
4410 !! endarticle
4412 !! article
4413 Template:Map-one-parameter
4414 !! text
4415 {{{{{1}}}|{{{2}}}}}
4416 !! endarticle
4418 !! test
4419 Nested template calls
4420 !! input
4421 {{Map-one-parameter|One-parameter|param}}
4422 !! result
4423 <p>(My parameter is: param)
4424 </p>
4425 !! end
4429 ### Sanitizer
4431 !! test
4432 Sanitizer: Closing of open tags
4433 !! input
4434 <s></s><table></table>
4435 !! result
4436 <s></s><table></table>
4438 !! end
4440 !! test
4441 Sanitizer: Closing of open but not closed tags
4442 !! input
4443 <s>foo
4444 !! result
4445 <p><s>foo</s>
4446 </p>
4447 !! end
4449 !! test
4450 Sanitizer: Closing of closed but not open tags
4451 !! input
4452 </s>
4453 !! result
4454 <p>&lt;/s&gt;
4455 </p>
4456 !! end
4458 !! test
4459 Sanitizer: Closing of closed but not open table tags
4460 !! input
4461 Table not started</td></tr></table>
4462 !! result
4463 <p>Table not started&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
4464 </p>
4465 !! end
4467 !! test
4468 Sanitizer: Escaping of spaces, multibyte characters, colons & other stuff in id=""
4469 !! input
4470 <span id="æ: v">byte</span>[[#æ: v|backlink]]
4471 !! result
4472 <p><span id=".C3.A6:_v">byte</span><a href="#.C3.A6:_v" title="">backlink</a>
4473 </p>
4474 !! end
4476 !! test
4477 Sanitizer: Validating the contents of the id attribute (bug 4515)
4478 !! options
4479 disabled
4480 !! input
4481 <br id=9 />
4482 !! result
4483 Something, but defenetly not <br id="9" />...
4484 !! end
4486 !! test
4487 Sanitizer: Validating id attribute uniqueness (bug 4515, bug 6301)
4488 !! options
4489 disabled
4490 !! input
4491 <br id="foo" /><br id="foo" />
4492 !! result
4493 Something need to be done. foo-2 ? 
4494 !! end
4496 !! test
4497 Language converter: output gets cut off unexpectedly (bug 5757)
4498 !! options
4499 language=zh
4500 !! input
4501 this bit is safe: }-
4503 but if we add a conversion instance: -{zh-cn:xxx;zh-tw:yyy}-
4505 then we get cut off here: }-
4507 all additional text is vanished
4508 !! result
4509 <p>this bit is safe: }-
4510 </p><p>but if we add a conversion instance: xxx
4511 </p><p>then we get cut off here: }-
4512 </p><p>all additional text is vanished
4513 </p>
4514 !! end
4516 !! test
4517 Self closed html pairs (bug 5487)
4518 !! options
4519 !! input
4520 <center><font id="bug" />Centered text</center>
4521 <div><font id="bug2" />In div text</div>
4522 !! result
4523 <center>&lt;font id="bug" /&gt;Centered text</center>
4524 <div>&lt;font id="bug2" /&gt;In div text</div>
4526 !! end
4532 !! test
4533 HTML bullet list, closed tags (bug 5497)
4534 !! input
4535 <ul>
4536 <li>One</li>
4537 <li>Two</li>
4538 </ul>
4539 !! result
4540 <ul>
4541 <li>One</li>
4542 <li>Two</li>
4543 </ul>
4545 !! end
4547 !! test
4548 HTML bullet list, unclosed tags (bug 5497)
4549 !! input
4550 <ul>
4551 <li>One
4552 <li>Two
4553 </ul>
4554 !! result
4555 <ul>
4556 <li>One
4557 </li><li>Two
4558 </li></ul>
4560 !! end
4562 !! test
4563 HTML ordered list, closed tags (bug 5497)
4564 !! input
4565 <ol>
4566 <li>One</li>
4567 <li>Two</li>
4568 </ol>
4569 !! result
4570 <ol>
4571 <li>One</li>
4572 <li>Two</li>
4573 </ol>
4575 !! end
4577 !! test
4578 HTML ordered list, unclosed tags (bug 5497)
4579 !! input
4580 <ol>
4581 <li>One
4582 <li>Two
4583 </ol>
4584 !! result
4585 <ol>
4586 <li>One
4587 </li><li>Two
4588 </li></ol>
4590 !! end
4592 !! test
4593 HTML nested bullet list, closed tags (bug 5497)
4594 !! input
4595 <ul>
4596 <li>One</li>
4597 <li>Two:
4598 <ul>
4599 <li>Sub-one</li>
4600 <li>Sub-two</li>
4601 </ul>
4602 </li>
4603 </ul>
4604 !! result
4605 <ul>
4606 <li>One</li>
4607 <li>Two:
4608 <ul>
4609 <li>Sub-one</li>
4610 <li>Sub-two</li>
4611 </ul>
4612 </li>
4613 </ul>
4615 !! end
4617 !! test
4618 HTML nested bullet list, open tags (bug 5497)
4619 !! input
4620 <ul>
4621 <li>One
4622 <li>Two:
4623 <ul>
4624 <li>Sub-one
4625 <li>Sub-two
4626 </ul>
4627 </ul>
4628 !! result
4629 <ul>
4630 <li>One
4631 </li><li>Two:
4632 <ul>
4633 <li>Sub-one
4634 </li><li>Sub-two
4635 </li></ul>
4636 </li></ul>
4638 !! end
4640 !! test
4641 HTML nested ordered list, closed tags (bug 5497)
4642 !! input
4643 <ol>
4644 <li>One</li>
4645 <li>Two:
4646 <ol>
4647 <li>Sub-one</li>
4648 <li>Sub-two</li>
4649 </ol>
4650 </li>
4651 </ol>
4652 !! result
4653 <ol>
4654 <li>One</li>
4655 <li>Two:
4656 <ol>
4657 <li>Sub-one</li>
4658 <li>Sub-two</li>
4659 </ol>
4660 </li>
4661 </ol>
4663 !! end
4665 !! test
4666 HTML nested ordered list, open tags (bug 5497)
4667 !! input
4668 <ol>
4669 <li>One
4670 <li>Two:
4671 <ol>
4672 <li>Sub-one
4673 <li>Sub-two
4674 </ol>
4675 </ol>
4676 !! result
4677 <ol>
4678 <li>One
4679 </li><li>Two:
4680 <ol>
4681 <li>Sub-one
4682 </li><li>Sub-two
4683 </li></ol>
4684 </li></ol>
4686 !! end
4688 !! test
4689 HTML ordered list item with parameters oddity
4690 !! input
4691 <ol><li id="fragment">One</li></ol>
4692 !! result
4693 <ol><li id="fragment">One</li></ol>
4695 !! end
4697 !!test
4698 bug 5918: autonumbering
4699 !! input
4700 [http://first/] [http://second] [ftp://ftp]
4702 ftp://inlineftp
4704 [mailto:enclosed@mail.tld With target]
4706 [mailto:enclosed@mail.tld]
4708 mailto:inline@mail.tld
4709 !! result
4710 <p><a href="http://first/" class="external autonumber" title="http://first/" rel="nofollow">[1]</a> <a href="http://second" class="external autonumber" title="http://second" rel="nofollow">[2]</a> <a href="ftp://ftp" class="external autonumber" title="ftp://ftp" rel="nofollow">[3]</a>
4711 </p><p><a href="ftp://inlineftp" class="external free" title="ftp://inlineftp" rel="nofollow">ftp://inlineftp</a>
4712 </p><p><a href="mailto:enclosed@mail.tld" class="external text" title="mailto:enclosed@mail.tld" rel="nofollow">With target</a>
4713 </p><p><a href="mailto:enclosed@mail.tld" class="external autonumber" title="mailto:enclosed@mail.tld" rel="nofollow">[4]</a>
4714 </p><p><a href="mailto:inline@mail.tld" class="external free" title="mailto:inline@mail.tld" rel="nofollow">mailto:inline@mail.tld</a>
4715 </p>
4716 !! end
4720 # Security and HTML correctness
4721 # From Nick Jenkins' fuzz testing
4724 !! test
4725 Fuzz testing: Parser13
4726 !! input
4727 {| 
4728 | http://a|
4729 !! result
4730 <table>
4731 <tr>
4732 <td>
4733 </td>
4734 </tr>
4735 </table>
4737 !! end
4739 !! test
4740 Fuzz testing: Parser14
4741 !! input
4742 == onmouseover= ==
4743 http://__TOC__
4744 !! result
4745 <a name="onmouseover.3D"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: onmouseover=">edit</a>]</span> <span class="mw-headline"> onmouseover= </span></h2>
4746 http://<table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
4747 <ul>
4748 <li class="toclevel-1"><a href="#onmouseover.3D"><span class="tocnumber">1</span> <span class="toctext">onmouseover=</span></a></li>
4749 </ul>
4750 </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
4752 !! end
4754 !! test
4755 Fuzz testing: Parser14-table
4756 !! input
4757 ==a==
4758 {| STYLE=__TOC__
4759 !! result
4760 <a name="a"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: a">edit</a>]</span> <span class="mw-headline">a</span></h2>
4761 <table style="&#95;_TOC&#95;_">
4762 <tr><td></td></tr>
4763 </table>
4765 !! end
4767 # Known to produce bogus xml (extra </td>)
4768 !! test
4769 Fuzz testing: Parser16
4770 !! options
4771 noxml
4772 !! input
4774 !https://||||||
4775 !! result
4776 <table>
4777 <tr>
4778 <th>https://</th><th></th><th></th><th>
4779 </td>
4780 </tr>
4781 </table>
4783 !! end
4785 !! test
4786 Fuzz testing: Parser21
4787 !! input
4789 ! irc://{{ftp://a" onmouseover="alert('hello world');"
4791 !! result
4792 <table>
4793 <tr>
4794 <th> <a href="irc://{{ftp://a" class="external free" title="irc://{{ftp://a" rel="nofollow">irc://{{ftp://a</a>" onmouseover="alert('hello world');"
4795 </th><td>
4796 </td>
4797 </tr>
4798 </table>
4800 !! end
4802 !! test
4803 Fuzz testing: Parser22
4804 !! input
4805 http://===r:::https://b
4808 !!result
4809 <p><a href="http://===r:::https://b" class="external free" title="http://===r:::https://b" rel="nofollow">http://===r:::https://b</a>
4810 </p>
4811 <table>
4812 <tr><td></td></tr>
4813 </table>
4815 !! end
4817 # Known to produce bad XML for now
4818 !! test
4819 Fuzz testing: Parser24
4820 !! options
4821 noxml
4822 !! input
4824 {{{|
4825 <u CLASS=
4826 | {{{{SSSll!!!!!!!VVVV)]]][[Special:*xxxxxxx--><noinclude>}}}} >
4827 <br style="onmouseover='alert(document.cookie);' " />
4829 MOVE YOUR MOUSE CURSOR OVER THIS TEXT
4831 !! result
4832 <table>
4833 {{{|
4834 <u class="&#124;">}}}} &gt;
4835 <br style="onmouseover=&#39;alert(document.cookie);&#39;" />
4837 MOVE YOUR MOUSE CURSOR OVER THIS TEXT
4838 <tr>
4839 <td></u>
4840 </td>
4841 </tr>
4842 </table>
4844 !! end
4846 # Known to produce bad XML for now
4847 !!test
4848 Fuzz testing: Parser25 (bug 6055)
4849 !! options
4850 noxml
4851 !! input
4854 <LI CLASS=||
4856 }}}blah" onmouseover="alert('hello world');" align="left"'''MOVE MOUSE CURSOR OVER HERE
4857 !! result
4858 <p>{{{| 
4859 </p>
4860 <li class="&#124;&#124;">
4861 }}}blah" onmouseover="alert('hello world');" align="left"<b>MOVE MOUSE CURSOR OVER HERE</b>
4863 !! end
4865 !!test
4866 Fuzz testing: URL adjacent extension (with space, clean)
4867 !! options
4868 !! input
4869 http://example.com <nowiki>junk</nowiki>
4870 !! result
4871 <p><a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a> junk
4872 </p>
4873 !!end
4875 !!test
4876 Fuzz testing: URL adjacent extension (no space, dirty; nowiki)
4877 !! options
4878 !! input
4879 http://example.com<nowiki>junk</nowiki>
4880 !! result
4881 <p><a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a>junk
4882 </p>
4883 !!end
4885 !!test
4886 Fuzz testing: URL adjacent extension (no space, dirty; pre)
4887 !! options
4888 !! input
4889 http://example.com<pre>junk</pre>
4890 !! result
4891 <a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a><pre>junk</pre>
4893 !!end
4895 !!test
4896 Fuzz testing: image with bogus manual thumbnail
4897 !!input
4898 [[Image:foobar.jpg|thumbnail= ]]
4899 !!result
4900 <div class="thumb tright"><div class="thumbinner" style="width:1943px;">Error creating thumbnail:   <div class="thumbcaption"></div></div></div>
4902 !!end
4904 !! test
4905 Fuzz testing: encoded newline in generated HTML replacements (bug 6577)
4906 !! input
4907 <pre dir="&#10;"></pre>
4908 !! result
4909 <pre dir="&#10;"></pre>
4911 !! end
4913 !! test
4914 Parsing optional HTML elements (Bug 6171)
4915 !! options
4916 !! input
4917 <table>
4918   <tr>
4919     <td> Some tabular data</td>
4920     <td> More tabular data ...
4921     <td> And yet som tabular data</td>
4922   </tr>
4923 </table>
4924 !! result
4925 <table>
4926   <tr>
4927     <td> Some tabular data</td>
4928     <td> More tabular data ...
4929     </td><td> And yet som tabular data</td>
4930   </tr>
4931 </table>
4933 !! end
4935 !! test
4936 Correct handling of <td>, <tr> (Bug 6171)
4937 !! options
4938 !! input
4939 <table>
4940   <tr>
4941     <td> Some tabular data</td>
4942     <td> More tabular data ...</td>
4943     <td> And yet som tabular data</td>
4944   </tr>
4945 </table>
4946 !! result
4947 <table>
4948   <tr>
4949     <td> Some tabular data</td>
4950     <td> More tabular data ...</td>
4951     <td> And yet som tabular data</td>
4952   </tr>
4953 </table>
4955 !! end
4958 !! test
4959 Parsing crashing regression (fr:JavaScript)
4960 !! input
4961 </body></x>
4962 !! result
4963 <p>&lt;/body&gt;&lt;/x&gt;
4964 </p>
4965 !! end
4967 !! test
4968 Inline wiki vs wiki block nesting
4969 !! input
4970 '''Bold paragraph
4972 New wiki paragraph
4973 !! result
4974 <p><b>Bold paragraph</b>
4975 </p><p>New wiki paragraph
4976 </p>
4977 !! end
4979 !! test
4980 Inline HTML vs wiki block nesting
4981 !! input
4982 <b>Bold paragraph
4984 New wiki paragraph
4985 !! result
4986 <p><b>Bold paragraph</b>
4987 </p><p>New wiki paragraph
4988 </p>
4989 !! end
4992 !!test
4993 Mixing markup for italics and bold
4994 !! options
4995 !! input
4996 '''bold''''''bold''bolditalics'''''
4997 !! result
4998 <p><b>bold</b><b>bold<i>bolditalics</i></b>
4999 </p>
5000 !! end
5003 !! article
5004 Xyzzyx
5005 !! text
5006 Article for special page transclusion test
5007 !! endarticle
5009 !! test
5010 Special page transclusion
5011 !! options
5012 !! input
5013 {{Special:Prefixindex/Xyzzyx}}
5014 !! result
5015 <p><br />
5016 </p>
5017 <table style="background: inherit;" border="0" width="100%"><tr><td><a href="/wiki/Xyzzyx" title="Xyzzyx">Xyzzyx</a></td></tr></table>
5019 !! end
5021 !! test
5022 Special page transclusion twice (bug 5021)
5023 !! options
5024 !! input
5025 {{Special:Prefixindex/Xyzzyx}}
5026 {{Special:Prefixindex/Xyzzyx}}
5027 !! result
5028 <p><br />
5029 </p>
5030 <table style="background: inherit;" border="0" width="100%"><tr><td><a href="/wiki/Xyzzyx" title="Xyzzyx">Xyzzyx</a></td></tr></table>
5031 <p><br />
5032 </p>
5033 <table style="background: inherit;" border="0" width="100%"><tr><td><a href="/wiki/Xyzzyx" title="Xyzzyx">Xyzzyx</a></td></tr></table>
5035 !! end
5037 !! test
5038 Transclusion of default MediaWiki message
5039 !! input
5040 {{MediaWiki:Mainpage}}
5041 !!result
5042 <p>Main Page
5043 </p>
5044 !! end
5046 !! test
5047 Transclusion of nonexistent MediaWiki message
5048 !! input
5049 {{MediaWiki:Mainpagexxx}}
5050 !!result
5051 <p><a href="/index.php?title=MediaWiki:Mainpagexxx&amp;action=edit&amp;redlink=1" class="new" title="MediaWiki:Mainpagexxx (not yet written)">MediaWiki:Mainpagexxx</a>
5052 </p>
5053 !! end
5055 !! test
5056 Transclusion of MediaWiki message with underscore
5057 !! input
5058 {{MediaWiki:history_short}}
5059 !! result
5060 <p>History
5061 </p>
5062 !! end
5064 !! test
5065 Transclusion of MediaWiki message with space
5066 !! input
5067 {{MediaWiki:history short}}
5068 !! result
5069 <p>History
5070 </p>
5071 !! end
5073 !! test
5074 Invalid header with following text
5075 !! input
5076 = x = y
5077 !! result
5078 <p>= x = y
5079 </p>
5080 !! end
5083 !! test
5084 Section extraction test (section 0)
5085 !! options
5086 section=0
5087 !! input
5088 start
5089 ==a==
5090 ===aa===
5091 ====aaa====
5092 ==b==
5093 ===ba===
5094 ===bb===
5095 ====bba====
5096 ===bc===
5097 ==c==
5098 ===ca===
5099 !! result
5100 start
5101 !! end
5103 !! test
5104 Section extraction test (section 1)
5105 !! options
5106 section=1
5107 !! input
5108 start
5109 ==a==
5110 ===aa===
5111 ====aaa====
5112 ==b==
5113 ===ba===
5114 ===bb===
5115 ====bba====
5116 ===bc===
5117 ==c==
5118 ===ca===
5119 !! result
5120 ==a==
5121 ===aa===
5122 ====aaa====
5123 !! end
5125 !! test
5126 Section extraction test (section 2)
5127 !! options
5128 section=2
5129 !! input
5130 start
5131 ==a==
5132 ===aa===
5133 ====aaa====
5134 ==b==
5135 ===ba===
5136 ===bb===
5137 ====bba====
5138 ===bc===
5139 ==c==
5140 ===ca===
5141 !! result
5142 ===aa===
5143 ====aaa====
5144 !! end
5146 !! test
5147 Section extraction test (section 3)
5148 !! options
5149 section=3
5150 !! input
5151 start
5152 ==a==
5153 ===aa===
5154 ====aaa====
5155 ==b==
5156 ===ba===
5157 ===bb===
5158 ====bba====
5159 ===bc===
5160 ==c==
5161 ===ca===
5162 !! result
5163 ====aaa====
5164 !! end
5166 !! test
5167 Section extraction test (section 4)
5168 !! options
5169 section=4
5170 !! input
5171 start
5172 ==a==
5173 ===aa===
5174 ====aaa====
5175 ==b==
5176 ===ba===
5177 ===bb===
5178 ====bba====
5179 ===bc===
5180 ==c==
5181 ===ca===
5182 !! result
5183 ==b==
5184 ===ba===
5185 ===bb===
5186 ====bba====
5187 ===bc===
5188 !! end
5190 !! test
5191 Section extraction test (section 5)
5192 !! options
5193 section=5
5194 !! input
5195 start
5196 ==a==
5197 ===aa===
5198 ====aaa====
5199 ==b==
5200 ===ba===
5201 ===bb===
5202 ====bba====
5203 ===bc===
5204 ==c==
5205 ===ca===
5206 !! result
5207 ===ba===
5208 !! end
5210 !! test
5211 Section extraction test (section 6)
5212 !! options
5213 section=6
5214 !! input
5215 start
5216 ==a==
5217 ===aa===
5218 ====aaa====
5219 ==b==
5220 ===ba===
5221 ===bb===
5222 ====bba====
5223 ===bc===
5224 ==c==
5225 ===ca===
5226 !! result
5227 ===bb===
5228 ====bba====
5229 !! end
5231 !! test
5232 Section extraction test (section 7)
5233 !! options
5234 section=7
5235 !! input
5236 start
5237 ==a==
5238 ===aa===
5239 ====aaa====
5240 ==b==
5241 ===ba===
5242 ===bb===
5243 ====bba====
5244 ===bc===
5245 ==c==
5246 ===ca===
5247 !! result
5248 ====bba====
5249 !! end
5251 !! test
5252 Section extraction test (section 8)
5253 !! options
5254 section=8
5255 !! input
5256 start
5257 ==a==
5258 ===aa===
5259 ====aaa====
5260 ==b==
5261 ===ba===
5262 ===bb===
5263 ====bba====
5264 ===bc===
5265 ==c==
5266 ===ca===
5267 !! result
5268 ===bc===
5269 !! end
5271 !! test
5272 Section extraction test (section 9)
5273 !! options
5274 section=9
5275 !! input
5276 start
5277 ==a==
5278 ===aa===
5279 ====aaa====
5280 ==b==
5281 ===ba===
5282 ===bb===
5283 ====bba====
5284 ===bc===
5285 ==c==
5286 ===ca===
5287 !! result
5288 ==c==
5289 ===ca===
5290 !! end
5292 !! test
5293 Section extraction test (section 10)
5294 !! options
5295 section=10
5296 !! input
5297 start
5298 ==a==
5299 ===aa===
5300 ====aaa====
5301 ==b==
5302 ===ba===
5303 ===bb===
5304 ====bba====
5305 ===bc===
5306 ==c==
5307 ===ca===
5308 !! result
5309 ===ca===
5310 !! end
5312 !! test
5313 Section extraction test (nonexistent section 11)
5314 !! options
5315 section=11
5316 !! input
5317 start
5318 ==a==
5319 ===aa===
5320 ====aaa====
5321 ==b==
5322 ===ba===
5323 ===bb===
5324 ====bba====
5325 ===bc===
5326 ==c==
5327 ===ca===
5328 !! result
5329 !! end
5331 !! test
5332 Section extraction test with bogus heading (section 1)
5333 !! options
5334 section=1
5335 !! input
5336 ==a==
5337 ==bogus== not a legal section
5338 ==b==
5339 !! result
5340 ==a==
5341 ==bogus== not a legal section
5342 !! end
5344 !! test
5345 Section extraction test with bogus heading (section 2)
5346 !! options
5347 section=2
5348 !! input
5349 ==a==
5350 ==bogus== not a legal section
5351 ==b==
5352 !! result
5353 ==b==
5354 !! end
5356 !! test
5357 Section extraction test with comment after heading (section 1)
5358 !! options
5359 section=1
5360 !! input
5361 ==a==
5362 ==b== <!-- -->
5363 ==c==
5364 !! result
5365 ==a==
5366 !! end
5368 !! test
5369 Section extraction test with comment after heading (section 2)
5370 !! options
5371 section=2
5372 !! input
5373 ==a==
5374 ==b== <!-- -->
5375 ==c==
5376 !! result
5377 ==b== <!-- -->
5378 !! end
5380 !! test
5381 Section extraction test with bogus <nowiki> heading (section 1)
5382 !! options
5383 section=1
5384 !! input
5385 ==a==
5386 ==bogus== <nowiki>not a legal section</nowiki>
5387 ==b==
5388 !! result
5389 ==a==
5390 ==bogus== <nowiki>not a legal section</nowiki>
5391 !! end
5393 !! test
5394 Section extraction test with bogus <nowiki> heading (section 2)
5395 !! options
5396 section=2
5397 !! input
5398 ==a==
5399 ==bogus== <nowiki>not a legal section</nowiki>
5400 ==b==
5401 !! result
5402 ==b==
5403 !! end
5406 # Formerly testing for bug 2587, now resolved by the use of unmarked sections 
5407 # instead of respecting commented sections
5408 !! test
5409 Section extraction prefixed by comment (section 1)
5410 !! options
5411 section=1
5412 !! input
5413 <!-- -->==sec1==
5414 ==sec2==
5415 !!result
5416 ==sec2==
5417 !!end
5419 !! test
5420 Section extraction prefixed by comment (section 2)
5421 !! options
5422 section=2
5423 !! input
5424 <!-- -->==sec1==
5425 ==sec2==
5426 !!result
5428 !!end
5431 # Formerly testing for bug 2607, now resolved by the use of unmarked sections 
5432 # instead of respecting HTML-style headings
5433 !! test
5434 Section extraction, mixed wiki and html (section 1)
5435 !! options
5436 section=1
5437 !! input
5438 <h2>unmarked</h2>
5439 unmarked
5440 ==1==
5442 ==2==
5444 !! result
5445 ==1==
5447 !! end
5449 !! test
5450 Section extraction, mixed wiki and html (section 2)
5451 !! options
5452 section=2
5453 !! input
5454 <h2>unmarked</h2>
5455 unmarked
5456 ==1==
5458 ==2==
5460 !! result
5461 ==2==
5463 !! end
5466 # Formerly testing for bug 3342
5467 !! test
5468 Section extraction, heading surrounded by <noinclude>
5469 !! options
5470 section=1
5471 !! input
5472 <noinclude>==unmarked==</noinclude>
5473 ==marked==
5474 !! result
5475 ==marked==
5476 !!end
5479 !! test
5480 Section replacement test (section 0)
5481 !! options
5482 replace=0,"xxx"
5483 !! input
5484 start
5485 ==a==
5486 ===aa===
5487 ====aaa====
5488 ==b==
5489 ===ba===
5490 ===bb===
5491 ====bba====
5492 ===bc===
5493 ==c==
5494 ===ca===
5495 !! result
5498 ==a==
5499 ===aa===
5500 ====aaa====
5501 ==b==
5502 ===ba===
5503 ===bb===
5504 ====bba====
5505 ===bc===
5506 ==c==
5507 ===ca===
5508 !! end
5510 !! test
5511 Section replacement test (section 1)
5512 !! options
5513 replace=1,"xxx"
5514 !! input
5515 start
5516 ==a==
5517 ===aa===
5518 ====aaa====
5519 ==b==
5520 ===ba===
5521 ===bb===
5522 ====bba====
5523 ===bc===
5524 ==c==
5525 ===ca===
5526 !! result
5527 start
5530 ==b==
5531 ===ba===
5532 ===bb===
5533 ====bba====
5534 ===bc===
5535 ==c==
5536 ===ca===
5537 !! end
5539 !! test
5540 Section replacement test (section 2)
5541 !! options
5542 replace=2,"xxx"
5543 !! input
5544 start
5545 ==a==
5546 ===aa===
5547 ====aaa====
5548 ==b==
5549 ===ba===
5550 ===bb===
5551 ====bba====
5552 ===bc===
5553 ==c==
5554 ===ca===
5555 !! result
5556 start
5557 ==a==
5560 ==b==
5561 ===ba===
5562 ===bb===
5563 ====bba====
5564 ===bc===
5565 ==c==
5566 ===ca===
5567 !! end
5569 !! test
5570 Section replacement test (section 3)
5571 !! options
5572 replace=3,"xxx"
5573 !! input
5574 start
5575 ==a==
5576 ===aa===
5577 ====aaa====
5578 ==b==
5579 ===ba===
5580 ===bb===
5581 ====bba====
5582 ===bc===
5583 ==c==
5584 ===ca===
5585 !! result
5586 start
5587 ==a==
5588 ===aa===
5591 ==b==
5592 ===ba===
5593 ===bb===
5594 ====bba====
5595 ===bc===
5596 ==c==
5597 ===ca===
5598 !! end
5600 !! test
5601 Section replacement test (section 4)
5602 !! options
5603 replace=4,"xxx"
5604 !! input
5605 start
5606 ==a==
5607 ===aa===
5608 ====aaa====
5609 ==b==
5610 ===ba===
5611 ===bb===
5612 ====bba====
5613 ===bc===
5614 ==c==
5615 ===ca===
5616 !! result
5617 start
5618 ==a==
5619 ===aa===
5620 ====aaa====
5623 ==c==
5624 ===ca===
5625 !! end
5627 !! test
5628 Section replacement test (section 5)
5629 !! options
5630 replace=5,"xxx"
5631 !! input
5632 start
5633 ==a==
5634 ===aa===
5635 ====aaa====
5636 ==b==
5637 ===ba===
5638 ===bb===
5639 ====bba====
5640 ===bc===
5641 ==c==
5642 ===ca===
5643 !! result
5644 start
5645 ==a==
5646 ===aa===
5647 ====aaa====
5648 ==b==
5651 ===bb===
5652 ====bba====
5653 ===bc===
5654 ==c==
5655 ===ca===
5656 !! end
5658 !! test
5659 Section replacement test (section 6)
5660 !! options
5661 replace=6,"xxx"
5662 !! input
5663 start
5664 ==a==
5665 ===aa===
5666 ====aaa====
5667 ==b==
5668 ===ba===
5669 ===bb===
5670 ====bba====
5671 ===bc===
5672 ==c==
5673 ===ca===
5674 !! result
5675 start
5676 ==a==
5677 ===aa===
5678 ====aaa====
5679 ==b==
5680 ===ba===
5683 ===bc===
5684 ==c==
5685 ===ca===
5686 !! end
5688 !! test
5689 Section replacement test (section 7)
5690 !! options
5691 replace=7,"xxx"
5692 !! input
5693 start
5694 ==a==
5695 ===aa===
5696 ====aaa====
5697 ==b==
5698 ===ba===
5699 ===bb===
5700 ====bba====
5701 ===bc===
5702 ==c==
5703 ===ca===
5704 !! result
5705 start
5706 ==a==
5707 ===aa===
5708 ====aaa====
5709 ==b==
5710 ===ba===
5711 ===bb===
5714 ===bc===
5715 ==c==
5716 ===ca===
5717 !! end
5719 !! test
5720 Section replacement test (section 8)
5721 !! options
5722 replace=8,"xxx"
5723 !! input
5724 start
5725 ==a==
5726 ===aa===
5727 ====aaa====
5728 ==b==
5729 ===ba===
5730 ===bb===
5731 ====bba====
5732 ===bc===
5733 ==c==
5734 ===ca===
5735 !! result
5736 start
5737 ==a==
5738 ===aa===
5739 ====aaa====
5740 ==b==
5741 ===ba===
5742 ===bb===
5743 ====bba====
5746 ==c==
5747 ===ca===
5748 !!end
5750 !! test
5751 Section replacement test (section 9)
5752 !! options
5753 replace=9,"xxx"
5754 !! input
5755 start
5756 ==a==
5757 ===aa===
5758 ====aaa====
5759 ==b==
5760 ===ba===
5761 ===bb===
5762 ====bba====
5763 ===bc===
5764 ==c==
5765 ===ca===
5766 !! result
5767 start
5768 ==a==
5769 ===aa===
5770 ====aaa====
5771 ==b==
5772 ===ba===
5773 ===bb===
5774 ====bba====
5775 ===bc===
5777 !! end
5779 !! test
5780 Section replacement test (section 10)
5781 !! options
5782 replace=10,"xxx"
5783 !! input
5784 start
5785 ==a==
5786 ===aa===
5787 ====aaa====
5788 ==b==
5789 ===ba===
5790 ===bb===
5791 ====bba====
5792 ===bc===
5793 ==c==
5794 ===ca===
5795 !! result
5796 start
5797 ==a==
5798 ===aa===
5799 ====aaa====
5800 ==b==
5801 ===ba===
5802 ===bb===
5803 ====bba====
5804 ===bc===
5805 ==c==
5807 !! end
5810 !! test
5811 Section extraction, heading followed by pre with 20 spaces (bug 6398)
5812 !! options
5813 section=1
5814 !! input
5815 ==a==
5816                     a
5817 !! result
5818 ==a==
5819                     a
5820 !! end
5822 !! test
5823 Section extraction, heading followed by pre with 19 spaces (bug 6398 sanity check)
5824 !! options
5825 section=1
5826 !! input
5827 ==a==
5828                    a
5829 !! result
5830 ==a==
5831                    a
5832 !! end
5835 !! test
5836 Section extraction, <pre> around bogus header (bug 10309)
5837 !! options
5838 noxml section=2
5839 !! input
5840 == Section One ==
5841 <pre>
5842 =======
5843 </pre>
5845 == Section Two ==
5846 stuff
5847 !! result
5848 == Section Two ==
5849 stuff
5850 !! end
5852 !! test
5853 Section replacement, <pre> around bogus header (bug 10309)
5854 !! options
5855 noxml replace=2,"xxx"
5856 !! input
5857 == Section One ==
5858 <pre>
5859 =======
5860 </pre>
5862 == Section Two ==
5863 stuff
5864 !! result
5865 == Section One ==
5866 <pre>
5867 =======
5868 </pre>
5871 !! end
5875 !! test
5876 Handling of &#x0A; in URLs
5877 !! input
5878 **irc://&#x0A;a
5879 !! result
5880 <ul><li><ul><li><a href="irc://%0Aa" class="external free" title="irc://%0Aa" rel="nofollow">irc://%0Aa</a>
5881 </li></ul>
5882 </li></ul>
5884 !!end
5886 !! test
5887 5 quotes, code coverage +1 line
5888 !! input
5889 '''''
5890 !! result
5891 !! end
5893 !! test
5894 Special:Search page linking.
5895 !! input
5896 {{Special:search}}
5897 !! result
5898 <p><a href="/wiki/Special:Search" title="Special:Search">Special:Search</a>
5899 </p>
5900 !! end
5902 !! test
5903 Say the magic word
5904 !! input
5905 * {{PAGENAME}}
5906 * {{BASEPAGENAME}}
5907 * {{SUBPAGENAME}}
5908 * {{SUBPAGENAMEE}}
5909 * {{BASEPAGENAME}}
5910 * {{BASEPAGENAMEE}}
5911 * {{TALKPAGENAME}}
5912 * {{TALKPAGENAMEE}}
5913 * {{SUBJECTPAGENAME}}
5914 * {{SUBJECTPAGENAMEE}}
5915 * {{NAMESPACEE}}
5916 * {{NAMESPACE}}
5917 * {{TALKSPACE}}
5918 * {{TALKSPACEE}}
5919 * {{SUBJECTSPACE}}
5920 * {{SUBJECTSPACEE}}
5921 * {{Dynamic|{{NUMBEROFUSERS}}|{{NUMBEROFPAGES}}|{{CURRENTVERSION}}|{{CONTENTLANGUAGE}}|{{DIRECTIONMARK}}|{{CURRENTTIMESTAMP}}|{{NUMBEROFARTICLES}}}}
5922 !! result
5923 <ul><li> Parser test
5924 </li><li> Parser test
5925 </li><li> Parser test
5926 </li><li> Parser_test
5927 </li><li> Parser test
5928 </li><li> Parser_test
5929 </li><li> Talk:Parser test
5930 </li><li> Talk:Parser_test
5931 </li><li> Parser test
5932 </li><li> Parser_test
5933 </li><li> 
5934 </li><li> 
5935 </li><li> Talk
5936 </li><li> Talk
5937 </li><li> 
5938 </li><li> 
5939 </li><li> <a href="/index.php?title=Template:Dynamic&amp;action=edit&amp;redlink=1" class="new" title="Template:Dynamic (not yet written)">Template:Dynamic</a>
5940 </li></ul>
5942 !! end
5943 ### Note: Above tests excludes the "{{NUMBEROFADMINS}}" magic word because it generates a MySQL error when included.
5945 !! test
5946 Gallery
5947 !! input
5948 <gallery>
5949 image1.png |
5950 image2.gif|||||
5952 image3|
5953 image4    |300px| centre
5954  image5.svg| http://///////
5955 [[x|xx]]]]
5956 * image6
5957 </gallery>
5958 !! result
5959 <table class="gallery" cellspacing="0" cellpadding="0">
5960         <tr>
5961                 <td><div class="gallerybox" style="width: 155px;">
5962                         <div style="height: 152px;">Image1.png</div>
5963                         <div class="gallerytext">
5964                         </div>
5965                 </div></td>
5966                 <td><div class="gallerybox" style="width: 155px;">
5967                         <div style="height: 152px;">Image2.gif</div>
5968                         <div class="gallerytext">
5969 <p>||||
5970 </p>
5971                         </div>
5972                 </div></td>
5973                 <td><div class="gallerybox" style="width: 155px;">
5974                         <div style="height: 152px;">Image3</div>
5975                         <div class="gallerytext">
5976                         </div>
5977                 </div></td>
5978                 <td><div class="gallerybox" style="width: 155px;">
5979                         <div style="height: 152px;">Image4</div>
5980                         <div class="gallerytext">
5981 <p>300px| centre
5982 </p>
5983                         </div>
5984                 </div></td>
5985         </tr>
5986         <tr>
5987                 <td><div class="gallerybox" style="width: 155px;">
5988                         <div style="height: 152px;">Image5.svg</div>
5989                         <div class="gallerytext">
5990 <p><a href="http://///////" class="external free" title="http://///////" rel="nofollow">http://///////</a>
5991 </p>
5992                         </div>
5993                 </div></td>
5994                 <td><div class="gallerybox" style="width: 155px;">
5995                         <div style="height: 152px;">* image6</div>
5996                         <div class="gallerytext">
5997                         </div>
5998                 </div></td>
5999         </tr>
6000 </table>
6002 !! end
6004 !! test
6005 HTML Hex character encoding (spells the word "JavaScript")
6006 !! input
6007 &#x4A;&#x061;&#x0076;&#x00061;&#x000053;&#x0000063;&#114;&#x0000069;&#00000112;&#x0000000074;
6008 !! result
6009 <p>&#x4a;&#x61;&#x76;&#x61;&#x53;&#x63;&#114;&#x69;&#112;&#x74;
6010 </p>
6011 !! end
6013 !! test
6014 __FORCETOC__ override
6015 !! input 
6016 __NEWSECTIONLINK__
6017 __FORCETOC__
6018 !! result
6019 <p><br />
6020 </p>
6021 !! end
6023 !! test
6024 ISBN code coverage
6025 !! input
6026 ISBN  978-0-1234-56&#x20;789
6027 !! result
6028 <p><a href="/wiki/Special:BookSources/9780123456" class="internal">ISBN 978-0-1234-56</a>&#x20;789
6029 </p>
6030 !! end
6032 !! test
6033 ISBN followed by 5 spaces
6034 !! input
6035 ISBN    
6036 !! result
6037 <p>ISBN    
6038 </p>
6039 !! end
6041 !! test
6042 Double ISBN
6043 !! input
6044 ISBN ISBN 1234567890
6045 !! result
6046 <p>ISBN <a href="/wiki/Special:BookSources/1234567890" class="internal">ISBN 1234567890</a>
6047 </p>
6048 !! end
6050 !! test
6051 Double RFC
6052 !! input
6053 RFC RFC 1234
6054 !! result
6055 <p>RFC <a href="http://tools.ietf.org/html/rfc1234" class="external" title="http://tools.ietf.org/html/rfc1234">RFC 1234</a>
6056 </p>
6057 !! end
6059 !! test
6060 Double RFC with a wiki link 
6061 !! input
6062 RFC [[RFC 1234]]
6063 !! result
6064 <p>RFC <a href="/index.php?title=RFC_1234&amp;action=edit&amp;redlink=1" class="new" title="RFC 1234 (not yet written)">RFC 1234</a>
6065 </p>
6066 !! end
6068 !! test
6069 RFC code coverage
6070 !! input
6071 RFC   983&#x20;987
6072 !! result
6073 <p><a href="http://tools.ietf.org/html/rfc983" class="external" title="http://tools.ietf.org/html/rfc983">RFC 983</a>&#x20;987
6074 </p>
6075 !! end
6077 !! test
6078 Centre-aligned image
6079 !! input
6080 [[Image:foobar.jpg|centre]]
6081 !! result
6082 <div class="center"><div class="floatnone"><span><a href="/wiki/Image:Foobar.jpg" class="image" title="Foobar.jpg"><img alt="" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a></span></div></div>
6084 !!end
6086 !! test
6087 None-aligned image
6088 !! input
6089 [[Image:foobar.jpg|none]]
6090 !! result
6091 <div class="floatnone"><span><a href="/wiki/Image:Foobar.jpg" class="image" title="Foobar.jpg"><img alt="" src="http://example.com/images/3/3a/Foobar.jpg" width="1941" height="220" border="0" /></a></span></div>
6093 !!end
6095 !! test
6096 Width + Height sized image (using px) (height is ignored)
6097 !! input
6098 [[Image:foobar.jpg|640x480px]]
6099 !! result
6100 <p><a href="/wiki/Image:Foobar.jpg" class="image" title="Foobar.jpg"><img alt="" src="http://example.com/images/thumb/3/3a/Foobar.jpg/640px-Foobar.jpg" width="640" height="73" border="0" /></a>
6101 </p>
6102 !!end
6104 !! test
6105 Another italics / bold test
6106 !! input
6107  ''' ''x'
6108 !! result
6109 <pre>'<i> </i>x'
6110 </pre>
6111 !!end
6113 # Note the results may be incorrect, as parserTest output included this:
6114 # XML error: Mismatched tag at byte 6120:
6115 # ...<dd> </dt></dl> </dd...
6116 !! test
6117 dt/dd/dl test
6118 !! input
6119 :;;;::
6120 !! result
6121 <dl><dd><dl><dt><dl><dt><dl><dt><dl><dd><dl><dd>
6122 </dd></dl>
6123 </dd></dl>
6124 </dt></dl>
6125 </dt></dl>
6126 </dt></dl>
6127 </dd></dl>
6129 !!end
6132 # Images with the "|" character in external URLs in comment tags; Eats half the comment, leaves unmatched "</a>" tag.
6133 !! test
6134 Images with the "|" character in the comment
6135 !! input
6136 [[image:Foobar.jpg|thumb|An [http://test/?param1=|left|&param2=|x external] URL]]
6137 !! result
6138 <div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="/wiki/Image:Foobar.jpg" class="image" title="An external URL"><img alt="An external URL" src="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg" width="180" height="20" border="0" class="thumbimage" /></a>  <div class="thumbcaption"><div class="magnify"><a href="/wiki/Image:Foobar.jpg" class="internal" title="Enlarge"><img src="/skins/common/images/magnify-clip.png" width="15" height="11" alt="" /></a></div>An <a href="http://test/?param1=|left|&amp;param2=|x" class="external text" title="http://test/?param1=|left|&amp;param2=|x" rel="nofollow">external</a> URL</div></div></div>
6140 !!end
6142 !! test
6143 [Before] HTML without raw HTML enabled ($wgRawHtml==false)
6144 !! input
6145 <html><script>alert(1);</script></html>
6146 !! result
6147 <p>&lt;html&gt;&lt;script&gt;alert(1);&lt;/script&gt;&lt;/html&gt;
6148 </p>
6149 !! end
6151 !! test
6152 HTML with raw HTML ($wgRawHtml==true)
6153 !! options
6154 rawhtml
6155 !! input
6156 <html><script>alert(1);</script></html>
6157 !! result
6158 <p><script>alert(1);</script>
6159 </p>
6160 !! end
6162 !! test
6163 Parents of subpages, one level up
6164 !! options
6165 subpage title=[[Subpage test/L1/L2/L3]]
6166 !! input
6167 [[../|L2]]
6168 !! result
6169 <p><a href="/index.php?title=Subpage_test/L1/L2&amp;action=edit&amp;redlink=1" class="new" title="Subpage test/L1/L2 (not yet written)">L2</a>
6170 </p>
6171 !! end
6174 !! test
6175 Parents of subpages, one level up, not named
6176 !! options
6177 subpage title=[[Subpage test/L1/L2/L3]]
6178 !! input
6179 [[../]]
6180 !! result
6181 <p><a href="/index.php?title=Subpage_test/L1/L2&amp;action=edit&amp;redlink=1" class="new" title="Subpage test/L1/L2 (not yet written)">Subpage test/L1/L2</a>
6182 </p>
6183 !! end
6187 !! test
6188 Parents of subpages, two levels up
6189 !! options
6190 disabled
6191 subpage title=[[Subpage test/L1/L2/L3]]
6192 !! input
6193 [[../../|L1]]2
6194 !! result
6195 <p><a href="/index.php?title=Subpage_test/L1&amp;action=edit&amp;redlink=1" class="new" title="Subpage test/L1 (not yet written)">L1</a>
6196 </p>
6197 !! end
6200 # Question: should result be "/index.php?title=Subpage_test/L1&amp;action=edit" instead?
6201 !! test
6202 Parents of subpages, two levels up, without trailing slash or name.
6203 !! options
6204 subpage title=[[Subpage test/L1/L2/L3]]
6205 !! input
6206 [[../..]]
6207 !! result
6208 <p><a href="/index.php?title=Subpage_test/L1/L2/..&amp;action=edit&amp;redlink=1" class="new" title="Subpage test/L1 (not yet written)">../..</a>
6209 </p>
6210 !! end
6212 # Question: Why should the link text in the above test be "../..", yet in this test the "../.." part is silently dropped?
6213 # Current result: <p><a href="/index.php?title=Subpage_test/L1////&amp;action=edit" class="new" title="Subpage test/L1////">///
6214 !! test
6215 Parents of subpages, two levels up, with lots of extra trailing slashes.
6216 !! options
6217 subpage title=[[Subpage test/L1/L2/L3]]
6218 !! input
6219 [[../../////]]
6220 !! result
6221 <p><a href="/index.php?title=Subpage_test/L1&amp;action=edit&amp;redlink=1" class="new" title="Subpage test/L1 (not yet written)">Subpage test/L1</a>
6222 </p>
6223 !! end
6225 !! test
6226 Definition list code coverage
6227 !! input
6228 ; title   : def
6229 ; title : def
6230 ;title: def
6231 !! result
6232 <dl><dt> title  &nbsp;</dt><dd> def
6233 </dd><dt> title&nbsp;</dt><dd> def
6234 </dd><dt>title</dt><dd> def
6235 </dd></dl>
6237 !! end
6239 !! test
6240 Don't fall for the self-closing div
6241 !! input
6242 <div>hello world</div/>
6243 !! result
6244 <div>hello world</div>
6246 !! end
6248 !! test
6249 MSGNW magic word
6250 !! input
6251 {{MSGNW:msg}}
6252 !! result
6253 <p>&#91;&#91;:Template:Msg&#93;&#93;
6254 </p>
6255 !! end
6257 !! test
6258 RAW magic word
6259 !! input
6260 {{RAW:QUERTY}}
6261 !! result
6262 <p><a href="/index.php?title=Template:QUERTY&amp;action=edit&amp;redlink=1" class="new" title="Template:QUERTY (not yet written)">Template:QUERTY</a>
6263 </p>
6264 !! end
6266 # This isn't needed for XHTML conformance, but would be handy as a fallback security measure
6267 !! test
6268 Always escape literal '>' in output, not just after '<'
6269 !! input
6271 !! result
6272 <p>&gt;&lt;&gt;
6273 </p>
6274 !! end
6276 !! test
6277 Template caching
6278 !! input
6279 {{Test}}
6280 {{Test}}
6281 !! result
6282 <p>This is a test template
6283 This is a test template
6284 </p>
6285 !! end
6288 !! article
6289 MediaWiki:Fake
6290 !! text
6291 ==header==
6292 !! endarticle
6294 !! test
6295 Inclusion of !userCanEdit() content
6296 !! input
6297 {{MediaWiki:Fake}}
6298 !! result
6299 <a name="header"></a><h2><span class="editsection">[<a href="/index.php?title=MediaWiki:Fake&amp;action=edit&amp;section=T-1" title="MediaWiki:Fake">edit</a>]</span> <span class="mw-headline">header</span></h2>
6301 !! end
6304 !! test
6305 Out-of-order TOC heading levels
6306 !! input
6307 ==2==
6308 ======6======
6309 ===3===
6311 =====5=====
6312 ==2==
6313 !! result
6314 <table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
6315 <ul>
6316 <li class="toclevel-1"><a href="#2"><span class="tocnumber">1</span> <span class="toctext">2</span></a>
6317 <ul>
6318 <li class="toclevel-2"><a href="#6"><span class="tocnumber">1.1</span> <span class="toctext">6</span></a></li>
6319 <li class="toclevel-2"><a href="#3"><span class="tocnumber">1.2</span> <span class="toctext">3</span></a></li>
6320 </ul>
6321 </li>
6322 <li class="toclevel-1"><a href="#1_7"><span class="tocnumber">2</span> <span class="toctext">1</span></a>
6323 <ul>
6324 <li class="toclevel-2"><a href="#5"><span class="tocnumber">2.1</span> <span class="toctext">5</span></a></li>
6325 <li class="toclevel-2"><a href="#2_4"><span class="tocnumber">2.2</span> <span class="toctext">2</span></a></li>
6326 </ul>
6327 </li>
6328 </ul>
6329 </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
6330 <a name="2"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: 2">edit</a>]</span> <span class="mw-headline">2</span></h2>
6331 <a name="6"></a><h6><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=2" title="Edit section: 6">edit</a>]</span> <span class="mw-headline">6</span></h6>
6332 <a name="3"></a><h3><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=3" title="Edit section: 3">edit</a>]</span> <span class="mw-headline">3</span></h3>
6333 <a name="1_7"></a><h1><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=4" title="Edit section: 1">edit</a>]</span> <span class="mw-headline">1</span></h1>
6334 <a name="5"></a><h5><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=5" title="Edit section: 5">edit</a>]</span> <span class="mw-headline">5</span></h5>
6335 <a name="2_4"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=6" title="Edit section: 2">edit</a>]</span> <span class="mw-headline">2</span></h2>
6337 !! end
6340 !! test
6341 ISBN with a dummy number
6342 !! input
6343 ISBN ---
6344 !! result
6345 <p>ISBN ---
6346 </p>
6347 !! end
6350 !! test
6351 ISBN with space-delimited number
6352 !! input
6353 ISBN 92 9017 032 8
6354 !! result
6355 <p><a href="/wiki/Special:BookSources/9290170328" class="internal">ISBN 92 9017 032 8</a>
6356 </p>
6357 !! end
6360 !! test
6361 ISBN with multiple spaces, no number
6362 !! input
6363 ISBN  foo
6364 !! result
6365 <p>ISBN  foo
6366 </p>
6367 !! end
6370 !! test
6371 ISBN length
6372 !! input
6373 ISBN 123456789
6375 ISBN 1234567890
6377 ISBN 12345678901
6378 !! result
6379 <p>ISBN 123456789
6380 </p><p><a href="/wiki/Special:BookSources/1234567890" class="internal">ISBN 1234567890</a>
6381 </p><p>ISBN 12345678901
6382 </p>
6383 !! end
6386 !! test
6387 ISBN with trailing year (bug 8110)
6388 !! input
6389 ISBN 1-234-56789-0 - 2006
6391 ISBN 1 234 56789 0 - 2006
6392 !! result
6393 <p><a href="/wiki/Special:BookSources/1234567890" class="internal">ISBN 1-234-56789-0</a> - 2006
6394 </p><p><a href="/wiki/Special:BookSources/1234567890" class="internal">ISBN 1 234 56789 0</a> - 2006
6395 </p>
6396 !! end
6399 !! test
6400 Pages in namespace (Magic word disabled currently)
6401 !! input
6402 {{PAGESINNAMESPACE:}}
6403 !! result
6405 !! end
6408 !! test
6409 anchorencode
6410 !! input
6411 {{anchorencode:foo bar©#%n}}
6412 !! result
6413 <p>foo_bar.C2.A9.23.25n
6414 </p>
6415 !! end
6418 !! test
6419 Bug 8293: Use of center tag ruins paragraph formatting
6420 !! input
6421 <center>
6423 </center>
6427  baz
6428 !! result
6429 <center>
6430 <p>foo
6431 </p>
6432 </center>
6433 <p>bar
6434 </p>
6435 <pre>baz
6436 </pre>
6437 !! end
6441 ### Language variants related tests
6443 !! test
6444 Self-link in language variants
6445 !! options
6446 title=[[Dunav]] language=sr
6447 !! input
6448 Both [[Dunav]] and [[Дунав]] are names for this river.
6449 !! result
6450 <p>Both <strong class="selflink">Dunav</strong> and <strong class="selflink">Дунав</strong> are names for this river.
6451 </p>
6452 !!end
6455 !! test
6456 Link to pages in language variants
6457 !! options
6458 language=sr
6459 !! input
6460 Main Page can be written as [[Маин Паге]]
6461 !! result
6462 <p>Main Page can be written as <a href="/wiki/Main_Page" title="Main Page">Маин Паге</a>
6463 </p>
6464 !!end
6467 !! test
6468 Multiple links to pages in language variants
6469 !! options
6470 language=sr
6471 !! input
6472 [[Main Page]] can be written as [[Маин Паге]] same as [[Маин Паге]].
6473 !! result
6474 <p><a href="/wiki/Main_Page" title="Main Page">Main Page</a> can be written as <a href="/wiki/Main_Page" title="Main Page">Маин Паге</a> same as <a href="/wiki/Main_Page" title="Main Page">Маин Паге</a>.
6475 </p>
6476 !!end
6479 !! test
6480 Simple template in language variants
6481 !! options
6482 language=sr
6483 !! input
6484 {{тест}}
6485 !! result
6486 <p>This is a test template
6487 </p>
6488 !! end
6491 !! test
6492 Template with explicit namespace in language variants
6493 !! options
6494 language=sr
6495 !! input
6496 {{Template:тест}}
6497 !! result
6498 <p>This is a test template
6499 </p>
6500 !! end
6503 !! test
6504 Basic test for template parameter in language variants
6505 !! options
6506 language=sr
6507 !! input
6508 {{парамтест|param=foo}}
6509 !! result
6510 <p>This is a test template with parameter foo
6511 </p>
6512 !! end
6515 !! test
6516 Simple category in language variants
6517 !! options
6518 language=sr cat
6519 !! input
6520 [[:Category:МедиаWики Усер'с Гуиде]]
6521 !! result
6522 <a href="/wiki/Category:MediaWiki_User%27s_Guide" title="Category:MediaWiki User's Guide">MediaWiki User's Guide</a>
6523 !! end
6526 !! test
6527 Stripping -{}- tags (language variants)
6528 !! options
6529 language=sr
6530 !! input
6531 Latin proverb: -{Ne nuntium necare}-
6532 !! result
6533 <p>Latin proverb: Ne nuntium necare
6534 </p>
6535 !! end
6538 !! test
6539 Prevent conversion with -{}- tags (language variants)
6540 !! options
6541 language=sr variant=sr-ec
6542 !! input
6543 Latinski: -{Ne nuntium necare}-
6544 !! result
6545 <p>Латински: Ne nuntium necare
6546 </p>
6547 !! end
6550 !! test
6551 Prevent conversion of text with -{}- tags (language variants)
6552 !! options
6553 language=sr variant=sr-ec
6554 !! input
6555 Latinski: -{Ne nuntium necare}-
6556 !! result
6557 <p>Латински: Ne nuntium necare
6558 </p>
6559 !! end
6562 !! test
6563 Prevent conversion of links with -{}- tags (language variants)
6564 !! options
6565 language=sr variant=sr-ec
6566 !! input
6567 -{[[Main Page]]}-
6568 !! result
6569 <p><a href="/index.php?title=Main_Page&amp;variant=sr-ec" title="Main Page">Main Page</a>
6570 </p>
6571 !! end
6574 !! test
6575 -{}- tags within headlines (within html for parserConvert())
6576 !! options
6577 language=sr variant=sr-ec
6578 !! input
6579 == -{Naslov}- ==
6580 !! result
6581 <a name="-.7BNaslov.7D-"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Уреди део: Naslov">уреди</a>]</span> <span class="mw-headline"> Naslov </span></h2>
6583 !! end
6586 !! test
6587 Explicit definition of language variant alternatives
6588 !! options
6589 language=zh variant=zh-tw
6590 !! input
6591 -{zh:China;zh-tw:Taiwan}-, not China
6592 !! result
6593 <p>Taiwan, not China
6594 </p>
6595 !! end
6598 !! test
6599 Adding explicit session-wise language variant mapping (A flag)
6600 !! options
6601 language=zh variant=zh-tw
6602 !! input
6603 -{A|zh:China;zh-tw:Taiwan}- is China
6604 !! result
6605 <p>Taiwan is Taiwan
6606 </p>
6607 !! end
6610 !! test
6611 Adding explicit conversion rule for title (T flag)
6612 !! options
6613 language=zh variant=zh-tw
6614 !! input
6615 Should be stripped-{T|zh:China;zh-tw:Taiwan}-!
6616 !! result
6617 <p>Should be stripped!
6618 </p>
6619 !! end
6622 !! test
6623 Raw output of variant escape tags (R flag)
6624 !! options
6625 language=zh variant=zh-tw
6626 !! input
6627 Raw: -{R|zh:China;zh-tw:Taiwan}-
6628 !! result
6629 <p>Raw: zh:China;zh-tw:Taiwan
6630 </p>
6631 !! end
6634 !! test
6635 Do not convert roman numbers to language variants
6636 !! options
6637 language=sr variant=sr-ec
6638 !! input
6639 Fridrih IV je car.
6640 !! result
6641 <p>Фридрих IV је цар.
6642 </p>
6643 !! end
6645 !!article 
6646 Template:Bullet
6647 !!text
6648 * Bar
6649 !!endarticle
6651 !! test
6652 Bug 529: Uncovered bullet
6653 !! input
6654 * Foo {{bullet}}
6655 !! result
6656 <ul><li> Foo 
6657 </li><li> Bar
6658 </li></ul>
6660 !! end
6662 !! test
6663 Bug 529: Uncovered table already at line-start
6664 !! input
6667 {{table}}
6669 !! result
6670 <p>x
6671 </p>
6672 <table>
6673 <tr>
6674 <td> 1 </td><td> 2
6675 </td></tr>
6676 <tr>
6677 <td> 3 </td><td> 4
6678 </td></tr></table>
6679 <p>y
6680 </p>
6681 !! end
6683 !! test
6684 Bug 529: Uncovered bullet in parser function result
6685 !! input
6686 * Foo {{lc:{{bullet}} }}
6687 !! result
6688 <ul><li> Foo 
6689 </li><li> bar
6690 </li></ul>
6692 !! end
6694 !! test
6695 Bug 5678: Double-parsed template argument
6696 !! input
6697 {{lc:{{{1}}}|hello}}
6698 !! result
6699 <p>{{{1}}}
6700 </p>
6701 !! end
6703 !! test
6704 Bug 5678: Double-parsed template invocation
6705 !! input
6706 {{lc:{{paramtest {{!}} param = hello }} }}
6707 !! result
6708 <p>{{paramtest | param = hello }}
6709 </p>
6710 !! end
6712 !! test
6713 Morwen/13: Unclosed link followed by heading
6714 !! input
6715 [[link
6716 ==heading==
6717 !! result
6718 <p>[[link
6719 </p>
6720 <a name="heading"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: heading">edit</a>]</span> <span class="mw-headline">heading</span></h2>
6722 !! end
6724 !! test
6725 HHP2.1: Heuristics for headings in preprocessor parenthetical structures
6726 !! input
6727 {{foo|
6728 =heading=
6729 !! result
6730 <p>{{foo|
6731 </p>
6732 <a name="heading"></a><h1> <span class="mw-headline">heading</span></h1>
6734 !! end
6736 !! test
6737 HHP2.2: Heuristics for headings in preprocessor parenthetical structures
6738 !! input
6739 {{foo|
6740 ==heading==
6741 !! result
6742 <p>{{foo|
6743 </p>
6744 <a name="heading"></a><h2><span class="editsection">[<a href="/index.php?title=Parser_test&amp;action=edit&amp;section=1" title="Edit section: heading">edit</a>]</span> <span class="mw-headline">heading</span></h2>
6746 !! end
6748 !! test
6749 Tildes in comments
6750 !! options
6752 !! input
6753 <!-- ~~~~ -->
6754 !! result
6755 <!-- ~~~~ -->
6756 !! end
6762 TODO:
6763 more images
6764 more tables
6765 math
6766 character entities
6767 and much more
6768 Try for 100% code coverage