libxml-ruby 2.9.0-x64-mingw32
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 +790 -0
- data/LICENSE +21 -0
- data/MANIFEST +166 -0
- data/README.rdoc +184 -0
- data/Rakefile +81 -0
- data/ext/libxml/extconf.h +4 -0
- data/ext/libxml/extconf.rb +57 -0
- data/ext/libxml/libxml.c +80 -0
- data/ext/libxml/libxml_ruby.def +35 -0
- data/ext/libxml/ruby_libxml.h +75 -0
- data/ext/libxml/ruby_xml.c +977 -0
- data/ext/libxml/ruby_xml.h +20 -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 +1133 -0
- data/ext/libxml/ruby_xml_document.h +11 -0
- data/ext/libxml/ruby_xml_dtd.c +261 -0
- data/ext/libxml/ruby_xml_dtd.h +9 -0
- data/ext/libxml/ruby_xml_encoding.c +262 -0
- data/ext/libxml/ruby_xml_encoding.h +19 -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 +92 -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 +52 -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 +1446 -0
- data/ext/libxml/ruby_xml_node.h +11 -0
- data/ext/libxml/ruby_xml_parser.c +94 -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 +1226 -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 +120 -0
- data/ext/libxml/ruby_xml_sax_parser.h +10 -0
- data/ext/libxml/ruby_xml_schema.c +300 -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 +94 -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 +259 -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 +1136 -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 +188 -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 +335 -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 +26 -0
- data/lib/2.3/libxml_ruby.so +0 -0
- data/lib/libs/libiconv-2.dll +0 -0
- data/lib/libs/libxml2-2.dll +0 -0
- data/lib/libs/zlib1.dll +0 -0
- data/lib/libxml.rb +35 -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 +399 -0
- data/lib/libxml/ns.rb +22 -0
- data/lib/libxml/parser.rb +367 -0
- data/lib/libxml/properties.rb +23 -0
- data/lib/libxml/reader.rb +29 -0
- data/lib/libxml/sax_callbacks.rb +180 -0
- data/lib/libxml/sax_parser.rb +58 -0
- data/lib/libxml/schema.rb +67 -0
- data/lib/libxml/schema/attribute.rb +19 -0
- data/lib/libxml/schema/element.rb +27 -0
- data/lib/libxml/schema/type.rb +29 -0
- data/lib/libxml/tree.rb +29 -0
- data/lib/libxml/xpath_object.rb +16 -0
- data/lib/xml.rb +14 -0
- data/lib/xml/libxml.rb +10 -0
- data/libxml-ruby.gemspec +47 -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 +1585 -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/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/tc_attr.rb +181 -0
- data/test/tc_attr_decl.rb +132 -0
- data/test/tc_attributes.rb +142 -0
- data/test/tc_canonicalize.rb +124 -0
- data/test/tc_deprecated_require.rb +12 -0
- data/test/tc_document.rb +125 -0
- data/test/tc_document_write.rb +195 -0
- data/test/tc_dtd.rb +128 -0
- data/test/tc_encoding.rb +126 -0
- data/test/tc_encoding_sax.rb +115 -0
- data/test/tc_error.rb +179 -0
- data/test/tc_html_parser.rb +161 -0
- data/test/tc_html_parser_context.rb +23 -0
- data/test/tc_namespace.rb +61 -0
- data/test/tc_namespaces.rb +209 -0
- data/test/tc_node.rb +215 -0
- data/test/tc_node_cdata.rb +50 -0
- data/test/tc_node_comment.rb +32 -0
- data/test/tc_node_copy.rb +41 -0
- data/test/tc_node_edit.rb +174 -0
- data/test/tc_node_pi.rb +39 -0
- data/test/tc_node_text.rb +70 -0
- data/test/tc_node_write.rb +107 -0
- data/test/tc_node_xlink.rb +28 -0
- data/test/tc_parser.rb +375 -0
- data/test/tc_parser_context.rb +204 -0
- data/test/tc_properties.rb +38 -0
- data/test/tc_reader.rb +399 -0
- data/test/tc_relaxng.rb +53 -0
- data/test/tc_sax_parser.rb +319 -0
- data/test/tc_schema.rb +161 -0
- data/test/tc_traversal.rb +152 -0
- data/test/tc_writer.rb +447 -0
- data/test/tc_xinclude.rb +20 -0
- data/test/tc_xml.rb +225 -0
- data/test/tc_xpath.rb +244 -0
- data/test/tc_xpath_context.rb +88 -0
- data/test/tc_xpath_expression.rb +37 -0
- data/test/tc_xpointer.rb +72 -0
- data/test/test_helper.rb +16 -0
- data/test/test_suite.rb +49 -0
- metadata +344 -0
data/test/tc_node.rb
ADDED
@@ -0,0 +1,215 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
require './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
|
+
XML.default_keep_blanks = false
|
11
|
+
file = File.join(File.dirname(__FILE__), @file_name)
|
12
|
+
@doc = XML::Document.file(file)
|
13
|
+
end
|
14
|
+
|
15
|
+
def teardown
|
16
|
+
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(XML::Document, @doc)
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_doc_node_type
|
30
|
+
assert_equal XML::Node::DOCUMENT_NODE, @doc.node_type
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_root_class
|
34
|
+
assert_instance_of(XML::Node, @doc.root)
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_root_node_type
|
38
|
+
assert_equal 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(XML::Node, n)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_context
|
48
|
+
node = @doc.root
|
49
|
+
context = node.context
|
50
|
+
assert_instance_of(XML::XPath::Context, context)
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_find
|
54
|
+
assert_instance_of(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(XML::Node, @doc.root.child)
|
60
|
+
|
61
|
+
if defined?(Encoding)
|
62
|
+
assert_equal(Encoding::UTF_8, @doc.root.child.name.encoding)
|
63
|
+
assert_equal("m\u00F6tley_cr\u00FCe", @doc.root.child.name)
|
64
|
+
else
|
65
|
+
assert_equal("m\303\266tley_cr\303\274e", @doc.root.child.name)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def test_node_doc
|
70
|
+
for n in nodes
|
71
|
+
assert_instance_of(XML::Document, n.doc) if n.document?
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def test_name
|
76
|
+
node = @doc.root.children.last
|
77
|
+
assert_equal("iron_maiden", node.name)
|
78
|
+
end
|
79
|
+
|
80
|
+
def test_node_find
|
81
|
+
nodes = @doc.root.find('./fixnum')
|
82
|
+
for node in nodes
|
83
|
+
assert_instance_of(XML::Node, node)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def test_equality
|
88
|
+
node_a = @doc.find_first('*[@country]')
|
89
|
+
node_b = @doc.root.child
|
90
|
+
|
91
|
+
assert(node_a == node_b)
|
92
|
+
assert(node_a.eql?(node_b))
|
93
|
+
assert(node_a.equal?(node_b))
|
94
|
+
|
95
|
+
file = File.join(File.dirname(__FILE__), @file_name)
|
96
|
+
doc2 = XML::Document.file(file)
|
97
|
+
|
98
|
+
node_a2 = doc2.find_first('*[@country]')
|
99
|
+
|
100
|
+
assert_equal(node_a.to_s, node_a2.to_s)
|
101
|
+
assert_equal(node_a, node_a2)
|
102
|
+
assert(node_a.eql?(node_a2))
|
103
|
+
assert(!node_a.equal?(node_a2))
|
104
|
+
end
|
105
|
+
|
106
|
+
def test_equality_nil
|
107
|
+
node = @doc.root
|
108
|
+
assert(node != nil)
|
109
|
+
end
|
110
|
+
|
111
|
+
def test_equality_wrong_type
|
112
|
+
node = @doc.root
|
113
|
+
|
114
|
+
assert_raises(TypeError) do
|
115
|
+
assert(node != 'abc')
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def test_content
|
120
|
+
node = @doc.root.last
|
121
|
+
assert_equal("Iron Maiden is a British heavy metal band formed in 1975.",
|
122
|
+
node.content)
|
123
|
+
end
|
124
|
+
|
125
|
+
def test_base
|
126
|
+
doc = XML::Parser.string('<person />').parse
|
127
|
+
assert_nil(doc.root.base_uri)
|
128
|
+
end
|
129
|
+
|
130
|
+
# We use the same facility that libXSLT does here to disable output escaping.
|
131
|
+
# This lets you specify that the node's content should be rendered unaltered
|
132
|
+
# whenever it is being output. This is useful for things like <script> and
|
133
|
+
# <style> nodes in HTML documents if you don't want to be forced to wrap them
|
134
|
+
# in CDATA nodes. Or if you are sanitizing existing HTML documents and want
|
135
|
+
# to preserve the content of any of the text nodes.
|
136
|
+
#
|
137
|
+
def test_output_escaping
|
138
|
+
text = '<bad-script>if (a < b || b > c) { return "text"; }<stop/>return ">>>snip<<<";</bad-script>'
|
139
|
+
node = XML::Parser.string(text).parse.root
|
140
|
+
assert_equal text, node.to_s
|
141
|
+
|
142
|
+
text_noenc = '<bad-script>if (a < b || b > c) { return "text"; }<stop/>return ">>>snip<<<";</bad-script>'
|
143
|
+
node.output_escaping = false
|
144
|
+
assert_equal text_noenc, node.to_s
|
145
|
+
|
146
|
+
node.output_escaping = true
|
147
|
+
assert_equal text, node.to_s
|
148
|
+
|
149
|
+
node.output_escaping = nil
|
150
|
+
assert_equal text_noenc, node.to_s
|
151
|
+
|
152
|
+
node.output_escaping = true
|
153
|
+
assert_equal text, node.to_s
|
154
|
+
end
|
155
|
+
|
156
|
+
# Just a sanity check for output escaping.
|
157
|
+
def test_output_escaping_sanity
|
158
|
+
text = '<bad-script>if (a < b || b > c) { return "text"; }<stop/>return ">>>snip<<<";</bad-script>'
|
159
|
+
node = XML::Parser.string(text).parse.root
|
160
|
+
affected = node.find('//text()')
|
161
|
+
|
162
|
+
check_escaping = lambda do |flag|
|
163
|
+
assert_equal('bad-script', node.name)
|
164
|
+
assert_equal(flag, node.output_escaping?)
|
165
|
+
affected.each do |x|
|
166
|
+
assert_equal(flag ? 'text' : 'textnoenc', x.name)
|
167
|
+
assert_equal(flag, x.output_escaping?)
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
node.output_escaping = false
|
172
|
+
check_escaping[false]
|
173
|
+
|
174
|
+
node.output_escaping = true
|
175
|
+
check_escaping[true]
|
176
|
+
|
177
|
+
node.output_escaping = nil
|
178
|
+
check_escaping[false]
|
179
|
+
|
180
|
+
node.output_escaping = true
|
181
|
+
check_escaping[true]
|
182
|
+
|
183
|
+
affected.first.output_escaping = true
|
184
|
+
affected.last.output_escaping = false
|
185
|
+
assert node.output_escaping?.nil?
|
186
|
+
end
|
187
|
+
|
188
|
+
def test_space_preserve
|
189
|
+
node = @doc.root
|
190
|
+
|
191
|
+
node.space_preserve = false
|
192
|
+
assert_equal XML::Node::SPACE_DEFAULT, node.space_preserve
|
193
|
+
|
194
|
+
node.space_preserve = true
|
195
|
+
assert_equal XML::Node::SPACE_PRESERVE, node.space_preserve
|
196
|
+
end
|
197
|
+
|
198
|
+
def test_empty
|
199
|
+
text = '<name> </name>'
|
200
|
+
doc = XML::Parser.string(text).parse
|
201
|
+
|
202
|
+
node = doc.root
|
203
|
+
assert(!node.empty?)
|
204
|
+
|
205
|
+
text_node = node.first
|
206
|
+
assert(text_node.empty?)
|
207
|
+
end
|
208
|
+
|
209
|
+
def test_set_content
|
210
|
+
node = XML::Node.new('test')
|
211
|
+
node.content = "unescaped & string"
|
212
|
+
assert_equal("unescaped & string", node.content)
|
213
|
+
assert_equal("<test>unescaped & string</test>", node.to_s)
|
214
|
+
end
|
215
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
require './test_helper'
|
4
|
+
|
5
|
+
class CDataCommentTest < Minitest::Test
|
6
|
+
def setup
|
7
|
+
xp = XML::Parser.string('<root></root>')
|
8
|
+
@doc = xp.parse
|
9
|
+
assert_instance_of(XML::Document, @doc)
|
10
|
+
@root = @doc.root
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_node_type
|
14
|
+
cnode = XML::Node.new_cdata('test cdata')
|
15
|
+
assert_equal(XML::Node::CDATA_SECTION_NODE, cnode.node_type)
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_add_cdata
|
19
|
+
@root << 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 << 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 = 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 = XML::Node.new_cdata('test cdata')
|
39
|
+
assert_equal(0, cnode.attributes.length)
|
40
|
+
end
|
41
|
+
|
42
|
+
def test_set_cdata_attribute
|
43
|
+
cnode = 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 './test_helper'
|
4
|
+
|
5
|
+
|
6
|
+
class NodeCommentTest < Minitest::Test
|
7
|
+
def setup
|
8
|
+
xp = XML::Parser.string('<root></root>')
|
9
|
+
@doc = xp.parse
|
10
|
+
assert_instance_of(XML::Document, @doc)
|
11
|
+
@root = @doc.root
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_libxml_node_add_comment_01
|
15
|
+
@root << 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 << 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 = 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,41 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
require './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 = 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
|
+
|
41
|
+
end # TC_XML_Node_Copy
|
@@ -0,0 +1,174 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
require './test_helper'
|
4
|
+
|
5
|
+
class TestNodeEdit < Minitest::Test
|
6
|
+
def setup
|
7
|
+
xp = 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 = 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 = 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 = 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 = 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 = 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 = 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_freed_node
|
70
|
+
root = XML::Node.new("root")
|
71
|
+
|
72
|
+
a = XML::Node.new("a")
|
73
|
+
root << a
|
74
|
+
|
75
|
+
a.parent.remove!
|
76
|
+
|
77
|
+
# Node a has now been freed from under us
|
78
|
+
error = assert_raises(RuntimeError) do
|
79
|
+
a.to_s
|
80
|
+
end
|
81
|
+
assert_equal('This node has already been freed.', error.to_s)
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_remove_node_gc
|
85
|
+
xp = XML::Parser.string('<test><num>one</num><num>two</num><num>three</num></test>')
|
86
|
+
doc = xp.parse
|
87
|
+
node = doc.root.child.remove!
|
88
|
+
node = nil
|
89
|
+
GC.start
|
90
|
+
refute_nil(doc)
|
91
|
+
end
|
92
|
+
|
93
|
+
def test_remove_node_iteration
|
94
|
+
nodes = Array.new
|
95
|
+
@doc.root.each_element do |node|
|
96
|
+
if node.name == 'num'
|
97
|
+
nodes << node
|
98
|
+
node.remove!
|
99
|
+
end
|
100
|
+
end
|
101
|
+
assert_equal(3, nodes.length)
|
102
|
+
end
|
103
|
+
|
104
|
+
def test_reuse_removed_node
|
105
|
+
# Remove the node
|
106
|
+
node = @doc.root.first.remove!
|
107
|
+
refute_nil(node)
|
108
|
+
|
109
|
+
# Add it to the end of the document
|
110
|
+
@doc.root.last.next = node
|
111
|
+
|
112
|
+
assert_equal('<test><num>two</num><num>three</num><num>one</num></test>',
|
113
|
+
@doc.root.to_s.gsub(/\n\s*/,''))
|
114
|
+
end
|
115
|
+
|
116
|
+
def test_append_existing_node
|
117
|
+
doc = XML::Parser.string('<top>a<bottom>b<one>first</one><two>second</two>c</bottom>d</top>').parse
|
118
|
+
node1 = doc.find_first('//two')
|
119
|
+
|
120
|
+
doc.root << node1
|
121
|
+
assert_equal('<top>a<bottom>b<one>first</one>c</bottom>d<two>second</two></top>',
|
122
|
+
doc.root.to_s)
|
123
|
+
end
|
124
|
+
|
125
|
+
def test_wrong_doc
|
126
|
+
doc1 = XML::Parser.string('<nums><one></one></nums>').parse
|
127
|
+
doc2 = XML::Parser.string('<nums><two></two></nums>').parse
|
128
|
+
|
129
|
+
node = doc1.root.child
|
130
|
+
|
131
|
+
error = assert_raises(XML::Error) do
|
132
|
+
doc2.root << node
|
133
|
+
end
|
134
|
+
|
135
|
+
GC.start
|
136
|
+
assert_equal(' Nodes belong to different documents. You must first import the node by calling XML::Document.import.',
|
137
|
+
error.to_s)
|
138
|
+
end
|
139
|
+
|
140
|
+
# This test is to verify that an earlier reported bug has been fixed
|
141
|
+
def test_merge
|
142
|
+
documents = []
|
143
|
+
|
144
|
+
# Read in 500 documents
|
145
|
+
500.times do
|
146
|
+
documents << XML::Parser.string(File.read(File.join(File.dirname(__FILE__), 'model', 'merge_bug_data.xml'))).parse
|
147
|
+
end
|
148
|
+
|
149
|
+
master_doc = documents.shift
|
150
|
+
documents.inject(master_doc) do |master_doc, child_doc|
|
151
|
+
master_body = master_doc.find("//body").first
|
152
|
+
child_body = child_doc.find("//body").first
|
153
|
+
|
154
|
+
child_element = child_body.detect do |node|
|
155
|
+
node.element?
|
156
|
+
end
|
157
|
+
|
158
|
+
master_body << child_element.copy(true)
|
159
|
+
master_doc
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
163
|
+
def test_append_chain
|
164
|
+
node = XML::Node.new('foo') << XML::Node.new('bar') << "bars contents"
|
165
|
+
assert_equal('<foo><bar/>bars contents</foo>',
|
166
|
+
node.to_s)
|
167
|
+
end
|
168
|
+
|
169
|
+
def test_set_base
|
170
|
+
@doc.root.base_uri = 'http://www.rubynet.org/'
|
171
|
+
assert_equal("<test xml:base=\"http://www.rubynet.org/\">\n <num>one</num>\n <num>two</num>\n <num>three</num>\n</test>",
|
172
|
+
@doc.root.to_s)
|
173
|
+
end
|
174
|
+
end
|