1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #38900 from joelhawksley/annotations-html-only

`ActionView::Base.annotate_template_file_names` only annotates HTML
This commit is contained in:
Rafael França 2020-04-08 20:50:15 -04:00 committed by GitHub
commit 9dfae153f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 5 deletions

View file

@ -59,6 +59,7 @@ module ActionView
erb,
escape: (self.class.escape_ignore_list.include? template.type),
trim: (self.class.erb_trim_mode == "-"),
format: template.format,
short_identifier: template.short_identifier
).src
end

View file

@ -14,7 +14,8 @@ module ActionView
# Dup properties so that we don't modify argument
properties = Hash[properties]
if ActionView::Base.annotate_template_file_names
# Annotate output with template file names, if we're rendering HTML
if ActionView::Base.annotate_template_file_names && properties[:format] == :html
properties[:preamble] = "@output_buffer.safe_append='<!-- BEGIN #{properties[:short_identifier]} -->\n';"
properties[:postamble] = "@output_buffer.safe_append='<!-- END #{properties[:short_identifier]} -->\n';@output_buffer.to_s"
else

View file

@ -1457,17 +1457,28 @@ class RenderTest < ActionController::TestCase
def test_template_annotations
ActionView::Base.annotate_template_file_names = true
get :render_with_explicit_template_with_locals
get :greeting
lines = @response.body.split("\n")
assert_includes lines.first, "<!-- BEGIN"
assert_includes lines.first, "test/fixtures/actionpack/test/render_file_with_locals.erb -->"
assert_includes lines.first, "test/fixtures/actionpack/test/greeting.html.erb -->"
assert_includes lines[1], "The secret is area51"
assert_includes lines[1], "This is grand!"
assert_includes lines.last, "<!-- END"
assert_includes lines.last, "test/fixtures/actionpack/test/render_file_with_locals.erb -->"
assert_includes lines.last, "test/fixtures/actionpack/test/greeting.html.erb -->"
ensure
ActionView::Base.annotate_template_file_names = false
end
def test_template_annotations_do_not_render_for_non_html_format
ActionView::Base.annotate_template_file_names = true
get :render_with_explicit_template_with_locals
assert_not_includes @response.body, "BEGIN"
assert_equal @response.body.split("\n").length, 1
ensure
ActionView::Base.annotate_template_file_names = false
end