aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/safe_buffer_test.rb
diff options
context:
space:
mode:
authorJulien Letessier <julien.letessier@gmail.com>2013-12-13 16:53:18 +0000
committerJulien Letessier <julien.letessier@gmail.com>2013-12-14 10:10:47 +0000
commita764938ad0ddb0aa73bb86215626f24b980e3f55 (patch)
tree56f987fd0cfad5bc5afa7aa4ce7cfce11bb09439 /activesupport/test/safe_buffer_test.rb
parent12affbe491e4ad7056c7bc1555cf223129cb2745 (diff)
downloadrails-a764938ad0ddb0aa73bb86215626f24b980e3f55.tar.gz
rails-a764938ad0ddb0aa73bb86215626f24b980e3f55.tar.bz2
rails-a764938ad0ddb0aa73bb86215626f24b980e3f55.zip
Fixes interpolation on SafeBuffer
Interpolation was untested and did not work with hash arguments. Adds - support for interpolation with hash argument - tests for the above - tests for safe/unsafe interpolation
Diffstat (limited to 'activesupport/test/safe_buffer_test.rb')
-rw-r--r--activesupport/test/safe_buffer_test.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/activesupport/test/safe_buffer_test.rb b/activesupport/test/safe_buffer_test.rb
index 047b89be2a..efa9d5e61f 100644
--- a/activesupport/test/safe_buffer_test.rb
+++ b/activesupport/test/safe_buffer_test.rb
@@ -140,4 +140,29 @@ class SafeBufferTest < ActiveSupport::TestCase
# should still be unsafe
assert !y.html_safe?, "should not be safe"
end
+
+ test 'Should work with interpolation (array argument)' do
+ x = 'foo %s bar'.html_safe % ['qux']
+ assert_equal 'foo qux bar', x
+ end
+
+ test 'Should work with interpolation (hash argument)' do
+ x = 'foo %{x} bar'.html_safe % { x: 'qux' }
+ assert_equal 'foo qux bar', x
+ end
+
+ test 'Should escape unsafe interpolated args' do
+ x = 'foo %{x} bar'.html_safe % { x: '<br/>' }
+ assert_equal 'foo &lt;br/&gt; bar', x
+ end
+
+ test 'Should not escape safe interpolated args' do
+ x = 'foo %{x} bar'.html_safe % { x: '<br/>'.html_safe }
+ assert_equal 'foo <br/> bar', x
+ end
+
+ test 'Should interpolate to a safe string' do
+ x = 'foo %{x} bar'.html_safe % { x: 'qux' }
+ assert x.html_safe?, 'should be safe'
+ end
end