1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
|
require 'runit/testcase'
require 'amrita/format'
require 'amrita/node_expand'
require 'amrita/parser'
$print_result = false
class TestFormat < RUNIT::TestCase
include Amrita
Html1 = <<-END
<html>
<body>
<h1 id="title">title will be inserted here</h1>
<p id="body">body text will be inserted here</p>
</body>
</html>
END
XHtml1 = <<-END
<?XML version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>xhtml sample</title>
</head>
<body>
<h1 id="title">title</h1>
<p id="body">body text</p>
<hr />
</body>
</html>
END
def test_formatter
ret = ""
f = Formatter.new(ret)
assert_equal('x="1"', f.format_attrs(a(:x, 1)))
assert_equal('x="1" y="2"', f.format_attrs(a(:x, 1, :y, 2)))
e = e(:abc,a(:x, 1, :y, 2))
assert_equal('<abc x="1" y="2">', f.format_start_tag(e))
assert_equal('</abc>', f.format_end_tag(e))
assert_equal('<abc x="1" y="2">', f.format_single_tag(e))
f.asxml = true
assert_equal('<abc x="1" y="2" />', f.format_single_tag(e))
end
def test_asisformatter
tmpl = HtmlParser.parse_text Html1
ret = ""
f = AsIsFormatter.new(ret)
f.format(tmpl)
assert_equal(Html1, ret)
tmpl = HtmlParser.parse_text XHtml1
ret = ""
f = AsIsFormatter.new(ret)
f.asxml = true
f.format(tmpl)
assert_equal(XHtml1, ret)
end
def test_singlelineformatter
tmpl = HtmlParser.parse_text Html1
ret = ""
f = SingleLineFormatter.new(ret)
f.format(tmpl)
assert_equal('<html> <body> <h1 id="title">title will be inserted here</h1> <p id="body">body text will be inserted here</p> </body> </html> ', ret)
end
def test_prettyprintformatter
tmpl = HtmlParser.parse_text Html1
ret = ""
f = PrettyPrintFormatter.new(ret)
f.format(tmpl)
assert_equal(<<END, ret)
<html>
<body>
<h1 id="title">title will be inserted here</h1>
<p id="body">body text will be inserted here</p>
</body>
</html>
END
end
def test_attr_filter
tmpl = HtmlParser.parse_text '<p __id="aaaa" klass="xyz">xxxxx</p>'
ret = ""
f = SingleLineFormatter.new(ret)
f.set_attr_filter(:__id=>:id, :klass=>:class)
assert_equal('id="xxx"', f.format_attrs(a(:__id=>"xxx")))
f.format(tmpl)
assert_equal('<p id="aaaa" class="xyz">xxxxx</p>', ret)
end
def w3m(str)
%x[echo #{str.inspect} | w3m -T text/html -dump].chomp
end
def test_sanitizer
assert_equal("abc", Sanitizer::sanitize_text("abc"))
assert_equal("efg", Sanitizer::sanitize_attribute_value("efg"))
assert_equal("hij", Sanitizer::sanitize_url("hij"))
assert_equal("<abc>", Sanitizer::sanitize_text("<abc>"))
assert_equal("<abc>", w3m(Sanitizer::sanitize_text("<abc>")))
assert_equal("a & b", Sanitizer::sanitize_text("a & b"))
assert_equal("a & b", w3m(Sanitizer::sanitize_text("a & b")))
assert_equal('<x a="xyz">'</x>',
Sanitizer::sanitize_attribute_value('<x a="xyz">\'</x>'))
assert_equal('<x a="xyz">\'</x>', w3m(Sanitizer::sanitize_attribute_value('<x a="xyz">\'</x>')))
assert_equal('http://www.ruby-lang.org/', Sanitizer::sanitize_url("http://www.ruby-lang.org/"))
assert_equal('https://www.ruby-lang.org/', Sanitizer::sanitize_url("https://www.ruby-lang.org/"))
assert_equal('ftp://www.ruby-lang.org/', Sanitizer::sanitize_url("ftp://www.ruby-lang.org/"))
assert_equal('http://www.ruby-lang.org/#', Sanitizer::sanitize_url("http://www.ruby-lang.org/#"))
assert_equal(nil, Sanitizer::sanitize_url("javascript://www.ruby-lang.org/"))
assert_equal(nil, Sanitizer::sanitize_url("about://www.ruby-lang.org/"))
assert_equal(''&', Sanitizer::sanitize_url("'&"))
assert_equal("'aaa'&'bbb'", w3m(Sanitizer::sanitize_url("'aaa'&'bbb'")))
nbsp_str= 'a b'
assert_equal(nbsp_str, nbsp_str.amrita_sanitize)
assert_equal(nbsp_str, nbsp_str.amrita_sanitize_as_attribute)
assert_equal('a b', w3m(nbsp_str.amrita_sanitize))
end
def test_sanitizer2
tmpl = HtmlParser.parse_text '<a id="aaaa">xx</a>'
xss_atack1 = %q[http://www.ruby-lang.org/"><script>alert('hello')</script>] #"
s = format_inline({
:aaaa=>a(:href=>xss_atack1) { "<x>&" },
}) { tmpl }
assert_equal('<a href=""><x>&</a>', s)
xss_atack2 = %q[javascript:alert('hello')]
s = format_inline({
:aaaa=>a(:href=>xss_atack2) { "xxxx" },
}) { tmpl }
assert_equal('<a href="">xxxx</a>', s)
tmpl_img = HtmlParser.parse_text '<img id="aaaa">'
s = format_inline({
:aaaa=>a(:src=>xss_atack1)
}) { tmpl_img }
assert_equal('<img src="">', s)
s = format_inline({
:aaaa=>a(:src=>xss_atack2)
}) { tmpl_img }
assert_equal('<img src="">', s)
end
def test_sanitizer3
tmpl = HtmlParser.parse_text '<x id="aaaa">xxx</x>'
s = format_inline( { :aaaa=> '<yyy>' }) { tmpl }
assert_equal('<x><yyy></x>', s)
# disabel sanitizer by noescape
s = format_inline( { :aaaa=> noescape { '<yyy>' } }) { tmpl }
assert_equal('<x><yyy></x>', s)
x = '<x a="xyz">\'</x>'
assert_equal('<x a="xyz">'</x>', x.amrita_sanitize_as_attribute)
t = HtmlParser.parse_text x.amrita_sanitize_as_attribute
assert_equal(x, noescape { t }.to_s)
assert_equal(x.amrita_sanitize, format_inline { t } )
s = format_inline { e(:xxx) { x } }
t = HtmlParser.parse_text s
assert_equal(e(:xxx) { x }, t)
end
def test_sanitizedstring
s1 = "<xxx>"
assert_equal("<xxx>", format_inline{s1})
assert_equal("<xxx>", format_inline{SanitizedString[s1]})
end
def test_preformat1
tmpl = HtmlParser.parse_text "<p>xxxx</p>"
f = AsIsFormatter.new(nil)
r = tmpl.pre_format(f).result
assert(r.kind_of?(Amrita::SanitizedString))
assert_equal('<p>xxxx</p>', r)
tmpl = HtmlParser.parse_text "<p id=x>xxxx</p>"
f = AsIsFormatter.new(nil)
r = tmpl.pre_format(f).result
assert_equal(Element, r.type)
assert_equal('e(:p,a(:id, "x")) { "xxxx" }', r.to_ruby)
tmpl = HtmlParser.parse_text "<p>xxxx</p><p id=x>yyyy</p>"
f = AsIsFormatter.new(nil)
r = tmpl.pre_format(f).result
assert_equal(Array, r.type)
assert_equal('<p>xxxx</p>', r[0])
assert_equal('e(:p,a(:id, "x")) { "yyyy" }', r[1].to_ruby)
tmpl = HtmlParser.parse_text "<p id=x>xxxx</p><p>yyyy</p>"
f = AsIsFormatter.new(nil)
r = tmpl.pre_format(f).result
assert_equal(Array, r.type)
assert_equal('e(:p,a(:id, "x")) { "xxxx" }', r[0].to_ruby)
assert_equal('<p>yyyy</p>', r[1])
tmpl = HtmlParser.parse_text "xxx<em>yyy</em>zzz"
f = AsIsFormatter.new(nil)
r = tmpl.pre_format(f).result
assert_equal(Amrita::SanitizedString, r.type)
assert_equal('xxx<em>yyy</em>zzz', r)
tmpl = HtmlParser.parse_text "<p id=x>xxx<em>yyy</em>zzz</p>"
f = AsIsFormatter.new(nil)
r = tmpl.pre_format(f).result
assert_equal(Element, r.type)
assert_equal('xxx<em>yyy</em>zzz', r.body.to_s)
end
def check_preformat(formatter, node, data=nil)
ans = ""
if data
formatter.format(node.expand(data), ans)
else
formatter.format(node, ans)
end
result = ""
pre = node.pre_format(formatter).result_as_top
if data
formatter.format(pre.expand(data), result)
else
formatter.format(pre, result)
end
if $print_result
puts "------------------------------------"
print result
puts "\n------------------------------------"
end
assert_equal(ans, result)
# pre_formating nodes already pre_formatted should make same result
result2 = ""
pre = pre.pre_format(formatter).result_as_top
formatter.format(pre, result2)
end
def test_preformat2
tmpl = HtmlParser.parse_text Html1
check_preformat(AsIsFormatter.new, tmpl)
check_preformat(SingleLineFormatter.new, tmpl)
assert_exception(RuntimeError) { check_preformat(PrettyPrintFormatter.new, tmpl) }
end
def test_preformat3
tmpl = HtmlParser.parse_text Html1
data = { :title=>"title", :body=>"pre_format test" }
check_preformat(AsIsFormatter.new, tmpl, data)
check_preformat(SingleLineFormatter.new, tmpl)
end
def test_preformat_with_expand_attr
f = AsIsFormatter.new
tmpl = HtmlParser.parse_text '<a href="@xxx">yyy</a>'
pre = tmpl.pre_format(f).result
assert_equal(Amrita::SanitizedString, pre.type)
assert_equal('<a href="@xxx">yyy</a>', pre)
pre = tmpl.pre_format(f, true).result
assert_equal(Amrita::Element, pre.type)
assert_equal(e(:a,a(:href, "@xxx")) { "yyy" }, pre)
data = { :xxx=>"http://www.ruby-lang.org/" }
assert_equal(e(:a,a(:href, "@xxx")) { "yyy" }, pre.expand(data))
assert_equal(tmpl.expand(data), pre.expand(data))
context = Amrita::ExpandContext.new
context.expand_attr = true
assert_equal(e(:a,a(:href, "http://www.ruby-lang.org/")) { "yyy" }, pre.expand(data, context))
assert_equal(tmpl.expand(data, context), pre.expand(data, context))
end
def test_taginfo
tmpl = HtmlParser.parse_text Html1
ret = ""
f = PrettyPrintFormatter.new(ret)
f.format(tmpl)
assert_equal(<<END, ret)
<html>
<body>
<h1 id="title">title will be inserted here</h1>
<p id="body">body text will be inserted here</p>
</body>
</html>
END
taginfo = HtmlTagInfo.new
taginfo[:p].pptype = 1
ret = ""
f = PrettyPrintFormatter.new(ret,taginfo)
f.format(tmpl)
assert_equal(<<END, ret)
<html>
<body>
<h1 id="title">title will be inserted here</h1>
<p id="body">body text will be inserted here
</p>
</body>
</html>
END
taginfo = TagInfo.new
taginfo[:html].pptype = 1
taginfo[:body].pptype = 2
ret = ""
f = PrettyPrintFormatter.new(ret,taginfo)
f.format(tmpl)
assert_equal(<<END, ret)
<html>
<body> <h1 id="title">title will be inserted here</h1> <p id="body">body text will be inserted here</p> </body>
</html>
END
end
end
#--- main program ----
if __FILE__ == $0
require 'runit/cui/testrunner'
if ARGV.size == 0
RUNIT::CUI::TestRunner.run(TestFormat.suite)
else
ARGV.each do |method|
RUNIT::CUI::TestRunner.run(TestFormat.new(method))
end
end
end
|