-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathdom_assertions_test.rb
213 lines (176 loc) · 6.29 KB
/
dom_assertions_test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# frozen_string_literal: true
require "test_helper"
class DomAssertionsTest < ActiveSupport::TestCase
Assertion = Minitest::Assertion
include Rails::Dom::Testing::Assertions::DomAssertions
def test_responds_to_assert_dom_equal
assert respond_to?(:assert_dom_equal)
end
def test_dom_equal
html = "<a></a>"
assert_dom_equal(html, html.dup)
end
def test_equal_doms_with_different_order_attributes
attributes = %{<a b="hello" c="hello"></a>}
reverse_attributes = %{<a c="hello" b="hello"></a>}
assert_dom_equal(attributes, reverse_attributes)
end
def test_dom_not_equal
assert_dom_not_equal("<a></a>", "<b></b>")
end
def test_unequal_doms_attributes_with_different_order_and_values
attributes = %{<a b="hello" c="hello"></a>}
reverse_attributes = %{<a c="hello" b="goodbye"></a>}
assert_dom_not_equal(attributes, reverse_attributes)
end
def test_custom_message_is_used_in_failures
message = "This is my message."
e = assert_raises(Assertion) do
assert_dom_equal("<a></a>", "<b></b>", message)
end
assert_equal e.message, message
end
def test_unequal_dom_attributes_in_children
assert_dom_not_equal(
%{<a><b c="1" /></a>},
%{<a><b c="2" /></a>}
)
end
def test_dom_equal_with_whitespace_strict
canonical = %{<a><b>hello</b> world</a>}
assert_dom_not_equal(canonical, %{<a>\n<b>hello\n </b> world</a>}, strict: true)
assert_dom_not_equal(canonical, %{<a> \n <b>\n hello</b> world</a>}, strict: true)
assert_dom_not_equal(canonical, %{<a>\n\t<b>hello</b> world</a>}, strict: true)
assert_dom_equal(canonical, %{<a><b>hello</b> world</a>}, strict: true)
end
def test_dom_equal_with_whitespace
canonical = %{<a><b>hello</b> world</a>}
assert_dom_equal(canonical, %{<a>\n<b>hello\n </b> world</a>})
assert_dom_equal(canonical, %{<a>\n<b>hello </b>\nworld</a>})
assert_dom_equal(canonical, %{<a> \n <b>\n hello</b> world</a>})
assert_dom_equal(canonical, %{<a> \n <b> hello </b>world</a>})
assert_dom_equal(canonical, %{<a> \n <b>hello </b>world\n</a>\n})
assert_dom_equal(canonical, %{<a>\n\t<b>hello</b> world</a>})
assert_dom_equal(canonical, %{<a>\n\t<b>hello </b>\n\tworld</a>})
end
def test_dom_equal_with_attribute_whitespace
canonical = %(<div data-wow="Don't strip this">)
assert_dom_equal(canonical, %(<div data-wow="Don't strip this">))
assert_dom_not_equal(canonical, %(<div data-wow="Don't strip this">))
end
def test_dom_equal_with_indentation
canonical = %{<a>hello <b>cruel</b> world</a>}
assert_dom_equal(canonical, <<-HTML)
<a>
hello
<b>cruel</b>
world
</a>
HTML
assert_dom_equal(canonical, <<-HTML)
<a>
hello
<b>cruel</b>
world
</a>
HTML
assert_dom_equal(canonical, <<-HTML)
<a>hello
<b>
cruel
</b>
world</a>
HTML
end
def test_dom_equal_with_surrounding_whitespace
canonical = %{<p>Lorem ipsum dolor</p><p>sit amet, consectetur adipiscing elit</p>}
assert_dom_equal(canonical, <<-HTML)
<p>
Lorem
ipsum
dolor
</p>
<p>
sit amet,
consectetur
adipiscing elit
</p>
HTML
end
def test_dom_not_equal_with_interior_whitespace
with_space = %{<a><b>hello world</b></a>}
without_space = %{<a><b>helloworld</b></a>}
assert_dom_not_equal(with_space, without_space)
end
end
class DomAssertionsHtmlParserSelectionTest < ActiveSupport::TestCase
include DomTestingHelpers
include Rails::Dom::Testing::Assertions::DomAssertions
def setup
super
# https://html.spec.whatwg.org/multipage/parsing.html#an-introduction-to-error-handling-and-strange-cases-in-the-parser
# we use these results to assert that we're invoking the expected parser.
@input = "<p>1<b>2<i>3</b>4</i>5</p>"
@html4_result = jruby? ? "<p>1<b>2<i>3</i></b><i>4</i>5</p>" : "<p>1<b>2<i>3</i></b>45</p>"
@html5_result = jruby? ? nil : "<p>1<b>2<i>3</i></b><i>4</i>5</p>"
end
test "default value is html4" do
assert_equal(:html4, Rails::Dom::Testing.default_html_version)
end
test "default html4, no version specified" do
with_default_html_version(:html4) do
assert_dom_equal(@html4_result, @input)
assert_dom_not_equal(@html5_result, @input)
end
end
test "default html4, html4 specified" do
with_default_html_version(:html4) do
assert_dom_equal(@html4_result, @input, html_version: :html4)
assert_dom_not_equal(@html5_result, @input, html_version: :html4)
end
end
test "default html4, html5 specified" do
skip("html5 is not supported") unless Rails::Dom::Testing.html5_support?
with_default_html_version(:html4) do
assert_dom_equal(@html5_result, @input, html_version: :html5)
assert_dom_not_equal(@html4_result, @input, html_version: :html5)
end
end
test "default html5, no version specified" do
skip("html5 is not supported") unless Rails::Dom::Testing.html5_support?
with_default_html_version(:html5) do
assert_dom_equal(@html5_result, @input)
assert_dom_not_equal(@html4_result, @input)
end
end
test "default html5, html4 specified" do
with_default_html_version(:html5) do
assert_dom_equal(@html4_result, @input, html_version: :html4)
assert_dom_not_equal(@html5_result, @input, html_version: :html4)
end
end
test "default html5, html5 specified" do
skip("html5 is not supported") unless Rails::Dom::Testing.html5_support?
with_default_html_version(:html5) do
assert_dom_equal(@html5_result, @input, html_version: :html5)
assert_dom_not_equal(@html4_result, @input, html_version: :html5)
end
end
test "raise NotImplementedError html5 when not supported" do
Rails::Dom::Testing.stub(:html5_support?, false) do
with_default_html_version(:html5) do
assert_raises(NotImplementedError) { assert_dom_equal("a", "b") }
assert_raises(NotImplementedError) { assert_dom_equal("a", "b", html_version: :html5) }
assert_nothing_raised { assert_dom_equal(@html4_result, @input, html_version: :html4) }
end
end
end
test "default set to invalid" do
with_default_html_version(:html9) do
assert_raises(ArgumentError) { assert_dom_equal("a", "b") }
end
end
test "invalid version specified" do
assert_raises(ArgumentError) { assert_dom_equal("a", "b", html_version: :html9) }
end
end