rails--rails/actionpack/test/template/lookup_context_test.rb

255 lines
8.7 KiB
Ruby
Raw Normal View History

2010-03-11 11:45:05 +00:00
require "abstract_unit"
require "abstract_controller/rendering"
ActionView::LookupContext::DetailsKey.class_eval do
def self.details_keys
@details_keys
end
end
class LookupContextTest < ActiveSupport::TestCase
def setup
@lookup_context = ActionView::LookupContext.new(FIXTURE_LOAD_PATH, {})
end
def teardown
I18n.locale = :en
ActionView::LookupContext::DetailsKey.details_keys.clear
end
test "process view paths on initialization" do
assert_kind_of ActionView::PathSet, @lookup_context.view_paths
end
test "normalizes details on initialization" do
assert_equal Mime::SET, @lookup_context.formats
assert_equal :en, @lookup_context.locale
2010-03-11 11:45:05 +00:00
end
test "allows me to freeze and retrieve frozen formats" do
@lookup_context.formats.freeze
assert @lookup_context.formats.frozen?
2010-03-11 11:45:05 +00:00
end
test "allows me to change some details to execute an specific block of code" do
formats = Mime::SET
2010-03-11 11:45:05 +00:00
@lookup_context.update_details(:locale => :pt) do
assert_equal formats, @lookup_context.formats
assert_equal :pt, @lookup_context.locale
2010-03-11 11:45:05 +00:00
end
assert_equal formats, @lookup_context.formats
assert_equal :en, @lookup_context.locale
2010-03-11 11:45:05 +00:00
end
test "provides getters and setters for formats" do
@lookup_context.formats = [:html]
2010-03-11 11:45:05 +00:00
assert_equal [:html], @lookup_context.formats
end
test "handles */* formats" do
2010-11-28 21:40:32 +00:00
@lookup_context.formats = ["*/*"]
2010-03-11 11:45:05 +00:00
assert_equal Mime::SET, @lookup_context.formats
end
test "adds :html fallback to :js formats" do
@lookup_context.formats = [:js]
assert_equal [:js, :html], @lookup_context.formats
end
2010-03-11 11:45:05 +00:00
test "provides getters and setters for locale" do
@lookup_context.locale = :pt
assert_equal :pt, @lookup_context.locale
end
test "changing lookup_context locale, changes I18n.locale" do
@lookup_context.locale = :pt
assert_equal :pt, I18n.locale
end
test "delegates changing the locale to the I18n configuration object if it contains a lookup_context object" do
begin
I18n.config = AbstractController::I18nProxy.new(I18n.config, @lookup_context)
@lookup_context.locale = :pt
assert_equal :pt, I18n.locale
assert_equal :pt, @lookup_context.locale
ensure
I18n.config = I18n.config.original_config
2010-03-11 11:45:05 +00:00
end
assert_equal :pt, I18n.locale
end
test "find templates using the given view paths and configured details" do
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("hello_world", %w(test))
2010-03-11 11:45:05 +00:00
assert_equal "Hello world!", template.source
@lookup_context.locale = :da
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("hello_world", %w(test))
2010-03-11 11:45:05 +00:00
assert_equal "Hey verden", template.source
end
test "found templates respects given formats if one cannot be found from template or handler" do
ActionView::Template::Handlers::ERB.expects(:default_format).returns(nil)
@lookup_context.formats = [:text]
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("hello_world", %w(test))
assert_equal [:text], template.formats
end
2010-03-11 11:45:05 +00:00
test "adds fallbacks to view paths when required" do
assert_equal 1, @lookup_context.view_paths.size
@lookup_context.with_fallbacks do
assert_equal 3, @lookup_context.view_paths.size
assert @lookup_context.view_paths.include?(ActionView::FallbackFileSystemResolver.new(""))
assert @lookup_context.view_paths.include?(ActionView::FallbackFileSystemResolver.new("/"))
2010-03-11 11:45:05 +00:00
end
end
test "add fallbacks just once in nested fallbacks calls" do
@lookup_context.with_fallbacks do
@lookup_context.with_fallbacks do
assert_equal 3, @lookup_context.view_paths.size
end
end
end
test "generates a new details key for each details hash" do
keys = []
keys << @lookup_context.details_key
assert_equal 1, keys.uniq.size
@lookup_context.locale = :da
keys << @lookup_context.details_key
assert_equal 2, keys.uniq.size
@lookup_context.locale = :en
keys << @lookup_context.details_key
assert_equal 2, keys.uniq.size
@lookup_context.formats = [:html]
2010-03-11 11:45:05 +00:00
keys << @lookup_context.details_key
assert_equal 3, keys.uniq.size
@lookup_context.formats = nil
keys << @lookup_context.details_key
assert_equal 3, keys.uniq.size
end
test "gives the key forward to the resolver, so it can be used as cache key" do
@lookup_context.view_paths = ActionView::FixtureResolver.new("test/_foo.erb" => "Foo")
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
2010-03-11 11:45:05 +00:00
assert_equal "Foo", template.source
# Now we are going to change the template, but it won't change the returned template
# since we will hit the cache.
@lookup_context.view_paths.first.hash["test/_foo.erb"] = "Bar"
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
2010-03-11 11:45:05 +00:00
assert_equal "Foo", template.source
# This time we will change the locale. The updated template should be picked since
# lookup_context generated a new key after we changed the locale.
@lookup_context.locale = :da
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
2010-03-11 11:45:05 +00:00
assert_equal "Bar", template.source
# Now we will change back the locale and it will still pick the old template.
# This is expected because lookup_context will reuse the previous key for :en locale.
@lookup_context.locale = :en
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
2010-03-11 11:45:05 +00:00
assert_equal "Foo", template.source
# Finally, we can expire the cache. And the expected template will be used.
@lookup_context.view_paths.first.clear_cache
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
2010-03-11 11:45:05 +00:00
assert_equal "Bar", template.source
end
test "can disable the cache on demand" do
@lookup_context.view_paths = ActionView::FixtureResolver.new("test/_foo.erb" => "Foo")
2010-12-12 20:40:40 +00:00
old_template = @lookup_context.find("foo", %w(test), true)
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
assert_equal template, old_template
assert @lookup_context.cache
template = @lookup_context.disable_cache do
assert !@lookup_context.cache
2010-12-12 20:40:40 +00:00
@lookup_context.find("foo", %w(test), true)
end
assert @lookup_context.cache
assert_not_equal template, old_template
end
test "responds to #prefixes" do
assert_equal nil, @lookup_context.prefixes
@lookup_context.prefixes = ["foo"]
assert_equal ["foo"], @lookup_context.prefixes
end
end
class LookupContextWithFalseCaching < ActiveSupport::TestCase
def setup
@resolver = ActionView::FixtureResolver.new("test/_foo.erb" => ["Foo", Time.utc(2000)])
@resolver.stubs(:caching?).returns(false)
@lookup_context = ActionView::LookupContext.new(@resolver, {})
end
test "templates are always found in the resolver but timestamp is checked before being compiled" do
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
assert_equal "Foo", template.source
# Now we are going to change the template, but it won't change the returned template
# since the timestamp is the same.
@resolver.hash["test/_foo.erb"][0] = "Bar"
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
assert_equal "Foo", template.source
# Now update the timestamp.
@resolver.hash["test/_foo.erb"][1] = Time.now.utc
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
assert_equal "Bar", template.source
end
test "if no template was found in the second lookup, with no cache, raise error" do
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
assert_equal "Foo", template.source
@resolver.hash.clear
assert_raise ActionView::MissingTemplate do
2010-12-12 20:40:40 +00:00
@lookup_context.find("foo", %w(test), true)
end
end
test "if no template was cached in the first lookup, retrieval should work in the second call" do
@resolver.hash.clear
assert_raise ActionView::MissingTemplate do
2010-12-12 20:40:40 +00:00
@lookup_context.find("foo", %w(test), true)
end
@resolver.hash["test/_foo.erb"] = ["Foo", Time.utc(2000)]
2010-12-12 20:40:40 +00:00
template = @lookup_context.find("foo", %w(test), true)
assert_equal "Foo", template.source
end
2010-12-12 20:40:40 +00:00
end
class TestMissingTemplate < ActiveSupport::TestCase
def setup
@lookup_context = ActionView::LookupContext.new("/Path/to/views", {})
end
test "if no template was found we get a helpful error message including the inheritance chain" do
e = assert_raise ActionView::MissingTemplate do
@lookup_context.find("foo", %w(parent child))
end
assert_match %r{Missing template parent/foo, child/foo with .* Searched in:\n \* "/Path/to/views"\n}, e.message
end
test "if no partial was found we get a helpful error message including the inheritance chain" do
e = assert_raise ActionView::MissingTemplate do
@lookup_context.find("foo", %w(parent child), true)
end
assert_match %r{Missing partial parent/foo, child/foo with .* Searched in:\n \* "/Path/to/views"\n}, e.message
end
end