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
|
# encoding: UTF-8
$: << './test'
require 'test_helper'
class Html2HamlTest < Minitest::Test
def test_empty_render_should_remain_empty
assert_equal '', render('')
end
def test_doctype
assert_equal '!!!', render("<!DOCTYPE html>")
assert_equal '!!! 1.1', render('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">')
assert_equal '!!! Strict', render('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">')
assert_equal '!!! Frameset', render('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">')
assert_equal '!!! Mobile 1.2', render('<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd">')
assert_equal '!!! Basic 1.1', render('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">')
assert_equal '!!!', render('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">')
assert_equal '!!! Strict', render('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">')
assert_equal '!!! Frameset', render('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">')
assert_equal '!!!', render('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">')
end
def test_id_and_class_should_be_removed_from_hash
assert_equal '%span#foo.bar', render('<span id="foo" class="bar"> </span>')
end
def test_no_tag_name_for_div_if_class_or_id_is_present
assert_equal '#foo', render('<div id="foo"> </div>')
assert_equal '.foo', render('<div class="foo"> </div>')
end
def test_multiple_class_names
assert_equal '.foo.bar.baz', render('<div class=" foo bar baz "> </div>')
end
def test_should_have_pretty_attributes
assert_equal('%input{:name => "login", :type => "text"}/',
render('<input type="text" name="login" />'))
assert_equal('%meta{:content => "text/html", "http-equiv" => "Content-Type"}/',
render('<meta http-equiv="Content-Type" content="text/html" />'))
end
def test_should_have_html_style_attributes
assert_equal('%input(name="login" type="text")/',
render('<input type="text" name="login" />', :html_style_attributes => true))
assert_equal('%meta(content="text/html" http-equiv="Content-Type")/',
render('<meta http-equiv="Content-Type" content="text/html" />', :html_style_attributes => true))
end
def test_should_have_ruby_19_hash_style_attributes
assert_equal('%input{name: "login", type: "text"}/',
render('<input type="text" name="login" />', :ruby19_style_attributes => true))
assert_equal('%meta{content: "text/html", "http-equiv" => "Content-Type"}/',
render('<meta http-equiv="Content-Type" content="text/html" />', :ruby19_style_attributes => true))
end
def test_should_have_attributes_without_values
assert_equal('%input{:disabled => "disabled"}/', render('<input disabled>'))
end
def test_class_with_dot_and_hash
assert_equal('%div{:class => "foo.bar"}', render("<div class='foo.bar'></div>"))
assert_equal('%div{:class => "foo#bar"}', render("<div class='foo#bar'></div>"))
assert_equal('.foo.bar{:class => "foo#bar foo.bar"}', render("<div class='foo foo#bar bar foo.bar'></div>"))
end
def test_id_with_dot_and_hash
assert_equal('%div{:id => "foo.bar"}', render("<div id='foo.bar'></div>"))
assert_equal('%div{:id => "foo#bar"}', render("<div id='foo#bar'></div>"))
end
def test_interpolation
assert_equal('Foo \#{bar} baz', render('Foo #{bar} baz'))
end
def test_interpolation_in_attrs
assert_equal('%p{:foo => "\#{bar} baz"}', render('<p foo="#{bar} baz"></p>'))
end
def test_cdata
assert_equal(<<HAML.strip, render(<<HTML))
%p
:cdata
<a foo="bar" baz="bang">
<div id="foo">flop</div>
</a>
HAML
<p><![CDATA[
<a foo="bar" baz="bang">
<div id="foo">flop</div>
</a>
]]></p>
HTML
end
def test_self_closing_tag
assert_equal("%img/", render("<img />"))
end
def test_inline_text
assert_equal("%p foo", render("<p>foo</p>"))
end
def test_inline_comment
assert_equal("/ foo", render("<!-- foo -->"))
assert_equal(<<HAML.strip, render(<<HTML))
/ foo
%p bar
HAML
<!-- foo -->
<p>bar</p>
HTML
end
def test_non_inline_comment
assert_equal(<<HAML.rstrip, render(<<HTML))
/
Foo
Bar
HAML
<!-- Foo
Bar -->
HTML
end
def test_non_inline_text
assert_equal(<<HAML.rstrip, render(<<HTML))
%p
foo
HAML
<p>
foo
</p>
HTML
assert_equal(<<HAML.rstrip, render(<<HTML))
%p
foo
HAML
<p>
foo</p>
HTML
assert_equal(<<HAML.rstrip, render(<<HTML))
%p
foo
HAML
<p>foo
</p>
HTML
end
def test_script_tag
assert_equal(<<HAML.rstrip, render(<<HTML))
:javascript
function foo() {
return "12" & "13";
}
HAML
<script type="text/javascript">
function foo() {
return "12" & "13";
}
</script>
HTML
end
def test_script_tag_with_html_escaped_javascript
assert_equal(<<HAML.rstrip, render(<<HTML))
:javascript
function foo() {
return "12" & "13";
}
HAML
<script type="text/javascript">
function foo() {
return "12" & "13";
}
</script>
HTML
end
def test_script_tag_with_cdata
assert_equal(<<HAML.rstrip, render(<<HTML))
:javascript
function foo() {
return "&";
}
HAML
<script type="text/javascript">
<![CDATA[
function foo() {
return "&";
}
]]>
</script>
HTML
end
def test_pre
assert_equal(<<HAML.rstrip, render(<<HTML))
%pre
:preserve
foo
bar
baz
HAML
<pre>foo
bar
baz</pre>
HTML
end
def test_pre_code
assert_equal(<<HAML.rstrip, render(<<HTML))
%pre
%code
:preserve
foo
bar
baz
HAML
<pre><code>foo
bar
baz</code></pre>
HTML
end
def test_code_without_pre
assert_equal(<<HAML.rstrip, render(<<HTML))
%code
foo
bar
baz
HAML
<code>foo
bar
baz</code>
HTML
end
def test_conditional_comment
assert_equal(<<HAML.rstrip, render(<<HTML))
/[if foo]
bar
baz
HAML
<!--[if foo]>
bar
baz
<![endif]-->
HTML
end
def test_style_to_css_filter
assert_equal(<<HAML.rstrip, render(<<HTML))
:css
foo {
bar: baz;
}
HAML
<style type="text/css">
foo {
bar: baz;
}
</style>
HTML
end
def test_style_to_css_filter_with_following_content
assert_equal(<<HAML.rstrip, render(<<HTML))
%head
:css
foo {
bar: baz;
}
%body Hello
HAML
<head>
<style type="text/css">
foo {
bar: baz;
}
</style>
</head>
<body>Hello</body>
HTML
end
def test_style_to_css_filter_with_no_content
assert_equal(<<HAML.rstrip, render(<<HTML))
:css
HAML
<style type="text/css"> </style>
HTML
assert_equal(<<HAML.rstrip, render(<<HTML))
:css
HAML
<style type="text/css"></style>
HTML
end
def test_filter_with_inconsistent_indentation
assert_equal(<<HAML.rstrip, render(<<HTML))
:css
foo {
badly: indented;
}
HAML
<style type="text/css">
foo {
badly: indented;
}
</style>
HTML
end
def test_inline_conditional_comment
assert_equal(<<HAML.rstrip, render(<<HTML))
/[if foo] bar baz
HAML
<!--[if foo]> bar baz <![endif]-->
HTML
end
def test_minus_in_tag
assert_equal("%p - foo bar -", render("<p>- foo bar -</p>"))
end
def test_equals_in_tag
assert_equal("%p = foo bar =", render("<p>= foo bar =</p>"))
end
def test_hash_in_tag
assert_equal("%p # foo bar #", render("<p># foo bar #</p>"))
end
def test_comma_post_tag
assert_equal(<<HAML.rstrip, render(<<HTML))
#foo
%span> Foo
,
%span bar
Foo
%span> bar
,
%span baz
HAML
<div id="foo">
<span>Foo</span>, <span>bar</span>
Foo<span>bar</span>, <span>baz</span>
</div>
HTML
end
def test_comma_post_tag_with_text_before
assert_equal(<<HAML.rstrip, render(<<HTML))
#foo
Batch
= succeed "," do
%span Foo
%span Bar
HAML
<div id="foo">
Batch
<span>Foo</span>, <span>Bar</span>
</div>
HTML
end
def test_haml_tags_should_be_on_new_line_after_tag_with_blank_content
xml = "<weight> </weight>\n<pages>102</pages>"
haml = "%weight\n%pages 102"
assert_equal haml, render(xml)
end
# Encodings
def test_encoding_error
render("foo\nbar\nb\xFEaz".force_encoding("utf-8"))
assert(false, "Expected exception")
rescue Haml::Error => e
assert_equal(3, e.line)
assert_match(/Invalid UTF-8 character/, e.message)
end
def test_ascii_incompatible_encoding_error
template = "foo\nbar\nb_z".encode("utf-16le")
template[9] = "\xFE".force_encoding("utf-16le")
render(template)
assert(false, "Expected exception")
rescue Haml::Error => e
assert_equal(3, e.line)
assert_match(/Invalid UTF-16LE character/, e.message)
end
# Regression Tests
def test_xhtml_strict_doctype
assert_equal('!!! Strict', render(<<HTML))
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
HTML
end
def test_html_document_without_doctype
assert_equal(<<HAML.rstrip, render(<<HTML))
!!!
%html
%head
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
%title Hello
%body
%p Hello
HAML
<html>
<head>
<title>Hello</title>
</head>
<body>
<p>Hello</p>
</body>
</html>
HTML
end
end
|