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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
|
# frozen_string_literal: true
require "helper"
module Nokogiri
module XML
class TestDocumentFragment < Nokogiri::TestCase
describe Nokogiri::XML::DocumentFragment do
let(:xml) { Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) }
def test_replace_text_node
html = "foo"
doc = Nokogiri::XML::DocumentFragment.parse(html)
doc.children[0].replace("bar")
assert_equal("bar", doc.children[0].content)
end
def test_fragment_is_relative
doc = Nokogiri::XML('<root><a xmlns="blah" /></root>')
ctx = doc.root.child
fragment = Nokogiri::XML::DocumentFragment.new(doc, "<hello />", ctx)
hello = fragment.child
assert_equal("hello", hello.name)
assert_equal(doc.root.child.namespace, hello.namespace)
end
def test_node_fragment_is_relative
doc = Nokogiri::XML('<root><a xmlns="blah" /></root>')
assert(doc.root.child)
fragment = doc.root.child.fragment("<hello />")
hello = fragment.child
assert_equal("hello", hello.name)
assert_equal(doc.root.child.namespace, hello.namespace)
end
def test_new
assert(Nokogiri::XML::DocumentFragment.new(xml))
end
def test_fragment_should_have_document
fragment = Nokogiri::XML::DocumentFragment.new(xml)
assert_equal(xml, fragment.document)
end
def test_name
fragment = Nokogiri::XML::DocumentFragment.new(xml)
assert_equal("#document-fragment", fragment.name)
end
def test_static_method
fragment = Nokogiri::XML::DocumentFragment.parse("<div>a</div>")
assert_instance_of(Nokogiri::XML::DocumentFragment, fragment)
end
def test_static_method_with_namespaces
# follows different path in FragmentHandler#start_element which blew up after 597195ff
fragment = Nokogiri::XML::DocumentFragment.parse("<o:div>a</o:div>")
assert_instance_of(Nokogiri::XML::DocumentFragment, fragment)
end
def test_many_fragments
100.times { Nokogiri::XML::DocumentFragment.new(xml) }
end
def test_unparented_text_node_parse
fragment = Nokogiri::XML::DocumentFragment.parse("foo")
fragment.children.after("<bar/>")
end
def test_xml_fragment
fragment = Nokogiri::XML.fragment("<div>a</div>")
assert_equal("<div>a</div>", fragment.to_s)
end
def test_xml_fragment_has_multiple_toplevel_children
doc = "<div>b</div><div>e</div>"
fragment = Nokogiri::XML::Document.new.fragment(doc)
assert_equal("<div>b</div><div>e</div>", fragment.to_s)
end
def test_xml_fragment_has_outer_text
# this test is descriptive, not prescriptive.
doc = "a<div>b</div>"
fragment = Nokogiri::XML::Document.new.fragment(doc)
assert_equal("a<div>b</div>", fragment.to_s)
doc = "<div>b</div>c"
fragment = Nokogiri::XML::Document.new.fragment(doc)
assert_equal("<div>b</div>c", fragment.to_s)
end
def test_xml_fragment_case_sensitivity
doc = "<crazyDiv>b</crazyDiv>"
fragment = Nokogiri::XML::Document.new.fragment(doc)
assert_equal("<crazyDiv>b</crazyDiv>", fragment.to_s)
end
def test_xml_fragment_with_leading_whitespace
doc = " <div>b</div> "
fragment = Nokogiri::XML::Document.new.fragment(doc)
assert_equal(" <div>b</div> ", fragment.to_s)
end
def test_xml_fragment_with_leading_whitespace_and_newline
doc = " \n<div>b</div> "
fragment = Nokogiri::XML::Document.new.fragment(doc)
assert_equal(" \n<div>b</div> ", fragment.to_s)
end
def test_fragment_children_search
fragment = Nokogiri::XML::Document.new.fragment(
'<div><p id="content">hi</p></div>'
)
expected = fragment.children.xpath(".//p")
assert_equal(1, expected.length)
css = fragment.children.css("p")
search_css = fragment.children.search("p")
search_xpath = fragment.children.search(".//p")
assert_equal(expected, css)
assert_equal(expected, search_css)
assert_equal(expected, search_xpath)
end
def test_fragment_css_search_with_whitespace_and_node_removal
# The same xml without leading whitespace in front of the first line
# does not expose the error. Putting both nodes on the same line
# instead also fixes the crash.
fragment = Nokogiri::XML::DocumentFragment.parse(<<~EOXML)
<p id="content">hi</p> x <!--y--> <p>another paragraph</p>
EOXML
children = fragment.css("p")
assert_equal(2, children.length)
# removing the last node instead does not yield the error. Probably the
# node removal leaves around two consecutive text nodes which make the
# css search crash?
children.first.remove
assert_equal(1, fragment.xpath(".//p | self::p").length)
assert_equal(1, fragment.css("p").length)
end
def test_fragment_search_three_ways
frag = Nokogiri::XML::Document.new.fragment('<p id="content">foo</p><p id="content">bar</p>')
expected = frag.xpath('./*[@id = "content"]')
assert_equal(2, expected.length)
[
[:css, "#content"],
[:search, "#content"],
[:search, "./*[@id = 'content']"],
].each do |method, query|
result = frag.send(method, query)
assert_equal(expected, result,
"fragment search with :#{method} using '#{query}' expected '#{expected}' got '#{result}'")
end
end
def test_search_direct_children_of_fragment
xml = <<~XML
<div class="section header" id="1">
<div class="subsection header">sub 1</div>
<div class="subsection header">sub 2</div>
</div>
<div class="section header" id="2">
<div class="subsection header">sub 3</div>
<div class="subsection header">sub 4</div>
</div>
XML
fragment = Nokogiri::XML.fragment(xml)
result = (fragment > "div.header")
assert_equal(2, result.length)
assert_equal(["1", "2"], result.map { |n| n["id"] })
assert_empty(fragment > ".no-such-match")
end
def test_fragment_search_with_multiple_queries
xml = <<~EOF
<thing>
<div class="title">important thing</div>
</thing>
<thing>
<div class="content">stuff</div>
</thing>
<thing>
<p class="blah">more stuff</div>
</thing>
EOF
fragment = Nokogiri::XML.fragment(xml)
assert_kind_of(Nokogiri::XML::DocumentFragment, fragment)
assert_equal(3, fragment.xpath(".//div", ".//p").length)
assert_equal(3, fragment.css(".title", ".content", "p").length)
assert_equal(3, fragment.search(".//div", "p.blah").length)
end
def test_fragment_without_a_namespace_does_not_get_a_namespace
doc = Nokogiri::XML(<<~EOX)
<root xmlns="http://tenderlovemaking.com/" xmlns:foo="http://flavorjon.es/" xmlns:bar="http://google.com/">
<foo:existing></foo:existing>
</root>
EOX
frag = doc.fragment("<newnode></newnode>")
assert_nil(frag.namespace)
end
def test_fragment_namespace_resolves_against_document_root
doc = Nokogiri::XML(<<~EOX)
<root xmlns:foo="http://flavorjon.es/" xmlns:bar="http://google.com/">
<foo:existing></foo:existing>
</root>
EOX
ns = doc.root.namespace_definitions.detect { |x| x.prefix == "bar" }
frag = doc.fragment("<bar:newnode></bar:newnode>")
assert(frag.children.first.namespace)
assert_equal(ns, frag.children.first.namespace)
end
def test_fragment_invalid_namespace_is_silently_ignored
doc = Nokogiri::XML(<<~EOX)
<root xmlns:foo="http://flavorjon.es/" xmlns:bar="http://google.com/">
<foo:existing></foo:existing>
</root>
EOX
frag = doc.fragment("<baz:newnode></baz:newnode>")
assert_nil(frag.children.first.namespace)
end
def test_decorator_is_applied
x = Module.new do
def awesome!
end
end
util_decorate(xml, x)
fragment = Nokogiri::XML::DocumentFragment.new(xml, "<div>a</div><div>b</div>")
assert(node_set = fragment.css("div"))
assert_respond_to(node_set, :awesome!)
node_set.each do |node|
assert_respond_to(node, :awesome!, node.class)
end
assert_respond_to(fragment.children, :awesome!, fragment.children.class)
end
def test_decorator_is_applied_to_empty_set
x = Module.new do
def awesome!
end
end
util_decorate(xml, x)
fragment = Nokogiri::XML::DocumentFragment.new(xml, "")
assert_respond_to(fragment.children, :awesome!, fragment.children.class)
end
def test_add_node_to_doc_fragment_segfault
frag = Nokogiri::XML::DocumentFragment.new(xml, "<p>hello world</p>")
Nokogiri::XML::Comment.new(frag, "moo")
end
def test_issue_1077_parsing_of_frozen_strings
input = <<~EOS
<?xml version="1.0" encoding="utf-8"?>
<library>
<book title="I like turtles"/>
</library>
EOS
input.freeze
Nokogiri::XML::DocumentFragment.parse(input) # assert_nothing_raised
end
def test_dup_should_exist_in_a_new_document
skip_unless_libxml2("this is only true in the C extension")
# https://github.com/sparklemotion/nokogiri/issues/1063
original = Nokogiri::XML::DocumentFragment.parse("<div><p>hello</p></div>")
duplicate = original.dup
refute_equal(original.document, duplicate.document)
end
def test_dup_should_create_an_xml_document_fragment
# https://github.com/sparklemotion/nokogiri/issues/1846
original = Nokogiri::XML::DocumentFragment.parse("<div><p>hello</p></div>")
duplicate = original.dup
assert_instance_of(Nokogiri::XML::DocumentFragment, duplicate)
end
def test_dup_creates_tree_with_identical_structure
original = Nokogiri::XML::DocumentFragment.parse("<div><p>hello</p></div>")
duplicate = original.dup
assert_equal(original.to_html, duplicate.to_html)
end
def test_dup_creates_mutable_tree
original = Nokogiri::XML::DocumentFragment.parse("<div><p>hello</p></div>")
duplicate = original.dup
duplicate.at_css("div").add_child("<b>hello there</b>")
assert_nil(original.at_css("b"))
refute_nil(duplicate.at_css("b"))
end
def test_for_libxml_in_context_fragment_parsing_bug_workaround
skip_unless_libxml2("valgrind tests should only run with libxml2")
refute_valgrind_errors do
fragment = Nokogiri::XML.fragment("<div></div>")
parent = fragment.children.first
child = parent.parse("<h1></h1>").first
parent.add_child(child)
end
end
def test_for_libxml_in_context_memory_badness_when_encountering_encoding_errors
skip_unless_libxml2("valgrind tests should only run with libxml2")
# see issue #643 for background
refute_valgrind_errors do
html = <<~EOHTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=shizzle" />
</head>
<body>
<div>Foo</div>
</body>
</html>
EOHTML
doc = Nokogiri::HTML(html)
doc.at_css("div").replace("Bar")
end
end
describe "parse options" do
let(:xml_default) do
Nokogiri::XML::ParseOptions.new(Nokogiri::XML::ParseOptions::DEFAULT_XML)
end
let(:xml_strict) do
Nokogiri::XML::ParseOptions.new(Nokogiri::XML::ParseOptions::DEFAULT_XML).norecover
end
let(:input) { "<a>foo</a" }
it "sets the test up correctly" do
assert_predicate(xml_strict, :strict?)
end
describe "XML.fragment" do
it "has sane defaults" do
frag = Nokogiri::XML.fragment(input)
assert_equal("<a>foo</a>", frag.to_html)
refute_empty(frag.errors)
end
it "accepts options" do
frag = Nokogiri::XML.fragment(input, xml_default)
assert_equal("<a>foo</a>", frag.to_html)
refute_empty(frag.errors)
assert_raises(Nokogiri::SyntaxError) do
Nokogiri::XML.fragment(input, xml_strict)
end
end
it "takes a config block" do
default_config = nil
Nokogiri::XML.fragment(input) do |config|
default_config = config
end
refute_predicate(default_config, :strict?)
assert_raises(Nokogiri::SyntaxError) do
Nokogiri::XML.fragment(input, &:norecover)
end
end
end
describe "XML::DocumentFragment.parse" do
it "has sane defaults" do
frag = Nokogiri::XML::DocumentFragment.parse(input)
assert_equal("<a>foo</a>", frag.to_html)
refute_empty(frag.errors)
end
it "accepts options" do
frag = Nokogiri::XML::DocumentFragment.parse(input, xml_default)
assert_equal("<a>foo</a>", frag.to_html)
refute_empty(frag.errors)
assert_raises(Nokogiri::SyntaxError) do
Nokogiri::XML::DocumentFragment.parse(input, xml_strict)
end
end
it "takes a config block" do
default_config = nil
Nokogiri::XML::DocumentFragment.parse(input) do |config|
default_config = config
end
refute_predicate(default_config, :strict?)
assert_raises(Nokogiri::SyntaxError) do
Nokogiri::XML::DocumentFragment.parse(input, &:norecover)
end
end
end
describe "XML::DocumentFragment.new" do
describe "without a context node" do
it "has sane defaults" do
frag = Nokogiri::XML::DocumentFragment.new(Nokogiri::XML::Document.new, input)
assert_equal("<a>foo</a>", frag.to_html)
refute_empty(frag.errors)
end
it "accepts options" do
frag = Nokogiri::XML::DocumentFragment.new(Nokogiri::XML::Document.new, input, nil, xml_default)
assert_equal("<a>foo</a>", frag.to_html)
refute_empty(frag.errors)
assert_raises(Nokogiri::SyntaxError) do
Nokogiri::XML::DocumentFragment.new(Nokogiri::XML::Document.new, input, nil, xml_strict)
end
end
it "takes a config block" do
default_config = nil
Nokogiri::XML::DocumentFragment.new(Nokogiri::XML::Document.new, input) do |config|
default_config = config
end
refute_predicate(default_config, :strict?)
assert_raises(Nokogiri::SyntaxError) do
Nokogiri::XML::DocumentFragment.new(Nokogiri::XML::Document.new, input, &:norecover)
end
end
end
describe "with a context node" do
let(:document) { Nokogiri::XML::Document.parse("<context></context>") }
let(:context_node) { document.at_css("context") }
it "has sane defaults" do
frag = Nokogiri::XML::DocumentFragment.new(document, input, context_node)
assert_equal("<a>foo</a>", frag.to_html)
refute_empty(frag.errors)
end
it "accepts options" do
frag = Nokogiri::XML::DocumentFragment.new(document, input, context_node, xml_default)
assert_equal("<a>foo</a>", frag.to_html)
refute_empty(frag.errors)
assert_raises(Nokogiri::SyntaxError) do
Nokogiri::XML::DocumentFragment.new(document, input, context_node, xml_strict)
end
end
it "takes a config block" do
default_config = nil
Nokogiri::XML::DocumentFragment.new(document, input, context_node) do |config|
default_config = config
end
refute_predicate(default_config, :strict?)
assert_raises(Nokogiri::SyntaxError) do
Nokogiri::XML::DocumentFragment.new(document, input, context_node, &:norecover)
end
end
end
end
end
describe "subclassing" do
let(:klass) do
Class.new(Nokogiri::XML::DocumentFragment) do
attr_accessor :initialized_with, :initialized_count
def initialize(*args)
super
@initialized_with = args
@initialized_count ||= 0
@initialized_count += 1
end
end
end
describe ".new" do
it "returns an instance of the right class" do
fragment = klass.new(xml, "<div>a</div>")
assert_instance_of(klass, fragment)
end
it "calls #initialize exactly once" do
fragment = klass.new(xml, "<div>a</div>")
assert_equal(1, fragment.initialized_count)
end
it "passes args to #initialize" do
fragment = klass.new(xml, "<div>a</div>")
assert_equal([xml, "<div>a</div>"], fragment.initialized_with)
end
end
it "#dup returns the expected class" do
doc = klass.new(xml, "<div>a</div>").dup
assert_instance_of(klass, doc)
end
describe ".parse" do
it "returns an instance of the right class" do
fragment = klass.parse("<div>a</div>")
assert_instance_of(klass, fragment)
end
it "calls #initialize exactly once" do
fragment = klass.parse("<div>a</div>")
assert_equal(1, fragment.initialized_count)
end
it "passes the fragment" do
fragment = klass.parse("<div>a</div>")
assert_equal(Nokogiri::XML::DocumentFragment.parse("<div>a</div>").to_s, fragment.to_s)
end
end
end
describe "#path" do
it "should return '?'" do
# see https://github.com/sparklemotion/nokogiri/issues/2250
# this behavior is clearly undesirable, but is what libxml <= 2.9.10 returned, and so we
# do this for now to preserve the behavior across libxml2 versions.
xml = <<~EOF
<root1></root1>
<root2></root2>
EOF
frag = Nokogiri::XML::DocumentFragment.parse(xml)
assert_equal "?", frag.path
# # TODO: we should circle back and fix both the `#path` behavior and the `#xpath`
# # behavior so we can round-trip and get the DocumentFragment back again.
# assert_equal(frag, frag.at_xpath(doc.path)) # make sure we can round-trip
end
end
end
end
end
end
|