#!/usr/bin/env ruby require File.expand_path(File.dirname(__FILE__) + '/../test_helper') require 'sanitize' require 'json' class SanitizeTest < Test::Unit::TestCase include Sanitize def setup end def do_sanitize_xhtml stream safe_sanitize_xhtml(stream) end def check_sanitization(input, htmloutput, xhtmloutput, rexmloutput) assert_equal htmloutput, do_sanitize_xhtml(input) end def rexml_doc(string) REXML::Document.new( "
Greek φ, double-struck 𝔸, numeric 𝔸 ⁗
' output = "Greek \317\225, double-struck \360\235\224\270, numeric \360\235\224\270 \342\201\227
" output2 = "Greek \317\225, double-struck \360\235\224\270, numeric 𝔸 ⁗
" assert_equal(output, sanitize_xhtml(input)) assert_equal(output, sanitize_html(input)) assert_equal(output, my_rex(input)) assert_equal(output2, input.to_utf8) end Sanitizer::ALLOWED_ELEMENTS.each do |tag_name| define_method "test_should_allow_#{tag_name}_tag" do input = "<#{tag_name} title='1'>foofoo
foo <bad>bar</bad> baz
" htmloutput = "foo <bad>bar</bad> baz
" check_sanitization(input, output, output, output) end end Sanitizer::ALLOWED_ATTRIBUTES.each do |attribute_name| define_method "test_should_forbid_#{attribute_name.upcase}_attribute" do input = "foo
foo <bad>bar</bad> baz
" check_sanitization(input, output, output, output) end end Sanitizer::ALLOWED_PROTOCOLS.each do |protocol| define_method "test_should_allow_#{protocol}_uris" do input = %(foo) output = "foo" check_sanitization(input, output, output, output) end end Sanitizer::ALLOWED_PROTOCOLS.each do |protocol| define_method "test_should_allow_uppercase_#{protocol}_uris" do input = %(foo) output = "foo" check_sanitization(input, output, output, output) end end Sanitizer::SVG_ALLOW_LOCAL_HREF.each do |tag_name| next unless Sanitizer::ALLOWED_ELEMENTS.include?(tag_name) define_method "test_#{tag_name}_should_allow_local_href_with_ns_decl" do input = %(<#{tag_name} xlink:href="#foo" xmlns:xlink='http://www.w3.org/1999/xlink'/>) output = "<#{tag_name.downcase} xlink:href='#foo' xmlns:xlink='http://www.w3.org/1999/xlink'/>" xhtmloutput = "<#{tag_name} xlink:href='#foo' xmlns:xlink='http://www.w3.org/1999/xlink'/>" check_sanitization(input, xhtmloutput, xhtmloutput, xhtmloutput) end define_method "test_#{tag_name}_should_allow_local_href_with_newline_and_ns_decl" do input = %(<#{tag_name} xlink:href="\n#foo" xmlns:xlink='http://www.w3.org/1999/xlink'/>) output = "<#{tag_name.downcase} xlink:href='\n#foo' xmlns:xlink='http://www.w3.org/1999/xlink'/>" xhtmloutput = "<#{tag_name} xlink:href='\n#foo' xmlns:xlink='http://www.w3.org/1999/xlink'/>" check_sanitization(input, xhtmloutput, xhtmloutput, xhtmloutput) end define_method "test_#{tag_name}_should_forbid_local_href_without_ns_decl" do input = %(<#{tag_name} xlink:href="#foo"/>) output = "<#{tag_name.downcase} xlink:href='#foo'/>" xhtmloutput = "<#{tag_name} xlink:href='#foo'></#{tag_name}>" check_sanitization(input, xhtmloutput, xhtmloutput, xhtmloutput) end define_method "test_#{tag_name}_should_forbid_local_href_with_newline_without_ns_decl" do input = %(<#{tag_name} xlink:href="\n#foo"/>) output = "<#{tag_name.downcase} xlink:href='\n#foo'/>" xhtmloutput = "<#{tag_name} xlink:href='\n#foo'></#{tag_name}>" check_sanitization(input, xhtmloutput, xhtmloutput, xhtmloutput) end define_method "test_#{tag_name}_should_forbid_nonlocal_href_with_ns_decl" do input = %(<#{tag_name} xlink:href="http://bad.com/foo" xmlns:xlink='http://www.w3.org/1999/xlink'/>) output = "<#{tag_name.downcase} xmlns:xlink='http://www.w3.org/1999/xlink'/>" xhtmloutput = "<#{tag_name} xmlns:xlink='http://www.w3.org/1999/xlink'/>" check_sanitization(input, xhtmloutput, xhtmloutput, xhtmloutput) end define_method "test_#{tag_name}_should_forbid_nonlocal_href_with_newline_and_ns_decl" do input = %(<#{tag_name} xlink:href="\nhttp://bad.com/foo" xmlns:xlink='http://www.w3.org/1999/xlink'/>) output = "<#{tag_name.downcase} xmlns:xlink='http://www.w3.org/1999/xlink'/>" xhtmloutput = "<#{tag_name} xmlns:xlink='http://www.w3.org/1999/xlink'/>" check_sanitization(input, xhtmloutput, xhtmloutput, xhtmloutput) end end def test_should_handle_astral_plane_characters input = "𝒵 𝔸
" output = "\360\235\222\265 \360\235\224\270
" check_sanitization(input, output, output, output) input = "