diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-10-10 20:19:47 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-10-10 21:30:51 -0500 |
commit | 1610cd0827129c28518ee6586d8ecf922576bf20 (patch) | |
tree | 1598a7aebe1625b0a4448edb372183a932b15612 /actionpack/test/template | |
parent | 21be1dcffa98321fc999e39d11e902d717affad1 (diff) | |
download | rails-1610cd0827129c28518ee6586d8ecf922576bf20.tar.gz rails-1610cd0827129c28518ee6586d8ecf922576bf20.tar.bz2 rails-1610cd0827129c28518ee6586d8ecf922576bf20.zip |
Move safe buffer into test/template
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/safe_buffer_test.rb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/actionpack/test/template/safe_buffer_test.rb b/actionpack/test/template/safe_buffer_test.rb new file mode 100644 index 0000000000..2236709627 --- /dev/null +++ b/actionpack/test/template/safe_buffer_test.rb @@ -0,0 +1,41 @@ +require 'abstract_unit' + +class SafeBufferTest < ActionView::TestCase + def setup + @buffer = ActionView::SafeBuffer.new + end + + test "Should look like a string" do + assert @buffer.is_a?(String) + assert_equal "", @buffer + end + + test "Should escape a raw string which is passed to them" do + @buffer << "<script>" + assert_equal "<script>", @buffer + end + + test "Should NOT escape a safe value passed to it" do + @buffer << "<script>".html_safe! + assert_equal "<script>", @buffer + end + + test "Should not mess with an innocuous string" do + @buffer << "Hello" + assert_equal "Hello", @buffer + end + + test "Should not mess with a previously escape test" do + @buffer << CGI.escapeHTML("<script>") + assert_equal "<script>", @buffer + end + + test "Should be considered safe" do + assert @buffer.html_safe? + end + + test "Should return a safe buffer when calling to_s" do + new_buffer = @buffer.to_s + assert_equal ActionView::SafeBuffer, new_buffer.class + end +end |