New function in PPFrame_DOM should be here too.
[mediawiki.git] / maintenance / parserTests.txt
blob0af0a5383d713772497469523b74818aa4c82413
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" class="new" title="Help:FAQ">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" class="new" title="Wikilink">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" class="new" title="Zigzagzogzagzig">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" class="new" title="Talk:Parser testing">Talk:Parser testing</a>, <a href="/index.php?title=Meta:Disclaimers&amp;action=edit" class="new" title="Meta:Disclaimers">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" class="new" title="Meta:Disclaimers">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" class="new" title="7% Solution">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" class="new" title="7% Solution">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" class="new" title="Link">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" class="new" title="Link"><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" class="new" title="RFC 123">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="/index.php?title=Special:Booksources&amp;isbn=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" class="new" title="Template:Thistemplatedoesnotexist">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">link</a> <a href="/index.php?title=No_link&amp;action=edit" class="new" title="No link">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" style="float:right"><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" style="float:right"><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="/index.php?title=Special:Booksources&amp;isbn=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" style="float:right"><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" style="float:right"><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" style="float:right"><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" style="float:right"><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" style="float:right"><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" style="float:right"><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" class="new" title="/subpage">/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" class="new" title="Page/Subpage">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 !! article
3555 Template:sections
3556 !! text
3557 ===Section 1===
3558 ==Section 2==
3559 !! endarticle
3561 !! test
3562 Template with sections, __NOTOC__
3563 !! input
3564 __NOTOC__
3565 ==Section 0==
3566 {{sections}}
3567 ==Section 4==
3568 !! result
3569 <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>
3570 <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>
3571 <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>
3572 <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>
3574 !! end
3576 !! test
3577 __NOEDITSECTION__ keyword
3578 !! input
3579 __NOEDITSECTION__
3580 ==Section 1==
3581 ==Section 2==
3582 !! result
3583 <a name="Section_1"></a><h2> <span class="mw-headline">Section 1</span></h2>
3584 <a name="Section_2"></a><h2> <span class="mw-headline">Section 2</span></h2>
3586 !! end
3588 !! test
3589 Link inside a section heading
3590 !! input
3591 ==Section with a [[Main Page|link]] in it==
3592 !! result
3593 <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>
3595 !! end
3598 !! test
3599 BUG 1219 URL next to image (good)
3600 !! input
3601 http://example.com [[Image:foobar.jpg]]
3602 !! result
3603 <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>
3604 </p>
3605 !!end
3607 !! test
3608 BUG 1219 URL next to image (broken)
3609 !! input
3610 http://example.com[[Image:foobar.jpg]]
3611 !! result
3612 <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>
3613 </p>
3614 !!end
3616 !! test
3617 Bug 1186 news: in the middle of text
3618 !! input
3619 http://en.wikinews.org/wiki/Wikinews:Workplace
3620 !! result
3621 <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>
3622 </p>
3623 !!end
3626 !! test
3627 Namespaced link must have a title
3628 !! input
3629 [[Project:]]
3630 !! result
3631 <p>[[Project:]]
3632 </p>
3633 !!end
3635 !! test
3636 Namespaced link must have a title (bad fragment version)
3637 !! input
3638 [[Project:#fragment]]
3639 !! result
3640 <p>[[Project:#fragment]]
3641 </p>
3642 !!end
3645 !! test
3646 div with no attributes
3647 !! input
3648 <div>HTML rocks</div>
3649 !! result
3650 <div>HTML rocks</div>
3652 !! end
3654 !! test
3655 div with double-quoted attribute
3656 !! input
3657 <div id="rock">HTML rocks</div>
3658 !! result
3659 <div id="rock">HTML rocks</div>
3661 !! end
3663 !! test
3664 div with single-quoted attribute
3665 !! input
3666 <div id='rock'>HTML rocks</div>
3667 !! result
3668 <div id="rock">HTML rocks</div>
3670 !! end
3672 !! test
3673 div with unquoted attribute
3674 !! input
3675 <div id=rock>HTML rocks</div>
3676 !! result
3677 <div id="rock">HTML rocks</div>
3679 !! end
3681 !! test
3682 div with illegal double attributes
3683 !! input
3684 <div align="center" align="right">HTML rocks</div>
3685 !! result
3686 <div align="right">HTML rocks</div>
3688 !!end
3690 !! test
3691 HTML multiple attributes correction
3692 !! input
3693 <p class="error" class="awesome">Awesome!</p>
3694 !! result
3695 <p class="awesome">Awesome!</p>
3697 !!end
3699 !! test
3700 Table multiple attributes correction
3701 !! input
3703 !+ class="error" class="awesome"| status
3705 !! result
3706 <table>
3707 <tr>
3708 <th class="awesome"> status
3709 </th></tr></table>
3711 !!end
3713 !! test
3714 DIV IN UPPERCASE
3715 !! input
3716 <DIV ALIGN="center">HTML ROCKS</DIV>
3717 !! result
3718 <div align="center">HTML ROCKS</div>
3720 !!end
3723 !! test
3724 text with amp in the middle of nowhere
3725 !! input
3726 Remember AT&T?
3727 !!result
3728 <p>Remember AT&amp;T?
3729 </p>
3730 !! end
3732 !! test
3733 text with character entity: eacute
3734 !! input
3735 I always thought &eacute; was a cute letter.
3736 !! result
3737 <p>I always thought &eacute; was a cute letter.
3738 </p>
3739 !! end
3741 !! test
3742 text with undefined character entity: xacute
3743 !! input
3744 I always thought &xacute; was a cute letter.
3745 !! result
3746 <p>I always thought &amp;xacute; was a cute letter.
3747 </p>
3748 !! end
3752 ### Media links
3755 !! test
3756 Media link
3757 !! input
3758 [[Media:Foobar.jpg]]
3759 !! result
3760 <p><a href="http://example.com/images/3/3a/Foobar.jpg" class="internal" title="Foobar.jpg">Media:Foobar.jpg</a>
3761 </p>
3762 !! end
3764 !! test
3765 Media link with text
3766 !! input
3767 [[Media:Foobar.jpg|A neat file to look at]]
3768 !! result
3769 <p><a href="http://example.com/images/3/3a/Foobar.jpg" class="internal" title="Foobar.jpg">A neat file to look at</a>
3770 </p>
3771 !! end
3773 # FIXME: this is still bad HTML tag nesting
3774 !! test
3775 Media link with nasty text
3776 fixme: doBlockLevels won't wrap this in a paragraph because it contains a div
3777 !! input
3778 [[Media:Foobar.jpg|Safe Link<div style=display:none>" onmouseover="alert(document.cookie)" onfoo="</div>]]
3779 !! result
3780 <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>
3782 !! end
3784 !! test
3785 Media link to nonexistent file (bug 1702)
3786 !! input
3787 [[Media:No such.jpg]]
3788 !! result
3789 <p><a href="/index.php?title=Special:Upload&amp;wpDestFile=No_such.jpg" class="new" title="No such.jpg">Media:No such.jpg</a>
3790 </p>
3791 !! end
3793 !! test
3794 Image link to nonexistent file (bug 1850 - good)
3795 !! input
3796 [[Image:No such.jpg]]
3797 !! result
3798 <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>
3799 </p>
3800 !! end
3802 !! test
3803 :Image link to nonexistent file (bug 1850 - bad)
3804 !! input
3805 [[:Image:No such.jpg]]
3806 !! result
3807 <p><a href="/index.php?title=Image:No_such.jpg&amp;action=edit" class="new" title="Image:No such.jpg">Image:No such.jpg</a>
3808 </p>
3809 !! end
3813 !! test
3814 Character reference normalization in link text (bug 1938)
3815 !! input
3816 [[Main Page|this&that]]
3817 !! result
3818 <p><a href="/wiki/Main_Page" title="Main Page">this&amp;that</a>
3819 </p>
3820 !!end
3822 !! test
3823 Empty attribute crash test (bug 2067)
3824 !! input
3825 <font color="">foo</font>
3826 !! result
3827 <p><font color="">foo</font>
3828 </p>
3829 !! end
3831 !! test
3832 Empty attribute crash test single-quotes (bug 2067)
3833 !! input
3834 <font color=''>foo</font>
3835 !! result
3836 <p><font color="">foo</font>
3837 </p>
3838 !! end
3840 !! test
3841 Attribute test: equals, then nothing
3842 !! input
3843 <font color=>foo</font>
3844 !! result
3845 <p><font>foo</font>
3846 </p>
3847 !! end
3849 !! test
3850 Attribute test: unquoted value
3851 !! input
3852 <font color=x>foo</font>
3853 !! result
3854 <p><font color="x">foo</font>
3855 </p>
3856 !! end
3858 !! test
3859 Attribute test: unquoted but illegal value (hash)
3860 !! input
3861 <font color=#x>foo</font>
3862 !! result
3863 <p><font color="#x">foo</font>
3864 </p>
3865 !! end
3867 !! test
3868 Attribute test: no value
3869 !! input
3870 <font color>foo</font>
3871 !! result
3872 <p><font color="color">foo</font>
3873 </p>
3874 !! end
3876 !! test
3877 Bug 2095: link with three closing brackets
3878 !! input
3879 [[Main Page]]]
3880 !! result
3881 <p><a href="/wiki/Main_Page" title="Main Page">Main Page</a>]
3882 </p>
3883 !! end
3885 !! test
3886 Bug 2095: link with pipe and three closing brackets
3887 !! input
3888 [[Main Page|link]]]
3889 !! result
3890 <p><a href="/wiki/Main_Page" title="Main Page">link</a>]
3891 </p>
3892 !! end
3894 !! test
3895 Bug 2095: link with pipe and three closing brackets, version 2
3896 !! input
3897 [[Main Page|[http://example.com/]]]
3898 !! result
3899 <p><a href="/wiki/Main_Page" title="Main Page">[http://example.com/]</a>
3900 </p>
3901 !! end
3905 ### Safety
3908 !! article
3909 Template:Dangerous attribute
3910 !! text
3911 " onmouseover="alert(document.cookie)
3912 !! endarticle
3914 !! article
3915 Template:Dangerous style attribute
3916 !! text
3917 border-size: expression(alert(document.cookie))
3918 !! endarticle
3920 !! article
3921 Template:Div style
3922 !! text
3923 <div style="float: right; {{{1}}}">Magic div</div>
3924 !! endarticle
3926 !! test
3927 Bug 2304: HTML attribute safety (safe template; regression bug 2309)
3928 !! input
3929 <div title="{{test}}"></div>
3930 !! result
3931 <div title="This is a test template"></div>
3933 !! end
3935 !! test
3936 Bug 2304: HTML attribute safety (dangerous template; 2309)
3937 !! input
3938 <div title="{{dangerous attribute}}"></div>
3939 !! result
3940 <div title=""></div>
3942 !! end
3944 !! test
3945 Bug 2304: HTML attribute safety (dangerous style template; 2309)
3946 !! input
3947 <div style="{{dangerous style attribute}}"></div>
3948 !! result
3949 <div></div>
3951 !! end
3953 !! test
3954 Bug 2304: HTML attribute safety (safe parameter; 2309)
3955 !! input
3956 {{div style|width: 200px}}
3957 !! result
3958 <div style="float: right; width: 200px">Magic div</div>
3960 !! end
3962 !! test
3963 Bug 2304: HTML attribute safety (unsafe parameter; 2309)
3964 !! input
3965 {{div style|width: expression(alert(document.cookie))}}
3966 !! result
3967 <div>Magic div</div>
3969 !! end
3971 !! test
3972 Bug 2304: HTML attribute safety (unsafe breakout parameter; 2309)
3973 !! input
3974 {{div style|"><script>alert(document.cookie)</script>}}
3975 !! result
3976 <div style="float: right;">&lt;script&gt;alert(document.cookie)&lt;/script&gt;"&gt;Magic div</div>
3978 !! end
3980 !! test
3981 Bug 2304: HTML attribute safety (unsafe breakout parameter 2; 2309)
3982 !! input
3983 {{div style|" ><script>alert(document.cookie)</script>}}
3984 !! result
3985 <div style="float: right;">&lt;script&gt;alert(document.cookie)&lt;/script&gt;"&gt;Magic div</div>
3987 !! end
3989 !! test
3990 Bug 2304: HTML attribute safety (link)
3991 !! input
3992 <div title="[[Main Page]]"></div>
3993 !! result
3994 <div title="&#91;&#91;Main Page]]"></div>
3996 !! end
3998 !! test
3999 Bug 2304: HTML attribute safety (italics)
4000 !! input
4001 <div title="''foobar''"></div>
4002 !! result
4003 <div title="&#39;&#39;foobar&#39;&#39;"></div>
4005 !! end
4007 !! test
4008 Bug 2304: HTML attribute safety (bold)
4009 !! input
4010 <div title="'''foobar'''"></div>
4011 !! result
4012 <div title="&#39;&#39;&#39;foobar&#39;&#39;&#39;"></div>
4014 !! end
4017 !! test
4018 Bug 2304: HTML attribute safety (ISBN)
4019 !! input
4020 <div title="ISBN 1234567890"></div>
4021 !! result
4022 <div title="&#73;SBN 1234567890"></div>
4024 !! end
4026 !! test
4027 Bug 2304: HTML attribute safety (RFC)
4028 !! input
4029 <div title="RFC 1234"></div>
4030 !! result
4031 <div title="&#82;FC 1234"></div>
4033 !! end
4035 !! test
4036 Bug 2304: HTML attribute safety (PMID)
4037 !! input
4038 <div title="PMID 1234567890"></div>
4039 !! result
4040 <div title="&#80;MID 1234567890"></div>
4042 !! end
4044 !! test
4045 Bug 2304: HTML attribute safety (web link)
4046 !! input
4047 <div title="http://example.com/"></div>
4048 !! result
4049 <div title="http&#58;//example.com/"></div>
4051 !! end
4053 !! test
4054 Bug 2304: HTML attribute safety (named web link)
4055 !! input
4056 <div title="[http://example.com/ link]"></div>
4057 !! result
4058 <div title="&#91;http&#58;//example.com/ link]"></div>
4060 !! end
4062 !! test
4063 Bug 3244: HTML attribute safety (extension; safe)
4064 !! input
4065 <div style="<nowiki>background:blue</nowiki>"></div>
4066 !! result
4067 <div style="background:blue"></div>
4069 !! end
4071 !! test
4072 Bug 3244: HTML attribute safety (extension; unsafe)
4073 !! input
4074 <div style="<nowiki>border-left:expression(alert(document.cookie))</nowiki>"></div>
4075 !! result
4076 <div></div>
4078 !! end
4080 !! test
4081 Math section safety when disabled
4082 !! input
4083 <math><script>alert(document.cookies);</script></math>
4084 !! result
4085 <p>&lt;math&gt;&lt;script&gt;alert(document.cookies);&lt;/script&gt;&lt;/math&gt;
4086 </p>
4087 !! end
4089 # More MSIE fun discovered by Tom Gilder
4091 !! test
4092 MSIE CSS safety test: spurious slash
4093 !! input
4094 <div style="background-image:u\rl(javascript:alert('boo'))">evil</div>
4095 !! result
4096 <div>evil</div>
4098 !! end
4100 !! test
4101 MSIE CSS safety test: hex code
4102 !! input
4103 <div style="background-image:u\72l(javascript:alert('boo'))">evil</div>
4104 !! result
4105 <div>evil</div>
4107 !! end
4109 !! test
4110 MSIE CSS safety test: comment in url
4111 !! input
4112 <div style="background-image:u/**/rl(javascript:alert('boo'))">evil</div>
4113 !! result
4114 <div style="background-image:u rl(javascript:alert(&#39;boo&#39;))">evil</div>
4116 !! end
4118 !! test
4119 MSIE CSS safety test: comment in expression
4120 !! input
4121 <div style="background-image:expres/**/sion(alert('boo4'))">evil4</div>
4122 !! result
4123 <div style="background-image:expres sion(alert(&#39;boo4&#39;))">evil4</div>
4125 !! end
4128 !! test
4129 Table attribute legitimate extension
4130 !! input
4132 !+ style="<nowiki>color:blue</nowiki>"| status
4134 !! result
4135 <table>
4136 <tr>
4137 <th style="color:blue"> status
4138 </th></tr></table>
4140 !!end
4142 !! test
4143 Table attribute safety
4144 !! input
4146 !+ style="<nowiki>border-width:expression(0+alert(document.cookie))</nowiki>"| status
4148 !! result
4149 <table>
4150 <tr>
4151 <th> status
4152 </th></tr></table>
4154 !! end
4157 !! article
4158 Template:Identity
4159 !! text
4160 {{{1}}}
4161 !! endarticle
4163 !! test
4164 Expansion of multi-line templates in attribute values (bug 6255)
4165 !! input
4166 <div style="background: {{identity|#00FF00}}">-</div>
4167 !! result
4168 <div style="background: #00FF00">-</div>
4170 !! end
4173 !! test
4174 Expansion of multi-line templates in attribute values (bug 6255 sanity check)
4175 !! input
4176 <div style="background: 
4177 #00FF00">-</div>
4178 !! result
4179 <div style="background: #00FF00">-</div>
4181 !! end
4183 !! test
4184 Expansion of multi-line templates in attribute values (bug 6255 sanity check 2)
4185 !! input
4186 <div style="background: &#10;#00FF00">-</div>
4187 !! result
4188 <div style="background: &#10;#00FF00">-</div>
4190 !! end
4193 ### Parser hooks (see maintenance/parserTestsParserHook.php for the <tag> extension)
4195 !! test
4196 Parser hook: empty input
4197 !! input
4198 <tag></tag>
4199 !! result
4200 <pre>
4201 string(0) ""
4202 array(0) {
4204 </pre>
4206 !! end
4208 !! test
4209 Parser hook: empty input using terminated empty elements
4210 !! input
4211 <tag/>
4212 !! result
4213 <pre>
4214 NULL
4215 array(0) {
4217 </pre>
4219 !! end
4221 !! test
4222 Parser hook: empty input using terminated empty elements (space before)
4223 !! input
4224 <tag />
4225 !! result
4226 <pre>
4227 NULL
4228 array(0) {
4230 </pre>
4232 !! end
4234 !! test
4235 Parser hook: basic input
4236 !! input
4237 <tag>input</tag>
4238 !! result
4239 <pre>
4240 string(5) "input"
4241 array(0) {
4243 </pre>
4245 !! end
4248 !! test
4249 Parser hook: case insensitive
4250 !! input
4251 <TAG>input</TAG>
4252 !! result
4253 <pre>
4254 string(5) "input"
4255 array(0) {
4257 </pre>
4259 !! end
4262 !! test
4263 Parser hook: case insensitive, redux
4264 !! input
4265 <TaG>input</TAg>
4266 !! result
4267 <pre>
4268 string(5) "input"
4269 array(0) {
4271 </pre>
4273 !! end
4275 !! test
4276 Parser hook: nested tags
4277 !! options
4278 noxml
4279 !! input
4280 <tag><tag></tag></tag>
4281 !! result
4282 <pre>
4283 string(5) "<tag>"
4284 array(0) {
4286 </pre>&lt;/tag&gt;
4288 !! end
4290 !! test
4291 Parser hook: basic arguments
4292 !! input
4293 <tag width=200 height = "100" depth = '50' square></tag>
4294 !! result
4295 <pre>
4296 string(0) ""
4297 array(4) {
4298   ["width"]=>
4299   string(3) "200"
4300   ["height"]=>
4301   string(3) "100"
4302   ["depth"]=>
4303   string(2) "50"
4304   ["square"]=>
4305   string(6) "square"
4307 </pre>
4309 !! end
4311 !! test
4312 Parser hook: argument containing a forward slash (bug 5344)
4313 !! input
4314 <tag filename='/tmp/bla'></tag>
4315 !! result
4316 <pre>
4317 string(0) ""
4318 array(1) {
4319   ["filename"]=>
4320   string(8) "/tmp/bla"
4322 </pre>
4324 !! end
4326 !! test
4327 Parser hook: empty input using terminated empty elements (bug 2374)
4328 !! input
4329 <tag foo=bar/>text
4330 !! result
4331 <pre>
4332 NULL
4333 array(1) {
4334   ["foo"]=>
4335   string(3) "bar"
4337 </pre>text
4339 !! end
4341 # </tag> should be output literally since there is no matching tag that begins it
4342 !! test
4343 Parser hook: basic arguments using terminated empty elements (bug 2374)
4344 !! input
4345 <tag width=200 height = "100" depth = '50' square/>
4346 other stuff
4347 </tag>
4348 !! result
4349 <pre>
4350 NULL
4351 array(4) {
4352   ["width"]=>
4353   string(3) "200"
4354   ["height"]=>
4355   string(3) "100"
4356   ["depth"]=>
4357   string(2) "50"
4358   ["square"]=>
4359   string(6) "square"
4361 </pre>
4362 <p>other stuff
4363 &lt;/tag&gt;
4364 </p>
4365 !! end
4368 ### (see maintenance/parserTestsStaticParserHook.php for the <statictag> extension)
4371 !! test
4372 Parser hook: static parser hook not inside a comment
4373 !! input
4374 <statictag>hello, world</statictag>
4375 <statictag action=flush/>
4376 !! result
4377 <p>hello, world
4378 </p>
4379 !! end
4382 !! test
4383 Parser hook: static parser hook inside a comment
4384 !! input
4385 <!-- <statictag>hello, world</statictag> -->
4386 <statictag action=flush/>
4387 !! result
4388 <p><br />
4389 </p>
4390 !! end
4392 # Nested template calls; this case was broken by Parser.php rev 1.506,
4393 # since reverted.
4395 !! article
4396 Template:One-parameter
4397 !! text
4398 (My parameter is: {{{1}}})
4399 !! endarticle
4401 !! article
4402 Template:Map-one-parameter
4403 !! text
4404 {{{{{1}}}|{{{2}}}}}
4405 !! endarticle
4407 !! test
4408 Nested template calls
4409 !! input
4410 {{Map-one-parameter|One-parameter|param}}
4411 !! result
4412 <p>(My parameter is: param)
4413 </p>
4414 !! end
4418 ### Sanitizer
4420 !! test
4421 Sanitizer: Closing of open tags
4422 !! input
4423 <s></s><table></table>
4424 !! result
4425 <s></s><table></table>
4427 !! end
4429 !! test
4430 Sanitizer: Closing of open but not closed tags
4431 !! input
4432 <s>foo
4433 !! result
4434 <p><s>foo</s>
4435 </p>
4436 !! end
4438 !! test
4439 Sanitizer: Closing of closed but not open tags
4440 !! input
4441 </s>
4442 !! result
4443 <p>&lt;/s&gt;
4444 </p>
4445 !! end
4447 !! test
4448 Sanitizer: Closing of closed but not open table tags
4449 !! input
4450 Table not started</td></tr></table>
4451 !! result
4452 <p>Table not started&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
4453 </p>
4454 !! end
4456 !! test
4457 Sanitizer: Escaping of spaces, multibyte characters, colons & other stuff in id=""
4458 !! input
4459 <span id="æ: v">byte</span>[[#æ: v|backlink]]
4460 !! result
4461 <p><span id=".C3.A6:_v">byte</span><a href="#.C3.A6:_v" title="">backlink</a>
4462 </p>
4463 !! end
4465 !! test
4466 Sanitizer: Validating the contents of the id attribute (bug 4515)
4467 !! options
4468 disabled
4469 !! input
4470 <br id=9 />
4471 !! result
4472 Something, but defenetly not <br id="9" />...
4473 !! end
4475 !! test
4476 Sanitizer: Validating id attribute uniqueness (bug 4515, bug 6301)
4477 !! options
4478 disabled
4479 !! input
4480 <br id="foo" /><br id="foo" />
4481 !! result
4482 Something need to be done. foo-2 ? 
4483 !! end
4485 !! test
4486 Language converter: output gets cut off unexpectedly (bug 5757)
4487 !! options
4488 language=zh
4489 !! input
4490 this bit is safe: }-
4492 but if we add a conversion instance: -{zh-cn:xxx;zh-tw:yyy}-
4494 then we get cut off here: }-
4496 all additional text is vanished
4497 !! result
4498 <p>this bit is safe: }-
4499 </p><p>but if we add a conversion instance: xxx
4500 </p><p>then we get cut off here: }-
4501 </p><p>all additional text is vanished
4502 </p>
4503 !! end
4505 !! test
4506 Self closed html pairs (bug 5487)
4507 !! options
4508 !! input
4509 <center><font id="bug" />Centered text</center>
4510 <div><font id="bug2" />In div text</div>
4511 !! result
4512 <center>&lt;font id="bug" /&gt;Centered text</center>
4513 <div>&lt;font id="bug2" /&gt;In div text</div>
4515 !! end
4521 !! test
4522 HTML bullet list, closed tags (bug 5497)
4523 !! input
4524 <ul>
4525 <li>One</li>
4526 <li>Two</li>
4527 </ul>
4528 !! result
4529 <ul>
4530 <li>One</li>
4531 <li>Two</li>
4532 </ul>
4534 !! end
4536 !! test
4537 HTML bullet list, unclosed tags (bug 5497)
4538 !! input
4539 <ul>
4540 <li>One
4541 <li>Two
4542 </ul>
4543 !! result
4544 <ul>
4545 <li>One
4546 </li><li>Two
4547 </li></ul>
4549 !! end
4551 !! test
4552 HTML ordered list, closed tags (bug 5497)
4553 !! input
4554 <ol>
4555 <li>One</li>
4556 <li>Two</li>
4557 </ol>
4558 !! result
4559 <ol>
4560 <li>One</li>
4561 <li>Two</li>
4562 </ol>
4564 !! end
4566 !! test
4567 HTML ordered list, unclosed tags (bug 5497)
4568 !! input
4569 <ol>
4570 <li>One
4571 <li>Two
4572 </ol>
4573 !! result
4574 <ol>
4575 <li>One
4576 </li><li>Two
4577 </li></ol>
4579 !! end
4581 !! test
4582 HTML nested bullet list, closed tags (bug 5497)
4583 !! input
4584 <ul>
4585 <li>One</li>
4586 <li>Two:
4587 <ul>
4588 <li>Sub-one</li>
4589 <li>Sub-two</li>
4590 </ul>
4591 </li>
4592 </ul>
4593 !! result
4594 <ul>
4595 <li>One</li>
4596 <li>Two:
4597 <ul>
4598 <li>Sub-one</li>
4599 <li>Sub-two</li>
4600 </ul>
4601 </li>
4602 </ul>
4604 !! end
4606 !! test
4607 HTML nested bullet list, open tags (bug 5497)
4608 !! input
4609 <ul>
4610 <li>One
4611 <li>Two:
4612 <ul>
4613 <li>Sub-one
4614 <li>Sub-two
4615 </ul>
4616 </ul>
4617 !! result
4618 <ul>
4619 <li>One
4620 </li><li>Two:
4621 <ul>
4622 <li>Sub-one
4623 </li><li>Sub-two
4624 </li></ul>
4625 </li></ul>
4627 !! end
4629 !! test
4630 HTML nested ordered list, closed tags (bug 5497)
4631 !! input
4632 <ol>
4633 <li>One</li>
4634 <li>Two:
4635 <ol>
4636 <li>Sub-one</li>
4637 <li>Sub-two</li>
4638 </ol>
4639 </li>
4640 </ol>
4641 !! result
4642 <ol>
4643 <li>One</li>
4644 <li>Two:
4645 <ol>
4646 <li>Sub-one</li>
4647 <li>Sub-two</li>
4648 </ol>
4649 </li>
4650 </ol>
4652 !! end
4654 !! test
4655 HTML nested ordered list, open tags (bug 5497)
4656 !! input
4657 <ol>
4658 <li>One
4659 <li>Two:
4660 <ol>
4661 <li>Sub-one
4662 <li>Sub-two
4663 </ol>
4664 </ol>
4665 !! result
4666 <ol>
4667 <li>One
4668 </li><li>Two:
4669 <ol>
4670 <li>Sub-one
4671 </li><li>Sub-two
4672 </li></ol>
4673 </li></ol>
4675 !! end
4677 !! test
4678 HTML ordered list item with parameters oddity
4679 !! input
4680 <ol><li id="fragment">One</li></ol>
4681 !! result
4682 <ol><li id="fragment">One</li></ol>
4684 !! end
4686 !!test
4687 bug 5918: autonumbering
4688 !! input
4689 [http://first/] [http://second] [ftp://ftp]
4691 ftp://inlineftp
4693 [mailto:enclosed@mail.tld With target]
4695 [mailto:enclosed@mail.tld]
4697 mailto:inline@mail.tld
4698 !! result
4699 <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>
4700 </p><p><a href="ftp://inlineftp" class="external free" title="ftp://inlineftp" rel="nofollow">ftp://inlineftp</a>
4701 </p><p><a href="mailto:enclosed@mail.tld" class="external text" title="mailto:enclosed@mail.tld" rel="nofollow">With target</a>
4702 </p><p><a href="mailto:enclosed@mail.tld" class="external autonumber" title="mailto:enclosed@mail.tld" rel="nofollow">[4]</a>
4703 </p><p><a href="mailto:inline@mail.tld" class="external free" title="mailto:inline@mail.tld" rel="nofollow">mailto:inline@mail.tld</a>
4704 </p>
4705 !! end
4709 # Security and HTML correctness
4710 # From Nick Jenkins' fuzz testing
4713 !! test
4714 Fuzz testing: Parser13
4715 !! input
4716 {| 
4717 | http://a|
4718 !! result
4719 <table>
4720 <tr>
4721 <td>
4722 </td>
4723 </tr>
4724 </table>
4726 !! end
4728 !! test
4729 Fuzz testing: Parser14
4730 !! input
4731 == onmouseover= ==
4732 http://__TOC__
4733 !! result
4734 <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>
4735 http://<table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
4736 <ul>
4737 <li class="toclevel-1"><a href="#onmouseover.3D"><span class="tocnumber">1</span> <span class="toctext">onmouseover=</span></a></li>
4738 </ul>
4739 </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
4741 !! end
4743 !! test
4744 Fuzz testing: Parser14-table
4745 !! input
4746 ==a==
4747 {| STYLE=__TOC__
4748 !! result
4749 <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>
4750 <table style="&#95;_TOC&#95;_">
4751 <tr><td></td></tr>
4752 </table>
4754 !! end
4756 # Known to produce bogus xml (extra </td>)
4757 !! test
4758 Fuzz testing: Parser16
4759 !! options
4760 noxml
4761 !! input
4763 !https://||||||
4764 !! result
4765 <table>
4766 <tr>
4767 <th>https://</th><th></th><th></th><th>
4768 </td>
4769 </tr>
4770 </table>
4772 !! end
4774 !! test
4775 Fuzz testing: Parser21
4776 !! input
4778 ! irc://{{ftp://a" onmouseover="alert('hello world');"
4780 !! result
4781 <table>
4782 <tr>
4783 <th> <a href="irc://{{ftp://a" class="external free" title="irc://{{ftp://a" rel="nofollow">irc://{{ftp://a</a>" onmouseover="alert('hello world');"
4784 </th><td>
4785 </td>
4786 </tr>
4787 </table>
4789 !! end
4791 !! test
4792 Fuzz testing: Parser22
4793 !! input
4794 http://===r:::https://b
4797 !!result
4798 <p><a href="http://===r:::https://b" class="external free" title="http://===r:::https://b" rel="nofollow">http://===r:::https://b</a>
4799 </p>
4800 <table>
4801 <tr><td></td></tr>
4802 </table>
4804 !! end
4806 # Known to produce bad XML for now
4807 !! test
4808 Fuzz testing: Parser24
4809 !! options
4810 noxml
4811 !! input
4813 {{{|
4814 <u CLASS=
4815 | {{{{SSSll!!!!!!!VVVV)]]][[Special:*xxxxxxx--><noinclude>}}}} >
4816 <br style="onmouseover='alert(document.cookie);' " />
4818 MOVE YOUR MOUSE CURSOR OVER THIS TEXT
4820 !! result
4821 <table>
4822 {{{|
4823 <u class="&#124;">}}}} &gt;
4824 <br style="onmouseover=&#39;alert(document.cookie);&#39;" />
4826 MOVE YOUR MOUSE CURSOR OVER THIS TEXT
4827 <tr>
4828 <td></u>
4829 </td>
4830 </tr>
4831 </table>
4833 !! end
4835 # Known to produce bad XML for now
4836 !!test
4837 Fuzz testing: Parser25 (bug 6055)
4838 !! options
4839 noxml
4840 !! input
4843 <LI CLASS=||
4845 }}}blah" onmouseover="alert('hello world');" align="left"'''MOVE MOUSE CURSOR OVER HERE
4846 !! result
4847 <p>{{{| 
4848 </p>
4849 <li class="&#124;&#124;">
4850 }}}blah" onmouseover="alert('hello world');" align="left"<b>MOVE MOUSE CURSOR OVER HERE</b>
4852 !! end
4854 !!test
4855 Fuzz testing: URL adjacent extension (with space, clean)
4856 !! options
4857 !! input
4858 http://example.com <nowiki>junk</nowiki>
4859 !! result
4860 <p><a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a> junk
4861 </p>
4862 !!end
4864 !!test
4865 Fuzz testing: URL adjacent extension (no space, dirty; nowiki)
4866 !! options
4867 !! input
4868 http://example.com<nowiki>junk</nowiki>
4869 !! result
4870 <p><a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a>junk
4871 </p>
4872 !!end
4874 !!test
4875 Fuzz testing: URL adjacent extension (no space, dirty; pre)
4876 !! options
4877 !! input
4878 http://example.com<pre>junk</pre>
4879 !! result
4880 <a href="http://example.com" class="external free" title="http://example.com" rel="nofollow">http://example.com</a><pre>junk</pre>
4882 !!end
4884 !!test
4885 Fuzz testing: image with bogus manual thumbnail
4886 !!input
4887 [[Image:foobar.jpg|thumbnail= ]]
4888 !!result
4889 <div class="thumb tright"><div class="thumbinner" style="width:1943px;">Error creating thumbnail:   <div class="thumbcaption"></div></div></div>
4891 !!end
4893 !! test
4894 Fuzz testing: encoded newline in generated HTML replacements (bug 6577)
4895 !! input
4896 <pre dir="&#10;"></pre>
4897 !! result
4898 <pre dir="&#10;"></pre>
4900 !! end
4902 !! test
4903 Parsing optional HTML elements (Bug 6171)
4904 !! options
4905 !! input
4906 <table>
4907   <tr>
4908     <td> Some tabular data</td>
4909     <td> More tabular data ...
4910     <td> And yet som tabular data</td>
4911   </tr>
4912 </table>
4913 !! result
4914 <table>
4915   <tr>
4916     <td> Some tabular data</td>
4917     <td> More tabular data ...
4918     </td><td> And yet som tabular data</td>
4919   </tr>
4920 </table>
4922 !! end
4924 !! test
4925 Correct handling of <td>, <tr> (Bug 6171)
4926 !! options
4927 !! input
4928 <table>
4929   <tr>
4930     <td> Some tabular data</td>
4931     <td> More tabular data ...</td>
4932     <td> And yet som tabular data</td>
4933   </tr>
4934 </table>
4935 !! result
4936 <table>
4937   <tr>
4938     <td> Some tabular data</td>
4939     <td> More tabular data ...</td>
4940     <td> And yet som tabular data</td>
4941   </tr>
4942 </table>
4944 !! end
4947 !! test
4948 Parsing crashing regression (fr:JavaScript)
4949 !! input
4950 </body></x>
4951 !! result
4952 <p>&lt;/body&gt;&lt;/x&gt;
4953 </p>
4954 !! end
4956 !! test
4957 Inline wiki vs wiki block nesting
4958 !! input
4959 '''Bold paragraph
4961 New wiki paragraph
4962 !! result
4963 <p><b>Bold paragraph</b>
4964 </p><p>New wiki paragraph
4965 </p>
4966 !! end
4968 !! test
4969 Inline HTML vs wiki block nesting
4970 !! input
4971 <b>Bold paragraph
4973 New wiki paragraph
4974 !! result
4975 <p><b>Bold paragraph</b>
4976 </p><p>New wiki paragraph
4977 </p>
4978 !! end
4981 !!test
4982 Mixing markup for italics and bold
4983 !! options
4984 !! input
4985 '''bold''''''bold''bolditalics'''''
4986 !! result
4987 <p><b>bold</b><b>bold<i>bolditalics</i></b>
4988 </p>
4989 !! end
4992 !! article
4993 Xyzzyx
4994 !! text
4995 Article for special page transclusion test
4996 !! endarticle
4998 !! test
4999 Special page transclusion
5000 !! options
5001 !! input
5002 {{Special:Prefixindex/Xyzzyx}}
5003 !! result
5004 <p><br />
5005 </p>
5006 <table style="background: inherit;" border="0" width="100%"><tr><td><a href="/wiki/Xyzzyx" title="Xyzzyx">Xyzzyx</a></td></tr></table>
5008 !! end
5010 !! test
5011 Special page transclusion twice (bug 5021)
5012 !! options
5013 !! input
5014 {{Special:Prefixindex/Xyzzyx}}
5015 {{Special:Prefixindex/Xyzzyx}}
5016 !! result
5017 <p><br />
5018 </p>
5019 <table style="background: inherit;" border="0" width="100%"><tr><td><a href="/wiki/Xyzzyx" title="Xyzzyx">Xyzzyx</a></td></tr></table>
5020 <p><br />
5021 </p>
5022 <table style="background: inherit;" border="0" width="100%"><tr><td><a href="/wiki/Xyzzyx" title="Xyzzyx">Xyzzyx</a></td></tr></table>
5024 !! end
5026 !! test
5027 Transclusion of default MediaWiki message
5028 !! input
5029 {{MediaWiki:Mainpage}}
5030 !!result
5031 <p>Main Page
5032 </p>
5033 !! end
5035 !! test
5036 Transclusion of nonexistent MediaWiki message
5037 !! input
5038 {{MediaWiki:Mainpagexxx}}
5039 !!result
5040 <p><a href="/index.php?title=MediaWiki:Mainpagexxx&amp;action=edit" class="new" title="MediaWiki:Mainpagexxx">MediaWiki:Mainpagexxx</a>
5041 </p>
5042 !! end
5044 !! test
5045 Transclusion of MediaWiki message with underscore
5046 !! input
5047 {{MediaWiki:history_short}}
5048 !! result
5049 <p>History
5050 </p>
5051 !! end
5053 !! test
5054 Transclusion of MediaWiki message with space
5055 !! input
5056 {{MediaWiki:history short}}
5057 !! result
5058 <p>History
5059 </p>
5060 !! end
5062 !! test
5063 Invalid header with following text
5064 !! input
5065 = x = y
5066 !! result
5067 <p>= x = y
5068 </p>
5069 !! end
5072 !! test
5073 Section extraction test (section 0)
5074 !! options
5075 section=0
5076 !! input
5077 start
5078 ==a==
5079 ===aa===
5080 ====aaa====
5081 ==b==
5082 ===ba===
5083 ===bb===
5084 ====bba====
5085 ===bc===
5086 ==c==
5087 ===ca===
5088 !! result
5089 start
5090 !! end
5092 !! test
5093 Section extraction test (section 1)
5094 !! options
5095 section=1
5096 !! input
5097 start
5098 ==a==
5099 ===aa===
5100 ====aaa====
5101 ==b==
5102 ===ba===
5103 ===bb===
5104 ====bba====
5105 ===bc===
5106 ==c==
5107 ===ca===
5108 !! result
5109 ==a==
5110 ===aa===
5111 ====aaa====
5112 !! end
5114 !! test
5115 Section extraction test (section 2)
5116 !! options
5117 section=2
5118 !! input
5119 start
5120 ==a==
5121 ===aa===
5122 ====aaa====
5123 ==b==
5124 ===ba===
5125 ===bb===
5126 ====bba====
5127 ===bc===
5128 ==c==
5129 ===ca===
5130 !! result
5131 ===aa===
5132 ====aaa====
5133 !! end
5135 !! test
5136 Section extraction test (section 3)
5137 !! options
5138 section=3
5139 !! input
5140 start
5141 ==a==
5142 ===aa===
5143 ====aaa====
5144 ==b==
5145 ===ba===
5146 ===bb===
5147 ====bba====
5148 ===bc===
5149 ==c==
5150 ===ca===
5151 !! result
5152 ====aaa====
5153 !! end
5155 !! test
5156 Section extraction test (section 4)
5157 !! options
5158 section=4
5159 !! input
5160 start
5161 ==a==
5162 ===aa===
5163 ====aaa====
5164 ==b==
5165 ===ba===
5166 ===bb===
5167 ====bba====
5168 ===bc===
5169 ==c==
5170 ===ca===
5171 !! result
5172 ==b==
5173 ===ba===
5174 ===bb===
5175 ====bba====
5176 ===bc===
5177 !! end
5179 !! test
5180 Section extraction test (section 5)
5181 !! options
5182 section=5
5183 !! input
5184 start
5185 ==a==
5186 ===aa===
5187 ====aaa====
5188 ==b==
5189 ===ba===
5190 ===bb===
5191 ====bba====
5192 ===bc===
5193 ==c==
5194 ===ca===
5195 !! result
5196 ===ba===
5197 !! end
5199 !! test
5200 Section extraction test (section 6)
5201 !! options
5202 section=6
5203 !! input
5204 start
5205 ==a==
5206 ===aa===
5207 ====aaa====
5208 ==b==
5209 ===ba===
5210 ===bb===
5211 ====bba====
5212 ===bc===
5213 ==c==
5214 ===ca===
5215 !! result
5216 ===bb===
5217 ====bba====
5218 !! end
5220 !! test
5221 Section extraction test (section 7)
5222 !! options
5223 section=7
5224 !! input
5225 start
5226 ==a==
5227 ===aa===
5228 ====aaa====
5229 ==b==
5230 ===ba===
5231 ===bb===
5232 ====bba====
5233 ===bc===
5234 ==c==
5235 ===ca===
5236 !! result
5237 ====bba====
5238 !! end
5240 !! test
5241 Section extraction test (section 8)
5242 !! options
5243 section=8
5244 !! input
5245 start
5246 ==a==
5247 ===aa===
5248 ====aaa====
5249 ==b==
5250 ===ba===
5251 ===bb===
5252 ====bba====
5253 ===bc===
5254 ==c==
5255 ===ca===
5256 !! result
5257 ===bc===
5258 !! end
5260 !! test
5261 Section extraction test (section 9)
5262 !! options
5263 section=9
5264 !! input
5265 start
5266 ==a==
5267 ===aa===
5268 ====aaa====
5269 ==b==
5270 ===ba===
5271 ===bb===
5272 ====bba====
5273 ===bc===
5274 ==c==
5275 ===ca===
5276 !! result
5277 ==c==
5278 ===ca===
5279 !! end
5281 !! test
5282 Section extraction test (section 10)
5283 !! options
5284 section=10
5285 !! input
5286 start
5287 ==a==
5288 ===aa===
5289 ====aaa====
5290 ==b==
5291 ===ba===
5292 ===bb===
5293 ====bba====
5294 ===bc===
5295 ==c==
5296 ===ca===
5297 !! result
5298 ===ca===
5299 !! end
5301 !! test
5302 Section extraction test (nonexistent section 11)
5303 !! options
5304 section=11
5305 !! input
5306 start
5307 ==a==
5308 ===aa===
5309 ====aaa====
5310 ==b==
5311 ===ba===
5312 ===bb===
5313 ====bba====
5314 ===bc===
5315 ==c==
5316 ===ca===
5317 !! result
5318 !! end
5320 !! test
5321 Section extraction test with bogus heading (section 1)
5322 !! options
5323 section=1
5324 !! input
5325 ==a==
5326 ==bogus== not a legal section
5327 ==b==
5328 !! result
5329 ==a==
5330 ==bogus== not a legal section
5331 !! end
5333 !! test
5334 Section extraction test with bogus heading (section 2)
5335 !! options
5336 section=2
5337 !! input
5338 ==a==
5339 ==bogus== not a legal section
5340 ==b==
5341 !! result
5342 ==b==
5343 !! end
5345 !! test
5346 Section extraction test with comment after heading (section 1)
5347 !! options
5348 section=1
5349 !! input
5350 ==a==
5351 ==b== <!-- -->
5352 ==c==
5353 !! result
5354 ==a==
5355 !! end
5357 !! test
5358 Section extraction test with comment after heading (section 2)
5359 !! options
5360 section=2
5361 !! input
5362 ==a==
5363 ==b== <!-- -->
5364 ==c==
5365 !! result
5366 ==b== <!-- -->
5367 !! end
5369 !! test
5370 Section extraction test with bogus <nowiki> heading (section 1)
5371 !! options
5372 section=1
5373 !! input
5374 ==a==
5375 ==bogus== <nowiki>not a legal section</nowiki>
5376 ==b==
5377 !! result
5378 ==a==
5379 ==bogus== <nowiki>not a legal section</nowiki>
5380 !! end
5382 !! test
5383 Section extraction test with bogus <nowiki> heading (section 2)
5384 !! options
5385 section=2
5386 !! input
5387 ==a==
5388 ==bogus== <nowiki>not a legal section</nowiki>
5389 ==b==
5390 !! result
5391 ==b==
5392 !! end
5395 # Formerly testing for bug 2587, now resolved by the use of unmarked sections 
5396 # instead of respecting commented sections
5397 !! test
5398 Section extraction prefixed by comment (section 1)
5399 !! options
5400 section=1
5401 !! input
5402 <!-- -->==sec1==
5403 ==sec2==
5404 !!result
5405 ==sec2==
5406 !!end
5408 !! test
5409 Section extraction prefixed by comment (section 2)
5410 !! options
5411 section=2
5412 !! input
5413 <!-- -->==sec1==
5414 ==sec2==
5415 !!result
5417 !!end
5420 # Formerly testing for bug 2607, now resolved by the use of unmarked sections 
5421 # instead of respecting HTML-style headings
5422 !! test
5423 Section extraction, mixed wiki and html (section 1)
5424 !! options
5425 section=1
5426 !! input
5427 <h2>unmarked</h2>
5428 unmarked
5429 ==1==
5431 ==2==
5433 !! result
5434 ==1==
5436 !! end
5438 !! test
5439 Section extraction, mixed wiki and html (section 2)
5440 !! options
5441 section=2
5442 !! input
5443 <h2>unmarked</h2>
5444 unmarked
5445 ==1==
5447 ==2==
5449 !! result
5450 ==2==
5452 !! end
5455 # Formerly testing for bug 3342
5456 !! test
5457 Section extraction, heading surrounded by <noinclude>
5458 !! options
5459 section=1
5460 !! input
5461 <noinclude>==unmarked==</noinclude>
5462 ==marked==
5463 !! result
5464 ==marked==
5465 !!end
5468 !! test
5469 Section replacement test (section 0)
5470 !! options
5471 replace=0,"xxx"
5472 !! input
5473 start
5474 ==a==
5475 ===aa===
5476 ====aaa====
5477 ==b==
5478 ===ba===
5479 ===bb===
5480 ====bba====
5481 ===bc===
5482 ==c==
5483 ===ca===
5484 !! result
5487 ==a==
5488 ===aa===
5489 ====aaa====
5490 ==b==
5491 ===ba===
5492 ===bb===
5493 ====bba====
5494 ===bc===
5495 ==c==
5496 ===ca===
5497 !! end
5499 !! test
5500 Section replacement test (section 1)
5501 !! options
5502 replace=1,"xxx"
5503 !! input
5504 start
5505 ==a==
5506 ===aa===
5507 ====aaa====
5508 ==b==
5509 ===ba===
5510 ===bb===
5511 ====bba====
5512 ===bc===
5513 ==c==
5514 ===ca===
5515 !! result
5516 start
5519 ==b==
5520 ===ba===
5521 ===bb===
5522 ====bba====
5523 ===bc===
5524 ==c==
5525 ===ca===
5526 !! end
5528 !! test
5529 Section replacement test (section 2)
5530 !! options
5531 replace=2,"xxx"
5532 !! input
5533 start
5534 ==a==
5535 ===aa===
5536 ====aaa====
5537 ==b==
5538 ===ba===
5539 ===bb===
5540 ====bba====
5541 ===bc===
5542 ==c==
5543 ===ca===
5544 !! result
5545 start
5546 ==a==
5549 ==b==
5550 ===ba===
5551 ===bb===
5552 ====bba====
5553 ===bc===
5554 ==c==
5555 ===ca===
5556 !! end
5558 !! test
5559 Section replacement test (section 3)
5560 !! options
5561 replace=3,"xxx"
5562 !! input
5563 start
5564 ==a==
5565 ===aa===
5566 ====aaa====
5567 ==b==
5568 ===ba===
5569 ===bb===
5570 ====bba====
5571 ===bc===
5572 ==c==
5573 ===ca===
5574 !! result
5575 start
5576 ==a==
5577 ===aa===
5580 ==b==
5581 ===ba===
5582 ===bb===
5583 ====bba====
5584 ===bc===
5585 ==c==
5586 ===ca===
5587 !! end
5589 !! test
5590 Section replacement test (section 4)
5591 !! options
5592 replace=4,"xxx"
5593 !! input
5594 start
5595 ==a==
5596 ===aa===
5597 ====aaa====
5598 ==b==
5599 ===ba===
5600 ===bb===
5601 ====bba====
5602 ===bc===
5603 ==c==
5604 ===ca===
5605 !! result
5606 start
5607 ==a==
5608 ===aa===
5609 ====aaa====
5612 ==c==
5613 ===ca===
5614 !! end
5616 !! test
5617 Section replacement test (section 5)
5618 !! options
5619 replace=5,"xxx"
5620 !! input
5621 start
5622 ==a==
5623 ===aa===
5624 ====aaa====
5625 ==b==
5626 ===ba===
5627 ===bb===
5628 ====bba====
5629 ===bc===
5630 ==c==
5631 ===ca===
5632 !! result
5633 start
5634 ==a==
5635 ===aa===
5636 ====aaa====
5637 ==b==
5640 ===bb===
5641 ====bba====
5642 ===bc===
5643 ==c==
5644 ===ca===
5645 !! end
5647 !! test
5648 Section replacement test (section 6)
5649 !! options
5650 replace=6,"xxx"
5651 !! input
5652 start
5653 ==a==
5654 ===aa===
5655 ====aaa====
5656 ==b==
5657 ===ba===
5658 ===bb===
5659 ====bba====
5660 ===bc===
5661 ==c==
5662 ===ca===
5663 !! result
5664 start
5665 ==a==
5666 ===aa===
5667 ====aaa====
5668 ==b==
5669 ===ba===
5672 ===bc===
5673 ==c==
5674 ===ca===
5675 !! end
5677 !! test
5678 Section replacement test (section 7)
5679 !! options
5680 replace=7,"xxx"
5681 !! input
5682 start
5683 ==a==
5684 ===aa===
5685 ====aaa====
5686 ==b==
5687 ===ba===
5688 ===bb===
5689 ====bba====
5690 ===bc===
5691 ==c==
5692 ===ca===
5693 !! result
5694 start
5695 ==a==
5696 ===aa===
5697 ====aaa====
5698 ==b==
5699 ===ba===
5700 ===bb===
5703 ===bc===
5704 ==c==
5705 ===ca===
5706 !! end
5708 !! test
5709 Section replacement test (section 8)
5710 !! options
5711 replace=8,"xxx"
5712 !! input
5713 start
5714 ==a==
5715 ===aa===
5716 ====aaa====
5717 ==b==
5718 ===ba===
5719 ===bb===
5720 ====bba====
5721 ===bc===
5722 ==c==
5723 ===ca===
5724 !! result
5725 start
5726 ==a==
5727 ===aa===
5728 ====aaa====
5729 ==b==
5730 ===ba===
5731 ===bb===
5732 ====bba====
5735 ==c==
5736 ===ca===
5737 !!end
5739 !! test
5740 Section replacement test (section 9)
5741 !! options
5742 replace=9,"xxx"
5743 !! input
5744 start
5745 ==a==
5746 ===aa===
5747 ====aaa====
5748 ==b==
5749 ===ba===
5750 ===bb===
5751 ====bba====
5752 ===bc===
5753 ==c==
5754 ===ca===
5755 !! result
5756 start
5757 ==a==
5758 ===aa===
5759 ====aaa====
5760 ==b==
5761 ===ba===
5762 ===bb===
5763 ====bba====
5764 ===bc===
5766 !! end
5768 !! test
5769 Section replacement test (section 10)
5770 !! options
5771 replace=10,"xxx"
5772 !! input
5773 start
5774 ==a==
5775 ===aa===
5776 ====aaa====
5777 ==b==
5778 ===ba===
5779 ===bb===
5780 ====bba====
5781 ===bc===
5782 ==c==
5783 ===ca===
5784 !! result
5785 start
5786 ==a==
5787 ===aa===
5788 ====aaa====
5789 ==b==
5790 ===ba===
5791 ===bb===
5792 ====bba====
5793 ===bc===
5794 ==c==
5796 !! end
5799 !! test
5800 Section extraction, heading followed by pre with 20 spaces (bug 6398)
5801 !! options
5802 section=1
5803 !! input
5804 ==a==
5805                     a
5806 !! result
5807 ==a==
5808                     a
5809 !! end
5811 !! test
5812 Section extraction, heading followed by pre with 19 spaces (bug 6398 sanity check)
5813 !! options
5814 section=1
5815 !! input
5816 ==a==
5817                    a
5818 !! result
5819 ==a==
5820                    a
5821 !! end
5824 !! test
5825 Section extraction, <pre> around bogus header (bug 10309)
5826 !! options
5827 noxml section=2
5828 !! input
5829 == Section One ==
5830 <pre>
5831 =======
5832 </pre>
5834 == Section Two ==
5835 stuff
5836 !! result
5837 == Section Two ==
5838 stuff
5839 !! end
5841 !! test
5842 Section replacement, <pre> around bogus header (bug 10309)
5843 !! options
5844 noxml replace=2,"xxx"
5845 !! input
5846 == Section One ==
5847 <pre>
5848 =======
5849 </pre>
5851 == Section Two ==
5852 stuff
5853 !! result
5854 == Section One ==
5855 <pre>
5856 =======
5857 </pre>
5860 !! end
5864 !! test
5865 Handling of &#x0A; in URLs
5866 !! input
5867 **irc://&#x0A;a
5868 !! result
5869 <ul><li><ul><li><a href="irc://%0Aa" class="external free" title="irc://%0Aa" rel="nofollow">irc://%0Aa</a>
5870 </li></ul>
5871 </li></ul>
5873 !!end
5875 !! test
5876 5 quotes, code coverage +1 line
5877 !! input
5878 '''''
5879 !! result
5880 !! end
5882 !! test
5883 Special:Search page linking.
5884 !! input
5885 {{Special:search}}
5886 !! result
5887 <p><a href="/wiki/Special:Search" title="Special:Search">Special:Search</a>
5888 </p>
5889 !! end
5891 !! test
5892 Say the magic word
5893 !! input
5894 * {{PAGENAME}}
5895 * {{BASEPAGENAME}}
5896 * {{SUBPAGENAME}}
5897 * {{SUBPAGENAMEE}}
5898 * {{BASEPAGENAME}}
5899 * {{BASEPAGENAMEE}}
5900 * {{TALKPAGENAME}}
5901 * {{TALKPAGENAMEE}}
5902 * {{SUBJECTPAGENAME}}
5903 * {{SUBJECTPAGENAMEE}}
5904 * {{NAMESPACEE}}
5905 * {{NAMESPACE}}
5906 * {{TALKSPACE}}
5907 * {{TALKSPACEE}}
5908 * {{SUBJECTSPACE}}
5909 * {{SUBJECTSPACEE}}
5910 * {{Dynamic|{{NUMBEROFUSERS}}|{{NUMBEROFPAGES}}|{{CURRENTVERSION}}|{{CONTENTLANGUAGE}}|{{DIRECTIONMARK}}|{{CURRENTTIMESTAMP}}|{{NUMBEROFARTICLES}}}}
5911 !! result
5912 <ul><li> Parser test
5913 </li><li> Parser test
5914 </li><li> Parser test
5915 </li><li> Parser_test
5916 </li><li> Parser test
5917 </li><li> Parser_test
5918 </li><li> Talk:Parser test
5919 </li><li> Talk:Parser_test
5920 </li><li> Parser test
5921 </li><li> Parser_test
5922 </li><li> 
5923 </li><li> 
5924 </li><li> Talk
5925 </li><li> Talk
5926 </li><li> 
5927 </li><li> 
5928 </li><li> <a href="/index.php?title=Template:Dynamic&amp;action=edit" class="new" title="Template:Dynamic">Template:Dynamic</a>
5929 </li></ul>
5931 !! end
5932 ### Note: Above tests excludes the "{{NUMBEROFADMINS}}" magic word because it generates a MySQL error when included.
5934 !! test
5935 Gallery
5936 !! input
5937 <gallery>
5938 image1.png |
5939 image2.gif|||||
5941 image3|
5942 image4    |300px| centre
5943  image5.svg| http://///////
5944 [[x|xx]]]]
5945 * image6
5946 </gallery>
5947 !! result
5948 <table class="gallery" cellspacing="0" cellpadding="0">
5949         <tr>
5950                 <td><div class="gallerybox" style="width: 155px;">
5951                         <div style="height: 152px;">Image1.png</div>
5952                         <div class="gallerytext">
5953                         </div>
5954                 </div></td>
5955                 <td><div class="gallerybox" style="width: 155px;">
5956                         <div style="height: 152px;">Image2.gif</div>
5957                         <div class="gallerytext">
5958 <p>||||
5959 </p>
5960                         </div>
5961                 </div></td>
5962                 <td><div class="gallerybox" style="width: 155px;">
5963                         <div style="height: 152px;">Image3</div>
5964                         <div class="gallerytext">
5965                         </div>
5966                 </div></td>
5967                 <td><div class="gallerybox" style="width: 155px;">
5968                         <div style="height: 152px;">Image4</div>
5969                         <div class="gallerytext">
5970 <p>300px| centre
5971 </p>
5972                         </div>
5973                 </div></td>
5974         </tr>
5975         <tr>
5976                 <td><div class="gallerybox" style="width: 155px;">
5977                         <div style="height: 152px;">Image5.svg</div>
5978                         <div class="gallerytext">
5979 <p><a href="http://///////" class="external free" title="http://///////" rel="nofollow">http://///////</a>
5980 </p>
5981                         </div>
5982                 </div></td>
5983                 <td><div class="gallerybox" style="width: 155px;">
5984                         <div style="height: 152px;">* image6</div>
5985                         <div class="gallerytext">
5986                         </div>
5987                 </div></td>
5988         </tr>
5989 </table>
5991 !! end
5993 !! test
5994 HTML Hex character encoding (spells the word "JavaScript")
5995 !! input
5996 &#x4A;&#x061;&#x0076;&#x00061;&#x000053;&#x0000063;&#114;&#x0000069;&#00000112;&#x0000000074;
5997 !! result
5998 <p>&#x4a;&#x61;&#x76;&#x61;&#x53;&#x63;&#114;&#x69;&#112;&#x74;
5999 </p>
6000 !! end
6002 !! test
6003 __FORCETOC__ override
6004 !! input 
6005 __NEWSECTIONLINK__
6006 __FORCETOC__
6007 !! result
6008 <p><br />
6009 </p>
6010 !! end
6012 !! test
6013 ISBN code coverage
6014 !! input
6015 ISBN  978-0-1234-56&#x20;789
6016 !! result
6017 <p><a href="/index.php?title=Special:Booksources&amp;isbn=9780123456" class="internal">ISBN 978-0-1234-56</a>&#x20;789
6018 </p>
6019 !! end
6021 !! test
6022 ISBN followed by 5 spaces
6023 !! input
6024 ISBN    
6025 !! result
6026 <p>ISBN    
6027 </p>
6028 !! end
6030 !! test
6031 Double ISBN
6032 !! input
6033 ISBN ISBN 1234567890
6034 !! result
6035 <p>ISBN <a href="/index.php?title=Special:Booksources&amp;isbn=1234567890" class="internal">ISBN 1234567890</a>
6036 </p>
6037 !! end
6039 !! test
6040 Double RFC
6041 !! input
6042 RFC RFC 1234
6043 !! result
6044 <p>RFC <a href="http://tools.ietf.org/html/rfc1234" class="external" title="http://tools.ietf.org/html/rfc1234">RFC 1234</a>
6045 </p>
6046 !! end
6048 !! test
6049 Double RFC with a wiki link 
6050 !! input
6051 RFC [[RFC 1234]]
6052 !! result
6053 <p>RFC <a href="/index.php?title=RFC_1234&amp;action=edit" class="new" title="RFC 1234">RFC 1234</a>
6054 </p>
6055 !! end
6057 !! test
6058 RFC code coverage
6059 !! input
6060 RFC   983&#x20;987
6061 !! result
6062 <p><a href="http://tools.ietf.org/html/rfc983" class="external" title="http://tools.ietf.org/html/rfc983">RFC 983</a>&#x20;987
6063 </p>
6064 !! end
6066 !! test
6067 Centre-aligned image
6068 !! input
6069 [[Image:foobar.jpg|centre]]
6070 !! result
6071 <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>
6073 !!end
6075 !! test
6076 None-aligned image
6077 !! input
6078 [[Image:foobar.jpg|none]]
6079 !! result
6080 <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>
6082 !!end
6084 !! test
6085 Width + Height sized image (using px) (height is ignored)
6086 !! input
6087 [[Image:foobar.jpg|640x480px]]
6088 !! result
6089 <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>
6090 </p>
6091 !!end
6093 !! test
6094 Another italics / bold test
6095 !! input
6096  ''' ''x'
6097 !! result
6098 <pre>'<i> </i>x'
6099 </pre>
6100 !!end
6102 # Note the results may be incorrect, as parserTest output included this:
6103 # XML error: Mismatched tag at byte 6120:
6104 # ...<dd> </dt></dl> </dd...
6105 !! test
6106 dt/dd/dl test
6107 !! input
6108 :;;;::
6109 !! result
6110 <dl><dd><dl><dt><dl><dt><dl><dt><dl><dd><dl><dd>
6111 </dd></dl>
6112 </dd></dl>
6113 </dt></dl>
6114 </dt></dl>
6115 </dt></dl>
6116 </dd></dl>
6118 !!end
6121 # Images with the "|" character in external URLs in comment tags; Eats half the comment, leaves unmatched "</a>" tag.
6122 !! test
6123 Images with the "|" character in the comment
6124 !! input
6125 [[image:Foobar.jpg|thumb|An [http://test/?param1=|left|&param2=|x external] URL]]
6126 !! result
6127 <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" style="float:right"><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>
6129 !!end
6131 !! test
6132 [Before] HTML without raw HTML enabled ($wgRawHtml==false)
6133 !! input
6134 <html><script>alert(1);</script></html>
6135 !! result
6136 <p>&lt;html&gt;&lt;script&gt;alert(1);&lt;/script&gt;&lt;/html&gt;
6137 </p>
6138 !! end
6140 !! test
6141 HTML with raw HTML ($wgRawHtml==true)
6142 !! options
6143 rawhtml
6144 !! input
6145 <html><script>alert(1);</script></html>
6146 !! result
6147 <p><script>alert(1);</script>
6148 </p>
6149 !! end
6151 !! test
6152 Parents of subpages, one level up
6153 !! options
6154 subpage title=[[Subpage test/L1/L2/L3]]
6155 !! input
6156 [[../|L2]]
6157 !! result
6158 <p><a href="/index.php?title=Subpage_test/L1/L2&amp;action=edit" class="new" title="Subpage test/L1/L2">L2</a>
6159 </p>
6160 !! end
6163 !! test
6164 Parents of subpages, one level up, not named
6165 !! options
6166 subpage title=[[Subpage test/L1/L2/L3]]
6167 !! input
6168 [[../]]
6169 !! result
6170 <p><a href="/index.php?title=Subpage_test/L1/L2&amp;action=edit" class="new" title="Subpage test/L1/L2">Subpage test/L1/L2</a>
6171 </p>
6172 !! end
6176 !! test
6177 Parents of subpages, two levels up
6178 !! options
6179 disabled
6180 subpage title=[[Subpage test/L1/L2/L3]]
6181 !! input
6182 [[../../|L1]]2
6183 !! result
6184 <p><a href="/index.php?title=Subpage_test/L1&amp;action=edit" class="new" title="Subpage test/L1">L1</a>
6185 </p>
6186 !! end
6189 # Question: should result be "/index.php?title=Subpage_test/L1&amp;action=edit" instead?
6190 !! test
6191 Parents of subpages, two levels up, without trailing slash or name.
6192 !! options
6193 subpage title=[[Subpage test/L1/L2/L3]]
6194 !! input
6195 [[../..]]
6196 !! result
6197 <p><a href="/index.php?title=Subpage_test/L1/L2/..&amp;action=edit" class="new" title="Subpage test/L1">../..</a>
6198 </p>
6199 !! end
6201 # Question: Why should the link text in the above test be "../..", yet in this test the "../.." part is silently dropped?
6202 # Current result: <p><a href="/index.php?title=Subpage_test/L1////&amp;action=edit" class="new" title="Subpage test/L1////">///
6203 !! test
6204 Parents of subpages, two levels up, with lots of extra trailing slashes.
6205 !! options
6206 subpage title=[[Subpage test/L1/L2/L3]]
6207 !! input
6208 [[../../////]]
6209 !! result
6210 <p><a href="/index.php?title=Subpage_test/L1&amp;action=edit" class="new" title="Subpage test/L1">Subpage test/L1</a>
6211 </p>
6212 !! end
6214 !! test
6215 Definition list code coverage
6216 !! input
6217 ; title   : def
6218 ; title : def
6219 ;title: def
6220 !! result
6221 <dl><dt> title  &nbsp;</dt><dd> def
6222 </dd><dt> title&nbsp;</dt><dd> def
6223 </dd><dt>title</dt><dd> def
6224 </dd></dl>
6226 !! end
6228 !! test
6229 Don't fall for the self-closing div
6230 !! input
6231 <div>hello world</div/>
6232 !! result
6233 <div>hello world</div>
6235 !! end
6237 !! test
6238 MSGNW magic word
6239 !! input
6240 {{MSGNW:msg}}
6241 !! result
6242 <p>&#91;&#91;:Template:Msg&#93;&#93;
6243 </p>
6244 !! end
6246 !! test
6247 RAW magic word
6248 !! input
6249 {{RAW:QUERTY}}
6250 !! result
6251 <p><a href="/index.php?title=Template:QUERTY&amp;action=edit" class="new" title="Template:QUERTY">Template:QUERTY</a>
6252 </p>
6253 !! end
6255 # This isn't needed for XHTML conformance, but would be handy as a fallback security measure
6256 !! test
6257 Always escape literal '>' in output, not just after '<'
6258 !! input
6260 !! result
6261 <p>&gt;&lt;&gt;
6262 </p>
6263 !! end
6265 !! test
6266 Template caching
6267 !! input
6268 {{Test}}
6269 {{Test}}
6270 !! result
6271 <p>This is a test template
6272 This is a test template
6273 </p>
6274 !! end
6277 !! article
6278 MediaWiki:Fake
6279 !! text
6280 ==header==
6281 !! endarticle
6283 !! test
6284 Inclusion of !userCanEdit() content
6285 !! input
6286 {{MediaWiki:Fake}}
6287 !! result
6288 <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>
6290 !! end
6293 !! test
6294 Out-of-order TOC heading levels
6295 !! input
6296 ==2==
6297 ======6======
6298 ===3===
6300 =====5=====
6301 ==2==
6302 !! result
6303 <table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Contents</h2></div>
6304 <ul>
6305 <li class="toclevel-1"><a href="#2"><span class="tocnumber">1</span> <span class="toctext">2</span></a>
6306 <ul>
6307 <li class="toclevel-2"><a href="#6"><span class="tocnumber">1.1</span> <span class="toctext">6</span></a></li>
6308 <li class="toclevel-2"><a href="#3"><span class="tocnumber">1.2</span> <span class="toctext">3</span></a></li>
6309 </ul>
6310 </li>
6311 <li class="toclevel-1"><a href="#1_7"><span class="tocnumber">2</span> <span class="toctext">1</span></a>
6312 <ul>
6313 <li class="toclevel-2"><a href="#5"><span class="tocnumber">2.1</span> <span class="toctext">5</span></a></li>
6314 <li class="toclevel-2"><a href="#2_4"><span class="tocnumber">2.2</span> <span class="toctext">2</span></a></li>
6315 </ul>
6316 </li>
6317 </ul>
6318 </td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } </script>
6319 <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>
6320 <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>
6321 <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>
6322 <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>
6323 <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>
6324 <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>
6326 !! end
6329 !! test
6330 ISBN with a dummy number
6331 !! input
6332 ISBN ---
6333 !! result
6334 <p>ISBN ---
6335 </p>
6336 !! end
6339 !! test
6340 ISBN with space-delimited number
6341 !! input
6342 ISBN 92 9017 032 8
6343 !! result
6344 <p><a href="/index.php?title=Special:Booksources&amp;isbn=9290170328" class="internal">ISBN 92 9017 032 8</a>
6345 </p>
6346 !! end
6349 !! test
6350 ISBN with multiple spaces, no number
6351 !! input
6352 ISBN  foo
6353 !! result
6354 <p>ISBN  foo
6355 </p>
6356 !! end
6359 !! test
6360 ISBN length
6361 !! input
6362 ISBN 123456789
6364 ISBN 1234567890
6366 ISBN 12345678901
6367 !! result
6368 <p>ISBN 123456789
6369 </p><p><a href="/index.php?title=Special:Booksources&amp;isbn=1234567890" class="internal">ISBN 1234567890</a>
6370 </p><p>ISBN 12345678901
6371 </p>
6372 !! end
6375 !! test
6376 ISBN with trailing year (bug 8110)
6377 !! input
6378 ISBN 1-234-56789-0 - 2006
6380 ISBN 1 234 56789 0 - 2006
6381 !! result
6382 <p><a href="/index.php?title=Special:Booksources&amp;isbn=1234567890" class="internal">ISBN 1-234-56789-0</a> - 2006
6383 </p><p><a href="/index.php?title=Special:Booksources&amp;isbn=1234567890" class="internal">ISBN 1 234 56789 0</a> - 2006
6384 </p>
6385 !! end
6388 !! test
6389 Pages in namespace (Magic word disabled currently)
6390 !! input
6391 {{PAGESINNAMESPACE:}}
6392 !! result
6394 !! end
6397 !! test
6398 anchorencode
6399 !! input
6400 {{anchorencode:foo bar©#%n}}
6401 !! result
6402 <p>foo_bar.C2.A9.23.25n
6403 </p>
6404 !! end
6407 !! test
6408 Bug 8293: Use of center tag ruins paragraph formatting
6409 !! input
6410 <center>
6412 </center>
6416  baz
6417 !! result
6418 <center>
6419 <p>foo
6420 </p>
6421 </center>
6422 <p>bar
6423 </p>
6424 <pre>baz
6425 </pre>
6426 !! end
6430 ### Language variants related tests
6432 !! test
6433 Self-link in language variants
6434 !! options
6435 title=[[Dunav]] language=sr
6436 !! input
6437 Both [[Dunav]] and [[Дунав]] are names for this river.
6438 !! result
6439 <p>Both <strong class="selflink">Dunav</strong> and <strong class="selflink">Дунав</strong> are names for this river.
6440 </p>
6441 !!end
6444 !! test
6445 Link to pages in language variants
6446 !! options
6447 language=sr
6448 !! input
6449 Main Page can be written as [[Маин Паге]]
6450 !! result
6451 <p>Main Page can be written as <a href="/wiki/Main_Page" title="Main Page">Маин Паге</a>
6452 </p>
6453 !!end
6456 !! test
6457 Multiple links to pages in language variants
6458 !! options
6459 language=sr
6460 !! input
6461 [[Main Page]] can be written as [[Маин Паге]] same as [[Маин Паге]].
6462 !! result
6463 <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>.
6464 </p>
6465 !!end
6468 !! test
6469 Simple template in language variants
6470 !! options
6471 language=sr
6472 !! input
6473 {{тест}}
6474 !! result
6475 <p>This is a test template
6476 </p>
6477 !! end
6480 !! test
6481 Template with explicit namespace in language variants
6482 !! options
6483 language=sr
6484 !! input
6485 {{Template:тест}}
6486 !! result
6487 <p>This is a test template
6488 </p>
6489 !! end
6492 !! test
6493 Basic test for template parameter in language variants
6494 !! options
6495 language=sr
6496 !! input
6497 {{парамтест|param=foo}}
6498 !! result
6499 <p>This is a test template with parameter foo
6500 </p>
6501 !! end
6504 !! test
6505 Simple category in language variants
6506 !! options
6507 language=sr cat
6508 !! input
6509 [[:Category:МедиаWики Усер'с Гуиде]]
6510 !! result
6511 <a href="/wiki/Category:MediaWiki_User%27s_Guide" title="Category:MediaWiki User's Guide">MediaWiki User's Guide</a>
6512 !! end
6515 !! test
6516 Stripping -{}- tags (language variants)
6517 !! options
6518 language=sr
6519 !! input
6520 Latin proverb: -{Ne nuntium necare}-
6521 !! result
6522 <p>Latin proverb: Ne nuntium necare
6523 </p>
6524 !! end
6527 !! test
6528 Prevent conversion with -{}- tags (language variants)
6529 !! options
6530 language=sr variant=sr-ec
6531 !! input
6532 Latinski: -{Ne nuntium necare}-
6533 !! result
6534 <p>Латински: Ne nuntium necare
6535 </p>
6536 !! end
6539 !! test
6540 Prevent conversion of text with -{}- tags (language variants)
6541 !! options
6542 language=sr variant=sr-ec
6543 !! input
6544 Latinski: -{Ne nuntium necare}-
6545 !! result
6546 <p>Латински: Ne nuntium necare
6547 </p>
6548 !! end
6551 !! test
6552 Prevent conversion of links with -{}- tags (language variants)
6553 !! options
6554 language=sr variant=sr-ec
6555 !! input
6556 -{[[Main Page]]}-
6557 !! result
6558 <p><a href="/index.php?title=Main_Page&amp;variant=sr-ec" title="Main Page">Main Page</a>
6559 </p>
6560 !! end
6563 !! test
6564 -{}- tags within headlines (within html for parserConvert())
6565 !! options
6566 language=sr variant=sr-ec
6567 !! input
6568 == -{Naslov}- ==
6569 !! result
6570 <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>
6572 !! end
6575 !! test
6576 Explicit definition of language variant alternatives
6577 !! options
6578 language=zh variant=zh-tw
6579 !! input
6580 -{zh:China;zh-tw:Taiwan}-, not China
6581 !! result
6582 <p>Taiwan, not China
6583 </p>
6584 !! end
6587 !! test
6588 Adding explicit session-wise language variant mapping (A flag)
6589 !! options
6590 language=zh variant=zh-tw
6591 !! input
6592 -{A|zh:China;zh-tw:Taiwan}- is China
6593 !! result
6594 <p>Taiwan is Taiwan
6595 </p>
6596 !! end
6599 !! test
6600 Adding explicit conversion rule for title (T flag)
6601 !! options
6602 language=zh variant=zh-tw
6603 !! input
6604 Should be stripped-{T|zh:China;zh-tw:Taiwan}-!
6605 !! result
6606 <p>Should be stripped!
6607 </p>
6608 !! end
6611 !! test
6612 Raw output of variant escape tags (R flag)
6613 !! options
6614 language=zh variant=zh-tw
6615 !! input
6616 Raw: -{R|zh:China;zh-tw:Taiwan}-
6617 !! result
6618 <p>Raw: zh:China;zh-tw:Taiwan
6619 </p>
6620 !! end
6623 !! test
6624 Do not convert roman numbers to language variants
6625 !! options
6626 language=sr variant=sr-ec
6627 !! input
6628 Fridrih IV je car.
6629 !! result
6630 <p>Фридрих IV је цар.
6631 </p>
6632 !! end
6634 !!article 
6635 Template:Bullet
6636 !!text
6637 * Bar
6638 !!endarticle
6640 !! test
6641 Bug 529: Uncovered bullet
6642 !! input
6643 * Foo {{bullet}}
6644 !! result
6645 <ul><li> Foo 
6646 </li><li> Bar
6647 </li></ul>
6649 !! end
6651 !! test
6652 Bug 529: Uncovered table already at line-start
6653 !! input
6656 {{table}}
6658 !! result
6659 <p>x
6660 </p>
6661 <table>
6662 <tr>
6663 <td> 1 </td><td> 2
6664 </td></tr>
6665 <tr>
6666 <td> 3 </td><td> 4
6667 </td></tr></table>
6668 <p>y
6669 </p>
6670 !! end
6672 !! test
6673 Bug 529: Uncovered bullet in parser function result
6674 !! input
6675 * Foo {{lc:{{bullet}} }}
6676 !! result
6677 <ul><li> Foo 
6678 </li><li> bar
6679 </li></ul>
6681 !! end
6683 !! test
6684 Bug 5678: Double-parsed template argument
6685 !! input
6686 {{lc:{{{1}}}|hello}}
6687 !! result
6688 <p>{{{1}}}
6689 </p>
6690 !! end
6692 !! test
6693 Bug 5678: Double-parsed template invocation
6694 !! input
6695 {{lc:{{paramtest {{!}} param = hello }} }}
6696 !! result
6697 <p>{{paramtest | param = hello }}
6698 </p>
6699 !! end
6701 !! test
6702 Morwen/13: Unclosed link followed by heading
6703 !! input
6704 [[link
6705 ==heading==
6706 !! result
6707 <p>[[link
6708 </p>
6709 <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>
6711 !! end
6713 !! test
6714 HHP2.1: Heuristics for headings in preprocessor parenthetical structures
6715 !! input
6716 {{foo|
6717 =heading=
6718 !! result
6719 <p>{{foo|
6720 </p>
6721 <a name="heading"></a><h1> <span class="mw-headline">heading</span></h1>
6723 !! end
6725 !! test
6726 HHP2.2: Heuristics for headings in preprocessor parenthetical structures
6727 !! input
6728 {{foo|
6729 ==heading==
6730 !! result
6731 <p>{{foo|
6732 </p>
6733 <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>
6735 !! end
6737 !! test
6738 Tildes in comments
6739 !! options
6741 !! input
6742 <!-- ~~~~ -->
6743 !! result
6744 <!-- ~~~~ -->
6745 !! end
6751 TODO:
6752 more images
6753 more tables
6754 math
6755 character entities
6756 and much more
6757 Try for 100% code coverage