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 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
|
require 'runit/testcase'
require 'amrita/template.rb'
class TestTemplate < RUNIT::TestCase
include Amrita
include HtmlCompiler
def test_template_text_direct1
html = '<p id="a">sample_text</p>'
t = TemplateText.new(html)
result = ""
t.expand(result, { :a=>"aaa" })
assert_equal('<p>aaa</p>', result)
end
def test_template_text_direct2
html = '<ul><li id="list">list</li>'
t = TemplateText.new(html)
result = ""
data = { :list => [1, 2, 3] }
t.expand(result, data)
assert_equal('<ul><li>1</li><li>2</li><li>3</li></ul>', result)
end
def test_template_compile1
html = '<p id="a">sample_text</p>'
t = TemplateText.new(html)
t.use_compiler = true
result = ""
#t.set_hint(HashData[:a=>ScalarData])
t.expand(result, { :a=>"aaa" })
#puts t.src
assert_equal('<p>aaa</p>', result)
end
def test_template_text_compile2
html = '<ul><li id="list">list</li>'
t = TemplateText.new(html)
t.use_compiler = true
result = ""
data = { :list => [1, 2, 3] }
t.set_hint(HashData[:list=>ArrayData[ScalarData]])
t.expand(result, data)
assert_equal('<ul><li>1</li><li>2</li><li>3</li></ul>', result)
end
def test_template_autocompile1
html = '<p id="a">sample_text</p>'
t = TemplateText.new(html)
t.use_compiler = true
result = ""
data = { :a=>"aaa" }
t.set_hint_by_sample_data(data)
t.expand(result, data)
#puts t.src
assert_equal('<p>aaa</p>', result)
end
def test_template_text_autocompile2
html = '<ul><li id="list">list</li>'
t = TemplateText.new(html)
t.use_compiler = true
result = ""
data = { :list => [1, 2, 3] }
t.set_hint_by_sample_data(data)
t.expand(result, data)
assert_equal('<ul><li>1</li><li>2</li><li>3</li></ul>', result)
end
def test_template_text_autocompile3
html = '<ul><li id="list">list</li>'
t = TemplateText.new(html)
t.use_compiler = true
result = ""
data = { :list => [1, 2, 3] }
t.set_hint_by_sample_data(data)
t.expand(result, data)
assert_equal('<ul><li>1</li><li>2</li><li>3</li></ul>', result.gsub("\n",""))
end
def test_template_file1
tempfile = "/tmp/amritatest#{$$}"
File.open(tempfile, "w") { |f| f.print <<-END }
<p id="a">sample_text</p>
END
t = TemplateFile.new(tempfile)
assert_equal(true, t.need_update?)
result = ""
t.expand(result, { :a=>"aaa" })
sleep 1.1 # for test of need_update?
assert_equal(" <p>aaa</p>\n", result)
result = ""
t.expand(result, { :a=>"111" })
assert_equal(false, t.need_update?)
assert_equal(" <p>111</p>\n", result)
File.open(tempfile, "w") { |f| f.print <<-END }
<p id="a">sample_text</p>xxx
END
result = ""
assert_equal(true, t.need_update?)
t.expand(result, { :a=>"aaa" })
assert_equal(" <p>aaa</p>xxx\n", result)
assert_equal(false, t.need_update?)
ensure
#File.open(tempfile) { |f| puts f.read }
File::unlink(tempfile)
end
def test_template_file2
tempfile = "/tmp/amritatest#{$$}"
File.open(tempfile, "w") { |f| f.print <<-END }
<p id="a">sample_text</p>
END
t = TemplateFile.new(tempfile)
t.xml = true
result = ""
t.expand(result, { :a=>"aaa" })
assert_equal("<p>aaa</p>", result)
ensure
File::unlink(tempfile)
end
def test_keep_id
html = '<p id="a">sample_text</p>'
t = TemplateText.new(html)
t.keep_id = true
result = ""
t.expand(result, { :a=>"aaa" })
assert_equal('<p id="a">aaa</p>', result)
result = ""
t.set_hint(HashData[:a=>ScalarData])
t.expand(result, { :a=>"aaa" })
#puts t.src
assert_equal('<p id="a">aaa</p>', result)
end
def test_escaped_id
html = '<p id="a" __id="realid">sample_text</p>'
t = TemplateText.new(html)
t.escaped_id = :__id
result = ""
t.expand(result, { :a=>"aaa" })
assert_equal('<p id="realid">aaa</p>', result)
result = ""
t.set_hint(HashData[:a=>ScalarData])
t.expand(result, { :a=>"aaa" })
#puts t.src
assert_equal('<p id="realid">aaa</p>', result)
end
def test_amrita_id
html = '<p amrita_id="a" id="realid">sample_text</p>'
t = TemplateText.new(html)
t.amrita_id = :amrita_id
result = ""
t.expand(result, { :a=>"aaa" })
assert_equal('<p id="realid">aaa</p>', result)
result = ""
t.set_hint(HashData[:a=>ScalarData])
t.expand(result, { :a=>"aaa" })
#puts t.src
assert_equal('<p id="realid">aaa</p>', result)
end
def test_amrita_id2
html = '<p amrita_id="a" id="realid">sample_text</p><a href="xxx">yyy</a>'
t = TemplateText.new(html)
t.amrita_id = :amrita_id
result = ""
t.expand(result, { :a=>"aaa" })
assert_equal('<p id="realid">aaa</p><a href="xxx">yyy</a>', result)
result = ""
t.set_hint(HashData[:a=>ScalarData])
t.expand(result, { :a=>"aaa" })
#puts t.src
assert_equal('<p id="realid">aaa</p><a href="xxx">yyy</a>', result)
end
def test_sanitize
html = '<p id="a">sample_text</p>'
t = TemplateText.new(html)
result = ""
t.expand(result, { :a=>"<xxx>&<yyy>" })
assert_equal('<p><xxx>&<yyy></p>', result)
result = ""
t.expand(result, { :a=>noescape { "<xxx>&<yyy>" } })
#puts t.src
assert_equal('<p><xxx>&<yyy></p>', result)
result = ""
t.pre_format = true
t.expand(result, { :a=>noescape { "<xxx>&<yyy>" } })
#puts t.src
assert_equal('<p><xxx>&<yyy></p>', result)
result = ""
t.prettyprint = true
t.expand(result, { :a=>noescape { "<xxx>&<yyy>" } })
#puts t.src
assert_equal("\n<p><xxx>&<yyy></p>\n", result)
end
def test_sanitize2
html = '<p id="a">sample_text</p>'
t = TemplateText.new(html)
result = ""
t.expand(result, { :a=>"<xxx>&<yyy>" })
assert_equal('<p><xxx>&<yyy></p>', result)
t = TemplateText.new(html)
result = ""
t.prettyprint = true
t.expand(result, { :a=>"<xxx>&<yyy>" })
assert_equal("\n<p><xxx>&<yyy></p>\n", result)
t = TemplateText.new(html)
result = ""
t.pre_format = true
t.expand(result, { :a=>"<xxx>&<yyy>" })
assert_equal('<p><xxx>&<yyy></p>', result)
end
def test_template_cache1
require "ftools"
tempfile = "/tmp/amritatest#{$$}"
cachedir = "/tmp/amritacache#{$$}"
File::makedirs(cachedir)
TemplateFileWithCache::set_cache_dir(cachedir)
File.open(tempfile, "w") { |f| f.print <<-END }
<p id="a">sample_text</p>
END
t = TemplateFileWithCache.new(tempfile)
assert_equal(SourceCache, t.cache_manager.type)
t.use_compiler = true
assert_equal(true, t.need_update?)
result = ""
t.expand(result, { :a=>"aaa" })
sleep 1.1 # for test of need_update?
assert_equal(" <p>aaa</p>\n", result)
t = TemplateFileWithCache.new(tempfile)
t.use_compiler = true
result = ""
t.expand(result, { :a=>"aaa" })
sleep 1.1 # for test of need_update?
assert_equal(" <p>aaa</p>\n", result)
File.open(tempfile, "w") { |f| f.print <<-END }
<p id="a">sample_text</p>xxx
END
result = ""
assert_equal(true, t.need_update?)
t.expand(result, { :a=>"aaa" })
assert_equal(" <p>aaa</p>xxx\n", result)
assert_equal(false, t.need_update?)
ensure
#File.open(tempfile) { |f| puts f.read }
File::unlink(tempfile)
system "rm -r #{cachedir}"
end
def test_prettyprint
html = '<body><p id="a">sample_text</p></body>'
t = TemplateText.new(html)
t.prettyprint = true
result = ""
t.expand(result, { :a=>"aaa" })
assert_equal("\n<body>\n <p>aaa</p>\n</body>\n", result)
def t.setup_taginfo
ret = HtmlTagInfo.new
ret[:body].pptype = 3
ret[:p].pptype = 3
ret
end
result = ""
t.expand(result, { :a=>"aaa" })
assert_equal("\n<body><p>aaa</p></body>\n", result)
end
def test_sanitizedstring
html = '<p id="a">sample_text</p>'
t = TemplateText.new(html)
result = ""
t.expand(result, { :a=>"<xxx>" })
assert_equal('<p><xxx></p>', result)
result = ""
t.expand(result, { :a=>SanitizedString["<xxx>"] })
assert_equal('<p><xxx></p>', result)
html = '<p xxx="@aaa">sample_text</p>'
t = TemplateText.new(html)
t.expand_attr = true
result = ""
t.expand(result, { :aaa=>"<xxx>"} )
assert_equal('<p xxx="<xxx>">sample_text</p>', result)
result = ""
t.expand(result, { :aaa=>SanitizedString['"<xxx>"']} )
assert_equal('<p xxx=""<xxx>"">sample_text</p>', result)
end
def test_url_sanitizing
html = '<a href="@a">sample_text</a>'
xss = 'xxx">yyy</a><script>XSS</script><a href="zzz"'
t = TemplateText.new(html)
t.expand_attr = true
result = ""
t.expand(result, { :a=> xss})
assert_equal('<a href="">sample_text</a>', result)
result = ""
t.expand(result, { :a=> SanitizedString[xss]})
assert_equal('<a href="xxx">yyy</a><script>XSS</script><a href="zzz"">sample_text</a>', result)
end
def test_url_sanitizing2
html = '<xmlelement aaa="@a">sample_text</xmlelement>'
xss = 'javascritpt:XSS'
t = TemplateText.new(html)
t.expand_attr = true
result = ""
t.expand(result, { :a=> xss})
assert_equal('<xmlelement aaa="javascritpt:XSS">sample_text</xmlelement>', result)
result = ""
def t.setup_taginfo
ret = TagInfo.new
ret[:xmlelement].set_url_attr(:aaa)
ret
end
t.expand(result, { :a=> xss})
assert_equal('<xmlelement aaa="">sample_text</xmlelement>', result)
result = ""
t.expand(result, { :a=> SanitizedString[xss]})
assert_equal('<xmlelement aaa="javascritpt:XSS">sample_text</xmlelement>', result)
end
def test_xhtml
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">
<!-- comment1 -->
<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>
<!-- comment2 -->
END
t = TemplateText.new xhtml1
def t.setup_template
super
#p @template
end
result = ""
t.expand(result, { :title=>'aaa', :body=>'bbb' })
assert_equal(<<END, result)
<?XML version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- comment1 -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>xhtml sample</title>
</head>
<body>
<h1>aaa</h1>
<p>bbb</p>
<hr>
</body>
</html>
<!-- comment2 -->
END
end
def test_module_cache
c = ModuleCache.new
t = Time.new
m = c.cache("aaa", :module, t) do
ret = Module.new
ret.module_eval <<-END
def self::xxx
123
end
END
ret
end
assert_equal(123, m::xxx)
assert_equal(m, c.get_item(:module, "aaa", nil).contents)
assert_equal(123, c.get_item(:module, "aaa", nil).contents::xxx)
assert_equal(nil, c.get_item(:source, "aaa", nil))
assert_equal(nil, c.get_item(:module, "aaa", 123))
m2 = c.cache("aaa", :module, t) { nil }
assert_equal(m, m2)
assert_equal(123, m2::xxx)
m3 = c.cache("aaa", :module, t+1) { 789 }
assert_equal(789, m3)
end
def test_source_cache
tempdir = "/tmp/amritasrccache#{$$}"
Dir::mkdir tempdir
c = SourceCache.new(tempdir)
t = Time.new - 1
s = c.cache("aaa", :source, t) do
"abcd"
end
assert_equal("abcd", s)
s2 = c.cache("aaa", :source, t) { nil }
assert_equal("abcd", s2)
assert_equal(4321, c.cache("aaa", :source, t+1) { 4321 })
ensure
system "rm -r #{tempdir}"
end
end
#--- main program ----
if __FILE__ == $0
require 'runit/cui/testrunner'
if ARGV.size == 0
RUNIT::CUI::TestRunner.run(TestTemplate.suite)
else
ARGV.each do |method|
RUNIT::CUI::TestRunner.run(TestTemplate.new(method))
end
end
end
|