libxml-ruby 3.2.2-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/HISTORY +848 -0
- data/LICENSE +21 -0
- data/MANIFEST +166 -0
- data/README.rdoc +217 -0
- data/Rakefile +99 -0
- data/ext/libxml/extconf.rb +61 -0
- data/ext/libxml/libxml.c +80 -0
- data/ext/libxml/libxml_ruby.def +35 -0
- data/ext/libxml/ruby_libxml.h +67 -0
- data/ext/libxml/ruby_xml.c +933 -0
- data/ext/libxml/ruby_xml.h +10 -0
- data/ext/libxml/ruby_xml_attr.c +333 -0
- data/ext/libxml/ruby_xml_attr.h +12 -0
- data/ext/libxml/ruby_xml_attr_decl.c +153 -0
- data/ext/libxml/ruby_xml_attr_decl.h +11 -0
- data/ext/libxml/ruby_xml_attributes.c +275 -0
- data/ext/libxml/ruby_xml_attributes.h +15 -0
- data/ext/libxml/ruby_xml_cbg.c +85 -0
- data/ext/libxml/ruby_xml_document.c +1123 -0
- data/ext/libxml/ruby_xml_document.h +11 -0
- data/ext/libxml/ruby_xml_dtd.c +248 -0
- data/ext/libxml/ruby_xml_dtd.h +9 -0
- data/ext/libxml/ruby_xml_encoding.c +250 -0
- data/ext/libxml/ruby_xml_encoding.h +16 -0
- data/ext/libxml/ruby_xml_error.c +996 -0
- data/ext/libxml/ruby_xml_error.h +12 -0
- data/ext/libxml/ruby_xml_html_parser.c +89 -0
- data/ext/libxml/ruby_xml_html_parser.h +10 -0
- data/ext/libxml/ruby_xml_html_parser_context.c +337 -0
- data/ext/libxml/ruby_xml_html_parser_context.h +10 -0
- data/ext/libxml/ruby_xml_html_parser_options.c +46 -0
- data/ext/libxml/ruby_xml_html_parser_options.h +10 -0
- data/ext/libxml/ruby_xml_input_cbg.c +191 -0
- data/ext/libxml/ruby_xml_input_cbg.h +20 -0
- data/ext/libxml/ruby_xml_io.c +47 -0
- data/ext/libxml/ruby_xml_io.h +10 -0
- data/ext/libxml/ruby_xml_namespace.c +153 -0
- data/ext/libxml/ruby_xml_namespace.h +10 -0
- data/ext/libxml/ruby_xml_namespaces.c +293 -0
- data/ext/libxml/ruby_xml_namespaces.h +9 -0
- data/ext/libxml/ruby_xml_node.c +1402 -0
- data/ext/libxml/ruby_xml_node.h +13 -0
- data/ext/libxml/ruby_xml_parser.c +91 -0
- data/ext/libxml/ruby_xml_parser.h +12 -0
- data/ext/libxml/ruby_xml_parser_context.c +999 -0
- data/ext/libxml/ruby_xml_parser_context.h +10 -0
- data/ext/libxml/ruby_xml_parser_options.c +66 -0
- data/ext/libxml/ruby_xml_parser_options.h +12 -0
- data/ext/libxml/ruby_xml_reader.c +1239 -0
- data/ext/libxml/ruby_xml_reader.h +17 -0
- data/ext/libxml/ruby_xml_relaxng.c +110 -0
- data/ext/libxml/ruby_xml_relaxng.h +10 -0
- data/ext/libxml/ruby_xml_sax2_handler.c +326 -0
- data/ext/libxml/ruby_xml_sax2_handler.h +10 -0
- data/ext/libxml/ruby_xml_sax_parser.c +116 -0
- data/ext/libxml/ruby_xml_sax_parser.h +10 -0
- data/ext/libxml/ruby_xml_schema.c +278 -0
- data/ext/libxml/ruby_xml_schema.h +809 -0
- data/ext/libxml/ruby_xml_schema_attribute.c +109 -0
- data/ext/libxml/ruby_xml_schema_attribute.h +15 -0
- data/ext/libxml/ruby_xml_schema_element.c +95 -0
- data/ext/libxml/ruby_xml_schema_element.h +14 -0
- data/ext/libxml/ruby_xml_schema_facet.c +52 -0
- data/ext/libxml/ruby_xml_schema_facet.h +13 -0
- data/ext/libxml/ruby_xml_schema_type.c +232 -0
- data/ext/libxml/ruby_xml_schema_type.h +9 -0
- data/ext/libxml/ruby_xml_version.h +9 -0
- data/ext/libxml/ruby_xml_writer.c +1133 -0
- data/ext/libxml/ruby_xml_writer.h +10 -0
- data/ext/libxml/ruby_xml_xinclude.c +16 -0
- data/ext/libxml/ruby_xml_xinclude.h +11 -0
- data/ext/libxml/ruby_xml_xpath.c +194 -0
- data/ext/libxml/ruby_xml_xpath.h +13 -0
- data/ext/libxml/ruby_xml_xpath_context.c +360 -0
- data/ext/libxml/ruby_xml_xpath_context.h +9 -0
- data/ext/libxml/ruby_xml_xpath_expression.c +81 -0
- data/ext/libxml/ruby_xml_xpath_expression.h +10 -0
- data/ext/libxml/ruby_xml_xpath_object.c +338 -0
- data/ext/libxml/ruby_xml_xpath_object.h +17 -0
- data/ext/libxml/ruby_xml_xpointer.c +99 -0
- data/ext/libxml/ruby_xml_xpointer.h +11 -0
- data/ext/vc/libxml_ruby.sln +28 -0
- data/lib/3.1/libxml_ruby.so +0 -0
- data/lib/libxml/attr.rb +123 -0
- data/lib/libxml/attr_decl.rb +80 -0
- data/lib/libxml/attributes.rb +14 -0
- data/lib/libxml/document.rb +194 -0
- data/lib/libxml/error.rb +95 -0
- data/lib/libxml/hpricot.rb +78 -0
- data/lib/libxml/html_parser.rb +96 -0
- data/lib/libxml/namespace.rb +62 -0
- data/lib/libxml/namespaces.rb +38 -0
- data/lib/libxml/node.rb +323 -0
- data/lib/libxml/parser.rb +101 -0
- data/lib/libxml/sax_callbacks.rb +180 -0
- data/lib/libxml/sax_parser.rb +41 -0
- data/lib/libxml/schema/attribute.rb +19 -0
- data/lib/libxml/schema/element.rb +19 -0
- data/lib/libxml/schema/type.rb +21 -0
- data/lib/libxml/schema.rb +48 -0
- data/lib/libxml/tree.rb +29 -0
- data/lib/libxml-ruby.rb +30 -0
- data/lib/libxml.rb +5 -0
- data/lib/xml/libxml.rb +10 -0
- data/lib/xml.rb +14 -0
- data/libxml-ruby.gemspec +48 -0
- data/script/benchmark/depixelate +634 -0
- data/script/benchmark/hamlet.xml +9055 -0
- data/script/benchmark/parsecount +170 -0
- data/script/benchmark/sock_entries.xml +507 -0
- data/script/benchmark/throughput +41 -0
- data/script/test +6 -0
- data/setup.rb +1584 -0
- data/test/c14n/given/doc.dtd +1 -0
- data/test/c14n/given/example-1.xml +14 -0
- data/test/c14n/given/example-2.xml +11 -0
- data/test/c14n/given/example-3.xml +18 -0
- data/test/c14n/given/example-4.xml +9 -0
- data/test/c14n/given/example-5.xml +12 -0
- data/test/c14n/given/example-6.xml +2 -0
- data/test/c14n/given/example-7.xml +11 -0
- data/test/c14n/given/example-8.xml +11 -0
- data/test/c14n/given/example-8.xpath +10 -0
- data/test/c14n/given/world.txt +1 -0
- data/test/c14n/result/1-1-without-comments/example-1 +4 -0
- data/test/c14n/result/1-1-without-comments/example-2 +11 -0
- data/test/c14n/result/1-1-without-comments/example-3 +14 -0
- data/test/c14n/result/1-1-without-comments/example-4 +9 -0
- data/test/c14n/result/1-1-without-comments/example-5 +3 -0
- data/test/c14n/result/1-1-without-comments/example-6 +1 -0
- data/test/c14n/result/1-1-without-comments/example-7 +1 -0
- data/test/c14n/result/1-1-without-comments/example-8 +1 -0
- data/test/c14n/result/with-comments/example-1 +6 -0
- data/test/c14n/result/with-comments/example-2 +11 -0
- data/test/c14n/result/with-comments/example-3 +14 -0
- data/test/c14n/result/with-comments/example-4 +9 -0
- data/test/c14n/result/with-comments/example-5 +4 -0
- data/test/c14n/result/with-comments/example-6 +1 -0
- data/test/c14n/result/with-comments/example-7 +1 -0
- data/test/c14n/result/without-comments/example-1 +4 -0
- data/test/c14n/result/without-comments/example-2 +11 -0
- data/test/c14n/result/without-comments/example-3 +14 -0
- data/test/c14n/result/without-comments/example-4 +9 -0
- data/test/c14n/result/without-comments/example-5 +3 -0
- data/test/c14n/result/without-comments/example-6 +1 -0
- data/test/c14n/result/without-comments/example-7 +1 -0
- data/test/model/atom.xml +13 -0
- data/test/model/bands.iso-8859-1.xml +5 -0
- data/test/model/bands.utf-8.xml +5 -0
- data/test/model/bands.xml +5 -0
- data/test/model/books.xml +154 -0
- data/test/model/cwm_1_0.xml +11336 -0
- data/test/model/merge_bug_data.xml +58 -0
- data/test/model/ruby-lang.html +238 -0
- data/test/model/rubynet.xml +79 -0
- data/test/model/rubynet_project +1 -0
- data/test/model/shiporder.rnc +28 -0
- data/test/model/shiporder.rng +86 -0
- data/test/model/shiporder.xml +23 -0
- data/test/model/shiporder.xsd +40 -0
- data/test/model/soap.xml +27 -0
- data/test/model/xinclude.xml +5 -0
- data/test/test_attr.rb +181 -0
- data/test/test_attr_decl.rb +132 -0
- data/test/test_attributes.rb +136 -0
- data/test/test_canonicalize.rb +120 -0
- data/test/test_deprecated_require.rb +12 -0
- data/test/test_document.rb +132 -0
- data/test/test_document_write.rb +146 -0
- data/test/test_dtd.rb +129 -0
- data/test/test_encoding.rb +129 -0
- data/test/test_encoding_sax.rb +115 -0
- data/test/test_error.rb +178 -0
- data/test/test_helper.rb +9 -0
- data/test/test_html_parser.rb +162 -0
- data/test/test_html_parser_context.rb +23 -0
- data/test/test_namespace.rb +60 -0
- data/test/test_namespaces.rb +200 -0
- data/test/test_node.rb +237 -0
- data/test/test_node_cdata.rb +50 -0
- data/test/test_node_comment.rb +32 -0
- data/test/test_node_copy.rb +40 -0
- data/test/test_node_edit.rb +158 -0
- data/test/test_node_pi.rb +37 -0
- data/test/test_node_text.rb +69 -0
- data/test/test_node_write.rb +97 -0
- data/test/test_node_xlink.rb +28 -0
- data/test/test_parser.rb +324 -0
- data/test/test_parser_context.rb +198 -0
- data/test/test_properties.rb +38 -0
- data/test/test_reader.rb +364 -0
- data/test/test_relaxng.rb +53 -0
- data/test/test_sax_parser.rb +326 -0
- data/test/test_schema.rb +168 -0
- data/test/test_suite.rb +48 -0
- data/test/test_traversal.rb +152 -0
- data/test/test_writer.rb +468 -0
- data/test/test_xinclude.rb +20 -0
- data/test/test_xml.rb +263 -0
- data/test/test_xpath.rb +244 -0
- data/test/test_xpath_context.rb +88 -0
- data/test/test_xpath_expression.rb +37 -0
- data/test/test_xpointer.rb +72 -0
- metadata +325 -0
    
        data/test/test_node.rb
    ADDED
    
    | @@ -0,0 +1,237 @@ | |
