class SanitizeHelperTest
The exhaustive tests are in the quails-html-sanitizer gem. This tests that the helpers hook up correctly to the sanitizer classes.
Public Instance Methods
test_sanitize_form()
click to toggle source
# File actionview/test/template/sanitize_helper_test.rb, line 18 def test_sanitize_form assert_equal "", sanitize("<form action=\"/foo/bar\" method=\"post\"><input></form>") end
test_sanitize_is_marked_safe()
click to toggle source
# File actionview/test/template/sanitize_helper_test.rb, line 40 def test_sanitize_is_marked_safe assert sanitize("<html><script></script></html>").html_safe? end
test_should_sanitize_illegal_style_properties()
click to toggle source
# File actionview/test/template/sanitize_helper_test.rb, line 22 def test_should_sanitize_illegal_style_properties raw = %(display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;) expected = %(display: block; width: 100%; height: 100%; background-color: black; background-x: center; background-y: center;) assert_equal expected, sanitize_css(raw) end
test_strip_links()
click to toggle source
# File actionview/test/template/sanitize_helper_test.rb, line 10 def test_strip_links assert_equal "Dont touch me", strip_links("Dont touch me") assert_equal "on my mind\nall day long", strip_links("<a href='almost'>on my mind</a>\n<A href='almost'>all day long</A>") assert_equal "Magic", strip_links("<a href='http://www.rubyonquails.com/'>Mag<a href='http://www.ruby-lang.org/'>ic") assert_equal "My mind\nall <b>day</b> long", strip_links("<a href='almost'>My mind</a>\n<A href='almost'>all <b>day</b> long</A>") assert_equal "<malformed & link", strip_links('<<a href="https://example.org">malformed & link</a>') end