require File.expand_path(File.join(File.dirname(__FILE__), 'helper')) class SanitizeTest < Test::Unit::TestCase include Dryopteris def sanitize_html stream Dryopteris.sanitize(stream) end def sanitize_doc stream Dryopteris.sanitize_document(stream) end def check_sanitization(input, htmloutput, xhtmloutput, rexmloutput) # libxml uses double-quotes, so let's swappo-boppo our quotes before comparing. assert_equal htmloutput, sanitize_html(input).gsub(/"/,"'"), input doc = sanitize_doc(input).gsub(/"/,"'") assert doc.include?(htmloutput), "#{input}:\n#{doc}\nshould include:\n#{htmloutput}" end WhiteList::ALLOWED_ELEMENTS.each do |tag_name| define_method "test_should_allow_#{tag_name}_tag" do input = "<#{tag_name} title='1'>foo bar baz" htmloutput = "<#{tag_name.downcase} title='1'>foo <bad>bar</bad> baz" xhtmloutput = "<#{tag_name} title='1'>foo <bad>bar</bad> baz" rexmloutput = xhtmloutput ## ## these special cases are HTML5-tokenizer-dependent. ## libxml2 cleans up HTML differently, and I trust that. ## # if %w[caption colgroup optgroup option tbody td tfoot th thead tr].include?(tag_name) # htmloutput = "foo <bad>bar</bad> baz" # xhtmloutput = htmloutput # elsif tag_name == 'col' # htmloutput = "foo <bad>bar</bad> baz" # xhtmloutput = htmloutput # rexmloutput = "" # elsif tag_name == 'table' # htmloutput = "foo <bad>bar</bad>baz
" # xhtmloutput = htmloutput # elsif tag_name == 'image' # htmloutput = "foo <bad>bar</bad> baz" # xhtmloutput = htmloutput # rexmloutput = "foo <bad>bar</bad> baz" if WhiteList::VOID_ELEMENTS.include?(tag_name) if Nokogiri::LIBXML_VERSION <= "2.6.16" htmloutput = "<#{tag_name} title='1'/>

foo <bad>bar</bad> baz

" else htmloutput = "<#{tag_name} title='1'/>foo <bad>bar</bad> baz" end xhtmloutput = htmloutput # htmloutput += '
' if tag_name == 'br' rexmloutput = "<#{tag_name} title='1' />" end check_sanitization(input, htmloutput, xhtmloutput, rexmloutput) end end ## ## libxml2 downcases tag names as it parses, so this is unnecessary. ## # WhiteList::ALLOWED_ELEMENTS.each do |tag_name| # define_method "test_should_forbid_#{tag_name.upcase}_tag" do # input = "<#{tag_name.upcase} title='1'>foo bar baz" # output = "<#{tag_name.upcase} title=\"1\">foo <bad>bar</bad> baz</#{tag_name.upcase}>" # check_sanitization(input, output, output, output) # end # end WhiteList::ALLOWED_ATTRIBUTES.each do |attribute_name| next if attribute_name == 'style' next if attribute_name =~ /:/ && Nokogiri::LIBXML_VERSION <= '2.6.16' define_method "test_should_allow_#{attribute_name}_attribute" do input = "

foo bar baz

" output = "

foo <bad>bar</bad> baz

" htmloutput = "

foo <bad>bar</bad> baz

" check_sanitization(input, htmloutput, output, output) end end ## ## libxml2 downcases attributes as it parses, so this is unnecessary. ## # WhiteList::ALLOWED_ATTRIBUTES.each do |attribute_name| # define_method "test_should_forbid_#{attribute_name.upcase}_attribute" do # input = "

foo bar baz

" # output = "

foo <bad>bar</bad> baz

" # check_sanitization(input, output, output, output) # end # end WhiteList::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 WhiteList::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 if Nokogiri::LIBXML_VERSION > '2.6.16' def test_should_handle_astral_plane_characters input = "

𝒵 𝔸

" output = "

\360\235\222\265 \360\235\224\270

" check_sanitization(input, output, output, output) input = "

\360\235\224\270 a

" output = "

\360\235\224\270 a

" check_sanitization(input, output, output, output) end end # This affects only NS4. Is it worth fixing? # def test_javascript_includes # input = %(
foo
) # output = "
foo
" # check_sanitization(input, output, output, output) # end #html5_test_files('sanitizer').each do |filename| # JSON::parse(open(filename).read).each do |test| # define_method "test_#{test['name']}" do # check_sanitization( # test['input'], # test['output'], # test['xhtml'] || test['output'], # test['rexml'] || test['output'] # ) # end # end #end end