| 1 | 
            +
            # encoding: UTF-8
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative './test_helper'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            class TestNode < Minitest::Test
         | 
| 6 | 
            +
              def setup
         | 
| 7 | 
            +
                @file_name = "model/bands.utf-8.xml"
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                # Strip spaces to make testing easier
         | 
| 10 | 
            +
                LibXML::XML.default_keep_blanks = false
         | 
| 11 | 
            +
                file = File.join(File.dirname(__FILE__), @file_name)
         | 
| 12 | 
            +
                @doc = LibXML::XML::Document.file(file)
         | 
| 13 | 
            +
              end
         | 
| 14 | 
            +
              
         | 
| 15 | 
            +
              def teardown
         | 
| 16 | 
            +
                LibXML::XML.default_keep_blanks = true
         | 
| 17 | 
            +
                @doc = nil
         | 
| 18 | 
            +
              end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              def nodes
         | 
| 21 | 
            +
                # Find all nodes with a country attributes
         | 
| 22 | 
            +
                @doc.find('*[@country]')
         | 
| 23 | 
            +
              end
         | 
| 24 | 
            +
             | 
| 25 | 
            +
              def test_doc_class
         | 
| 26 | 
            +
                assert_instance_of(LibXML::XML::Document, @doc)
         | 
| 27 | 
            +
              end
         | 
