2008-07-16 09:26:23 -04:00
|
|
|
require 'abstract_unit'
|
|
|
|
require 'controller/fake_models'
|
|
|
|
|
2009-02-03 21:25:37 -05:00
|
|
|
class CompiledTemplatesTest < Test::Unit::TestCase
|
|
|
|
def setup
|
2009-07-19 09:12:15 -04:00
|
|
|
@compiled_templates = ActionView::CompiledTemplates
|
2009-02-03 21:25:37 -05:00
|
|
|
@compiled_templates.instance_methods.each do |m|
|
2009-04-23 18:58:38 -04:00
|
|
|
@compiled_templates.send(:remove_method, m) if m =~ /^_render_template_/
|
2008-07-16 09:26:23 -04:00
|
|
|
end
|
2009-02-03 21:25:37 -05:00
|
|
|
end
|
2009-04-23 18:58:38 -04:00
|
|
|
|
2009-02-03 21:25:37 -05:00
|
|
|
def test_template_gets_recompiled_when_using_different_keys_in_local_assigns
|
2009-04-23 18:58:38 -04:00
|
|
|
assert_equal "one", render(:file => "test/render_file_with_locals_and_default.erb")
|
|
|
|
assert_equal "two", render(:file => "test/render_file_with_locals_and_default.erb", :locals => { :secret => "two" })
|
2009-02-19 21:55:56 -05:00
|
|
|
end
|
2008-11-28 15:31:54 -05:00
|
|
|
|
2009-09-02 18:00:22 -04:00
|
|
|
# This is broken in 1.8.6 (not supported in Rails 3.0) because the cache uses a Hash
|
|
|
|
# key. Since Ruby 1.8.6 implements Hash#hash using the hash's object_id, it will never
|
|
|
|
# successfully get a cache hit here.
|
2009-04-13 18:18:45 -04:00
|
|
|
def test_template_changes_are_not_reflected_with_cached_templates
|
|
|
|
assert_equal "Hello world!", render(:file => "test/hello_world.erb")
|
|
|
|
modify_template "test/hello_world.erb", "Goodbye world!" do
|
2008-11-28 15:31:54 -05:00
|
|
|
assert_equal "Hello world!", render(:file => "test/hello_world.erb")
|
|
|
|
end
|
2009-04-13 18:18:45 -04:00
|
|
|
assert_equal "Hello world!", render(:file => "test/hello_world.erb")
|
2009-02-19 21:55:56 -05:00
|
|
|
end
|
2008-11-28 15:31:54 -05:00
|
|
|
|
2009-04-13 18:18:45 -04:00
|
|
|
def test_template_changes_are_reflected_with_uncached_templates
|
|
|
|
assert_equal "Hello world!", render_without_cache(:file => "test/hello_world.erb")
|
|
|
|
modify_template "test/hello_world.erb", "Goodbye world!" do
|
|
|
|
assert_equal "Goodbye world!", render_without_cache(:file => "test/hello_world.erb")
|
2008-11-28 15:31:54 -05:00
|
|
|
end
|
2009-04-13 18:18:45 -04:00
|
|
|
assert_equal "Hello world!", render_without_cache(:file => "test/hello_world.erb")
|
2009-02-19 21:55:56 -05:00
|
|
|
end
|
2008-11-28 15:31:54 -05:00
|
|
|
|
2009-02-03 21:25:37 -05:00
|
|
|
private
|
|
|
|
def render(*args)
|
2009-04-13 18:18:45 -04:00
|
|
|
render_with_cache(*args)
|
2009-02-03 21:25:37 -05:00
|
|
|
end
|
2008-11-28 15:31:54 -05:00
|
|
|
|
2009-04-13 18:18:45 -04:00
|
|
|
def render_with_cache(*args)
|
|
|
|
view_paths = ActionController::Base.view_paths
|
|
|
|
ActionView::Base.new(view_paths, {}).render(*args)
|
2009-02-12 13:35:14 -05:00
|
|
|
end
|
2008-11-28 15:31:54 -05:00
|
|
|
|
2009-04-13 18:18:45 -04:00
|
|
|
def render_without_cache(*args)
|
2009-06-17 18:32:55 -04:00
|
|
|
path = ActionView::FileSystemResolverWithFallback.new(FIXTURE_LOAD_PATH)
|
2009-04-13 18:18:45 -04:00
|
|
|
view_paths = ActionView::Base.process_view_paths(path)
|
|
|
|
ActionView::Base.new(view_paths, {}).render(*args)
|
2009-02-19 21:55:56 -05:00
|
|
|
end
|
2008-11-28 15:31:54 -05:00
|
|
|
|
2009-04-13 18:18:45 -04:00
|
|
|
def modify_template(template, content)
|
|
|
|
filename = "#{FIXTURE_LOAD_PATH}/#{template}"
|
2009-02-03 21:25:37 -05:00
|
|
|
old_content = File.read(filename)
|
|
|
|
begin
|
|
|
|
File.open(filename, "wb+") { |f| f.write(content) }
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
File.open(filename, "wb+") { |f| f.write(old_content) }
|
2008-07-22 11:27:32 -04:00
|
|
|
end
|
2009-02-03 21:25:37 -05:00
|
|
|
end
|
2008-07-16 09:26:23 -04:00
|
|
|
end
|