mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
108 lines
3.3 KiB
Ruby
108 lines
3.3 KiB
Ruby
#!/usr/bin/env ruby
|
|
require File.dirname(__FILE__) + '/../test_helper'
|
|
require 'haml/html'
|
|
|
|
class Html2HamlTest < Test::Unit::TestCase
|
|
|
|
def test_empty_render_should_remain_empty
|
|
assert_equal '', render('')
|
|
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_attributes('%input{ :type => "text", :name => "login" }',
|
|
render('<input type="text" name="login" />'))
|
|
assert_equal_attributes('%meta{ "http-equiv" => "Content-Type", :content => "text/html" }',
|
|
render('<meta http-equiv="Content-Type" content="text/html" />'))
|
|
end
|
|
|
|
def test_sqml_comment
|
|
assert_equal "/\n IE sucks", render('<!-- IE sucks -->')
|
|
end
|
|
|
|
def test_rhtml
|
|
assert_equal '- foo = bar', render_rhtml('<% foo = bar %>')
|
|
assert_equal '- foo = bar', render_rhtml('<% foo = bar -%>')
|
|
assert_equal '= h @item.title', render_rhtml('<%=h @item.title %>')
|
|
assert_equal '= h @item.title', render_rhtml('<%=h @item.title -%>')
|
|
end
|
|
|
|
def test_rhtml_with_html_special_chars
|
|
assert_equal '= 3 < 5 ? "OK" : "Your computer is b0rken"',
|
|
render_rhtml(%Q{<%= 3 < 5 ? "OK" : "Your computer is b0rken" %>})
|
|
end
|
|
|
|
def test_rhtml_in_class_attribute
|
|
assert_equal "%div{ :class => dyna_class }\n I have a dynamic attribute",
|
|
render_rhtml(%Q{<div class="<%= dyna_class %>">I have a dynamic attribute</div>})
|
|
end
|
|
|
|
def test_rhtml_in_id_attribute
|
|
assert_equal "%div{ :id => dyna_id }\n I have a dynamic attribute",
|
|
render_rhtml(%Q{<div id="<%= dyna_id %>">I have a dynamic attribute</div>})
|
|
end
|
|
|
|
def test_rhtml_in_attribute_results_in_string_interpolation
|
|
assert_equal %(%div{ :id => "item_\#{i}" }\n Ruby string interpolation FTW),
|
|
render_rhtml(%Q{<div id="item_<%= i %>">Ruby string interpolation FTW</div>})
|
|
end
|
|
|
|
def test_rhtml_in_attribute_with_trailing_content
|
|
assert_equal %(%div{ :class => "\#{12}!" }\n Bang!),
|
|
render_rhtml(%Q{<div class="<%= 12 %>!">Bang!</div>})
|
|
end
|
|
|
|
def test_rhtml_in_attribute_to_multiple_interpolations
|
|
assert_equal %(%div{ :class => "\#{12} + \#{13}" }\n Math is super),
|
|
render_rhtml(%Q{<div class="<%= 12 %> + <%= 13 %>">Math is super</div>})
|
|
end
|
|
|
|
def test_whitespace_eating_erb_tags
|
|
assert_equal %(- form_for),
|
|
render_rhtml(%Q{<%- form_for -%>})
|
|
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
|
|
|
|
protected
|
|
|
|
def render(text, options = {})
|
|
Haml::HTML.new(text, options).render.rstrip
|
|
end
|
|
|
|
def render_rhtml(text)
|
|
render(text, :rhtml => true)
|
|
end
|
|
|
|
def assert_equal_attributes(expected, result)
|
|
expected_attr, result_attr = [expected, result].map { |s| s.gsub!(/\{ (.+) \}/, ''); $1.split(', ').sort }
|
|
assert_equal expected_attr, result_attr
|
|
assert_equal expected, result
|
|
end
|
|
end
|