| 28 | 
            +
             | 
| 29 | 
            +
              def test_doc_node_type
         | 
| 30 | 
            +
                assert_equal LibXML::XML::Node::DOCUMENT_NODE, @doc.node_type
         | 
| 31 | 
            +
              end
         | 
| 32 | 
            +
             | 
| 33 | 
            +
              def test_root_class
         | 
| 34 | 
            +
                assert_instance_of(LibXML::XML::Node, @doc.root)
         | 
| 35 | 
            +
              end
         | 
| 36 | 
            +
             | 
| 37 | 
            +
              def test_root_node_type
         | 
| 38 | 
            +
                assert_equal LibXML::XML::Node::ELEMENT_NODE, @doc.root.node_type
         | 
| 39 | 
            +
              end
         | 
| 40 | 
            +
             | 
| 41 | 
            +
              def test_node_class
         | 
| 42 | 
            +
                for n in nodes
         | 
| 43 | 
            +
                  assert_instance_of(LibXML::XML::Node, n)
         | 
| 44 | 
            +
                end
         | 
| 45 | 
            +
              end
         | 
| 46 | 
            +
             | 
| 47 | 
            +
              def test_context
         | 
| 48 | 
            +
                node = @doc.root
         | 
| 49 | 
            +
                context = node.context
         | 
| 50 | 
            +
                assert_instance_of(LibXML::XML::XPath::Context, context)
         | 
| 51 | 
            +
              end
         | 
| 52 | 
            +
             | 
| 53 | 
            +
              def test_find
         | 
| 54 | 
            +
                assert_instance_of(LibXML::XML::XPath::Object, self.nodes)
         | 
| 55 | 
            +
              end
         | 
| 56 | 
            +
             | 
| 57 | 
            +
              def test_node_child_get
         | 
| 58 | 
            +
                assert_instance_of(TrueClass, @doc.root.child?)
         | 
| 59 | 
            +
                assert_instance_of(LibXML::XML::Node, @doc.root.child)
         | 
| 60 | 
            +
             | 
| 61 | 
            +
                assert_equal(Encoding::UTF_8, @doc.root.child.name.encoding)
         | 
| 62 | 
            +
                assert_equal("m\u00F6tley_cr\u00FCe", @doc.root.child.name)
         | 
| 63 | 
            +
              end
         | 
| 64 | 
            +
             | 
| 65 | 
            +
              def test_node_doc
         | 
| 66 | 
            +
                for n in nodes
         | 
| 67 | 
            +
                  assert_instance_of(LibXML::XML::Document, n.doc) if n.document?
         | 
| 68 | 
            +
                end
         | 
| 69 | 
            +
              end
         | 
| 70 | 
            +
             | 
| 71 | 
            +
              def test_name
         | 
| 72 | 
            +
                node = @doc.root.children.last
         | 
| 73 | 
            +
                assert_equal("iron_maiden", node.name)
         | 
| 74 | 
            +
              end
         | 
| 75 | 
            +
             | 
| 76 | 
            +
              def test_node_find
         | 
| 77 | 
            +
                nodes = @doc.root.find('./fixnum')
         | 
| 78 | 
            +
                for node in nodes
         | 
| 79 | 
            +
                  assert_instance_of(LibXML::XML::Node, node)
         | 
| 80 | 
            +
                end
         | 
| 81 | 
            +
              end
         | 
| 82 | 
            +
             | 
| 83 | 
            +
              def test_equality
         | 
| 84 | 
            +
                node_a = @doc.find_first('*[@country]')
         | 
| 85 | 
            +
                node_b = @doc.root.child
         | 
| 86 | 
            +
             | 
| 87 | 
            +
                # On the ruby side these are different objects
         | 
| 88 | 
            +
                refute(node_a.equal?(node_b))
         | 
| 89 | 
            +
             | 
| 90 | 
            +
                # But they are the same underlying libxml node so specify they are equal
         | 
| 91 | 
            +
                assert(node_a == node_b)
         | 
| 92 | 
            +
                assert(node_a.eql?(node_b))
         | 
| 93 | 
            +
             | 
| 94 | 
            +
                file = File.join(File.dirname(__FILE__), @file_name)
         | 
| 95 | 
            +
                doc2 = LibXML::XML::Document.file(file)
         | 
| 96 | 
            +
             | 
| 97 | 
            +
                node_a2 = doc2.find_first('*[@country]')
         | 
| 98 | 
            +
             | 
| 99 | 
            +
                refute(node_a == node_a2)
         | 
| 100 | 
            +
                refute(node_a.eql?(node_a2))
         | 
| 101 | 
            +
                assert_equal(node_a.to_s, node_a2.to_s)
         | 
| 102 | 
            +
                refute(node_a.equal?(node_a2))
         | 
| 103 | 
            +
              end
         | 
| 104 | 
            +
             | 
| 105 | 
            +
              def test_equality_2
         | 
| 106 | 
            +
                parent = LibXML::XML::Node.new('parent')
         | 
| 107 | 
            +
                child = LibXML::XML::Node.new('child')
         | 
| 108 | 
            +
                parent << child
         | 
| 109 | 
            +
             | 
| 110 | 
            +
                node_a = child.parent
         | 
| 111 | 
            +
                node_b = child.parent
         | 
| 112 | 
            +
                # In this case the nodes are equal - the parent being the root
         | 
| 113 | 
            +
                assert(node_a.equal?(node_b))
         | 
