lib/core/stream: LineIterator use CachedIterator
[nit.git] / lib / markdown2 / tests / test_commonmark_raw_html.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 module test_commonmark_raw_html is test
16
17 import test_markdown
18
19 class TestCommonmarkRawHTML
20 super TestMarkdownHtml
21 test
22
23 fun test587 is test do
24 var md = """<a><bab><c2c>\n"""
25 var html = """<p><a><bab><c2c></p>\n"""
26 assert md_to_html(md) == html
27 end
28
29 fun test588 is test do
30 var md = """<a/><b2/>\n"""
31 var html = """<p><a/><b2/></p>\n"""
32 assert md_to_html(md) == html
33 end
34
35 fun test589 is test do
36 var md = """<a /><b2\ndata="foo" >\n"""
37 var html = """<p><a /><b2\ndata="foo" ></p>\n"""
38 assert md_to_html(md) == html
39 end
40
41 fun test590 is test do
42 var md = """<a foo="bar" bam = 'baz <em>"</em>'\n_boolean zoop:33=zoop:33 />\n"""
43 var html = """<p><a foo="bar" bam = 'baz <em>"</em>'\n_boolean zoop:33=zoop:33 /></p>\n"""
44 assert md_to_html(md) == html
45 end
46
47 fun test591 is test do
48 var md = """Foo <responsive-image src="foo.jpg" />\n"""
49 var html = """<p>Foo <responsive-image src="foo.jpg" /></p>\n"""
50 assert md_to_html(md) == html
51 end
52
53 fun test592 is test do
54 var md = """<33> <__>\n"""
55 var html = """<p>&lt;33&gt; &lt;__&gt;</p>\n"""
56 assert md_to_html(md) == html
57 end
58
59 fun test593 is test do
60 var md = """<a h*#ref="hi">\n"""
61 var html = """<p>&lt;a h*#ref=&quot;hi&quot;&gt;</p>\n"""
62 assert md_to_html(md) == html
63 end
64
65 fun test594 is test do
66 var md = """<a href="hi'> <a href=hi'>\n"""
67 var html = """<p>&lt;a href=&quot;hi'&gt; &lt;a href=hi'&gt;</p>\n"""
68 assert md_to_html(md) == html
69 end
70
71 fun test595 is test do
72 var md = """< a><\nfoo><bar/ >\n<foo bar=baz\nbim!bop />\n"""
73 var html = """<p>&lt; a&gt;&lt;\nfoo&gt;&lt;bar/ &gt;\n&lt;foo bar=baz\nbim!bop /&gt;</p>\n"""
74 assert md_to_html(md) == html
75 end
76
77 fun test596 is test do
78 var md = """<a href='bar'title=title>\n"""
79 var html = """<p>&lt;a href='bar'title=title&gt;</p>\n"""
80 assert md_to_html(md) == html
81 end
82
83 fun test597 is test do
84 var md = """</a></foo >\n"""
85 var html = """<p></a></foo ></p>\n"""
86 assert md_to_html(md) == html
87 end
88
89 fun test598 is test do
90 var md = """</a href="foo">\n"""
91 var html = """<p>&lt;/a href=&quot;foo&quot;&gt;</p>\n"""
92 assert md_to_html(md) == html
93 end
94
95 fun test599 is test do
96 var md = """foo <!-- this is a\ncomment - with hyphen -->\n"""
97 var html = """<p>foo <!-- this is a\ncomment - with hyphen --></p>\n"""
98 assert md_to_html(md) == html
99 end
100
101 fun test600 is test do
102 var md = """foo <!-- not a comment -- two hyphens -->\n"""
103 var html = """<p>foo &lt;!-- not a comment -- two hyphens --&gt;</p>\n"""
104 assert md_to_html(md) == html
105 end
106
107 fun test601 is test do
108 var md = """foo <!--> foo -->\n\nfoo <!-- foo--->\n"""
109 var html = """<p>foo &lt;!--&gt; foo --&gt;</p>\n<p>foo &lt;!-- foo---&gt;</p>\n"""
110 assert md_to_html(md) == html
111 end
112
113 fun test602 is test do
114 var md = """foo <?php echo $a; ?>\n"""
115 var html = """<p>foo <?php echo $a; ?></p>\n"""
116 assert md_to_html(md) == html
117 end
118
119 fun test603 is test do
120 var md = """foo <!ELEMENT br EMPTY>\n"""
121 var html = """<p>foo <!ELEMENT br EMPTY></p>\n"""
122 assert md_to_html(md) == html
123 end
124
125 fun test604 is test do
126 var md = """foo <![CDATA[>&<]]>\n"""
127 var html = """<p>foo <![CDATA[>&<]]></p>\n"""
128 assert md_to_html(md) == html
129 end
130
131 fun test605 is test do
132 var md = """foo <a href="&ouml;">\n"""
133 var html = """<p>foo <a href="&ouml;"></p>\n"""
134 assert md_to_html(md) == html
135 end
136
137 fun test606 is test do
138 var md = """foo <a href="\\*">\n"""
139 var html = """<p>foo <a href="\\*"></p>\n"""
140 assert md_to_html(md) == html
141 end
142
143 fun test607 is test do
144 var md = """<a href="\\"">\n"""
145 var html = """<p>&lt;a href=&quot;&quot;&quot;&gt;</p>\n"""
146 assert md_to_html(md) == html
147 end
148 end