haml--haml/test/filters_test.rb

268 lines
8.3 KiB
Ruby

require 'test_helper'
class FiltersTest < Haml::TestCase
test "should be registered as filters when including Hamlit::Filters::Base" do; skip
begin
refute Hamlit::Filters.defined.has_key? "bar"
Module.new {def self.name; "Foo::Bar"; end; include Hamlit::Filters::Base}
assert Hamlit::Filters.defined.has_key? "bar"
ensure
Hamlit::Filters.remove_filter "Bar"
end
end
test "should raise error when attempting to register a defined Tilt filter" do; skip
begin
assert_raises RuntimeError do
2.times do
Hamlit::Filters.register_tilt_filter "Foo"
end
end
ensure
Hamlit::Filters.remove_filter "Foo"
end
end
test "should raise error when a Tilt filters dependencies are unavailable for extension" do; skip
begin
assert_raises Hamlit::Error do
# ignore warnings from Tilt
silence_warnings do
Hamlit::Filters.register_tilt_filter "Textile"
Hamlit::Filters.defined["textile"].template_class
end
end
ensure
Hamlit::Filters.remove_filter "Textile"
end
end
test "should raise error when a Tilt filters dependencies are unavailable for filter without extension" do; skip
begin
assert_raises Hamlit::Error do
Hamlit::Filters.register_tilt_filter "Maruku"
Hamlit::Filters.defined["maruku"].template_class
end
ensure
Hamlit::Filters.remove_filter "Maruku"
end
end
test "should raise informative error about Maruku being moved to haml-contrib" do; skip
begin
render(":maruku\n # foo")
flunk("Should have raised error with message about the haml-contrib gem.")
rescue Hamlit::Error => e
assert_equal e.message, Hamlit::Error.message(:install_haml_contrib, "maruku")
end
end
test "should raise informative error about Textile being moved to haml-contrib" do; skip
begin
render(":textile\n h1. foo")
flunk("Should have raised error with message about the haml-contrib gem.")
rescue Hamlit::Error => e
assert_equal e.message, Hamlit::Error.message(:install_haml_contrib, "textile")
end
end
test "should respect escaped newlines and interpolation" do
html = "\\n\n"
haml = ":plain\n \\n\#{""}"
assert_equal(html, render(haml))
end
test "should process an filter with no content" do
assert_equal("\n", render(':plain'))
end
test "should be compatible with ugly mode" do
expectation = "foo\n"
assert_equal(expectation, render(":plain\n foo", :ugly => true))
end
test "should pass options to Tilt filters that precompile" do; skip
begin
orig_erb_opts = Hamlit::Filters::Erb.options
haml = ":erb\n <%= 'foo' %>"
refute_match('test_var', Haml::Engine.new(haml).compiler.precompiled)
Hamlit::Filters::Erb.options = {:outvar => 'test_var'}
assert_match('test_var', Haml::Engine.new(haml).compiler.precompiled)
ensure
Hamlit::Filters::Erb.options = orig_erb_opts
end
end
test "should pass options to Tilt filters that don't precompile" do; skip
begin
filter = Class.new(Tilt::Template) do
def self.name
"Foo"
end
def prepare
@engine = {:data => data, :options => options}
end
def evaluate(scope, locals, &block)
@output = @engine[:options].to_a.join
end
end
Hamlit::Filters.register_tilt_filter "Foo", :template_class => filter
Hamlit::Filters::Foo.options[:foo] = "bar"
haml = ":foo"
assert_equal "foobar\n", render(haml)
ensure
Hamlit::Filters.remove_filter "Foo"
end
end
test "interpolated code should be escaped if escape_html is set" do
assert_equal "&lt;script&gt;evil&lt;/script&gt;\n",
render(":plain\n \#{'<script>evil</script>'}", :escape_html => true)
end
end
class ErbFilterTest < Haml::TestCase
test "multiline expressions should work" do; skip
html = "foobarbaz\n"
haml = %Q{:erb\n <%= "foo" +\n "bar" +\n "baz" %>}
assert_equal(html, render(haml))
end
test "should evaluate in the same context as Haml" do; skip
haml = ":erb\n <%= foo %>"
html = "bar\n"
scope = Object.new.instance_eval {foo = "bar"; nil if foo; binding}
assert_equal(html, render(haml, :scope => scope))
end
test "should use Rails's XSS safety features" do; skip
assert_equal("&lt;img&gt;\n", render(":erb\n <%= '<img>' %>"))
assert_equal("<img>\n", render(":erb\n <%= '<img>'.html_safe %>"))
end
end
class JavascriptFilterTest < Haml::TestCase
test "should interpolate" do; skip
scope = Object.new.instance_eval {foo = "bar"; nil if foo; binding}
haml = ":javascript\n \#{foo}"
html = render(haml, :scope => scope)
assert_match(/bar/, html)
end
test "should never HTML-escape non-interpolated ampersands" do; skip
html = "<script>\n & < > &amp;\n</script>\n"
haml = %Q{:javascript\n & < > \#{"&"}}
assert_equal(html, render(haml, :escape_html => true))
end
test "should not include type in HTML 5 output" do
html = "<script>\n foo bar\n</script>\n"
haml = ":javascript\n foo bar"
assert_equal(html, render(haml, :format => :html5))
end
test "should always include CDATA when format is xhtml" do
html = "<script type='text/javascript'>\n //<![CDATA[\n foo bar\n //]]>\n</script>\n"
haml = ":javascript\n foo bar"
assert_equal(html, render(haml, :format => :xhtml, :cdata => false))
end
test "should omit CDATA when cdata option is false" do
html = "<script>\n foo bar\n</script>\n"
haml = ":javascript\n foo bar"
assert_equal(html, render(haml, :format => :html5, :cdata => false))
end
test "should include CDATA when cdata option is true" do; skip
html = "<script>\n //<![CDATA[\n foo bar\n //]]>\n</script>\n"
haml = ":javascript\n foo bar"
assert_equal(html, render(haml, :format => :html5, :cdata => true))
end
test "should default to no CDATA when format is html5" do
haml = ":javascript\n foo bar"
out = render(haml, :format => :html5)
refute_match('//<![CDATA[', out)
refute_match('//]]>', out)
end
end
class CSSFilterTest < Haml::TestCase
test "should wrap output in CDATA and a CSS tag when output is XHTML" do
html = "<style type='text/css'>\n /*<![CDATA[*/\n foo\n /*]]>*/\n</style>\n"
haml = ":css\n foo"
assert_equal(html, render(haml, :format => :xhtml))
end
test "should not include type in HTML 5 output" do
html = "<style>\n foo bar\n</style>\n"
haml = ":css\n foo bar"
assert_equal(html, render(haml, :format => :html5))
end
test "should always include CDATA when format is xhtml" do
html = "<style type='text/css'>\n /*<![CDATA[*/\n foo bar\n /*]]>*/\n</style>\n"
haml = ":css\n foo bar"
assert_equal(html, render(haml, :format => :xhtml, :cdata => false))
end
test "should omit CDATA when cdata option is false" do
html = "<style>\n foo bar\n</style>\n"
haml = ":css\n foo bar"
assert_equal(html, render(haml, :format => :html5, :cdata => false))
end
test "should include CDATA when cdata option is true" do; skip
html = "<style>\n /*<![CDATA[*/\n foo bar\n /*]]>*/\n</style>\n"
haml = ":css\n foo bar"
assert_equal(html, render(haml, :format => :html5, :cdata => true))
end
test "should default to no CDATA when format is html5" do
haml = ":css\n foo bar"
out = render(haml, :format => :html5)
refute_match('<![CDATA[', out)
refute_match(']]>', out)
end
end
class CDATAFilterTest < Haml::TestCase
test "should wrap output in CDATA tag" do; skip
html = "<![CDATA[\n foo\n]]>\n"
haml = ":cdata\n foo"
assert_equal(html, render(haml))
end
end
class EscapedFilterTest < Haml::TestCase
test "should escape ampersands" do
html = "&amp;\n"
haml = ":escaped\n &"
assert_equal(html, render(haml))
end
end
class RubyFilterTest < Haml::TestCase
test "can write to haml_io" do; skip
haml = ":ruby\n haml_io.puts 'hello'\n"
html = "hello\n"
assert_equal(html, render(haml))
end
test "haml_io appends to output" do; skip
haml = "hello\n:ruby\n haml_io.puts 'hello'\n"
html = "hello\nhello\n"
assert_equal(html, render(haml))
end
test "can create local variables" do; skip
haml = ":ruby\n a = 7\n=a"
html = "7\n"
assert_equal(html, render(haml))
end
end