| 114 | 
            +
                assert(node_a == node_b)
         | 
| 115 | 
            +
                assert(node_a.eql?(node_b))
         | 
| 116 | 
            +
              end
         | 
| 117 | 
            +
             | 
| 118 | 
            +
              def test_equality_nil
         | 
| 119 | 
            +
                node = @doc.root
         | 
| 120 | 
            +
                assert(node != nil)
         | 
| 121 | 
            +
              end
         | 
| 122 | 
            +
             | 
| 123 | 
            +
              def test_equality_wrong_type
         | 
| 124 | 
            +
                node = @doc.root
         | 
| 125 | 
            +
             | 
| 126 | 
            +
                assert_raises(TypeError) do
         | 
| 127 | 
            +
                  assert(node != 'abc')
         | 
| 128 | 
            +
                end
         | 
| 129 | 
            +
              end
         | 
| 130 | 
            +
             | 
| 131 | 
            +
              def test_content
         | 
| 132 | 
            +
                node = @doc.root.last
         | 
| 133 | 
            +
                assert_equal("Iron Maiden is a British heavy metal band formed in 1975.",
         | 
| 134 | 
            +
                             node.content)
         | 
| 135 | 
            +
              end
         | 
| 136 | 
            +
             | 
| 137 | 
            +
              def test_base
         | 
| 138 | 
            +
                doc = LibXML::XML::Parser.string('<person />').parse
         | 
| 139 | 
            +
                assert_nil(doc.root.base_uri)
         | 
| 140 | 
            +
              end
         | 
| 141 | 
            +
             | 
| 142 | 
            +
              # We use the same facility that libXSLT does here to disable output escaping.
         | 
| 143 | 
            +
              # This lets you specify that the node's content should be rendered unaltered
         | 
| 144 | 
            +
              # whenever it is being output.  This is useful for things like <script> and
         | 
| 145 | 
            +
              # <style> nodes in HTML documents if you don't want to be forced to wrap them
         | 
| 146 | 
            +
              # in CDATA nodes.  Or if you are sanitizing existing HTML documents and want
         | 
| 147 | 
            +
              # to preserve the content of any of the text nodes.
         | 
| 148 | 
            +
              #
         | 
| 149 | 
            +
              def test_output_escaping
         | 
| 150 | 
            +
            		text = '<bad-script>if (a < b || b > c) { return "text"; }<stop/>return ">>>snip<<<";</bad-script>'
         | 
| 151 | 
            +
                node = LibXML::XML::Parser.string(text).parse.root
         | 
| 152 | 
            +
            		assert_equal text, node.to_s
         | 
| 153 | 
            +
             | 
| 154 | 
            +
            		text_noenc = '<bad-script>if (a < b || b > c) { return "text"; }<stop/>return ">>>snip<<<";</bad-script>'
         | 
| 155 | 
            +
            		node.output_escaping = false
         | 
| 156 | 
            +
            		assert_equal text_noenc, node.to_s
         | 
| 157 | 
            +
             | 
| 158 | 
            +
            		node.output_escaping = true
         | 
| 159 | 
            +
            		assert_equal text, node.to_s
         | 
| 160 | 
            +
             | 
| 161 | 
            +
            		node.output_escaping = nil
         | 
| 162 | 
            +
            		assert_equal text_noenc, node.to_s
         | 
| 163 | 
            +
             | 
| 164 | 
            +
            		node.output_escaping = true
         | 
| 165 | 
            +
            		assert_equal text, node.to_s
         | 
| 166 | 
            +
              end
         | 
| 167 | 
            +
             | 
| 168 | 
            +
              # Just a sanity check for output escaping.
         | 
| 169 | 
            +
              def test_output_escaping_sanity
         | 
| 170 | 
            +
            		text = '<bad-script>if (a < b || b > c) { return "text"; }<stop/>return ">>>snip<<<";</bad-script>'
         | 
| 171 | 
            +
                node = LibXML::XML::Parser.string(text).parse.root
         | 
| 172 | 
            +
            		affected = node.find('//text()')
         | 
| 173 | 
            +
             | 
| 174 | 
            +
            		check_escaping = lambda do |flag|
         | 
| 175 | 
            +
            			assert_equal('bad-script', node.name)
         | 
| 176 | 
            +
            			assert_equal(flag, node.output_escaping?)
         | 
| 177 | 
            +
            			affected.each do |x|
         | 
| 178 | 
            +
            				assert_equal(flag ? 'text' : 'textnoenc', x.name)
         | 
| 179 | 
            +
            				assert_equal(flag, x.output_escaping?)
         | 
| 180 | 
            +
            			end
         | 
| 181 | 
            +
            		end
         | 
| 182 | 
            +
             | 
| 183 | 
            +
            		node.output_escaping = false
         | 
| 184 | 
            +
            		check_escaping[false]
         | 
| 185 | 
            +
             | 
| 186 | 
            +
            		node.output_escaping = true
         | 
| 187 | 
            +
            		check_escaping[true]
         | 
| 188 | 
            +
             | 
| 189 | 
            +
            		node.output_escaping = nil
         | 
| 190 | 
            +
            		check_escaping[false]
         | 
| 191 | 
            +
             | 
| 192 | 
            +
            		node.output_escaping = true
         | 
| 193 | 
            +
            		check_escaping[true]
         | 
| 194 | 
            +
             | 
| 195 | 
            +
            		affected.first.output_escaping = true
         | 
| 196 | 
            +
            		affected.last.output_escaping = false
         | 
| 197 | 
            +
            		assert node.output_escaping?.nil?
         | 
| 198 | 
            +
              end
         | 
| 199 | 
            +
             | 
| 200 | 
            +
              def test_space_preserve
         | 
| 201 | 
            +
                node = @doc.root
         | 
| 202 | 
            +
             | 
| 203 | 
            +
                node.space_preserve = false
         | 
| 204 | 
            +
                assert_equal LibXML::XML::Node::SPACE_DEFAULT, node.space_preserve
         | 
| 205 | 
            +
             | 
| 206 | 
            +
                node.space_preserve = true
         | 
| 207 | 
            +
                assert_equal LibXML::XML::Node::SPACE_PRESERVE, node.space_preserve
         | 
| 208 | 
            +
              end
         | 
| 209 | 
            +
             | 
| 210 | 
            +
              def test_empty
         | 
| 211 | 
            +
                text = '<name> </name>'
         | 
