aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2012-11-16 00:33:14 -0800
committerJosé Valim <jose.valim@plataformatec.com.br>2012-11-16 00:33:14 -0800
commit4a4de567b45ff28035419bc2d92f9b206e3c0a66 (patch)
treea4dc887d3bd1a3bb3cb58866b2b377661eacb6fe /actionpack/test
parent44f12bbba08071178ec256c03eecadacdf35dccf (diff)
parent5f189f41258b83d49012ec5a0678d827327e7543 (diff)
downloadrails-4a4de567b45ff28035419bc2d92f9b206e3c0a66.tar.gz
rails-4a4de567b45ff28035419bc2d92f9b206e3c0a66.tar.bz2
rails-4a4de567b45ff28035419bc2d92f9b206e3c0a66.zip
Merge pull request #8235 from tilsammans/dont_escape_actionmailer_when_plaintext
Introduce `ActionView::Template::Handlers::ERB.escape_whitelist`
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/template_test.rb16
1 files changed, 15 insertions, 1 deletions
diff --git a/actionpack/test/template/template_test.rb b/actionpack/test/template/template_test.rb
index ffee3f81ba..6c11ee5322 100644
--- a/actionpack/test/template/template_test.rb
+++ b/actionpack/test/template/template_test.rb
@@ -26,6 +26,10 @@ class TestERBTemplate < ActiveSupport::TestCase
"Hello"
end
+ def apostrophe
+ "l'apostrophe"
+ end
+
def partial
ActionView::Template.new(
"<%= @virtual_path %>",
@@ -48,7 +52,7 @@ class TestERBTemplate < ActiveSupport::TestCase
end
end
- def new_template(body = "<%= hello %>", details = {})
+ def new_template(body = "<%= hello %>", details = {format: html})
ActionView::Template.new(body, "hello template", details.fetch(:handler) { ERBHandler }, {:virtual_path => "hello"}.merge!(details))
end
@@ -72,6 +76,16 @@ class TestERBTemplate < ActiveSupport::TestCase
assert_equal "Hello", render
end
+ def test_basic_template_does_html_escape
+ @template = new_template("<%= apostrophe %>")
+ assert_equal "l&#39;apostrophe", render
+ end
+
+ def test_text_template_does_not_html_escape
+ @template = new_template("<%= apostrophe %>", format: text)
+ assert_equal "l'apostrophe", render
+ end
+
def test_raw_template
@template = new_template("<%= hello %>", :handler => ActionView::Template::Handlers::Raw.new)
assert_equal "<%= hello %>", render