nokogiri 1.6.0 → 1.13.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/Gemfile +3 -19
- data/LICENSE-DEPENDENCIES.md +1903 -0
- data/LICENSE.md +9 -0
- data/README.md +280 -0
- data/bin/nokogiri +84 -31
- data/dependencies.yml +23 -4
- data/ext/nokogiri/depend +38 -358
- data/ext/nokogiri/extconf.rb +952 -132
- data/ext/nokogiri/gumbo.c +584 -0
- data/ext/nokogiri/html4_document.c +166 -0
- data/ext/nokogiri/html4_element_description.c +294 -0
- data/ext/nokogiri/html4_entity_lookup.c +37 -0
- data/ext/nokogiri/html4_sax_parser_context.c +120 -0
- data/ext/nokogiri/html4_sax_push_parser.c +95 -0
- data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
- data/ext/nokogiri/nokogiri.c +231 -96
- data/ext/nokogiri/nokogiri.h +188 -129
- data/ext/nokogiri/test_global_handlers.c +40 -0
- data/ext/nokogiri/xml_attr.c +49 -40
- data/ext/nokogiri/xml_attribute_decl.c +18 -18
- data/ext/nokogiri/xml_cdata.c +24 -23
- data/ext/nokogiri/xml_comment.c +29 -21
- data/ext/nokogiri/xml_document.c +327 -223
- data/ext/nokogiri/xml_document_fragment.c +12 -16
- data/ext/nokogiri/xml_dtd.c +56 -50
- data/ext/nokogiri/xml_element_content.c +31 -26
- data/ext/nokogiri/xml_element_decl.c +22 -22
- data/ext/nokogiri/xml_encoding_handler.c +45 -20
- data/ext/nokogiri/xml_entity_decl.c +32 -30
- data/ext/nokogiri/xml_entity_reference.c +16 -18
- data/ext/nokogiri/xml_namespace.c +74 -32
- data/ext/nokogiri/xml_node.c +1290 -680
- data/ext/nokogiri/xml_node_set.c +239 -208
- data/ext/nokogiri/xml_processing_instruction.c +17 -19
- data/ext/nokogiri/xml_reader.c +227 -189
- data/ext/nokogiri/xml_relax_ng.c +52 -28
- data/ext/nokogiri/xml_sax_parser.c +123 -125
- data/ext/nokogiri/xml_sax_parser_context.c +138 -79
- data/ext/nokogiri/xml_sax_push_parser.c +88 -35
- data/ext/nokogiri/xml_schema.c +112 -33
- data/ext/nokogiri/xml_syntax_error.c +50 -23
- data/ext/nokogiri/xml_text.c +14 -18
- data/ext/nokogiri/xml_xpath_context.c +227 -140
- data/ext/nokogiri/xslt_stylesheet.c +269 -177
- data/gumbo-parser/CHANGES.md +63 -0
- data/gumbo-parser/Makefile +101 -0
- data/gumbo-parser/THANKS +27 -0
- data/gumbo-parser/src/Makefile +34 -0
- data/gumbo-parser/src/README.md +41 -0
- data/gumbo-parser/src/ascii.c +75 -0
- data/gumbo-parser/src/ascii.h +115 -0
- data/gumbo-parser/src/attribute.c +42 -0
- data/gumbo-parser/src/attribute.h +17 -0
- data/gumbo-parser/src/char_ref.c +22225 -0
- data/gumbo-parser/src/char_ref.h +29 -0
- data/gumbo-parser/src/char_ref.rl +2154 -0
- data/gumbo-parser/src/error.c +626 -0
- data/gumbo-parser/src/error.h +148 -0
- data/gumbo-parser/src/foreign_attrs.c +104 -0
- data/gumbo-parser/src/foreign_attrs.gperf +27 -0
- data/gumbo-parser/src/gumbo.h +943 -0
- data/gumbo-parser/src/insertion_mode.h +33 -0
- data/gumbo-parser/src/macros.h +91 -0
- data/gumbo-parser/src/parser.c +4875 -0
- data/gumbo-parser/src/parser.h +41 -0
- data/gumbo-parser/src/replacement.h +33 -0
- data/gumbo-parser/src/string_buffer.c +103 -0
- data/gumbo-parser/src/string_buffer.h +68 -0
- data/gumbo-parser/src/string_piece.c +48 -0
- data/gumbo-parser/src/svg_attrs.c +174 -0
- data/gumbo-parser/src/svg_attrs.gperf +77 -0
- data/gumbo-parser/src/svg_tags.c +137 -0
- data/gumbo-parser/src/svg_tags.gperf +55 -0
- data/gumbo-parser/src/tag.c +222 -0
- data/gumbo-parser/src/tag_lookup.c +382 -0
- data/gumbo-parser/src/tag_lookup.gperf +169 -0
- data/gumbo-parser/src/tag_lookup.h +13 -0
- data/gumbo-parser/src/token_buffer.c +79 -0
- data/gumbo-parser/src/token_buffer.h +71 -0
- data/gumbo-parser/src/token_type.h +17 -0
- data/gumbo-parser/src/tokenizer.c +3463 -0
- data/gumbo-parser/src/tokenizer.h +112 -0
- data/gumbo-parser/src/tokenizer_states.h +339 -0
- data/gumbo-parser/src/utf8.c +245 -0
- data/gumbo-parser/src/utf8.h +164 -0
- data/gumbo-parser/src/util.c +68 -0
- data/gumbo-parser/src/util.h +30 -0
- data/gumbo-parser/src/vector.c +111 -0
- data/gumbo-parser/src/vector.h +45 -0
- data/lib/nokogiri/class_resolver.rb +67 -0
- data/lib/nokogiri/css/node.rb +10 -58
- data/lib/nokogiri/css/parser.rb +407 -357
- data/lib/nokogiri/css/parser.y +265 -246
- data/lib/nokogiri/css/parser_extras.rb +52 -49
- data/lib/nokogiri/css/syntax_error.rb +3 -1
- data/lib/nokogiri/css/tokenizer.rb +107 -104
- data/lib/nokogiri/css/tokenizer.rex +8 -7
- data/lib/nokogiri/css/xpath_visitor.rb +266 -80
- data/lib/nokogiri/css.rb +50 -17
- data/lib/nokogiri/decorators/slop.rb +17 -8
- data/lib/nokogiri/extension.rb +31 -0
- data/lib/nokogiri/gumbo.rb +15 -0
- data/lib/nokogiri/html.rb +38 -27
- data/lib/nokogiri/{html → html4}/builder.rb +4 -2
- data/lib/nokogiri/html4/document.rb +331 -0
- data/lib/nokogiri/html4/document_fragment.rb +54 -0
- data/lib/nokogiri/{html → html4}/element_description.rb +3 -1
- data/lib/nokogiri/html4/element_description_defaults.rb +578 -0
- data/lib/nokogiri/{html → html4}/entity_lookup.rb +4 -2
- data/lib/nokogiri/{html → html4}/sax/parser.rb +24 -15
- data/lib/nokogiri/html4/sax/parser_context.rb +20 -0
- data/lib/nokogiri/html4/sax/push_parser.rb +37 -0
- data/lib/nokogiri/html4.rb +46 -0
- data/lib/nokogiri/html5/document.rb +88 -0
- data/lib/nokogiri/html5/document_fragment.rb +83 -0
- data/lib/nokogiri/html5/node.rb +96 -0
- data/lib/nokogiri/html5.rb +477 -0
- data/lib/nokogiri/jruby/dependencies.rb +21 -0
- data/lib/nokogiri/syntax_error.rb +2 -0
- data/lib/nokogiri/version/constant.rb +6 -0
- data/lib/nokogiri/version/info.rb +221 -0
- data/lib/nokogiri/version.rb +3 -105
- data/lib/nokogiri/xml/attr.rb +6 -3
- data/lib/nokogiri/xml/attribute_decl.rb +3 -1
- data/lib/nokogiri/xml/builder.rb +96 -54
- data/lib/nokogiri/xml/cdata.rb +3 -1
- data/lib/nokogiri/xml/character_data.rb +2 -0
- data/lib/nokogiri/xml/document.rb +234 -95
- data/lib/nokogiri/xml/document_fragment.rb +86 -36
- data/lib/nokogiri/xml/dtd.rb +16 -4
- data/lib/nokogiri/xml/element_content.rb +2 -0
- data/lib/nokogiri/xml/element_decl.rb +3 -1
- data/lib/nokogiri/xml/entity_decl.rb +4 -2
- data/lib/nokogiri/xml/entity_reference.rb +20 -0
- data/lib/nokogiri/xml/namespace.rb +3 -0
- data/lib/nokogiri/xml/node/save_options.rb +8 -4
- data/lib/nokogiri/xml/node.rb +947 -502
- data/lib/nokogiri/xml/node_set.rb +168 -159
- data/lib/nokogiri/xml/notation.rb +13 -0
- data/lib/nokogiri/xml/parse_options.rb +40 -5
- data/lib/nokogiri/xml/pp/character_data.rb +9 -6
- data/lib/nokogiri/xml/pp/node.rb +25 -26
- data/lib/nokogiri/xml/pp.rb +4 -2
- data/lib/nokogiri/xml/processing_instruction.rb +3 -1
- data/lib/nokogiri/xml/reader.rb +23 -28
- data/lib/nokogiri/xml/relax_ng.rb +8 -2
- data/lib/nokogiri/xml/sax/document.rb +45 -49
- data/lib/nokogiri/xml/sax/parser.rb +43 -41
- data/lib/nokogiri/xml/sax/parser_context.rb +8 -3
- data/lib/nokogiri/xml/sax/push_parser.rb +6 -5
- data/lib/nokogiri/xml/sax.rb +6 -4
- data/lib/nokogiri/xml/schema.rb +19 -9
- data/lib/nokogiri/xml/searchable.rb +270 -0
- data/lib/nokogiri/xml/syntax_error.rb +25 -1
- data/lib/nokogiri/xml/text.rb +2 -0
- data/lib/nokogiri/xml/xpath/syntax_error.rb +4 -2
- data/lib/nokogiri/xml/xpath.rb +15 -4
- data/lib/nokogiri/xml/xpath_context.rb +3 -3
- data/lib/nokogiri/xml.rb +38 -36
- data/lib/nokogiri/xslt/stylesheet.rb +3 -1
- data/lib/nokogiri/xslt.rb +29 -20
- data/lib/nokogiri.rb +69 -69
- data/lib/xsd/xmlparser/nokogiri.rb +26 -24
- data/patches/libxml2/0001-Remove-script-macro-support.patch +40 -0
- data/patches/libxml2/0002-Update-entities-to-remove-handling-of-ssi.patch +44 -0
- data/patches/libxml2/0003-libxml2.la-is-in-top_builddir.patch +25 -0
- data/patches/libxml2/0004-use-glibc-strlen.patch +53 -0
- data/patches/libxml2/0005-avoid-isnan-isinf.patch +81 -0
- data/patches/libxml2/0006-update-automake-files-for-arm64.patch +3040 -0
- data/patches/libxml2/0008-htmlParseComment-handle-abruptly-closed-comments.patch +61 -0
- data/patches/libxml2/0009-allow-wildcard-namespaces.patch +77 -0
- data/patches/libxslt/0001-update-automake-files-for-arm64.patch +3037 -0
- data/ports/archives/libxml2-2.9.13.tar.xz +0 -0
- data/ports/archives/libxslt-1.1.35.tar.xz +0 -0
- metadata +278 -362
- data/.autotest +0 -26
- data/.gemtest +0 -0
- data/.travis.yml +0 -27
- data/CHANGELOG.ja.rdoc +0 -819
- data/CHANGELOG.rdoc +0 -819
- data/C_CODING_STYLE.rdoc +0 -33
- data/Manifest.txt +0 -315
- data/README.ja.rdoc +0 -106
- data/README.rdoc +0 -175
- data/ROADMAP.md +0 -90
- data/Rakefile +0 -246
- data/STANDARD_RESPONSES.md +0 -47
- data/Y_U_NO_GEMSPEC.md +0 -155
- data/build_all +0 -105
- data/ext/nokogiri/html_document.c +0 -170
- data/ext/nokogiri/html_document.h +0 -10
- data/ext/nokogiri/html_element_description.c +0 -279
- data/ext/nokogiri/html_element_description.h +0 -10
- data/ext/nokogiri/html_entity_lookup.c +0 -32
- data/ext/nokogiri/html_entity_lookup.h +0 -8
- data/ext/nokogiri/html_sax_parser_context.c +0 -116
- data/ext/nokogiri/html_sax_parser_context.h +0 -11
- data/ext/nokogiri/html_sax_push_parser.c +0 -87
- data/ext/nokogiri/html_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_attr.h +0 -9
- data/ext/nokogiri/xml_attribute_decl.h +0 -9
- data/ext/nokogiri/xml_cdata.h +0 -9
- data/ext/nokogiri/xml_comment.h +0 -9
- data/ext/nokogiri/xml_document.h +0 -23
- data/ext/nokogiri/xml_document_fragment.h +0 -10
- data/ext/nokogiri/xml_dtd.h +0 -10
- data/ext/nokogiri/xml_element_content.h +0 -10
- data/ext/nokogiri/xml_element_decl.h +0 -9
- data/ext/nokogiri/xml_encoding_handler.h +0 -8
- data/ext/nokogiri/xml_entity_decl.h +0 -10
- data/ext/nokogiri/xml_entity_reference.h +0 -9
- data/ext/nokogiri/xml_io.c +0 -56
- data/ext/nokogiri/xml_io.h +0 -11
- data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
- data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
- data/ext/nokogiri/xml_namespace.h +0 -13
- data/ext/nokogiri/xml_node.h +0 -13
- data/ext/nokogiri/xml_node_set.h +0 -14
- data/ext/nokogiri/xml_processing_instruction.h +0 -9
- data/ext/nokogiri/xml_reader.h +0 -10
- data/ext/nokogiri/xml_relax_ng.h +0 -9
- data/ext/nokogiri/xml_sax_parser.h +0 -39
- data/ext/nokogiri/xml_sax_parser_context.h +0 -10
- data/ext/nokogiri/xml_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_schema.h +0 -9
- data/ext/nokogiri/xml_syntax_error.h +0 -13
- data/ext/nokogiri/xml_text.h +0 -9
- data/ext/nokogiri/xml_xpath_context.h +0 -10
- data/ext/nokogiri/xslt_stylesheet.h +0 -14
- data/lib/nokogiri/html/document.rb +0 -254
- data/lib/nokogiri/html/document_fragment.rb +0 -41
- data/lib/nokogiri/html/element_description_defaults.rb +0 -671
- data/lib/nokogiri/html/sax/parser_context.rb +0 -16
- data/lib/nokogiri/html/sax/push_parser.rb +0 -16
- data/ports/archives/libxml2-2.8.0.tar.gz +0 -0
- data/ports/archives/libxslt-1.1.26.tar.gz +0 -0
- data/tasks/cross_compile.rb +0 -132
- data/tasks/nokogiri.org.rb +0 -24
- data/tasks/test.rb +0 -95
- data/test/css/test_nthiness.rb +0 -159
- data/test/css/test_parser.rb +0 -341
- data/test/css/test_tokenizer.rb +0 -198
- data/test/css/test_xpath_visitor.rb +0 -91
- data/test/decorators/test_slop.rb +0 -16
- data/test/files/2ch.html +0 -108
- data/test/files/address_book.rlx +0 -12
- data/test/files/address_book.xml +0 -10
- data/test/files/bar/bar.xsd +0 -4
- data/test/files/bogus.xml +0 -0
- data/test/files/dont_hurt_em_why.xml +0 -422
- data/test/files/encoding.html +0 -82
- data/test/files/encoding.xhtml +0 -84
- data/test/files/exslt.xml +0 -8
- data/test/files/exslt.xslt +0 -35
- data/test/files/foo/foo.xsd +0 -4
- data/test/files/metacharset.html +0 -10
- data/test/files/noencoding.html +0 -47
- data/test/files/po.xml +0 -32
- data/test/files/po.xsd +0 -66
- data/test/files/saml/saml20assertion_schema.xsd +0 -283
- data/test/files/saml/saml20protocol_schema.xsd +0 -302
- data/test/files/saml/xenc_schema.xsd +0 -146
- data/test/files/saml/xmldsig_schema.xsd +0 -318
- data/test/files/shift_jis.html +0 -10
- data/test/files/shift_jis.xml +0 -5
- data/test/files/snuggles.xml +0 -3
- data/test/files/staff.dtd +0 -10
- data/test/files/staff.xml +0 -59
- data/test/files/staff.xslt +0 -32
- data/test/files/test_document_url/bar.xml +0 -2
- data/test/files/test_document_url/document.dtd +0 -4
- data/test/files/test_document_url/document.xml +0 -6
- data/test/files/tlm.html +0 -850
- data/test/files/to_be_xincluded.xml +0 -2
- data/test/files/valid_bar.xml +0 -2
- data/test/files/xinclude.xml +0 -4
- data/test/helper.rb +0 -154
- data/test/html/sax/test_parser.rb +0 -141
- data/test/html/sax/test_parser_context.rb +0 -46
- data/test/html/test_builder.rb +0 -164
- data/test/html/test_document.rb +0 -552
- data/test/html/test_document_encoding.rb +0 -138
- data/test/html/test_document_fragment.rb +0 -261
- data/test/html/test_element_description.rb +0 -105
- data/test/html/test_named_characters.rb +0 -14
- data/test/html/test_node.rb +0 -196
- data/test/html/test_node_encoding.rb +0 -27
- data/test/namespaces/test_additional_namespaces_in_builder_doc.rb +0 -14
- data/test/namespaces/test_namespaces_in_builder_doc.rb +0 -75
- data/test/namespaces/test_namespaces_in_created_doc.rb +0 -75
- data/test/namespaces/test_namespaces_in_parsed_doc.rb +0 -66
- data/test/test_convert_xpath.rb +0 -135
- data/test/test_css_cache.rb +0 -45
- data/test/test_encoding_handler.rb +0 -46
- data/test/test_memory_leak.rb +0 -156
- data/test/test_nokogiri.rb +0 -132
- data/test/test_reader.rb +0 -555
- data/test/test_soap4r_sax.rb +0 -52
- data/test/test_xslt_transforms.rb +0 -254
- data/test/xml/node/test_save_options.rb +0 -28
- data/test/xml/node/test_subclass.rb +0 -44
- data/test/xml/sax/test_parser.rb +0 -366
- data/test/xml/sax/test_parser_context.rb +0 -106
- data/test/xml/sax/test_push_parser.rb +0 -157
- data/test/xml/test_attr.rb +0 -64
- data/test/xml/test_attribute_decl.rb +0 -86
- data/test/xml/test_builder.rb +0 -306
- data/test/xml/test_c14n.rb +0 -151
- data/test/xml/test_cdata.rb +0 -48
- data/test/xml/test_comment.rb +0 -29
- data/test/xml/test_document.rb +0 -828
- data/test/xml/test_document_encoding.rb +0 -28
- data/test/xml/test_document_fragment.rb +0 -223
- data/test/xml/test_dtd.rb +0 -103
- data/test/xml/test_dtd_encoding.rb +0 -33
- data/test/xml/test_element_content.rb +0 -56
- data/test/xml/test_element_decl.rb +0 -73
- data/test/xml/test_entity_decl.rb +0 -122
- data/test/xml/test_entity_reference.rb +0 -245
- data/test/xml/test_namespace.rb +0 -95
- data/test/xml/test_node.rb +0 -1137
- data/test/xml/test_node_attributes.rb +0 -96
- data/test/xml/test_node_encoding.rb +0 -107
- data/test/xml/test_node_inheritance.rb +0 -32
- data/test/xml/test_node_reparenting.rb +0 -374
- data/test/xml/test_node_set.rb +0 -755
- data/test/xml/test_parse_options.rb +0 -64
- data/test/xml/test_processing_instruction.rb +0 -30
- data/test/xml/test_reader_encoding.rb +0 -142
- data/test/xml/test_relax_ng.rb +0 -60
- data/test/xml/test_schema.rb +0 -103
- data/test/xml/test_syntax_error.rb +0 -12
- data/test/xml/test_text.rb +0 -45
- data/test/xml/test_unparented_node.rb +0 -422
- data/test/xml/test_xinclude.rb +0 -83
- data/test/xml/test_xpath.rb +0 -295
- data/test/xslt/test_custom_functions.rb +0 -133
- data/test/xslt/test_exception_handling.rb +0 -37
- data/test_all +0 -81
@@ -1,75 +0,0 @@
|
|
1
|
-
require "helper"
|
2
|
-
|
3
|
-
module Nokogiri
|
4
|
-
module XML
|
5
|
-
class TestNamespacesInCreatedDoc < Nokogiri::TestCase
|
6
|
-
def setup
|
7
|
-
super
|
8
|
-
@doc = Nokogiri::XML('<fruit xmlns="ns:fruit" xmlns:veg="ns:veg" xmlns:xlink="http://www.w3.org/1999/xlink"/>')
|
9
|
-
pear = @doc.create_element('pear')
|
10
|
-
bosc = @doc.create_element('bosc')
|
11
|
-
pear.add_child(bosc)
|
12
|
-
@doc.root << pear
|
13
|
-
@doc.root.add_child('<orange/>')
|
14
|
-
carrot = @doc.create_element('veg:carrot')
|
15
|
-
@doc.root << carrot
|
16
|
-
cheese = @doc.create_element('cheese', :xmlns => 'ns:dairy', :'xlink:href' => 'http://example.com/cheese/')
|
17
|
-
carrot << cheese
|
18
|
-
bacon = @doc.create_element('meat:bacon', :'xmlns:meat' => 'ns:meat')
|
19
|
-
apple = @doc.create_element('apple')
|
20
|
-
apple['count'] = 2
|
21
|
-
bacon << apple
|
22
|
-
tomato = @doc.create_element('veg:tomato')
|
23
|
-
bacon << tomato
|
24
|
-
@doc.root << bacon
|
25
|
-
end
|
26
|
-
|
27
|
-
def check_namespace e
|
28
|
-
e.namespace.nil? ? nil : e.namespace.href
|
29
|
-
end
|
30
|
-
|
31
|
-
def test_created_default_ns
|
32
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root)
|
33
|
-
end
|
34
|
-
def test_created_parent_default_ns
|
35
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root.elements[0])
|
36
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root.elements[1])
|
37
|
-
end
|
38
|
-
def test_created_grandparent_default_ns
|
39
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root.elements[0].elements[0])
|
40
|
-
end
|
41
|
-
def test_created_parent_nondefault_ns
|
42
|
-
assert_equal 'ns:veg', check_namespace(@doc.root.elements[2])
|
43
|
-
end
|
44
|
-
def test_created_single_decl_ns_1
|
45
|
-
assert_equal 'ns:dairy', check_namespace(@doc.root.elements[2].elements[0])
|
46
|
-
end
|
47
|
-
def test_created_nondefault_attr_ns
|
48
|
-
assert_equal 'http://www.w3.org/1999/xlink',
|
49
|
-
check_namespace(@doc.root.elements[2].elements[0].attribute_nodes.find { |a| a.name =~ /href/ })
|
50
|
-
end
|
51
|
-
def test_created_single_decl_ns_2
|
52
|
-
assert_equal 'ns:meat', check_namespace(@doc.root.elements[3])
|
53
|
-
end
|
54
|
-
def test_created_buried_default_ns
|
55
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root.elements[3].elements[0])
|
56
|
-
end
|
57
|
-
def test_created_buried_decl_ns
|
58
|
-
assert_equal 'ns:veg', check_namespace(@doc.root.elements[3].elements[1])
|
59
|
-
end
|
60
|
-
def test_created_namespace_count
|
61
|
-
n = @doc.root.clone
|
62
|
-
n.children.each(&:remove)
|
63
|
-
ns_attrs = n.to_xml.scan(/\bxmlns(?::.+?)?=/)
|
64
|
-
assert_equal 3, ns_attrs.length
|
65
|
-
end
|
66
|
-
|
67
|
-
def test_created_namespaced_attribute_on_unparented_node
|
68
|
-
doc = Nokogiri::XML('<root xmlns:foo="http://foo.io"/>')
|
69
|
-
node = @doc.create_element('obj', 'foo:attr' => 'baz')
|
70
|
-
doc.root.add_child(node)
|
71
|
-
assert_equal 'http://foo.io', doc.root.children.first.attribute_nodes.first.namespace.href
|
72
|
-
end
|
73
|
-
end
|
74
|
-
end
|
75
|
-
end
|
@@ -1,66 +0,0 @@
|
|
1
|
-
require "helper"
|
2
|
-
|
3
|
-
module Nokogiri
|
4
|
-
module XML
|
5
|
-
class TestNamespacesInParsedDoc < Nokogiri::TestCase
|
6
|
-
def setup
|
7
|
-
super
|
8
|
-
@doc = Nokogiri::XML <<-eoxml
|
9
|
-
<fruit xmlns="ns:fruit" xmlns:veg="ns:veg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
10
|
-
<pear>
|
11
|
-
<bosc/>
|
12
|
-
</pear>
|
13
|
-
<orange/>
|
14
|
-
<veg:carrot>
|
15
|
-
<cheese xmlns="ns:dairy" xlink:href="http://example.com/cheese/"/>
|
16
|
-
</veg:carrot>
|
17
|
-
<meat:bacon xmlns:meat="ns:meat">
|
18
|
-
<apple count="2"/>
|
19
|
-
<veg:tomato/>
|
20
|
-
</meat:bacon>
|
21
|
-
</fruit>
|
22
|
-
eoxml
|
23
|
-
end
|
24
|
-
|
25
|
-
def check_namespace e
|
26
|
-
e.namespace.nil? ? nil : e.namespace.href
|
27
|
-
end
|
28
|
-
|
29
|
-
def test_parsed_default_ns
|
30
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root)
|
31
|
-
end
|
32
|
-
def test_parsed_parent_default_ns
|
33
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root.elements[0])
|
34
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root.elements[1])
|
35
|
-
end
|
36
|
-
def test_parsed_grandparent_default_ns
|
37
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root.elements[0].elements[0])
|
38
|
-
end
|
39
|
-
def test_parsed_parent_nondefault_ns
|
40
|
-
assert_equal 'ns:veg', check_namespace(@doc.root.elements[2])
|
41
|
-
end
|
42
|
-
def test_parsed_single_decl_ns_1
|
43
|
-
assert_equal 'ns:dairy', check_namespace(@doc.root.elements[2].elements[0])
|
44
|
-
end
|
45
|
-
def test_parsed_nondefault_attr_ns
|
46
|
-
assert_equal 'http://www.w3.org/1999/xlink',
|
47
|
-
check_namespace(@doc.root.elements[2].elements[0].attribute_nodes.find { |a| a.name =~ /href/ })
|
48
|
-
end
|
49
|
-
def test_parsed_single_decl_ns_2
|
50
|
-
assert_equal 'ns:meat', check_namespace(@doc.root.elements[3])
|
51
|
-
end
|
52
|
-
def test_parsed_buried_default_ns
|
53
|
-
assert_equal 'ns:fruit', check_namespace(@doc.root.elements[3].elements[0])
|
54
|
-
end
|
55
|
-
def test_parsed_buried_decl_ns
|
56
|
-
assert_equal 'ns:veg', check_namespace(@doc.root.elements[3].elements[1])
|
57
|
-
end
|
58
|
-
def test_parsed_namespace_count
|
59
|
-
n = @doc.root.clone
|
60
|
-
n.children.each(&:remove)
|
61
|
-
ns_attrs = n.to_xml.scan(/\bxmlns(?::.+?)?=/)
|
62
|
-
assert_equal 3, ns_attrs.length
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
data/test/test_convert_xpath.rb
DELETED
@@ -1,135 +0,0 @@
|
|
1
|
-
require "helper"
|
2
|
-
|
3
|
-
class TestConvertXPath < Nokogiri::TestCase
|
4
|
-
|
5
|
-
def setup
|
6
|
-
super
|
7
|
-
@N = Nokogiri(File.read(HTML_FILE))
|
8
|
-
end
|
9
|
-
|
10
|
-
def assert_syntactical_equivalence(hpath, xpath, match, &blk)
|
11
|
-
blk ||= lambda {|j| j.first}
|
12
|
-
assert_equal match, blk.call(@N.search(xpath)), "xpath result did not match"
|
13
|
-
end
|
14
|
-
|
15
|
-
def test_child_tag
|
16
|
-
assert_syntactical_equivalence("h1[a]", ".//h1[child::a]", "Tender Lovemaking") do |j|
|
17
|
-
j.inner_text
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
def test_child_tag_equals
|
22
|
-
assert_syntactical_equivalence("h1[a='Tender Lovemaking']", ".//h1[child::a = 'Tender Lovemaking']", "Tender Lovemaking") do |j|
|
23
|
-
j.inner_text
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def test_filter_contains
|
28
|
-
assert_syntactical_equivalence("title:contains('Tender')", ".//title[contains(., 'Tender')]",
|
29
|
-
"Tender Lovemaking ") do |j|
|
30
|
-
j.inner_text
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
def test_filter_comment
|
35
|
-
assert_syntactical_equivalence("div comment()[2]", ".//div//comment()[position() = 2]", "<!-- end of header -->") do |j|
|
36
|
-
j.first.to_s
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
def test_filter_text
|
41
|
-
assert_syntactical_equivalence("a[text()]", ".//a[normalize-space(child::text())]", "<a href=\"http://tenderlovemaking.com\">Tender Lovemaking</a>") do |j|
|
42
|
-
j.first.to_s
|
43
|
-
end
|
44
|
-
assert_syntactical_equivalence("a[text()='Tender Lovemaking']", ".//a[normalize-space(child::text()) = 'Tender Lovemaking']", "<a href=\"http://tenderlovemaking.com\">Tender Lovemaking</a>") do |j|
|
45
|
-
j.first.to_s
|
46
|
-
end
|
47
|
-
assert_syntactical_equivalence("a/text()", ".//a/child::text()", "Tender Lovemaking") do |j|
|
48
|
-
j.first.to_s
|
49
|
-
end
|
50
|
-
assert_syntactical_equivalence("h2//a[text()!='Back Home!']", ".//h2//a[normalize-space(child::text()) != 'Back Home!']", "Meow meow meow meow meow") do |j|
|
51
|
-
j.first.inner_text
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
def test_filter_by_attr
|
56
|
-
assert_syntactical_equivalence("a[@href='http://blog.geminigeek.com/wordpress-theme']",
|
57
|
-
".//a[@href = 'http://blog.geminigeek.com/wordpress-theme']",
|
58
|
-
"http://blog.geminigeek.com/wordpress-theme") do |j|
|
59
|
-
j.first["href"]
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
def test_css_id
|
64
|
-
assert_syntactical_equivalence("#linkcat-7", ".//*[@id = 'linkcat-7']", "linkcat-7") do |j|
|
65
|
-
j.first["id"]
|
66
|
-
end
|
67
|
-
assert_syntactical_equivalence("li#linkcat-7", ".//li[@id = 'linkcat-7']", "linkcat-7") do |j|
|
68
|
-
j.first["id"]
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
def test_css_class
|
73
|
-
assert_syntactical_equivalence(".cat-item-15", ".//*[contains(concat(' ', @class, ' '), ' cat-item-15 ')]",
|
74
|
-
"cat-item cat-item-15") do |j|
|
75
|
-
j.first["class"]
|
76
|
-
end
|
77
|
-
assert_syntactical_equivalence("li.cat-item-15", ".//li[contains(concat(' ', @class, ' '), ' cat-item-15 ')]",
|
78
|
-
"cat-item cat-item-15") do |j|
|
79
|
-
j.first["class"]
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
def test_css_tags
|
84
|
-
assert_syntactical_equivalence("div li a", ".//div//li//a", "http://brobinius.org/") do |j|
|
85
|
-
j.first.inner_text
|
86
|
-
end
|
87
|
-
assert_syntactical_equivalence("div li > a", ".//div//li/a", "http://brobinius.org/") do |j|
|
88
|
-
j.first.inner_text
|
89
|
-
end
|
90
|
-
assert_syntactical_equivalence("h1 ~ small", ".//small[preceding-sibling::h1]", "The act of making love, tenderly.") do |j|
|
91
|
-
j.first.inner_text
|
92
|
-
end
|
93
|
-
assert_syntactical_equivalence("h1 ~ small", ".//small[preceding-sibling::h1]", "The act of making love, tenderly.") do |j|
|
94
|
-
j.first.inner_text
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
def test_positional
|
99
|
-
assert_syntactical_equivalence("div/div:first()", ".//div/div[position() = 1]", "\r\nTender Lovemaking\r\nThe act of making love, tenderly.\r\n".gsub(/[\r\n]/, '')) do |j|
|
100
|
-
j.first.inner_text.gsub(/[\r\n]/, '')
|
101
|
-
end
|
102
|
-
assert_syntactical_equivalence("div/div:first", ".//div/div[position() = 1]", "\r\nTender Lovemaking\r\nThe act of making love, tenderly.\r\n".gsub(/[\r\n]/, '')) do |j|
|
103
|
-
j.first.inner_text.gsub(/[\r\n]/, '')
|
104
|
-
end
|
105
|
-
assert_syntactical_equivalence("div//a:last()", ".//div//a[position() = last()]", "Wordpress") do |j|
|
106
|
-
j.last.inner_text
|
107
|
-
end
|
108
|
-
assert_syntactical_equivalence("div//a:last", ".//div//a[position() = last()]", "Wordpress") do |j|
|
109
|
-
j.last.inner_text
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
def test_multiple_filters
|
114
|
-
assert_syntactical_equivalence("a[@rel='bookmark'][1]", ".//a[@rel = 'bookmark' and position() = 1]", "Back Home!") do |j|
|
115
|
-
j.first.inner_text
|
116
|
-
end
|
117
|
-
end
|
118
|
-
|
119
|
-
# TODO:
|
120
|
-
# doc/'title ~ link' -> links that are siblings of title
|
121
|
-
# doc/'p[@class~="final"]' -> class includes string (whitespacy)
|
122
|
-
# doc/'p[text()*="final"]' -> class includes string (index) (broken: always returns true?)
|
123
|
-
# doc/'p[text()$="final"]' -> /final$/
|
124
|
-
# doc/'p[text()|="final"]' -> /^final$/
|
125
|
-
# doc/'p[text()^="final"]' -> string starts with 'final
|
126
|
-
# nth_first
|
127
|
-
# nth_last
|
128
|
-
# even
|
129
|
-
# odd
|
130
|
-
# first-child, nth-child, last-child, nth-last-child, nth-last-of-type
|
131
|
-
# only-of-type, only-child
|
132
|
-
# parent
|
133
|
-
# empty
|
134
|
-
# root
|
135
|
-
end
|
data/test/test_css_cache.rb
DELETED
@@ -1,45 +0,0 @@
|
|
1
|
-
require "helper"
|
2
|
-
|
3
|
-
class TestCssCache < Nokogiri::TestCase
|
4
|
-
|
5
|
-
def setup
|
6
|
-
super
|
7
|
-
@css = "a1 > b2 > c3"
|
8
|
-
@parse_result = Nokogiri::CSS.parse(@css)
|
9
|
-
@to_xpath_result = @parse_result.map {|ast| ast.to_xpath}
|
10
|
-
Nokogiri::CSS::Parser.class_eval do
|
11
|
-
class << @cache
|
12
|
-
alias :old_bracket :[]
|
13
|
-
attr_reader :count
|
14
|
-
def [](key)
|
15
|
-
@count ||= 0
|
16
|
-
@count += 1
|
17
|
-
old_bracket(key)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
assert Nokogiri::CSS::Parser.cache_on?
|
22
|
-
end
|
23
|
-
|
24
|
-
def teardown
|
25
|
-
Nokogiri::CSS::Parser.clear_cache
|
26
|
-
Nokogiri::CSS::Parser.set_cache true
|
27
|
-
end
|
28
|
-
|
29
|
-
[ false, true ].each do |cache_setting|
|
30
|
-
define_method "test_css_cache_#{cache_setting ? "true" : "false"}" do
|
31
|
-
times = cache_setting ? 4 : nil
|
32
|
-
|
33
|
-
Nokogiri::CSS::Parser.set_cache cache_setting
|
34
|
-
|
35
|
-
Nokogiri::CSS.xpath_for(@css)
|
36
|
-
Nokogiri::CSS.xpath_for(@css)
|
37
|
-
Nokogiri::CSS::Parser.new.xpath_for(@css)
|
38
|
-
Nokogiri::CSS::Parser.new.xpath_for(@css)
|
39
|
-
|
40
|
-
assert_equal(times, Nokogiri::CSS::Parser.class_eval { @cache.count })
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
|
45
|
-
end
|
@@ -1,46 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
|
3
|
-
require "helper"
|
4
|
-
|
5
|
-
class TestEncodingHandler < Nokogiri::TestCase
|
6
|
-
def teardown
|
7
|
-
Nokogiri::EncodingHandler.clear_aliases!
|
8
|
-
end
|
9
|
-
|
10
|
-
def test_get
|
11
|
-
assert_not_nil Nokogiri::EncodingHandler['UTF-8']
|
12
|
-
assert_nil Nokogiri::EncodingHandler['alsdkjfhaldskjfh']
|
13
|
-
end
|
14
|
-
|
15
|
-
def test_name
|
16
|
-
eh = Nokogiri::EncodingHandler['UTF-8']
|
17
|
-
assert_equal "UTF-8", eh.name
|
18
|
-
end
|
19
|
-
|
20
|
-
def test_alias
|
21
|
-
Nokogiri::EncodingHandler.alias('UTF-8', 'UTF-18')
|
22
|
-
assert_equal 'UTF-8', Nokogiri::EncodingHandler['UTF-18'].name
|
23
|
-
end
|
24
|
-
|
25
|
-
def test_cleanup_aliases
|
26
|
-
assert_nil Nokogiri::EncodingHandler['UTF-9']
|
27
|
-
Nokogiri::EncodingHandler.alias('UTF-8', 'UTF-9')
|
28
|
-
assert_not_nil Nokogiri::EncodingHandler['UTF-9']
|
29
|
-
|
30
|
-
Nokogiri::EncodingHandler.clear_aliases!
|
31
|
-
assert_nil Nokogiri::EncodingHandler['UTF-9']
|
32
|
-
end
|
33
|
-
|
34
|
-
def test_delete
|
35
|
-
assert_nil Nokogiri::EncodingHandler['UTF-9']
|
36
|
-
Nokogiri::EncodingHandler.alias('UTF-8', 'UTF-9')
|
37
|
-
assert_not_nil Nokogiri::EncodingHandler['UTF-9']
|
38
|
-
|
39
|
-
Nokogiri::EncodingHandler.delete 'UTF-9'
|
40
|
-
assert_nil Nokogiri::EncodingHandler['UTF-9']
|
41
|
-
end
|
42
|
-
|
43
|
-
def test_delete_non_existent
|
44
|
-
assert_nil Nokogiri::EncodingHandler.delete('UTF-9')
|
45
|
-
end
|
46
|
-
end
|
data/test/test_memory_leak.rb
DELETED
@@ -1,156 +0,0 @@
|
|
1
|
-
require "helper"
|
2
|
-
|
3
|
-
class TestMemoryLeak < Nokogiri::TestCase
|
4
|
-
def setup
|
5
|
-
super
|
6
|
-
@str = <<EOF
|
7
|
-
<!DOCTYPE HTML>
|
8
|
-
<html>
|
9
|
-
<body>
|
10
|
-
<br />
|
11
|
-
</body>
|
12
|
-
</html>
|
13
|
-
EOF
|
14
|
-
end
|
15
|
-
|
16
|
-
if ENV['NOKOGIRI_GC'] # turning these off by default for now
|
17
|
-
def test_dont_hurt_em_why
|
18
|
-
content = File.open("#{File.dirname(__FILE__)}/files/dont_hurt_em_why.xml").read
|
19
|
-
ndoc = Nokogiri::XML(content)
|
20
|
-
2.times do
|
21
|
-
ndoc.search('status text').first.inner_text
|
22
|
-
ndoc.search('user name').first.inner_text
|
23
|
-
GC.start
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
class BadIO
|
28
|
-
def read(*args)
|
29
|
-
raise 'hell'
|
30
|
-
end
|
31
|
-
|
32
|
-
def write(*args)
|
33
|
-
raise 'chickens'
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
def test_for_mem_leak_on_io_callbacks
|
38
|
-
io = File.open SNUGGLES_FILE
|
39
|
-
Nokogiri::XML.parse(io)
|
40
|
-
|
41
|
-
loop do
|
42
|
-
Nokogiri::XML.parse(BadIO.new) rescue nil
|
43
|
-
doc.write BadIO.new rescue nil
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
def test_for_memory_leak
|
48
|
-
begin
|
49
|
-
# we don't use Dike in any tests, but requiring it has side effects
|
50
|
-
# that can create memory leaks, and that's what we're testing for.
|
51
|
-
require 'rubygems'
|
52
|
-
require 'dike' # do not remove!
|
53
|
-
|
54
|
-
count_start = count_object_space_documents
|
55
|
-
xml_data = <<-EOS
|
56
|
-
<test>
|
57
|
-
<items>
|
58
|
-
<item>abc</item>
|
59
|
-
<item>1234</item>
|
60
|
-
<item>Zzz</item>
|
61
|
-
<items>
|
62
|
-
</test>
|
63
|
-
EOS
|
64
|
-
20.times do
|
65
|
-
doc = Nokogiri::XML(xml_data)
|
66
|
-
doc.xpath("//item")
|
67
|
-
end
|
68
|
-
2.times { GC.start }
|
69
|
-
count_end = count_object_space_documents
|
70
|
-
assert((count_end - count_start) <= 2, "memory leak detected")
|
71
|
-
rescue LoadError
|
72
|
-
puts "\ndike is not installed, skipping memory leak test"
|
73
|
-
end
|
74
|
-
end
|
75
|
-
|
76
|
-
def test_node_set_namespace_mem_leak
|
77
|
-
xml = Nokogiri::XML "<foo></foo>"
|
78
|
-
ctx = Nokogiri::XML::XPathContext.new(xml)
|
79
|
-
loop do
|
80
|
-
ctx.evaluate("//namespace::*")
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
def test_leak_on_node_replace
|
85
|
-
loop do
|
86
|
-
doc = Nokogiri.XML("<root><foo /></root>")
|
87
|
-
n = Nokogiri::XML::CDATA.new(doc, "bar")
|
88
|
-
pivot = doc.root.children[0]
|
89
|
-
pivot.replace(n)
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
def test_sax_parser_context
|
94
|
-
io = StringIO.new(@str)
|
95
|
-
|
96
|
-
loop do
|
97
|
-
Nokogiri::XML::SAX::ParserContext.new(@str)
|
98
|
-
Nokogiri::XML::SAX::ParserContext.new(io)
|
99
|
-
io.rewind
|
100
|
-
|
101
|
-
Nokogiri::HTML::SAX::ParserContext.new(@str)
|
102
|
-
Nokogiri::HTML::SAX::ParserContext.new(io)
|
103
|
-
io.rewind
|
104
|
-
end
|
105
|
-
end
|
106
|
-
|
107
|
-
class JumpingSaxHandler < Nokogiri::XML::SAX::Document
|
108
|
-
def initialize(jumptag)
|
109
|
-
@jumptag = jumptag
|
110
|
-
super()
|
111
|
-
end
|
112
|
-
|
113
|
-
def start_element(name, attrs = [])
|
114
|
-
throw @jumptag
|
115
|
-
end
|
116
|
-
end
|
117
|
-
|
118
|
-
def test_jumping_sax_handler
|
119
|
-
doc = JumpingSaxHandler.new(:foo)
|
120
|
-
|
121
|
-
loop do
|
122
|
-
catch(:foo) do
|
123
|
-
Nokogiri::HTML::SAX::Parser.new(doc).parse(@str)
|
124
|
-
end
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
def test_in_context_parser_leak
|
129
|
-
loop do
|
130
|
-
doc = Nokogiri::XML::Document.new
|
131
|
-
fragment1 = Nokogiri::XML::DocumentFragment.new(doc, '<foo/>')
|
132
|
-
node = fragment1.children[0]
|
133
|
-
node.parse('<bar></bar>')
|
134
|
-
end
|
135
|
-
end
|
136
|
-
|
137
|
-
def test_in_context_parser_leak_ii
|
138
|
-
loop { Nokogiri::XML('<a/>').root.parse('<b/>') }
|
139
|
-
end
|
140
|
-
|
141
|
-
def test_leak_on_xpath_string_function
|
142
|
-
doc = Nokogiri::XML(@str)
|
143
|
-
loop do
|
144
|
-
doc.xpath('name(//node())')
|
145
|
-
end
|
146
|
-
end
|
147
|
-
end # if NOKOGIRI_GC
|
148
|
-
|
149
|
-
private
|
150
|
-
|
151
|
-
def count_object_space_documents
|
152
|
-
count = 0
|
153
|
-
ObjectSpace.each_object {|j| count += 1 if j.is_a?(Nokogiri::XML::Document) }
|
154
|
-
count
|
155
|
-
end
|
156
|
-
end
|
data/test/test_nokogiri.rb
DELETED
@@ -1,132 +0,0 @@
|
|
1
|
-
require "helper"
|
2
|
-
|
3
|
-
class TestNokogiri < Nokogiri::TestCase
|
4
|
-
def test_versions
|
5
|
-
version_match = /\d+\.\d+\.\d+/
|
6
|
-
assert_match version_match, Nokogiri::VERSION
|
7
|
-
|
8
|
-
assert_equal Nokogiri::VERSION_INFO['ruby']['version'], ::RUBY_VERSION
|
9
|
-
assert_equal Nokogiri::VERSION_INFO['ruby']['platform'], ::RUBY_PLATFORM
|
10
|
-
|
11
|
-
if Nokogiri.uses_libxml?
|
12
|
-
assert_match version_match, Nokogiri::LIBXML_VERSION
|
13
|
-
assert_equal 'extension', Nokogiri::VERSION_INFO['libxml']['binding']
|
14
|
-
|
15
|
-
assert_match version_match, Nokogiri::VERSION_INFO['libxml']['compiled']
|
16
|
-
assert_equal Nokogiri::LIBXML_VERSION, Nokogiri::VERSION_INFO['libxml']['compiled']
|
17
|
-
|
18
|
-
assert_match version_match, Nokogiri::VERSION_INFO['libxml']['loaded']
|
19
|
-
Nokogiri::LIBXML_PARSER_VERSION =~ /(\d)(\d{2})(\d{2})/
|
20
|
-
major = $1.to_i
|
21
|
-
minor = $2.to_i
|
22
|
-
bug = $3.to_i
|
23
|
-
assert_equal "#{major}.#{minor}.#{bug}", Nokogiri::VERSION_INFO['libxml']['loaded']
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def test_libxml_iconv
|
28
|
-
assert Nokogiri.const_defined?(:LIBXML_ICONV_ENABLED) if Nokogiri.uses_libxml?
|
29
|
-
end
|
30
|
-
|
31
|
-
def test_parse_with_io
|
32
|
-
doc = Nokogiri.parse(
|
33
|
-
StringIO.new("<html><head><title></title><body></body></html>")
|
34
|
-
)
|
35
|
-
assert_instance_of Nokogiri::HTML::Document, doc
|
36
|
-
end
|
37
|
-
|
38
|
-
def test_xml?
|
39
|
-
doc = Nokogiri.parse(File.read(XML_FILE))
|
40
|
-
assert doc.xml?
|
41
|
-
assert !doc.html?
|
42
|
-
end
|
43
|
-
|
44
|
-
def test_html?
|
45
|
-
doc = Nokogiri.parse(File.read(HTML_FILE))
|
46
|
-
assert !doc.xml?
|
47
|
-
assert doc.html?
|
48
|
-
end
|
49
|
-
|
50
|
-
def test_nokogiri_method_with_html
|
51
|
-
doc1 = Nokogiri(File.read(HTML_FILE))
|
52
|
-
doc2 = Nokogiri.parse(File.read(HTML_FILE))
|
53
|
-
assert_equal doc1.serialize, doc2.serialize
|
54
|
-
end
|
55
|
-
|
56
|
-
def test_nokogiri_method_with_block
|
57
|
-
doc = Nokogiri { b "bold tag" }
|
58
|
-
assert_equal('<b>bold tag</b>', doc.to_html.chomp)
|
59
|
-
end
|
60
|
-
|
61
|
-
def test_make_with_html
|
62
|
-
doc = Nokogiri.make("<b>bold tag</b>")
|
63
|
-
assert_equal('<b>bold tag</b>', doc.to_html.chomp)
|
64
|
-
end
|
65
|
-
|
66
|
-
def test_make_with_block
|
67
|
-
doc = Nokogiri.make { b "bold tag" }
|
68
|
-
assert_equal('<b>bold tag</b>', doc.to_html.chomp)
|
69
|
-
end
|
70
|
-
|
71
|
-
SLOP_HTML = <<-END
|
72
|
-
<html>
|
73
|
-
<body>
|
74
|
-
<ul>
|
75
|
-
<li class='red'>one</li>
|
76
|
-
<li class='blue'>two</li>
|
77
|
-
</ul>
|
78
|
-
<div>
|
79
|
-
one
|
80
|
-
<div>div two</div>
|
81
|
-
</div>
|
82
|
-
</body>
|
83
|
-
</html>
|
84
|
-
END
|
85
|
-
|
86
|
-
def test_slop_css
|
87
|
-
doc = Nokogiri::Slop(<<-eohtml)
|
88
|
-
<html>
|
89
|
-
<body>
|
90
|
-
<div>
|
91
|
-
one
|
92
|
-
<div class='foo'>
|
93
|
-
div two
|
94
|
-
<div class='foo'>
|
95
|
-
div three
|
96
|
-
</div>
|
97
|
-
</div>
|
98
|
-
</div>
|
99
|
-
</body>
|
100
|
-
</html>
|
101
|
-
eohtml
|
102
|
-
assert_equal "div", doc.html.body.div.div('.foo').name
|
103
|
-
end
|
104
|
-
|
105
|
-
def test_slop
|
106
|
-
doc = Nokogiri::Slop(SLOP_HTML)
|
107
|
-
|
108
|
-
assert_equal "one", doc.html.body.ul.li.first.text
|
109
|
-
assert_equal "two", doc.html.body.ul.li(".blue").text
|
110
|
-
assert_equal "div two", doc.html.body.div.div.text
|
111
|
-
|
112
|
-
assert_equal "two", doc.html.body.ul.li(:css => ".blue").text
|
113
|
-
|
114
|
-
assert_equal "two", doc.html.body.ul.li(:xpath => "position()=2").text
|
115
|
-
assert_equal "one", doc.html.body.ul.li(:xpath => ["contains(text(),'o')"]).first.text
|
116
|
-
assert_equal "two", doc.html.body.ul.li(:xpath => ["contains(text(),'o')","contains(text(),'t')"]).text
|
117
|
-
|
118
|
-
assert_raise(NoMethodError) { doc.nonexistent }
|
119
|
-
end
|
120
|
-
|
121
|
-
def test_slop_decorator
|
122
|
-
doc = Nokogiri(SLOP_HTML)
|
123
|
-
assert !doc.decorators(Nokogiri::XML::Node).include?(Nokogiri::Decorators::Slop)
|
124
|
-
|
125
|
-
doc.slop!
|
126
|
-
assert doc.decorators(Nokogiri::XML::Node).include?(Nokogiri::Decorators::Slop)
|
127
|
-
|
128
|
-
doc.slop!
|
129
|
-
assert_equal 1, doc.decorators(Nokogiri::XML::Node).select { |d| d == Nokogiri::Decorators::Slop }.size
|
130
|
-
end
|
131
|
-
|
132
|
-
end
|