| 212 | 
            +
                doc = LibXML::XML::Parser.string(text).parse
         | 
| 213 | 
            +
             | 
| 214 | 
            +
                node = doc.root
         | 
| 215 | 
            +
                assert(!node.empty?)
         | 
| 216 | 
            +
             | 
| 217 | 
            +
                text_node = node.first
         | 
| 218 | 
            +
                assert(text_node.empty?)
         | 
| 219 | 
            +
              end
         | 
| 220 | 
            +
             | 
| 221 | 
            +
              def test_save_no_empty_tags
         | 
| 222 | 
            +
                node = LibXML::XML::Node.new('test')
         | 
| 223 | 
            +
                assert_equal '<test/>', node.to_s
         | 
| 224 | 
            +
             | 
| 225 | 
            +
                LibXML::XML.default_save_no_empty_tags = true
         | 
| 226 | 
            +
                assert_equal '<test></test>', node.to_s
         | 
| 227 | 
            +
             | 
| 228 | 
            +
                LibXML::XML.default_save_no_empty_tags = false
         | 
| 229 | 
            +
              end
         | 
| 230 | 
            +
             | 
| 231 | 
            +
              def test_set_content
         | 
| 232 | 
            +
                node = LibXML::XML::Node.new('test')
         | 
| 233 | 
            +
                node.content = "unescaped & string"
         | 
| 234 | 
            +
                assert_equal("unescaped & string", node.content)
         | 
| 235 | 
            +
                assert_equal("<test>unescaped & string</test>", node.to_s)
         | 
| 236 | 
            +
              end
         | 
| 237 | 
            +
            end
         | 
| @@ -0,0 +1,50 @@ | |
| 1 | 
            +
            # encoding: UTF-8
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative './test_helper'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            class CDataCommentTest < Minitest::Test
         | 
| 6 | 
            +
              def setup
         | 
| 7 | 
            +
                xp = LibXML::XML::Parser.string('<root></root>')
         | 
| 8 | 
            +
                @doc = xp.parse
         | 
| 9 | 
            +
                assert_instance_of(LibXML::XML::Document, @doc)
         | 
| 10 | 
            +
                @root = @doc.root
         | 
| 11 | 
            +
              end
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              def test_node_type
         | 
| 14 | 
            +
                cnode = LibXML::XML::Node.new_cdata('test cdata')
         | 
| 15 | 
            +
                assert_equal(LibXML::XML::Node::CDATA_SECTION_NODE, cnode.node_type)
         | 
| 16 | 
            +
              end
         | 
| 17 | 
            +
             | 
| 18 | 
            +
              def test_add_cdata
         | 
| 19 | 
            +
                @root << LibXML::XML::Node.new_cdata('mycdata')
         | 
| 20 | 
            +
                assert_equal '<root><![CDATA[mycdata]]></root>',
         | 
| 21 | 
            +
                  @root.to_s.gsub(/\n\s*/,'')
         | 
| 22 | 
            +
              end
         | 
| 23 | 
            +
             | 
| 24 | 
            +
              def test_add_cdata_2
         | 
| 25 | 
            +
                @root << LibXML::XML::Node.new_cdata('mycdata')
         | 
| 26 | 
            +
                assert_equal 'cdata',
         | 
| 27 | 
            +
                @root.child.node_type_name
         | 
| 28 | 
            +
              end
         | 
| 29 | 
            +
             | 
| 30 | 
            +
              def test_add_cdata_3
         | 
| 31 | 
            +
                @root << el = LibXML::XML::Node.new_cdata('mycdata')
         | 
| 32 | 
            +
                el << "_this_is_added"
         | 
| 33 | 
            +
                assert_equal '<root><![CDATA[mycdata_this_is_added]]></root>',
         | 
| 34 | 
            +
                  @root.to_s.gsub(/\n\s*/,'')
         | 
| 35 | 
            +
              end
         | 
| 36 | 
            +
              
         | 
| 37 | 
            +
              def test_attributes
         | 
| 38 | 
            +
                cnode = LibXML::XML::Node.new_cdata('test cdata')
         | 
| 39 | 
            +
                assert_equal(0, cnode.attributes.length)
         | 
| 40 | 
            +
              end
         | 
| 41 | 
            +
              
         | 
| 42 | 
            +
              def test_set_cdata_attribute
         | 
| 43 | 
            +
                cnode = LibXML::XML::Node.new_cdata('test cdata')
         | 
| 44 | 
            +
                
         | 
| 45 | 
            +
                # Can't create attributes on non-element nodes
         | 
| 46 | 
            +
                assert_raises(ArgumentError) do
         | 
| 47 | 
            +
                  cnode['attr'] = '123'
         | 
| 48 | 
            +
                end
         | 
| 49 | 
            +
              end
         | 
| 50 | 
            +
            end
         | 
| @@ -0,0 +1,32 @@ | |
| 1 | 
            +
            # encoding: UTF-8
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative './test_helper'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
             | 
| 6 | 
            +
            class NodeCommentTest < Minitest::Test
         | 
| 7 | 
            +
              def setup
         | 
| 8 | 
            +
                xp = LibXML::XML::Parser.string('<root></root>')
         | 
| 9 | 
            +
                @doc = xp.parse
         | 
| 10 | 
            +
                assert_instance_of(LibXML::XML::Document, @doc)
         | 
| 11 | 
            +
                @root = @doc.root
         | 
| 12 | 
            +
              end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
              def test_libxml_node_add_comment_01
         | 
| 15 | 
            +
                @root << LibXML::XML::Node.new_comment('mycomment')
         | 
| 16 | 
            +
                assert_equal '<root><!--mycomment--></root>',
         | 
| 17 | 
            +
                  @root.to_s.gsub(/\n\s*/,'')
         | 
| 18 | 
            +
              end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              def test_libxml_node_add_comment_02
         | 
| 21 | 
            +
                @root << LibXML::XML::Node.new_comment('mycomment')
         | 
| 22 | 
            +
                assert_equal 'comment',
         | 
| 23 | 
            +
                @root.child.node_type_name
         | 
| 24 | 
            +
              end
         | 
| 25 | 
            +
             | 
| 26 | 
            +
              def test_libxml_node_add_comment_03
         | 
| 27 | 
            +
                @root << el = LibXML::XML::Node.new_comment('mycomment')
         | 
| 28 | 
            +
                el << "_this_is_added"
         | 
