diff options
author | Timm <kaspth@gmail.com> | 2013-06-12 15:59:34 +0200 |
---|---|---|
committer | Timm <kaspth@gmail.com> | 2014-06-11 17:53:28 +0200 |
commit | c94e24fbe7bcdf605cafcfabdf97454d1e1e0685 (patch) | |
tree | c87092cfabcbb09f8351722b6127dc7d37c87a8f /actionpack/lib/action_dispatch/testing/assertions | |
parent | 47baab0c415690aeb71ef3bc4831a462d8ead47b (diff) | |
download | rails-c94e24fbe7bcdf605cafcfabdf97454d1e1e0685.tar.gz rails-c94e24fbe7bcdf605cafcfabdf97454d1e1e0685.tar.bz2 rails-c94e24fbe7bcdf605cafcfabdf97454d1e1e0685.zip |
Added Loofah as a dependency in actionview.gemspec.
Implemented ActionView: FullSanitizer, LinkSanitizer and WhiteListSanitizer in sanitizers.rb.
Deprecated protocol_separator and bad_tags.
Added new tests in sanitizers_test.rb and reimplemented assert_dom_equal with Loofah.
Diffstat (limited to 'actionpack/lib/action_dispatch/testing/assertions')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/assertions/dom.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/dom.rb b/actionpack/lib/action_dispatch/testing/assertions/dom.rb index 241a39393a..d929e4b400 100644 --- a/actionpack/lib/action_dispatch/testing/assertions/dom.rb +++ b/actionpack/lib/action_dispatch/testing/assertions/dom.rb @@ -1,4 +1,4 @@ -require 'action_view/vendor/html-scanner' +require 'loofah' module ActionDispatch module Assertions @@ -7,20 +7,20 @@ module ActionDispatch # # # assert that the referenced method generates the appropriate HTML string # assert_dom_equal '<a href="http://www.example.com">Apples</a>', link_to("Apples", "http://www.example.com") - def assert_dom_equal(expected, actual, message = nil) - expected_dom = HTML::Document.new(expected).root - actual_dom = HTML::Document.new(actual).root - assert_equal expected_dom, actual_dom, message + def assert_dom_equal(expected, actual, message = "") + expected_dom = Loofah.fragment(expected).to_s + actual_dom = Loofah.fragment(actual).to_s + assert_equal expected_dom, actual_dom end # The negated form of +assert_dom_equivalent+. # # # assert that the referenced method does not generate the specified HTML string # assert_dom_not_equal '<a href="http://www.example.com">Apples</a>', link_to("Oranges", "http://www.example.com") - def assert_dom_not_equal(expected, actual, message = nil) - expected_dom = HTML::Document.new(expected).root - actual_dom = HTML::Document.new(actual).root - assert_not_equal expected_dom, actual_dom, message + def assert_dom_not_equal(expected, actual, message = "") + expected_dom = Loofah.fragment(expected).to_s + actual_dom = Loofah.fragment(actual).to_s + assert_not_equal expected_dom, actual_dom end end end |