2017-07-23 11:36:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 12:50:17 -04:00
|
|
|
require "abstract_unit"
|
2008-07-16 09:26:23 -04:00
|
|
|
|
2012-01-05 20:01:45 -05:00
|
|
|
class CompiledTemplatesTest < ActiveSupport::TestCase
|
2019-01-23 17:19:50 -05:00
|
|
|
attr_reader :view_class
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
2019-01-23 19:11:54 -05:00
|
|
|
view_paths = ActionController::Base.view_paths
|
2019-01-23 17:19:50 -05:00
|
|
|
view_paths.each(&:clear_cache)
|
|
|
|
ActionView::LookupContext.fallbacks.each(&:clear_cache)
|
|
|
|
@view_class = ActionView::Base.with_empty_template_cache
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
super
|
2011-12-14 03:23:34 -05:00
|
|
|
ActionView::LookupContext::DetailsKey.clear
|
2009-02-03 21:25:37 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2014-09-14 20:11:04 -04:00
|
|
|
def test_template_with_nil_erb_return
|
2016-08-06 13:36:34 -04:00
|
|
|
assert_equal "This is nil: \n", render(template: "test/nil_return")
|
2014-09-14 20:11:04 -04:00
|
|
|
end
|
|
|
|
|
2016-09-30 13:55:38 -04:00
|
|
|
def test_template_with_ruby_keyword_locals
|
|
|
|
assert_equal "The class is foo",
|
2019-03-19 14:56:53 -04:00
|
|
|
render(template: "test/render_file_with_ruby_keyword_locals", locals: { class: "foo" })
|
2016-09-30 13:55:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_template_with_invalid_identifier_locals
|
|
|
|
locals = {
|
|
|
|
foo: "bar",
|
|
|
|
Foo: "bar",
|
|
|
|
"d-a-s-h-e-s": "",
|
|
|
|
"white space": "",
|
|
|
|
}
|
2019-03-19 14:56:53 -04:00
|
|
|
assert_equal locals.inspect, render(template: "test/render_file_inspect_local_assigns", locals: locals)
|
2016-09-30 13:55:38 -04:00
|
|
|
end
|
|
|
|
|
2016-12-08 14:55:21 -05:00
|
|
|
def test_template_with_delegation_reserved_keywords
|
|
|
|
locals = {
|
|
|
|
_: "one",
|
|
|
|
arg: "two",
|
|
|
|
args: "three",
|
|
|
|
block: "four",
|
|
|
|
}
|
2019-03-19 14:56:53 -04:00
|
|
|
assert_equal "one two three four", render(template: "test/test_template_with_delegation_reserved_keywords", locals: locals)
|
2016-12-08 14:55:21 -05:00
|
|
|
end
|
|
|
|
|
2016-09-30 13:55:38 -04:00
|
|
|
def test_template_with_unicode_identifier
|
2019-03-19 14:56:53 -04:00
|
|
|
assert_equal "🎂", render(template: "test/render_file_unicode_local", locals: { 🎃: "🎂" })
|
2016-09-30 13:55:38 -04:00
|
|
|
end
|
|
|
|
|
2017-01-15 08:41:39 -05:00
|
|
|
def test_template_with_instance_variable_identifier
|
2019-03-19 14:56:53 -04:00
|
|
|
assert_equal "bar", render(template: "test/render_file_instance_variable", locals: { "@foo": "bar" })
|
2017-01-15 08:41:39 -05:00
|
|
|
end
|
|
|
|
|
2009-02-03 21:25:37 -05:00
|
|
|
def test_template_gets_recompiled_when_using_different_keys_in_local_assigns
|
2019-03-19 14:56:53 -04:00
|
|
|
assert_equal "one", render(template: "test/render_file_with_locals_and_default")
|
|
|
|
assert_equal "two", render(template: "test/render_file_with_locals_and_default", locals: { secret: "two" })
|
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)
|
2019-06-05 21:22:04 -04:00
|
|
|
ActionController::Base.render(*args)
|
2009-02-03 21:25:37 -05:00
|
|
|
end
|
2008-07-16 09:26:23 -04:00
|
|
|
end
|