| 29 | 
            +
                assert_equal '<root><!--mycomment_this_is_added--></root>',
         | 
| 30 | 
            +
                @root.to_s.gsub(/\n\s*/,'')
         | 
| 31 | 
            +
              end
         | 
| 32 | 
            +
            end
         | 
| @@ -0,0 +1,40 @@ | |
| 1 | 
            +
            # encoding: UTF-8
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative './test_helper'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            # see mailing list archive
         | 
| 6 | 
            +
            # [libxml-devel] Segmentation fault when add the cloned/copied node
         | 
| 7 | 
            +
            # 2007/11/27 20:51
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            class TestNodeCopy < Minitest::Test
         | 
| 10 | 
            +
              def setup
         | 
| 11 | 
            +
                str = <<-STR
         | 
| 12 | 
            +
                  <html><body>
         | 
| 13 | 
            +
                    <div class="textarea" id="t1" style="STATIC">foo</div>
         | 
| 14 | 
            +
                    <div class="textarea" id="t2" style="STATIC">bar</div>
         | 
| 15 | 
            +
                  </body></html>
         | 
| 16 | 
            +
                STR
         | 
| 17 | 
            +
             | 
| 18 | 
            +
                doc = LibXML::XML::Parser.string(str).parse
         | 
| 19 | 
            +
             | 
| 20 | 
            +
                xpath = "//div"
         | 
| 21 | 
            +
                @div1 = doc.find(xpath).to_a[0]
         | 
| 22 | 
            +
                @div2 = doc.find(xpath).to_a[1]
         | 
| 23 | 
            +
              end
         | 
| 24 | 
            +
             | 
| 25 | 
            +
              def test_libxml_node_copy_not_segv
         | 
| 26 | 
            +
                @div2.each do |child|
         | 
| 27 | 
            +
                  c = child.copy(false)
         | 
| 28 | 
            +
                  @div1 << c
         | 
| 29 | 
            +
                end
         | 
| 30 | 
            +
                assert @div1.to_s =~ /foo/
         | 
| 31 | 
            +
              end
         | 
| 32 | 
            +
             | 
| 33 | 
            +
              def test_libxml_node_clone_not_segv
         | 
| 34 | 
            +
                @div2.each do |child|
         | 
| 35 | 
            +
                  c = child.clone
         | 
| 36 | 
            +
                  @div1 << c
         | 
| 37 | 
            +
                end
         | 
| 38 | 
            +
                assert @div1.to_s =~ /foo/
         | 
| 39 | 
            +
              end
         | 
| 40 | 
            +
            end
         | 
| @@ -0,0 +1,158 @@ | |
| 1 | 
            +
            # encoding: UTF-8
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative './test_helper'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            class TestNodeEdit < Minitest::Test
         | 
| 6 | 
            +
              def setup
         | 
| 7 | 
            +
                xp = LibXML::XML::Parser.string('<test><num>one</num><num>two</num><num>three</num></test>')
         | 
| 8 | 
            +
                @doc = xp.parse
         | 
| 9 | 
            +
              end
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              def teardown
         | 
| 12 | 
            +
                @doc = nil
         | 
| 13 | 
            +
              end
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              def first_node
         | 
| 16 | 
            +
                @doc.root.child
         | 
| 17 | 
            +
              end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
              def second_node
         | 
| 20 | 
            +
                first_node.next
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
             | 
| 23 | 
            +
              def third_node
         | 
| 24 | 
            +
                second_node.next
         | 
| 25 | 
            +
              end
         | 
| 26 | 
            +
             | 
| 27 | 
            +
              def test_add_next_01
         | 
| 28 | 
            +
                first_node.next = LibXML::XML::Node.new('num', 'one-and-a-half')
         | 
| 29 | 
            +
                assert_equal('<test><num>one</num><num>one-and-a-half</num><num>two</num><num>three</num></test>',
         | 
| 30 | 
            +
                             @doc.root.to_s.gsub(/\n\s*/,''))
         | 
| 31 | 
            +
              end
         | 
| 32 | 
            +
             | 
| 33 | 
            +
              def test_add_next_02
         | 
| 34 | 
            +
                second_node.next = LibXML::XML::Node.new('num', 'two-and-a-half')
         | 
| 35 | 
            +
                assert_equal('<test><num>one</num><num>two</num><num>two-and-a-half</num><num>three</num></test>',
         | 
| 36 | 
            +
                             @doc.root.to_s.gsub(/\n\s*/,''))
         | 
| 37 | 
            +
              end
         | 
| 38 | 
            +
             | 
| 39 | 
            +
              def test_add_next_03
         | 
| 40 | 
            +
                third_node.next = LibXML::XML::Node.new('num', 'four')
         | 
| 41 | 
            +
                assert_equal '<test><num>one</num><num>two</num><num>three</num><num>four</num></test>',
         | 
| 42 | 
            +
                  @doc.root.to_s.gsub(/\n\s*/,'')
         | 
| 43 | 
            +
              end
         | 
| 44 | 
            +
             | 
| 45 | 
            +
              def test_add_prev_01
         | 
| 46 | 
            +
                first_node.prev = LibXML::XML::Node.new('num', 'half')
         | 
| 47 | 
            +
                assert_equal '<test><num>half</num><num>one</num><num>two</num><num>three</num></test>',
         | 
| 48 | 
            +
                  @doc.root.to_s.gsub(/\n\s*/,'')
         | 
| 49 | 
            +
              end
         | 
| 50 | 
            +
             | 
| 51 | 
            +
              def test_add_prev_02
         | 
| 52 | 
            +
                second_node.prev = LibXML::XML::Node.new('num', 'one-and-a-half')
         | 
| 53 | 
            +
                assert_equal '<test><num>one</num><num>one-and-a-half</num><num>two</num><num>three</num></test>',
         | 
| 54 | 
            +
                  @doc.root.to_s.gsub(/\n\s*/,'')
         | 
| 55 | 
            +
              end
         | 
| 56 | 
            +
             | 
| 57 | 
            +
              def test_add_prev_03
         | 
| 58 | 
            +
                third_node.prev = LibXML::XML::Node.new('num', 'two-and-a-half')
         | 
| 59 | 
            +
                assert_equal '<test><num>one</num><num>two</num><num>two-and-a-half</num><num>three</num></test>',
         | 
| 60 | 
            +
                  @doc.root.to_s.gsub(/\n\s*/,'')
         | 
