2006-10-14 18:24:53 -04:00
|
|
|
#!/usr/bin/env ruby
|
2008-06-08 12:54:36 -04:00
|
|
|
require File.dirname(__FILE__) + '/../test_helper'
|
2006-12-03 18:56:47 -05:00
|
|
|
require 'haml/template'
|
2008-09-21 18:24:18 -04:00
|
|
|
require 'sass/plugin'
|
2006-09-29 14:39:13 -04:00
|
|
|
require File.dirname(__FILE__) + '/mocks/article'
|
|
|
|
|
2008-11-25 04:22:18 -05:00
|
|
|
require 'action_pack/version'
|
|
|
|
|
2008-05-23 04:16:24 -04:00
|
|
|
module Haml::Filters::Test
|
2008-02-23 02:03:25 -05:00
|
|
|
include Haml::Filters::Base
|
2007-01-20 20:28:13 -05:00
|
|
|
|
2008-02-23 02:03:25 -05:00
|
|
|
def render(text)
|
2007-01-20 20:28:13 -05:00
|
|
|
"TESTING HAHAHAHA!"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-06-11 15:45:20 -04:00
|
|
|
module Haml::Helpers
|
|
|
|
def test_partial(name, locals = {})
|
|
|
|
Haml::Engine.new(File.read(File.join(TemplateTest::TEMPLATE_PATH, "_#{name}.haml"))).render(self, locals)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-02-10 04:39:18 -05:00
|
|
|
class Egocentic
|
|
|
|
def method_missing(*args)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-09-21 18:31:55 -04:00
|
|
|
class DummyController
|
2009-02-10 04:39:18 -05:00
|
|
|
attr_accessor :logger
|
|
|
|
def initialize
|
|
|
|
@logger = Egocentic.new
|
|
|
|
end
|
|
|
|
|
2008-09-21 18:31:55 -04:00
|
|
|
def self.controller_path
|
2009-06-03 00:21:57 -04:00
|
|
|
''
|
|
|
|
end
|
|
|
|
|
|
|
|
def controller_path
|
2008-09-21 18:31:55 -04:00
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-09-29 14:39:13 -04:00
|
|
|
class TemplateTest < Test::Unit::TestCase
|
2008-06-11 15:45:20 -04:00
|
|
|
TEMPLATE_PATH = File.join(File.dirname(__FILE__), "templates")
|
2008-06-11 20:32:43 -04:00
|
|
|
TEMPLATES = %w{ very_basic standard helpers
|
2006-12-03 17:18:33 -05:00
|
|
|
whitespace_handling original_engine list helpful
|
2008-11-25 04:22:18 -05:00
|
|
|
silent_script tag_parsing just_stuff partials
|
2009-02-21 16:19:05 -05:00
|
|
|
filters nuke_outer_whitespace nuke_inner_whitespace
|
|
|
|
render_layout }
|
2008-11-25 04:22:18 -05:00
|
|
|
# partial layouts were introduced in 2.0.0
|
|
|
|
TEMPLATES << 'partial_layout' unless ActionPack::VERSION::MAJOR < 2
|
2006-11-20 20:00:21 -05:00
|
|
|
|
2006-09-29 14:39:13 -04:00
|
|
|
def setup
|
2009-02-09 14:18:33 -05:00
|
|
|
@base = create_base
|
|
|
|
|
|
|
|
# filters template uses :sass
|
|
|
|
Sass::Plugin.options.update(:line_comments => true, :style => :compact)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_base
|
2008-06-28 23:37:15 -04:00
|
|
|
vars = { 'article' => Article.new, 'foo' => 'value one' }
|
|
|
|
|
2009-01-22 19:29:02 -05:00
|
|
|
unless Haml::Util.has?(:instance_method, ActionView::Base, :finder)
|
2009-02-09 14:18:33 -05:00
|
|
|
base = ActionView::Base.new(TEMPLATE_PATH, vars)
|
2008-06-28 23:37:15 -04:00
|
|
|
else
|
|
|
|
# Rails 2.1.0
|
2009-02-09 14:18:33 -05:00
|
|
|
base = ActionView::Base.new([], vars)
|
|
|
|
base.finder.append_view_path(TEMPLATE_PATH)
|
2008-06-28 23:37:15 -04:00
|
|
|
end
|
|
|
|
|
2009-02-09 14:18:33 -05:00
|
|
|
if Haml::Util.has?(:private_method, base, :evaluate_assigns)
|
|
|
|
base.send(:evaluate_assigns)
|
2008-09-19 10:08:48 -04:00
|
|
|
else
|
|
|
|
# Rails 2.2
|
2009-02-09 14:18:33 -05:00
|
|
|
base.send(:_evaluate_assigns_and_ivars)
|
2008-09-19 10:08:48 -04:00
|
|
|
end
|
2007-12-10 21:00:06 -05:00
|
|
|
|
|
|
|
# This is used by form_for.
|
|
|
|
# It's usually provided by ActionController::Base.
|
2009-02-09 14:18:33 -05:00
|
|
|
def base.protect_against_forgery?; false; end
|
|
|
|
|
|
|
|
base.controller = DummyController.new
|
|
|
|
base
|
2006-09-29 14:39:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def render(text)
|
2006-10-21 16:36:18 -04:00
|
|
|
Haml::Engine.new(text).to_html(@base)
|
2006-09-29 14:39:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def load_result(name)
|
|
|
|
@result = ''
|
|
|
|
File.new(File.dirname(__FILE__) + "/results/#{name}.xhtml").each_line { |l| @result += l }
|
|
|
|
@result
|
|
|
|
end
|
|
|
|
|
2007-11-23 12:26:05 -05:00
|
|
|
def assert_renders_correctly(name, &render_method)
|
2008-12-06 23:26:31 -05:00
|
|
|
if ActionPack::VERSION::MAJOR < 2 || ActionPack::VERSION::MINOR < 2
|
|
|
|
render_method ||= proc { |name| @base.render(name) }
|
|
|
|
else
|
|
|
|
render_method ||= proc { |name| @base.render(:file => name) }
|
|
|
|
end
|
2008-06-11 20:38:00 -04:00
|
|
|
|
|
|
|
load_result(name).split("\n").zip(render_method[name].split("\n")).each_with_index do |pair, line|
|
|
|
|
message = "template: #{name}\nline: #{line}"
|
|
|
|
assert_equal(pair.first, pair.last, message)
|
2006-09-29 14:39:13 -04:00
|
|
|
end
|
2008-06-11 20:38:00 -04:00
|
|
|
rescue ActionView::TemplateError => e
|
|
|
|
if e.message =~ /Can't run [\w:]+ filter; required (one of|file) ((?:'\w+'(?: or )?)+)(, but none were found| not found)/
|
|
|
|
puts "\nCouldn't require #{$2}; skipping a test."
|
|
|
|
else
|
|
|
|
raise e
|
2007-05-10 04:12:20 -04:00
|
|
|
end
|
2006-09-29 14:39:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_empty_render_should_remain_empty
|
|
|
|
assert_equal('', render(''))
|
|
|
|
end
|
|
|
|
|
2008-06-11 20:32:43 -04:00
|
|
|
TEMPLATES.each do |template|
|
2008-06-01 14:34:59 -04:00
|
|
|
define_method "test_template_should_render_correctly [template: #{template}] " do
|
2006-09-29 14:39:13 -04:00
|
|
|
assert_renders_correctly template
|
|
|
|
end
|
2008-06-11 20:35:06 -04:00
|
|
|
end
|
2006-11-04 01:36:16 -05:00
|
|
|
|
2008-06-11 20:35:06 -04:00
|
|
|
def test_templates_should_render_correctly_with_render_proc
|
|
|
|
assert_renders_correctly("standard") do |name|
|
|
|
|
engine = Haml::Engine.new(File.read(File.dirname(__FILE__) + "/templates/#{name}.haml"))
|
|
|
|
engine.render_proc(@base).call
|
2007-11-23 12:26:05 -05:00
|
|
|
end
|
2008-06-11 20:35:06 -04:00
|
|
|
end
|
2008-06-01 14:34:59 -04:00
|
|
|
|
2008-06-11 20:35:06 -04:00
|
|
|
def test_templates_should_render_correctly_with_def_method
|
|
|
|
assert_renders_correctly("standard") do |name|
|
|
|
|
engine = Haml::Engine.new(File.read(File.dirname(__FILE__) + "/templates/#{name}.haml"))
|
|
|
|
engine.def_method(@base, "render_standard")
|
|
|
|
@base.render_standard
|
2007-11-23 21:32:18 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-09-29 14:39:13 -04:00
|
|
|
def test_action_view_templates_render_correctly
|
|
|
|
@base.instance_variable_set("@content_for_layout", 'Lorem ipsum dolor sit amet')
|
|
|
|
assert_renders_correctly 'content_for_layout'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_instance_variables_should_work_inside_templates
|
|
|
|
@base.instance_variable_set("@content_for_layout", 'something')
|
2006-10-05 11:18:35 -04:00
|
|
|
assert_equal("<p>something</p>", render("%p= @content_for_layout").chomp)
|
2006-11-04 01:36:16 -05:00
|
|
|
|
2006-09-29 14:39:13 -04:00
|
|
|
@base.instance_eval("@author = 'Hampton Catlin'")
|
2006-10-05 11:18:35 -04:00
|
|
|
assert_equal("<div class='author'>Hampton Catlin</div>", render(".author= @author").chomp)
|
2006-09-29 14:39:13 -04:00
|
|
|
|
|
|
|
@base.instance_eval("@author = 'Hampton'")
|
|
|
|
assert_equal("Hampton", render("= @author").chomp)
|
2006-11-04 01:36:16 -05:00
|
|
|
|
2006-09-29 14:39:13 -04:00
|
|
|
@base.instance_eval("@author = 'Catlin'")
|
|
|
|
assert_equal("Catlin", render("= @author").chomp)
|
|
|
|
end
|
2006-11-04 01:36:16 -05:00
|
|
|
|
2006-09-29 14:39:13 -04:00
|
|
|
def test_instance_variables_should_work_inside_attributes
|
|
|
|
@base.instance_eval("@author = 'hcatlin'")
|
|
|
|
assert_equal("<p class='hcatlin'>foo</p>", render("%p{:class => @author} foo").chomp)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_template_renders_should_eval
|
|
|
|
assert_equal("2\n", render("= 1+1"))
|
|
|
|
end
|
2006-11-04 01:36:16 -05:00
|
|
|
|
2006-10-30 01:59:57 -05:00
|
|
|
def test_haml_options
|
|
|
|
Haml::Template.options = { :suppress_eval => true }
|
|
|
|
assert_equal({ :suppress_eval => true }, Haml::Template.options)
|
2009-02-09 14:18:33 -05:00
|
|
|
old_base, @base = @base, create_base
|
2006-10-30 01:59:57 -05:00
|
|
|
assert_renders_correctly("eval_suppressed")
|
2009-02-09 14:18:33 -05:00
|
|
|
@base = old_base
|
2006-10-30 01:59:57 -05:00
|
|
|
Haml::Template.options = {}
|
|
|
|
end
|
2006-11-04 01:36:16 -05:00
|
|
|
|
2006-10-14 18:24:53 -04:00
|
|
|
def test_exceptions_should_work_correctly
|
|
|
|
begin
|
2007-01-27 01:34:01 -05:00
|
|
|
render("- raise 'oops!'")
|
2006-10-14 18:24:53 -04:00
|
|
|
rescue Exception => e
|
2007-11-23 02:02:07 -05:00
|
|
|
assert_equal("oops!", e.message)
|
2007-11-25 22:26:16 -05:00
|
|
|
assert_match(/^\(haml\):1/, e.backtrace[0])
|
2007-01-27 02:10:49 -05:00
|
|
|
else
|
|
|
|
assert false
|
2006-10-14 18:24:53 -04:00
|
|
|
end
|
2006-11-04 01:36:16 -05:00
|
|
|
|
2006-10-21 16:16:26 -04:00
|
|
|
template = <<END
|
|
|
|
%p
|
|
|
|
%h1 Hello!
|
|
|
|
= "lots of lines"
|
|
|
|
= "even more!"
|
2007-01-27 01:34:01 -05:00
|
|
|
- raise 'oh no!'
|
2006-10-21 16:16:26 -04:00
|
|
|
%p
|
|
|
|
this is after the exception
|
|
|
|
%strong yes it is!
|
|
|
|
ho ho ho.
|
|
|
|
END
|
|
|
|
|
|
|
|
begin
|
|
|
|
render(template.chomp)
|
|
|
|
rescue Exception => e
|
2007-11-25 22:26:16 -05:00
|
|
|
assert_match(/^\(haml\):5/, e.backtrace[0])
|
2007-01-27 02:10:49 -05:00
|
|
|
else
|
|
|
|
assert false
|
2006-10-21 16:16:26 -04:00
|
|
|
end
|
2007-11-23 12:26:05 -05:00
|
|
|
end
|
2006-09-29 14:39:13 -04:00
|
|
|
end
|