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 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
|
require "helper"
require "uri"
module Nokogiri
module XML
class TestDocument < Nokogiri::TestCase
URI = if URI.const_defined?(:DEFAULT_PARSER)
::URI::DEFAULT_PARSER
else
::URI
end
def setup
super
@xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
end
def test_dtd_with_empty_internal_subset
doc = Nokogiri::XML <<-eoxml
<?xml version="1.0"?>
<!DOCTYPE people >
<people>
</people>
eoxml
assert doc.root
end
# issue #1005
def test_strict_parsing_empty_doc_should_raise_exception
["", " "].each do |empty_string|
assert_raises(SyntaxError, "empty string '#{empty_string}' should raise a SyntaxError") do
Nokogiri::XML(empty_string) { |c| c.strict }
end
assert_raises(SyntaxError, "StringIO of '#{empty_string}' should raise a SyntaxError") do
Nokogiri::XML(StringIO.new(empty_string)) { |c| c.strict }
end
end
end
# issue #838
def test_document_with_invalid_prolog
doc = Nokogiri::XML "<? ?>"
assert_empty doc.content
end
# issue #837
def test_document_with_refentity
doc = Nokogiri::XML "&"
assert_equal "", doc.content
end
# issue 1060
def test_node_ownership_after_dup
html = "<html><head></head><body><div>replace me</div></body></html>"
doc = Nokogiri::XML::Document.parse(html)
dup = doc.dup
assert_same dup, dup.at_css("div").document
# should not raise an exception
dup.at_css("div").parse("<div>replaced</div>")
end
# issue #835
def test_manually_adding_reference_entities
d = Nokogiri::XML::Document.new
root = Nokogiri::XML::Element.new("bar", d)
txt = Nokogiri::XML::Text.new("foo", d)
ent = Nokogiri::XML::EntityReference.new(d, "#8217")
root << txt
root << ent
d << root
assert_match(/’/, d.to_html)
end
def test_document_with_initial_space
doc = Nokogiri::XML(" <?xml version='1.0' encoding='utf-8' ?><first \>")
assert_equal 2, doc.children.size
end
def test_root_set_to_nil
@xml.root = nil
assert_nil @xml.root
end
def test_million_laugh_attach
doc = Nokogiri::XML '<?xml version="1.0"?>
<!DOCTYPE lolz [
<!ENTITY lol "lol">
<!ENTITY lol2 "&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;&lol;">
<!ENTITY lol3 "&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;&lol2;">
<!ENTITY lol4 "&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;&lol3;">
<!ENTITY lol5 "&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;&lol4;">
<!ENTITY lol6 "&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;&lol5;">
<!ENTITY lol7 "&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;&lol6;">
<!ENTITY lol8 "&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;&lol7;">
<!ENTITY lol9 "&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;&lol8;">
]>
<lolz>&lol9;</lolz>'
assert_not_nil doc
end
def test_million_laugh_attach_2
doc = Nokogiri::XML '<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE member [
<!ENTITY a "&b;&b;&b;&b;&b;&b;&b;&b;&b;&b;">
<!ENTITY b "&c;&c;&c;&c;&c;&c;&c;&c;&c;&c;">
<!ENTITY c "&d;&d;&d;&d;&d;&d;&d;&d;&d;&d;">
<!ENTITY d "&e;&e;&e;&e;&e;&e;&e;&e;&e;&e;">
<!ENTITY e "&f;&f;&f;&f;&f;&f;&f;&f;&f;&f;">
<!ENTITY f "&g;&g;&g;&g;&g;&g;&g;&g;&g;&g;">
<!ENTITY g "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">
]>
<member>
&a;
</member>'
assert_not_nil doc
end
def test_ignore_unknown_namespace
doc = Nokogiri::XML(<<-eoxml)
<xml>
<unknown:foo xmlns='http://hello.com/' />
<bar />
</xml>
eoxml
if Nokogiri.jruby?
refute doc.xpath("//foo").first.namespace # assert that the namespace is nil
end
refute_empty doc.xpath("//bar"), "bar wasn't found in the document" # bar should be part of the doc
end
def test_collect_namespaces
doc = Nokogiri::XML(<<-eoxml)
<xml>
<foo xmlns='hello'>
<bar xmlns:foo='world' />
</foo>
</xml>
eoxml
assert_equal({ "xmlns" => "hello", "xmlns:foo" => "world" },
doc.collect_namespaces)
end
def test_subclass_initialize_modify # testing a segv
Class.new(Nokogiri::XML::Document) {
def initialize
super
body_node = Nokogiri::XML::Node.new "body", self
body_node.content = "stuff"
self.root = body_node
end
}.new
end
def test_create_text_node
txt = @xml.create_text_node "foo"
assert_instance_of Nokogiri::XML::Text, txt
assert_equal "foo", txt.text
assert_equal @xml, txt.document
end
def test_create_text_node_with_block
@xml.create_text_node "foo" do |txt|
assert_instance_of Nokogiri::XML::Text, txt
assert_equal "foo", txt.text
assert_equal @xml, txt.document
end
end
def test_create_element
elm = @xml.create_element("foo")
assert_instance_of Nokogiri::XML::Element, elm
assert_equal "foo", elm.name
assert_equal @xml, elm.document
end
def test_create_element_with_block
@xml.create_element("foo") do |elm|
assert_instance_of Nokogiri::XML::Element, elm
assert_equal "foo", elm.name
assert_equal @xml, elm.document
end
end
def test_create_element_with_attributes
elm = @xml.create_element("foo", :a => "1")
assert_instance_of Nokogiri::XML::Element, elm
assert_instance_of Nokogiri::XML::Attr, elm.attributes["a"]
assert_equal "1", elm["a"]
end
def test_create_element_with_namespace
elm = @xml.create_element("foo", :'xmlns:foo' => "http://tenderlovemaking.com")
assert_equal "http://tenderlovemaking.com", elm.namespaces["xmlns:foo"]
end
def test_create_element_with_hyphenated_namespace
elm = @xml.create_element("foo", :'xmlns:SOAP-ENC' => "http://tenderlovemaking.com")
assert_equal "http://tenderlovemaking.com", elm.namespaces["xmlns:SOAP-ENC"]
end
def test_create_element_with_content
elm = @xml.create_element("foo", "needs more xml/violence")
assert_equal "needs more xml/violence", elm.content
end
def test_create_cdata
cdata = @xml.create_cdata("abc")
assert_instance_of Nokogiri::XML::CDATA, cdata
assert_equal "abc", cdata.content
end
def test_create_cdata_with_block
@xml.create_cdata("abc") do |cdata|
assert_instance_of Nokogiri::XML::CDATA, cdata
assert_equal "abc", cdata.content
end
end
def test_create_comment
comment = @xml.create_comment("abc")
assert_instance_of Nokogiri::XML::Comment, comment
assert_equal "abc", comment.content
end
def test_create_comment_with_block
@xml.create_comment("abc") do |comment|
assert_instance_of Nokogiri::XML::Comment, comment
assert_equal "abc", comment.content
end
end
def test_pp
out = StringIO.new(String.new)
::PP.pp @xml, out
assert_operator out.string.length, :>, 0
end
def test_create_internal_subset_on_existing_subset
assert_not_nil @xml.internal_subset
assert_raises(RuntimeError) do
@xml.create_internal_subset("staff", nil, "staff.dtd")
end
end
def test_create_internal_subset
xml = Nokogiri::XML("<root />")
assert_nil xml.internal_subset
xml.create_internal_subset("name", nil, "staff.dtd")
ss = xml.internal_subset
assert_equal "name", ss.name
assert_nil ss.external_id
assert_equal "staff.dtd", ss.system_id
end
def test_external_subset
assert_nil @xml.external_subset
Dir.chdir(ASSETS_DIR) do
@xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) { |cfg|
cfg.dtdload
}
end
assert @xml.external_subset
end
def test_create_external_subset_fails_with_existing_subset
assert_nil @xml.external_subset
Dir.chdir(ASSETS_DIR) do
@xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) { |cfg|
cfg.dtdload
}
end
assert @xml.external_subset
assert_raises(RuntimeError) do
@xml.create_external_subset("staff", nil, "staff.dtd")
end
end
def test_create_external_subset
dtd = @xml.create_external_subset("staff", nil, "staff.dtd")
assert_nil dtd.external_id
assert_equal "staff.dtd", dtd.system_id
assert_equal "staff", dtd.name
assert_equal dtd, @xml.external_subset
end
def test_version
assert_equal "1.0", @xml.version
end
def test_add_namespace
assert_raise NoMethodError do
@xml.add_namespace("foo", "bar")
end
end
def test_attributes
assert_raise NoMethodError do
@xml.attributes
end
end
def test_namespace
assert_raise NoMethodError do
@xml.namespace
end
end
def test_namespace_definitions
assert_raise NoMethodError do
@xml.namespace_definitions
end
end
def test_line
assert_raise NoMethodError do
@xml.line
end
end
def test_empty_node_converted_to_html_is_not_self_closing
doc = Nokogiri::XML("<a></a>")
assert_equal "<a></a>", doc.inner_html
end
def test_fragment
fragment = @xml.fragment
assert_equal 0, fragment.children.length
end
def test_add_child_fragment_with_single_node
doc = Nokogiri::XML::Document.new
fragment = doc.fragment("<hello />")
doc.add_child fragment
assert_equal "/hello", doc.at("//hello").path
assert_equal "hello", doc.root.name
end
def test_add_child_fragment_with_multiple_nodes
doc = Nokogiri::XML::Document.new
fragment = doc.fragment("<hello /><goodbye />")
assert_raises(RuntimeError) do
doc.add_child fragment
end
end
def test_add_child_with_multiple_roots
assert_raises(RuntimeError) do
@xml << Node.new("foo", @xml)
end
end
def test_add_child_with_string
doc = Nokogiri::XML::Document.new
doc.add_child "<div>quack!</div>"
assert_equal 1, doc.root.children.length
assert_equal "quack!", doc.root.children.first.content
end
def test_prepend
doc = Nokogiri::XML("<root>")
node_set = doc.root.prepend_child "<branch/>"
assert_equal %w[branch], node_set.map(&:name)
branch = doc.at("//branch")
leaves = %w[leaf1 leaf2 leaf3]
leaves.each { |name|
branch.prepend_child("<%s/>" % name)
}
assert_equal leaves.length, branch.children.length
assert_equal leaves.reverse, branch.children.map(&:name)
end
def test_prepend_child_fragment_with_single_node
doc = Nokogiri::XML::Document.new
fragment = doc.fragment("<hello />")
doc.prepend_child fragment
assert_equal "/hello", doc.at("//hello").path
assert_equal "hello", doc.root.name
end
def test_prepend_child_fragment_with_multiple_nodes
doc = Nokogiri::XML::Document.new
fragment = doc.fragment("<hello /><goodbye />")
assert_raises(RuntimeError) do
doc.prepend_child fragment
end
end
def test_prepend_child_with_multiple_roots
assert_raises(RuntimeError) do
@xml.prepend_child Node.new("foo", @xml)
end
end
def test_prepend_child_with_string
doc = Nokogiri::XML::Document.new
doc.prepend_child "<div>quack!</div>"
assert_equal 1, doc.root.children.length
assert_equal "quack!", doc.root.children.first.content
end
def test_move_root_to_document_with_no_root
sender = Nokogiri::XML("<root>foo</root>")
newdoc = Nokogiri::XML::Document.new
newdoc.root = sender.root
end
def test_move_root_with_existing_root_gets_gcd
doc = Nokogiri::XML("<root>test</root>")
doc2 = Nokogiri::XML("<root>#{"x" * 5000000}</root>")
doc2.root = doc.root
end
def test_validate
if Nokogiri.uses_libxml?
assert_equal 45, @xml.validate.length
else
xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) { |cfg| cfg.dtdvalid }
assert_equal 40, xml.validate.length
end
end
def test_validate_no_internal_subset
doc = Nokogiri::XML("<test/>")
assert_nil doc.validate
end
def test_clone
assert @xml.clone
end
def test_document_should_not_have_default_ns
doc = Nokogiri::XML::Document.new
assert_raises NoMethodError do
doc.default_namespace = "http://innernet.com/"
end
assert_raises NoMethodError do
doc.add_namespace_definition("foo", "bar")
end
end
def test_parse_handles_nil_gracefully
@doc = Nokogiri::XML::Document.parse(nil)
assert_instance_of Nokogiri::XML::Document, @doc
end
def test_parse_takes_block
options = nil
Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) do |cfg|
options = cfg
end
assert options
end
def test_parse_yields_parse_options
options = nil
Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) do |cfg|
options = cfg
options.nonet.nowarning.dtdattr
end
assert options.nonet?
assert options.nowarning?
assert options.dtdattr?
end
def test_XML_takes_block
options = nil
Nokogiri::XML(File.read(XML_FILE), XML_FILE) do |cfg|
options = cfg
options.nonet.nowarning.dtdattr
end
assert options.nonet?
assert options.nowarning?
assert options.dtdattr?
end
def test_subclass
klass = Class.new(Nokogiri::XML::Document)
doc = klass.new
assert_instance_of klass, doc
end
def test_subclass_initialize
klass = Class.new(Nokogiri::XML::Document) do
attr_accessor :initialized_with
def initialize(*args)
@initialized_with = args
end
end
doc = klass.new("1.0", 1)
assert_equal ["1.0", 1], doc.initialized_with
end
def test_subclass_dup
klass = Class.new(Nokogiri::XML::Document)
doc = klass.new.dup
assert_instance_of klass, doc
end
def test_subclass_parse
klass = Class.new(Nokogiri::XML::Document)
doc = klass.parse(File.read(XML_FILE))
# lame hack uses root to avoid comparing DOCTYPE tags which can appear out of order.
# I should really finish lorax and use that here.
assert_equal @xml.root.to_s, doc.root.to_s
assert_instance_of klass, doc
end
def test_document_parse_method
xml = Nokogiri::XML::Document.parse(File.read(XML_FILE))
# lame hack uses root to avoid comparing DOCTYPE tags which can appear out of order.
# I should really finish lorax and use that here.
assert_equal @xml.root.to_s, xml.root.to_s
end
def test_encoding=
@xml.encoding = "UTF-8"
assert_match "UTF-8", @xml.to_xml
@xml.encoding = "EUC-JP"
assert_match "EUC-JP", @xml.to_xml
end
def test_namespace_should_not_exist
assert_raises(NoMethodError) {
@xml.namespace
}
end
def test_non_existant_function
# WTF. I don't know why this is different between MRI and Jruby
# They should be the same... Either way, raising an exception
# is the correct thing to do.
exception = RuntimeError
if !Nokogiri.uses_libxml? || (Nokogiri.uses_libxml? && Nokogiri::VERSION_INFO["libxml"]["platform"] == "jruby")
exception = Nokogiri::XML::XPath::SyntaxError
end
assert_raises(exception) {
@xml.xpath("//name[foo()]")
}
end
def test_xpath_syntax_error
assert_raises(Nokogiri::XML::XPath::SyntaxError) do
@xml.xpath('\\')
end
end
def test_ancestors
assert_equal 0, @xml.ancestors.length
end
def test_root_node_parent_is_document
parent = @xml.root.parent
assert_equal @xml, parent
assert_instance_of Nokogiri::XML::Document, parent
end
def test_xmlns_is_automatically_registered
doc = Nokogiri::XML(<<-eoxml)
<root xmlns="http://tenderlovemaking.com/">
<foo>
bar
</foo>
</root>
eoxml
assert_equal 1, doc.css("xmlns|foo").length
assert_equal 1, doc.css("foo").length
assert_equal 0, doc.css("|foo").length
assert_equal 1, doc.xpath("//xmlns:foo").length
assert_equal 1, doc.search("xmlns|foo").length
assert_equal 1, doc.search("//xmlns:foo").length
assert doc.at("xmlns|foo")
assert doc.at("//xmlns:foo")
assert doc.at("foo")
end
def test_xmlns_is_registered_for_nodesets
doc = Nokogiri::XML(<<-eoxml)
<root xmlns="http://tenderlovemaking.com/">
<foo>
<bar>
baz
</bar>
</foo>
</root>
eoxml
assert_equal 1, doc.css("xmlns|foo").css("xmlns|bar").length
assert_equal 1, doc.css("foo").css("bar").length
assert_equal 1, doc.xpath("//xmlns:foo").xpath("./xmlns:bar").length
assert_equal 1, doc.search("xmlns|foo").search("xmlns|bar").length
assert_equal 1, doc.search("//xmlns:foo").search("./xmlns:bar").length
end
def test_to_xml_with_indent
doc = Nokogiri::XML("<root><foo><bar/></foo></root>")
doc = Nokogiri::XML(doc.to_xml(:indent => 5))
assert_indent 5, doc
end
def test_write_xml_to_with_indent
io = StringIO.new
doc = Nokogiri::XML("<root><foo><bar/></foo></root>")
doc.write_xml_to io, :indent => 5
io.rewind
doc = Nokogiri::XML(io.read)
assert_indent 5, doc
end
if ! Nokogiri.uses_libxml?("~> 2.6.0")
def test_encoding
xml = Nokogiri::XML(File.read(XML_FILE), XML_FILE, "UTF-8")
assert_equal "UTF-8", xml.encoding
end
end
def test_memory_explosion_on_invalid_xml
doc = Nokogiri::XML("<<<")
refute_nil doc
refute_empty doc.errors
end
def test_memory_explosion_on_wrong_formatted_element_following_the_root_element
doc = Nokogiri::XML("<a/><\n")
refute_nil doc
refute_empty doc.errors
end
def test_document_has_errors
doc = Nokogiri::XML(<<-eoxml)
<foo><bar></foo>
eoxml
assert doc.errors.length > 0
doc.errors.each do |error|
assert_match error.message, error.inspect
assert_match error.message, error.to_s
end
end
def test_strict_document_throws_syntax_error
assert_raises(Nokogiri::XML::SyntaxError) {
Nokogiri::XML("<foo><bar></foo>", nil, nil, 0)
}
assert_raises(Nokogiri::XML::SyntaxError) {
Nokogiri::XML("<foo><bar></foo>") { |cfg|
cfg.strict
}
}
assert_raises(Nokogiri::XML::SyntaxError) {
Nokogiri::XML(StringIO.new("<foo><bar></foo>")) { |cfg|
cfg.strict
}
}
end
def test_XML_function
xml = Nokogiri::XML(File.read(XML_FILE), XML_FILE)
assert xml.xml?
end
def test_url
assert @xml.url
assert_equal XML_FILE, @xml.url
end
def test_document_parent
xml = Nokogiri::XML(File.read(XML_FILE), XML_FILE)
assert_raises(NoMethodError) {
xml.parent
}
end
def test_document_name
xml = Nokogiri::XML(File.read(XML_FILE), XML_FILE)
assert_equal "document", xml.name
end
def test_parse_can_take_io
xml = nil
File.open(XML_FILE, "rb") { |f|
xml = Nokogiri::XML(f)
}
assert xml.xml?
assert_equal XML_FILE, xml.url
set = xml.search("//employee")
assert set.length > 0
end
def test_parsing_empty_io
doc = Nokogiri::XML.parse(StringIO.new(""))
refute_nil doc
end
def test_parse_works_with_an_object_that_responds_to_read
klass = Class.new do
def initialize
@contents = StringIO.new("<div>foo</div>")
end
def read(*args)
@contents.read(*args)
end
end
doc = Nokogiri::XML.parse klass.new
assert_equal "foo", doc.at_css("div").content
end
def test_parse_works_with_an_object_that_responds_to_path
xml = String.new("<root><sub>hello</sub></root>")
def xml.path
"/i/should/be/the/document/url"
end
doc = Nokogiri::XML.parse(xml)
assert_equal "/i/should/be/the/document/url", doc.url
end
# issue #1821, #2110
def test_parse_can_take_pathnames
assert(File.size(XML_ATOM_FILE) > 4096) # file must be big enough to trip the read callback more than once
doc = Nokogiri::XML.parse(Pathname.new(XML_ATOM_FILE))
# an arbitrary assertion on the structure of the document
assert_equal 20, doc.xpath("/xmlns:feed/xmlns:entry/xmlns:author",
"xmlns" => "http://www.w3.org/2005/Atom").length
assert_equal XML_ATOM_FILE, doc.url
end
def test_search_on_empty_documents
doc = Nokogiri::XML::Document.new
ns = doc.search("//foo")
assert_equal 0, ns.length
ns = doc.css("foo")
assert_equal 0, ns.length
ns = doc.xpath("//foo")
assert_equal 0, ns.length
end
def test_document_search_with_multiple_queries
xml = '<document>
<thing>
<div class="title">important thing</div>
</thing>
<thing>
<div class="content">stuff</div>
</thing>
<thing>
<p class="blah">more stuff</div>
</thing>
</document>'
document = Nokogiri::XML(xml)
assert_kind_of Nokogiri::XML::Document, document
assert_equal 3, document.xpath(".//div", ".//p").length
assert_equal 3, document.css(".title", ".content", "p").length
assert_equal 3, document.search(".//div", "p.blah").length
end
def test_bad_xpath_raises_syntax_error
assert_raises(XML::XPath::SyntaxError) {
@xml.xpath('\\')
}
end
def test_find_with_namespace
doc = Nokogiri::XML.parse(<<-eoxml)
<x xmlns:tenderlove='http://tenderlovemaking.com/'>
<tenderlove:foo awesome='true'>snuggles!</tenderlove:foo>
</x>
eoxml
ctx = Nokogiri::XML::XPathContext.new(doc)
ctx.register_ns "tenderlove", "http://tenderlovemaking.com/"
set = ctx.evaluate("//tenderlove:foo")
assert_equal 1, set.length
assert_equal "foo", set.first.name
# It looks like only the URI is important:
ctx = Nokogiri::XML::XPathContext.new(doc)
ctx.register_ns "america", "http://tenderlovemaking.com/"
set = ctx.evaluate("//america:foo")
assert_equal 1, set.length
assert_equal "foo", set.first.name
# Its so important that a missing slash will cause it to return nothing
ctx = Nokogiri::XML::XPathContext.new(doc)
ctx.register_ns "america", "http://tenderlovemaking.com"
set = ctx.evaluate("//america:foo")
assert_equal 0, set.length
end
def test_xml?
assert @xml.xml?
end
def test_document
assert @xml.document
end
def test_singleton_methods
assert node_set = @xml.search("//name")
assert node_set.length > 0
node = node_set.first
def node.test
"test"
end
assert node_set = @xml.search("//name")
assert_equal "test", node_set.first.test
end
def test_multiple_search
assert node_set = @xml.search("//employee", "//name")
employees = @xml.search("//employee")
names = @xml.search("//name")
assert_equal(employees.length + names.length, node_set.length)
end
def test_node_set_index
assert node_set = @xml.search("//employee")
assert_equal(5, node_set.length)
assert node_set[4]
assert_nil node_set[5]
end
def test_search
assert node_set = @xml.search("//employee")
assert_equal(5, node_set.length)
node_set.each do |node|
assert_equal("employee", node.name)
end
end
def test_dump
assert @xml.serialize
assert @xml.to_xml
end
def test_dup
dup = @xml.dup
assert_instance_of Nokogiri::XML::Document, dup
assert dup.xml?, "duplicate should be xml"
end
def test_new
doc = nil
doc = Nokogiri::XML::Document.new
assert doc
assert doc.xml?
assert_nil doc.root
end
def test_set_root
doc = nil
doc = Nokogiri::XML::Document.new
assert doc
assert doc.xml?
assert_nil doc.root
node = Nokogiri::XML::Node.new("b", doc) { |n|
n.content = "hello world"
}
assert_equal("hello world", node.content)
doc.root = node
assert_equal(node, doc.root)
end
def test_remove_namespaces
doc = Nokogiri::XML <<-EOX
<root xmlns:a="http://a.flavorjon.es/" xmlns:b="http://b.flavorjon.es/">
<a:foo>hello from a</a:foo>
<b:foo>hello from b</b:foo>
<container xmlns:c="http://c.flavorjon.es/">
<c:foo c:attr='attr-value'>hello from c</c:foo>
</container>
</root>
EOX
namespaces = doc.root.namespaces
# assert on setup
assert_equal 2, doc.root.namespaces.length
assert_equal 3, doc.at_xpath("//container").namespaces.length
assert_equal 0, doc.xpath("//foo").length
assert_equal 1, doc.xpath("//a:foo").length
assert_equal 1, doc.xpath("//a:foo").length
assert_equal 1, doc.xpath("//x:foo", "x" => "http://c.flavorjon.es/").length
assert_match %r{foo c:attr}, doc.to_xml
doc.at_xpath("//x:foo", "x" => "http://c.flavorjon.es/").tap do |node|
assert_nil node["attr"]
assert_equal "attr-value", node["c:attr"]
assert_nil node.attribute_with_ns("attr", nil)
assert_equal "attr-value", node.attribute_with_ns("attr", "http://c.flavorjon.es/").value
assert_equal "attr-value", node.attributes["attr"].value
end
doc.remove_namespaces!
assert_equal 0, doc.root.namespaces.length
assert_equal 0, doc.at_xpath("//container").namespaces.length
assert_equal 3, doc.xpath("//foo").length
assert_equal 0, doc.xpath("//a:foo", namespaces).length
assert_equal 0, doc.xpath("//a:foo", namespaces).length
assert_equal 0, doc.xpath("//x:foo", "x" => "http://c.flavorjon.es/").length
assert_match %r{foo attr}, doc.to_xml
doc.at_xpath("//container/foo").tap do |node|
assert_equal "attr-value", node["attr"]
assert_nil node["c:attr"]
assert_equal "attr-value", node.attribute_with_ns("attr", nil).value
assert_nil node.attribute_with_ns("attr", "http://c.flavorjon.es/")
assert_equal "attr-value", node.attributes["attr"].value # doesn't change!
end
end
# issue #785
def test_attribute_decoration
decorator = Module.new do
def test_method
end
end
util_decorate(@xml, decorator)
assert @xml.search("//@street").first.respond_to?(:test_method)
end
def test_subset_is_decorated
x = Module.new do
def awesome!
end
end
util_decorate(@xml, x)
assert @xml.respond_to?(:awesome!)
assert node_set = @xml.search("//staff")
assert node_set.respond_to?(:awesome!)
assert subset = node_set.search(".//employee")
assert subset.respond_to?(:awesome!)
assert sub_subset = node_set.search(".//name")
assert sub_subset.respond_to?(:awesome!)
end
def test_decorator_is_applied
x = Module.new do
def awesome!
end
end
util_decorate(@xml, x)
assert @xml.respond_to?(:awesome!)
assert node_set = @xml.search("//employee")
assert node_set.respond_to?(:awesome!)
node_set.each do |node|
assert node.respond_to?(:awesome!), node.class
end
assert @xml.root.respond_to?(:awesome!)
assert @xml.children.respond_to?(:awesome!)
end
if Nokogiri.jruby?
def wrap_java_document
require "java"
factory = javax.xml.parsers.DocumentBuilderFactory.newInstance
builder = factory.newDocumentBuilder
document = builder.newDocument
root = document.createElement("foo")
document.appendChild(root)
Nokogiri::XML::Document.wrap(document)
end
end
def test_java_integration
skip("CRuby doesn't have the Document#wrap method") unless Nokogiri.jruby?
noko_doc = wrap_java_document
assert_equal "foo", noko_doc.root.name
noko_doc = Nokogiri::XML(<<eoxml)
<foo xmlns='hello'>
<bar xmlns:foo='world' />
</foo>
eoxml
dom = noko_doc.to_java
assert dom.kind_of? org.w3c.dom.Document
assert_equal "foo", dom.getDocumentElement().getTagName()
end
def test_add_child
skip("CRuby doesn't have the Document#wrap method") unless Nokogiri.jruby?
doc = wrap_java_document
doc.root.add_child "<bar />"
end
def test_can_be_closed
f = File.open XML_FILE
Nokogiri::XML f
f.close
end
describe "XML::Document.parse" do
# establish baseline behavior for HTML document behavior in
# https://github.com/sparklemotion/nokogiri/issues/2130
# (see similar tests in test/html/test_document.rb)
let(:xml_strict) do
Nokogiri::XML::ParseOptions.new(Nokogiri::XML::ParseOptions::DEFAULT_XML).norecover
end
it "sets the test up correctly" do
assert(xml_strict.strict?)
end
describe "read memory" do
let(:input) { "<html><body><div" }
describe "strict parsing" do
let(:parse_options) { xml_strict }
it "raises exception on parse error" do
assert_raises Nokogiri::SyntaxError do
Nokogiri::XML.parse(input, nil, nil, parse_options)
end
end
end
describe "default options" do
it "does not raise exception on parse error" do
doc = Nokogiri::XML.parse(input)
assert_operator(doc.errors.length, :>, 0)
end
end
end
describe "read io" do
let(:input) { StringIO.new("<html><body><div") }
describe "strict parsing" do
let(:parse_options) { xml_strict }
it "raises exception on parse error" do
assert_raises Nokogiri::SyntaxError do
Nokogiri::XML.parse(input, nil, nil, parse_options)
end
end
end
describe "default options" do
it "does not raise exception on parse error" do
doc = Nokogiri::XML.parse(input)
assert_operator(doc.errors.length, :>, 0)
end
end
end
end
end
end
end
|