| 61 | 
            +
              end
         | 
| 62 | 
            +
             | 
| 63 | 
            +
              def test_remove_node
         | 
| 64 | 
            +
                first_node.remove!
         | 
| 65 | 
            +
                assert_equal('<test><num>two</num><num>three</num></test>',
         | 
| 66 | 
            +
                             @doc.root.to_s.gsub(/\n\s*/,''))
         | 
| 67 | 
            +
              end
         | 
| 68 | 
            +
             | 
| 69 | 
            +
              def test_remove_node_gc
         | 
| 70 | 
            +
                xp = LibXML::XML::Parser.string('<test><num>one</num><num>two</num><num>three</num></test>')
         | 
| 71 | 
            +
                doc = xp.parse
         | 
| 72 | 
            +
                doc.root.child.remove!
         | 
| 73 | 
            +
                GC.start
         | 
| 74 | 
            +
                refute_nil(doc)
         | 
| 75 | 
            +
              end
         | 
| 76 | 
            +
             | 
| 77 | 
            +
              def test_remove_node_iteration
         | 
| 78 | 
            +
                nodes = Array.new
         | 
| 79 | 
            +
                @doc.root.each_element do |node|
         | 
| 80 | 
            +
                  if node.name == 'num'
         | 
| 81 | 
            +
                    nodes << node
         | 
| 82 | 
            +
                    node.remove!
         | 
| 83 | 
            +
                  end
         | 
| 84 | 
            +
                end
         | 
| 85 | 
            +
                assert_equal(3, nodes.length)
         | 
| 86 | 
            +
              end
         | 
| 87 | 
            +
             | 
| 88 | 
            +
              def test_reuse_removed_node
         | 
| 89 | 
            +
                # Remove the node
         | 
| 90 | 
            +
                node = @doc.root.first.remove!
         | 
| 91 | 
            +
                refute_nil(node)
         | 
| 92 | 
            +
             | 
| 93 | 
            +
                # Add it to the end of the document
         | 
| 94 | 
            +
                @doc.root.last.next = node
         | 
| 95 | 
            +
             | 
| 96 | 
            +
                assert_equal('<test><num>two</num><num>three</num><num>one</num></test>',
         | 
| 97 | 
            +
                             @doc.root.to_s.gsub(/\n\s*/,''))
         | 
| 98 | 
            +
              end
         | 
| 99 | 
            +
             | 
| 100 | 
            +
              def test_append_existing_node
         | 
| 101 | 
            +
                doc = LibXML::XML::Parser.string('<top>a<bottom>b<one>first</one><two>second</two>c</bottom>d</top>').parse
         | 
| 102 | 
            +
                node1 = doc.find_first('//two')
         | 
| 103 | 
            +
             | 
| 104 | 
            +
                doc.root << node1
         | 
| 105 | 
            +
                assert_equal('<top>a<bottom>b<one>first</one>c</bottom>d<two>second</two></top>',
         | 
| 106 | 
            +
                             doc.root.to_s)
         | 
| 107 | 
            +
              end
         | 
| 108 | 
            +
             | 
| 109 | 
            +
              def test_wrong_doc
         | 
| 110 | 
            +
                doc1 = LibXML::XML::Parser.string('<nums><one></one></nums>').parse
         | 
| 111 | 
            +
                doc2 = LibXML::XML::Parser.string('<nums><two></two></nums>').parse
         | 
| 112 | 
            +
             | 
| 113 | 
            +
                node = doc1.root.child
         | 
| 114 | 
            +
             | 
| 115 | 
            +
                error = assert_raises(LibXML::XML::Error) do
         | 
| 116 | 
            +
                  doc2.root << node
         | 
| 117 | 
            +
                end
         | 
| 118 | 
            +
             | 
| 119 | 
            +
                GC.start
         | 
| 120 | 
            +
                assert_equal(' Nodes belong to different documents.  You must first import the node by calling LibXML::XML::Document.import.',
         | 
| 121 | 
            +
                             error.to_s)
         | 
| 122 | 
            +
              end
         | 
| 123 | 
            +
             | 
| 124 | 
            +
              # This test is to verify that an earlier reported bug has been fixed
         | 
| 125 | 
            +
              def test_merge
         | 
| 126 | 
            +
                documents = []
         | 
| 127 | 
            +
             | 
| 128 | 
            +
                # Read in 500 documents
         | 
| 129 | 
            +
                500.times do
         | 
| 130 | 
            +
                  documents << LibXML::XML::Parser.string(File.read(File.join(File.dirname(__FILE__), 'model', 'merge_bug_data.xml'))).parse
         | 
| 131 | 
            +
                end
         | 
| 132 | 
            +
             | 
| 133 | 
            +
                master_doc = documents.shift
         | 
| 134 | 
            +
             | 
| 135 | 
            +
                documents.each do |child_doc|
         | 
| 136 | 
            +
                  master_body = master_doc.find("//body").first
         | 
| 137 | 
            +
                  child_body = child_doc.find("//body").first
         | 
| 138 | 
            +
             | 
| 139 | 
            +
                  child_element = child_body.detect do |node|
         | 
| 140 | 
            +
                    node.element?
         | 
| 141 | 
            +
                  end
         | 
| 142 | 
            +
             | 
| 143 | 
            +
                  master_body << child_element.copy(true)
         | 
| 144 | 
            +
                end
         | 
| 145 | 
            +
              end
         | 
| 146 | 
            +
             | 
| 147 | 
            +
              def test_append_chain
         | 
| 148 | 
            +
                node = LibXML::XML::Node.new('foo') << LibXML::XML::Node.new('bar') << "bars contents"
         | 
| 149 | 
            +
                assert_equal('<foo><bar/>bars contents</foo>',
         | 
| 150 | 
            +
                             node.to_s)
         | 
| 151 | 
            +
              end
         | 
| 152 | 
            +
             | 
| 153 | 
            +
              def test_set_base
         | 
| 154 | 
            +
                @doc.root.base_uri = 'http://www.rubynet.org/'
         | 
| 155 | 
            +
                assert_equal("<test xml:base=\"http://www.rubynet.org/\">\n  <num>one</num>\n  <num>two</num>\n  <num>three</num>\n</test>",
         | 
| 156 | 
            +
                             @doc.root.to_s)
         | 
| 157 | 
            +
              end
         | 
| 158 | 
            +
            end
         | 
