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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
require "helper"
module Nokogiri
module CSS
class TestCssIntegration < Nokogiri::TestCase
def setup
super
doc = <<~EOF
<html>
<table>
<tr><td>row1 </td></tr>
<tr><td>row2 </td></tr>
<tr><td>row3 </td></tr>
<tr><td>row4 </td></tr>
<tr><td>row5 </td></tr>
<tr><td>row6 </td></tr>
<tr><td>row7 </td></tr>
<tr><td>row8 </td></tr>
<tr><td>row9 </td></tr>
<tr><td>row10 </td></tr>
<tr><td>row11 </td></tr>
<tr><td>row12 </td></tr>
<tr><td>row13 </td></tr>
<tr><td>row14 </td></tr>
</table>
<div>
<b>bold1 </b>
<i>italic1 </i>
<b class="a">bold2 </b>
<em class="a">emphasis1 </em>
<i>italic2 </i>
<p>para1 </p>
<b class="a">bold3 </b>
</div>
<div>
<i class="b">italic3 </i>
<em>emphasis2 </em>
<i class="b">italic4 </i>
<em>emphasis3 </em>
<i class="c">italic5 </i>
<span><i class="b">italic6 </i></span>
<i>italic7 </i>
</div>
<div>
<p>para2 </p>
<p>para3 </p>
</div>
<div>
<p>para4 </p>
</div>
<div>
<h2></h2>
<h1 class='c'>header1 </h1>
<h2></h2>
</div>
<div>
<h1 class='c'>header2 </h1>
<h1 class='c'>header3 </h1>
</div>
<div>
<h1 class='c'>header4</h1>
</div>
<p class='empty'></p>
<p class='not-empty'><b></b></p>
</html>
EOF
@parser = Nokogiri.HTML doc
@nested = Nokogiri.HTML(<<~EOF)
<html><body>
<div class='unnested direct'>
<b>bold</b>
<p>para</p>
</div>
<div class='unnested indirect'>
<b>bold</b>
<i>...</i>
<i>...</i>
<p>para</p>
</div>
<div class='nested-parent'>
<div class='nested-child direct'>
<b>bold</b>
<p>para</p>
</div>
<div class='nested-child indirect'>
<b>bold</b>
<i>...</i>
<i>...</i>
<p>para</p>
</div>
</div>
<div class="has-bold">
<b>bold</b>
</div>
<div class="has-para">
<p>para</p>
</div>
EOF
end
def test_even
assert_result_rows [2, 4, 6, 8, 10, 12, 14], @parser.search("table//tr:nth(even)")
end
def test_odd
assert_result_rows [1, 3, 5, 7, 9, 11, 13], @parser.search("table//tr:nth(odd)")
end
def test_n
assert_result_rows((1..14).to_a, @parser.search("table//tr:nth(n)"))
end
def test_2n
assert_equal @parser.search("table//tr:nth(even)").inner_text, @parser.search("table//tr:nth(2n)").inner_text
end
def test_2np1
assert_equal @parser.search("table//tr:nth(odd)").inner_text, @parser.search("table//tr:nth(2n+1)").inner_text
end
def test_4np3
assert_result_rows [3, 7, 11], @parser.search("table//tr:nth(4n+3)")
end
def test_3np4
assert_result_rows [4, 7, 10, 13], @parser.search("table//tr:nth(3n+4)")
end
def test_mnp3
assert_result_rows [1, 2, 3], @parser.search("table//tr:nth(-n+3)")
end
def test_4nm1
assert_result_rows [3, 7, 11], @parser.search("table//tr:nth(4n-1)")
end
def test_np3
assert_result_rows [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], @parser.search("table//tr:nth(n+3)")
end
def test_first
assert_result_rows [1], @parser.search("table//tr:first")
assert_result_rows [1], @parser.search("table//tr:first()")
end
def test_last
assert_result_rows [14], @parser.search("table//tr:last")
assert_result_rows [14], @parser.search("table//tr:last()")
end
def test_first_child
assert_result_rows [1], @parser.search("div/b:first-child"), "bold"
assert_result_rows [1], @parser.search("table//tr:first-child")
assert_result_rows [2, 4], @parser.search("div/h1.c:first-child"), "header"
end
def test_last_child
assert_result_rows [3], @parser.search("div/b:last-child"), "bold"
assert_result_rows [14], @parser.search("table//tr:last-child")
assert_result_rows [3, 4], @parser.search("div/h1.c:last-child"), "header"
end
def test_nth_child
assert_result_rows [2], @parser.search("div/b:nth-child(3)"), "bold"
assert_result_rows [5], @parser.search("table//tr:nth-child(5)")
assert_result_rows [1, 3], @parser.search("div/h1.c:nth-child(2)"), "header"
assert_result_rows [3, 4], @parser.search("div/i.b:nth-child(2n+1)"), "italic"
end
def test_first_of_type
assert_result_rows [1], @parser.search("table//tr:first-of-type")
assert_result_rows [1], @parser.search("div/b:first-of-type"), "bold"
assert_result_rows [2], @parser.search("div/b.a:first-of-type"), "bold"
assert_result_rows [3], @parser.search("div/i.b:first-of-type"), "italic"
end
def test_last_of_type
assert_result_rows [14], @parser.search("table//tr:last-of-type")
assert_result_rows [3], @parser.search("div/b:last-of-type"), "bold"
assert_result_rows [2, 7], @parser.search("div/i:last-of-type"), "italic"
assert_result_rows [2, 6, 7], @parser.search("div i:last-of-type"), "italic"
assert_result_rows [4], @parser.search("div/i.b:last-of-type"), "italic"
end
def test_nth_of_type
assert_result_rows [1], @parser.search("div/b:nth-of-type(1)"), "bold"
assert_result_rows [2], @parser.search("div/b:nth-of-type(2)"), "bold"
assert_result_rows [2], @parser.search("div/.a:nth-of-type(1)"), "bold"
assert_result_rows [2, 4, 7], @parser.search("div i:nth-of-type(2n)"), "italic"
assert_result_rows [1, 3, 5, 6], @parser.search("div i:nth-of-type(2n+1)"), "italic"
assert_result_rows [1], @parser.search("div .a:nth-of-type(2n)"), "emphasis"
assert_result_rows [2, 3], @parser.search("div .a:nth-of-type(2n+1)"), "bold"
end
def test_nth_last_of_type
assert_result_rows [14], @parser.search("table//tr:nth-last-of-type(1)")
assert_result_rows [12], @parser.search("table//tr:nth-last-of-type(3)")
assert_result_rows [2, 6, 7], @parser.search("div i:nth-last-of-type(1)"), "italic"
assert_result_rows [1, 5], @parser.search("div i:nth-last-of-type(2)"), "italic"
assert_result_rows [4], @parser.search("div/i.b:nth-last-of-type(1)"), "italic"
assert_result_rows [3], @parser.search("div/i.b:nth-last-of-type(2)"), "italic"
end
def test_only_of_type
assert_result_rows [1, 4], @parser.search("div/p:only-of-type"), "para"
assert_result_rows [5], @parser.search("div/i.c:only-of-type"), "italic"
end
def test_only_child
assert_result_rows [4], @parser.search("div/p:only-child"), "para"
assert_result_rows [4], @parser.search("div/h1.c:only-child"), "header"
end
def test_empty
result = @parser.search("p:empty")
assert_equal 1, result.size, "unexpected number of rows returned: '#{result.inner_text}'"
assert_equal "empty", result.first["class"]
end
def test_parent
result = @parser.search("p:parent")
assert_equal 5, result.size
0.upto(3) do |j|
assert_equal "para#{j + 1} ", result[j].inner_text
end
assert_equal "not-empty", result[4]["class"]
end
def test_siblings
doc = <<~EOF
<html><body><div>
<p id="1">p1 </p>
<p id="2">p2 </p>
<p id="3">p3 </p>
<p id="4">p4 </p>
<p id="5">p5 </p>
EOF
parser = Nokogiri.HTML doc
assert_equal 2, parser.search("#3 ~ p").size
assert_equal "p4 p5 ", parser.search("#3 ~ p").inner_text
assert_equal 0, parser.search("#5 ~ p").size
assert_equal 1, parser.search("#3 + p").size
assert_equal "p4 ", parser.search("#3 + p").inner_text
assert_equal 0, parser.search("#5 + p").size
end
def test_has_a
result = @nested.css("div:has(b)")
expected = [
@nested.at_css(".unnested.direct"),
@nested.at_css(".unnested.indirect"),
@nested.at_css(".nested-parent"),
@nested.at_css(".nested-child.direct"),
@nested.at_css(".nested-child.indirect"),
@nested.at_css(".has-bold"),
]
assert_equal expected, result.to_a
end
def test_has_a_gt_b
result = @nested.css("body *:has(div > b)")
expected = [
@nested.at_css(".nested-parent"),
]
assert_equal expected, result.to_a
end
def test_has_gt_b
result = @nested.css("body *:has(> b)")
expected = [
@nested.at_css(".unnested.direct"),
@nested.at_css(".unnested.indirect"),
@nested.at_css(".nested-child.direct"),
@nested.at_css(".nested-child.indirect"),
@nested.at_css(".has-bold"),
]
assert_equal expected, result.to_a
end
def test_has_a_plus_b
result = @nested.css("div:has(b + p)")
expected = [
@nested.at_css(".unnested.direct"),
@nested.at_css(".nested-parent"),
@nested.at_css(".nested-child.direct"),
]
assert_equal expected, result.to_a
end
def test_has_plus_b
result = @nested.css("b:has(+ p)")
expected = [
@nested.at_css(".unnested.direct b"),
@nested.at_css(".nested-child.direct b"),
]
assert_equal expected, result.to_a
end
def test_has_a_tilde_b
result = @nested.css("div:has(b ~ p)")
expected = [
@nested.at_css(".unnested.direct"),
@nested.at_css(".unnested.indirect"),
@nested.at_css(".nested-parent"),
@nested.at_css(".nested-child.direct"),
@nested.at_css(".nested-child.indirect"),
]
assert_equal expected, result.to_a
end
def test_has_tilde_b
result = @nested.css("b:has(~ p)")
expected = [
@nested.at_css(".unnested.direct b"),
@nested.at_css(".unnested.indirect b"),
@nested.at_css(".nested-child.direct b"),
@nested.at_css(".nested-child.indirect b"),
].flatten
assert_equal expected, result.to_a
end
def test_class_attr_selector
doc = Nokogiri::HTML::Document.parse(<<~EOF)
<html><body>
<div class="qwer asdf zxcv">space-delimited</div>
<div class="qwer\tasdf\tzxcv">tab-delimited</div>
<div class="qwer\nasdf\nzxcv">newline-delimited</div>
<div class="qwer\rasdf\rzxcv">carriage-return-delimited</div>
</body></html>
EOF
result = doc.css("div[class~='asdf']")
assert_equal 4, result.length
expected = doc.css("div")
assert_equal expected, result
end
private
def assert_result_rows(intarray, result, word = "row")
assert_equal intarray.size, result.size,
"unexpected number of rows returned: '#{result.inner_text}'"
assert_equal intarray.map { |j| "#{word}#{j}" }.join(" "), result.inner_text.strip,
result.inner_text
end
end
end
end
|