| @@ -0,0 +1,37 @@ | |
| 1 | 
            +
            # encoding: UTF-8
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative './test_helper'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            class NodePiTest < Minitest::Test
         | 
| 6 | 
            +
              def setup
         | 
| 7 | 
            +
                xp = LibXML::XML::Parser.string('<root></root>')
         | 
| 8 | 
            +
                @doc = xp.parse
         | 
| 9 | 
            +
                assert_instance_of(LibXML::XML::Document, @doc)
         | 
| 10 | 
            +
                @root = @doc.root
         | 
| 11 | 
            +
              end
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              def test_libxml_node_add_pi_01
         | 
| 14 | 
            +
                @root << LibXML::XML::Node.new_pi('mypi')
         | 
| 15 | 
            +
                assert_equal '<root><?mypi?></root>',
         | 
| 16 | 
            +
                  @root.to_s.gsub(/\n\s*/,'')
         | 
| 17 | 
            +
              end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
              def test_libxml_node_add_pi_02
         | 
| 20 | 
            +
                @root << LibXML::XML::Node.new_pi('mypi')
         | 
| 21 | 
            +
                assert_equal 'pi',
         | 
| 22 | 
            +
                @root.child.node_type_name
         | 
| 23 | 
            +
              end
         | 
| 24 | 
            +
             | 
| 25 | 
            +
              def test_libxml_node_add_pi_03
         | 
| 26 | 
            +
                @root << el = LibXML::XML::Node.new_pi('mypi')
         | 
| 27 | 
            +
                el << "_this_is_added"
         | 
| 28 | 
            +
                assert_equal '<root><?mypi _this_is_added?></root>',
         | 
| 29 | 
            +
                @root.to_s.gsub(/\n\s*/,'')
         | 
| 30 | 
            +
              end
         | 
| 31 | 
            +
             | 
| 32 | 
            +
              def test_libxml_node_add_pi_04
         | 
| 33 | 
            +
                @root << LibXML::XML::Node.new_pi('mypi','mycontent')
         | 
| 34 | 
            +
                assert_equal '<root><?mypi mycontent?></root>',
         | 
| 35 | 
            +
                  @root.to_s.gsub(/\n\s*/,'')
         | 
| 36 | 
            +
              end
         | 
| 37 | 
            +
            end
         | 
| @@ -0,0 +1,69 @@ | |
| 1 | 
            +
            # encoding: UTF-8
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative './test_helper'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            class TestTextNode < Minitest::Test
         | 
| 6 | 
            +
              def test_content
         | 
| 7 | 
            +
                node = LibXML::XML::Node.new_text('testdata')
         | 
| 8 | 
            +
                assert_instance_of(LibXML::XML::Node, node)
         | 
| 9 | 
            +
                assert_equal('testdata', node.content)
         | 
| 10 | 
            +
              end
         | 
| 11 | 
            +
             | 
| 12 | 
            +
              def test_invalid_content
         | 
| 13 | 
            +
                error = assert_raises(TypeError) do
         | 
| 14 | 
            +
                  LibXML::XML::Node.new_text(nil)
         | 
| 15 | 
            +
                end
         | 
| 16 | 
            +
                assert_equal('wrong argument type nil (expected String)', error.to_s)
         | 
| 17 | 
            +
              end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            	# We use the same facility that libXSLT does here to disable output escaping.
         | 
| 20 | 
            +
            	# This lets you specify that the node's content should be rendered unaltered
         | 
| 21 | 
            +
            	# whenever it is being output.  This is useful for things like <script> and
         | 
| 22 | 
            +
            	# <style> nodes in HTML documents if you don't want to be forced to wrap them
         | 
| 23 | 
            +
            	# in CDATA nodes.  Or if you are sanitizing existing HTML documents and want
         | 
| 24 | 
            +
            	# to preserve the content of any of the text nodes.
         | 
| 25 | 
            +
            	#
         | 
| 26 | 
            +
              def test_output_escaping
         | 
| 27 | 
            +
            		textnoenc = 'if (a < b || c > d) return "e";'
         | 
| 28 | 
            +
            		text = "if (a < b || c > d) return \"e\";"
         | 
| 29 | 
            +
             
         | 
| 30 | 
            +
            		node = LibXML::XML::Node.new_text(textnoenc)
         | 
| 31 | 
            +
            		assert node.output_escaping?
         | 
| 32 | 
            +
            		assert_equal text, node.to_s
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            		node.output_escaping = false
         | 
| 35 | 
            +
            		assert_equal textnoenc, node.to_s
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            		node.output_escaping = true
         | 
| 38 | 
            +
            		assert_equal text, node.to_s
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            		node.output_escaping = nil
         | 
| 41 | 
            +
            		assert_equal textnoenc, node.to_s
         | 
| 42 | 
            +
             | 
| 43 | 
            +
            		node.output_escaping = true
         | 
| 44 | 
            +
            		assert_equal text, node.to_s
         | 
| 45 | 
            +
              end
         | 
| 46 | 
            +
             | 
| 47 | 
            +
            	# Just a sanity check for output escaping.
         | 
| 48 | 
            +
              def test_output_escaping_sanity
         | 
| 49 | 
            +
            		node = LibXML::XML::Node.new_text('testdata')
         | 
| 50 | 
            +
                assert_equal 'text', node.name
         | 
| 51 | 
            +
            		assert node.output_escaping?
         | 
| 52 | 
            +
             | 
| 53 | 
            +
            		node.output_escaping = false
         | 
| 54 | 
            +
                assert_equal 'textnoenc', node.name
         | 
| 55 | 
            +
            		assert ! node.output_escaping?
         | 
| 56 | 
            +
             | 
| 57 | 
            +
            		node.output_escaping = true
         | 
| 58 | 
            +
                assert_equal 'text', node.name
         | 
| 59 | 
            +
            		assert node.output_escaping?
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            		node.output_escaping = nil
         | 
| 62 | 
            +
                assert_equal 'textnoenc', node.name
         | 
| 63 | 
            +
            		assert ! node.output_escaping?
         | 
| 64 | 
            +
             | 
| 65 | 
            +
            		node.output_escaping = true
         | 
| 66 | 
            +
                assert_equal 'text', node.name
         | 
| 67 | 
            +
            		assert node.output_escaping?
         | 
| 68 | 
            +
              end
         | 
| 69 | 
            +
            end
         |