nokogiri 1.5.10 → 1.10.4

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.

Files changed (182) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE-DEPENDENCIES.md +1614 -0
  3. data/LICENSE.md +9 -0
  4. data/README.md +198 -0
  5. data/bin/nokogiri +50 -10
  6. data/dependencies.yml +72 -0
  7. data/ext/nokogiri/extconf.rb +634 -92
  8. data/ext/nokogiri/html_document.c +8 -8
  9. data/ext/nokogiri/html_element_description.c +15 -15
  10. data/ext/nokogiri/html_entity_lookup.c +1 -1
  11. data/ext/nokogiri/html_sax_parser_context.c +4 -4
  12. data/ext/nokogiri/html_sax_push_parser.c +2 -2
  13. data/ext/nokogiri/nokogiri.c +20 -12
  14. data/ext/nokogiri/nokogiri.h +1 -44
  15. data/ext/nokogiri/xml_attr.c +34 -25
  16. data/ext/nokogiri/xml_cdata.c +12 -6
  17. data/ext/nokogiri/xml_comment.c +18 -3
  18. data/ext/nokogiri/xml_document.c +64 -32
  19. data/ext/nokogiri/xml_dtd.c +2 -2
  20. data/ext/nokogiri/xml_encoding_handler.c +3 -3
  21. data/ext/nokogiri/xml_entity_reference.c +1 -1
  22. data/ext/nokogiri/xml_io.c +11 -6
  23. data/ext/nokogiri/xml_namespace.c +50 -17
  24. data/ext/nokogiri/xml_namespace.h +3 -2
  25. data/ext/nokogiri/xml_node.c +459 -240
  26. data/ext/nokogiri/xml_node_set.c +166 -147
  27. data/ext/nokogiri/xml_node_set.h +2 -4
  28. data/ext/nokogiri/xml_processing_instruction.c +2 -2
  29. data/ext/nokogiri/xml_reader.c +6 -19
  30. data/ext/nokogiri/xml_sax_parser.c +11 -13
  31. data/ext/nokogiri/xml_sax_parser_context.c +41 -1
  32. data/ext/nokogiri/xml_sax_push_parser.c +56 -12
  33. data/ext/nokogiri/xml_schema.c +1 -1
  34. data/ext/nokogiri/xml_syntax_error.c +11 -5
  35. data/ext/nokogiri/xml_syntax_error.h +1 -1
  36. data/ext/nokogiri/xml_text.c +1 -1
  37. data/ext/nokogiri/xml_xpath_context.c +17 -38
  38. data/ext/nokogiri/xslt_stylesheet.c +10 -10
  39. data/lib/nokogiri/css/node.rb +0 -50
  40. data/lib/nokogiri/css/parser.rb +263 -233
  41. data/lib/nokogiri/css/parser.y +54 -40
  42. data/lib/nokogiri/css/tokenizer.rb +104 -103
  43. data/lib/nokogiri/css/tokenizer.rex +5 -5
  44. data/lib/nokogiri/css/xpath_visitor.rb +78 -19
  45. data/lib/nokogiri/decorators/slop.rb +12 -5
  46. data/lib/nokogiri/html/document.rb +102 -21
  47. data/lib/nokogiri/html/document_fragment.rb +11 -3
  48. data/lib/nokogiri/html/sax/parser.rb +12 -2
  49. data/lib/nokogiri/html/sax/push_parser.rb +22 -2
  50. data/lib/nokogiri/version.rb +40 -22
  51. data/lib/nokogiri/xml/builder.rb +34 -31
  52. data/lib/nokogiri/xml/document.rb +20 -14
  53. data/lib/nokogiri/xml/document_fragment.rb +50 -2
  54. data/lib/nokogiri/xml/dtd.rb +14 -4
  55. data/lib/nokogiri/xml/entity_reference.rb +18 -0
  56. data/lib/nokogiri/xml/node.rb +148 -203
  57. data/lib/nokogiri/xml/node_set.rb +139 -123
  58. data/lib/nokogiri/xml/parse_options.rb +22 -0
  59. data/lib/nokogiri/xml/sax/document.rb +1 -1
  60. data/lib/nokogiri/xml/sax/parser.rb +7 -8
  61. data/lib/nokogiri/xml/searchable.rb +230 -0
  62. data/lib/nokogiri/xml/syntax_error.rb +24 -1
  63. data/lib/nokogiri/xml.rb +3 -1
  64. data/lib/nokogiri.rb +40 -24
  65. data/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch +78 -0
  66. data/patches/libxml2/0002-Remove-script-macro-support.patch +40 -0
  67. data/patches/libxml2/0003-Update-entities-to-remove-handling-of-ssi.patch +44 -0
  68. data/patches/libxslt/0001-Fix-security-framework-bypass.patch +120 -0
  69. data/ports/archives/libxml2-2.9.9.tar.gz +0 -0
  70. data/ports/archives/libxslt-1.1.33.tar.gz +0 -0
  71. metadata +252 -388
  72. data/.autotest +0 -26
  73. data/.gemtest +0 -0
  74. data/CHANGELOG.ja.rdoc +0 -785
  75. data/CHANGELOG.rdoc +0 -783
  76. data/C_CODING_STYLE.rdoc +0 -33
  77. data/Manifest.txt +0 -303
  78. data/README.ja.rdoc +0 -106
  79. data/README.rdoc +0 -175
  80. data/ROADMAP.md +0 -90
  81. data/Rakefile +0 -228
  82. data/STANDARD_RESPONSES.md +0 -47
  83. data/Y_U_NO_GEMSPEC.md +0 -155
  84. data/build_all +0 -105
  85. data/tasks/cross_compile.rb +0 -150
  86. data/tasks/nokogiri.org.rb +0 -24
  87. data/tasks/test.rb +0 -95
  88. data/test/css/test_nthiness.rb +0 -159
  89. data/test/css/test_parser.rb +0 -341
  90. data/test/css/test_tokenizer.rb +0 -198
  91. data/test/css/test_xpath_visitor.rb +0 -91
  92. data/test/decorators/test_slop.rb +0 -16
  93. data/test/files/2ch.html +0 -108
  94. data/test/files/address_book.rlx +0 -12
  95. data/test/files/address_book.xml +0 -10
  96. data/test/files/bar/bar.xsd +0 -4
  97. data/test/files/dont_hurt_em_why.xml +0 -422
  98. data/test/files/encoding.html +0 -82
  99. data/test/files/encoding.xhtml +0 -84
  100. data/test/files/exslt.xml +0 -8
  101. data/test/files/exslt.xslt +0 -35
  102. data/test/files/foo/foo.xsd +0 -4
  103. data/test/files/metacharset.html +0 -10
  104. data/test/files/noencoding.html +0 -47
  105. data/test/files/po.xml +0 -32
  106. data/test/files/po.xsd +0 -66
  107. data/test/files/shift_jis.html +0 -10
  108. data/test/files/shift_jis.xml +0 -5
  109. data/test/files/snuggles.xml +0 -3
  110. data/test/files/staff.dtd +0 -10
  111. data/test/files/staff.xml +0 -59
  112. data/test/files/staff.xslt +0 -32
  113. data/test/files/test_document_url/bar.xml +0 -2
  114. data/test/files/test_document_url/document.dtd +0 -4
  115. data/test/files/test_document_url/document.xml +0 -6
  116. data/test/files/tlm.html +0 -850
  117. data/test/files/to_be_xincluded.xml +0 -2
  118. data/test/files/valid_bar.xml +0 -2
  119. data/test/files/xinclude.xml +0 -4
  120. data/test/helper.rb +0 -154
  121. data/test/html/sax/test_parser.rb +0 -141
  122. data/test/html/sax/test_parser_context.rb +0 -46
  123. data/test/html/test_builder.rb +0 -164
  124. data/test/html/test_document.rb +0 -552
  125. data/test/html/test_document_encoding.rb +0 -138
  126. data/test/html/test_document_fragment.rb +0 -261
  127. data/test/html/test_element_description.rb +0 -105
  128. data/test/html/test_named_characters.rb +0 -14
  129. data/test/html/test_node.rb +0 -196
  130. data/test/html/test_node_encoding.rb +0 -27
  131. data/test/namespaces/test_additional_namespaces_in_builder_doc.rb +0 -14
  132. data/test/namespaces/test_namespaces_in_builder_doc.rb +0 -75
  133. data/test/namespaces/test_namespaces_in_created_doc.rb +0 -75
  134. data/test/namespaces/test_namespaces_in_parsed_doc.rb +0 -66
  135. data/test/test_convert_xpath.rb +0 -135
  136. data/test/test_css_cache.rb +0 -45
  137. data/test/test_encoding_handler.rb +0 -46
  138. data/test/test_memory_leak.rb +0 -156
  139. data/test/test_nokogiri.rb +0 -132
  140. data/test/test_reader.rb +0 -555
  141. data/test/test_soap4r_sax.rb +0 -52
  142. data/test/test_xslt_transforms.rb +0 -254
  143. data/test/xml/node/test_save_options.rb +0 -28
  144. data/test/xml/node/test_subclass.rb +0 -44
  145. data/test/xml/sax/test_parser.rb +0 -366
  146. data/test/xml/sax/test_parser_context.rb +0 -106
  147. data/test/xml/sax/test_push_parser.rb +0 -157
  148. data/test/xml/test_attr.rb +0 -64
  149. data/test/xml/test_attribute_decl.rb +0 -86
  150. data/test/xml/test_builder.rb +0 -306
  151. data/test/xml/test_c14n.rb +0 -151
  152. data/test/xml/test_cdata.rb +0 -48
  153. data/test/xml/test_comment.rb +0 -29
  154. data/test/xml/test_document.rb +0 -828
  155. data/test/xml/test_document_encoding.rb +0 -28
  156. data/test/xml/test_document_fragment.rb +0 -223
  157. data/test/xml/test_dtd.rb +0 -103
  158. data/test/xml/test_dtd_encoding.rb +0 -33
  159. data/test/xml/test_element_content.rb +0 -56
  160. data/test/xml/test_element_decl.rb +0 -73
  161. data/test/xml/test_entity_decl.rb +0 -122
  162. data/test/xml/test_entity_reference.rb +0 -245
  163. data/test/xml/test_namespace.rb +0 -95
  164. data/test/xml/test_node.rb +0 -1137
  165. data/test/xml/test_node_attributes.rb +0 -96
  166. data/test/xml/test_node_encoding.rb +0 -107
  167. data/test/xml/test_node_inheritance.rb +0 -32
  168. data/test/xml/test_node_reparenting.rb +0 -374
  169. data/test/xml/test_node_set.rb +0 -755
  170. data/test/xml/test_parse_options.rb +0 -64
  171. data/test/xml/test_processing_instruction.rb +0 -30
  172. data/test/xml/test_reader_encoding.rb +0 -142
  173. data/test/xml/test_relax_ng.rb +0 -60
  174. data/test/xml/test_schema.rb +0 -103
  175. data/test/xml/test_syntax_error.rb +0 -12
  176. data/test/xml/test_text.rb +0 -45
  177. data/test/xml/test_unparented_node.rb +0 -422
  178. data/test/xml/test_xinclude.rb +0 -83
  179. data/test/xml/test_xpath.rb +0 -295
  180. data/test/xslt/test_custom_functions.rb +0 -133
  181. data/test/xslt/test_exception_handling.rb +0 -37
  182. data/test_all +0 -81
@@ -1,422 +0,0 @@
1
- require "helper"
2
-
3
- require 'stringio'
4
-
5
- module Nokogiri
6
- module XML
7
- class TestUnparentedNode < Nokogiri::TestCase
8
- def setup
9
- begin
10
- xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
11
- @node = xml.at('staff')
12
- @node.unlink
13
- end
14
- GC.start # try to GC the document
15
- end
16
-
17
- def test_node_still_has_document
18
- assert @node.document
19
- end
20
-
21
- def test_add_namespace
22
- node = @node.at('address')
23
- node.unlink
24
- node.add_namespace('foo', 'http://tenderlovemaking.com')
25
- assert_equal 'http://tenderlovemaking.com', node.namespaces['xmlns:foo']
26
- end
27
-
28
- def test_write_to
29
- io = StringIO.new
30
- @node.write_to io
31
- io.rewind
32
- assert_equal @node.to_xml, io.read
33
- end
34
-
35
- def test_attribute_with_symbol
36
- assert_equal 'Yes', @node.css('address').first[:domestic]
37
- end
38
-
39
- def test_write_to_with_block
40
- called = false
41
- io = StringIO.new
42
- conf = nil
43
- @node.write_to io do |config|
44
- called = true
45
- conf = config
46
- config.format.as_html.no_empty_tags
47
- end
48
- io.rewind
49
- assert called
50
- assert_equal @node.serialize(:save_with => conf.options), io.read
51
- end
52
-
53
- %w{ xml html xhtml }.each do |type|
54
- define_method(:"test_write_#{type}_to") do
55
- io = StringIO.new
56
- assert @node.send(:"write_#{type}_to", io)
57
- io.rewind
58
- assert_match @node.send(:"to_#{type}"), io.read
59
- end
60
- end
61
-
62
- def test_serialize_with_block
63
- called = false
64
- conf = nil
65
- string = @node.serialize do |config|
66
- called = true
67
- conf = config
68
- config.format.as_html.no_empty_tags
69
- end
70
- assert called
71
- assert_equal @node.serialize(nil, conf.options), string
72
- end
73
-
74
- def test_values
75
- assert_equal %w{ Yes Yes }, @node.xpath('.//address')[1].values
76
- end
77
-
78
- def test_keys
79
- assert_equal %w{ domestic street }, @node.xpath('.//address')[1].keys
80
- end
81
-
82
- def test_each
83
- attributes = []
84
- @node.xpath('.//address')[1].each do |key, value|
85
- attributes << [key, value]
86
- end
87
- assert_equal [['domestic', 'Yes'], ['street', 'Yes']], attributes
88
- end
89
-
90
- def test_new
91
- assert node = Nokogiri::XML::Node.new('input', @node)
92
- assert_equal 1, node.node_type
93
- end
94
-
95
- def test_to_str
96
- assert name = @node.xpath('.//name').first
97
- assert_match(/Margaret/, '' + name)
98
- assert_equal('Margaret Martin', '' + name.children.first)
99
- end
100
-
101
- def test_ancestors
102
- assert(address = @node.xpath('.//address').first)
103
- assert_equal 2, address.ancestors.length
104
- assert_equal ['employee', 'staff'],
105
- address.ancestors.map { |x| x ? x.name : x }
106
- end
107
-
108
- def test_read_only?
109
- assert entity_decl = @node.internal_subset.children.find { |x|
110
- x.type == Node::ENTITY_DECL
111
- }
112
- assert entity_decl.read_only?
113
- end
114
-
115
- def test_remove_attribute
116
- address = @node.xpath('./employee/address').first
117
- assert_equal 'Yes', address['domestic']
118
- address.remove_attribute 'domestic'
119
- assert_nil address['domestic']
120
- end
121
-
122
- def test_delete
123
- address = @node.xpath('./employee/address').first
124
- assert_equal 'Yes', address['domestic']
125
- address.delete 'domestic'
126
- assert_nil address['domestic']
127
- end
128
-
129
- def test_add_child_in_same_document
130
- child = @node.css('employee').first
131
-
132
- assert child.children.last
133
- assert new_child = child.children.first
134
-
135
- last = child.children.last
136
-
137
- child.add_child(new_child)
138
- assert_equal new_child, child.children.last
139
- assert_equal last, child.children.last
140
- end
141
-
142
- def test_add_child_from_other_document
143
- d1 = Nokogiri::XML("<root><item>1</item><item>2</item></root>")
144
- d2 = Nokogiri::XML("<root><item>3</item><item>4</item></root>")
145
-
146
- d2.at('root').search('item').each do |i|
147
- d1.at('root').add_child i
148
- end
149
-
150
- assert_equal 0, d2.search('item').size
151
- assert_equal 4, d1.search('item').size
152
- end
153
-
154
- def test_add_child
155
- xml = Nokogiri::XML(<<-eoxml)
156
- <root>
157
- <a>Hello world</a>
158
- </root>
159
- eoxml
160
- text_node = Nokogiri::XML::Text.new('hello', xml)
161
- assert_equal Nokogiri::XML::Node::TEXT_NODE, text_node.type
162
- xml.root.add_child text_node
163
- assert_match 'hello', xml.to_s
164
- end
165
-
166
- def test_chevron_works_as_add_child
167
- xml = Nokogiri::XML(<<-eoxml)
168
- <root>
169
- <a>Hello world</a>
170
- </root>
171
- eoxml
172
- text_node = Nokogiri::XML::Text.new('hello', xml)
173
- xml.root << text_node
174
- assert_match 'hello', xml.to_s
175
- end
176
-
177
- def test_add_previous_sibling
178
- xml = Nokogiri::XML(<<-eoxml)
179
- <root>
180
- <a>Hello world</a>
181
- </root>
182
- eoxml
183
- b_node = Nokogiri::XML::Node.new('a', xml)
184
- assert_equal Nokogiri::XML::Node::ELEMENT_NODE, b_node.type
185
- b_node.content = 'first'
186
- a_node = xml.xpath('.//a').first
187
- a_node.add_previous_sibling(b_node)
188
- assert_equal('first', xml.xpath('.//a').first.text)
189
- end
190
-
191
- def test_add_previous_sibling_merge
192
- xml = Nokogiri::XML(<<-eoxml)
193
- <root>
194
- <a>Hello world</a>
195
- </root>
196
- eoxml
197
-
198
- assert a_tag = xml.css('a').first
199
-
200
- left_space = a_tag.previous
201
- right_space = a_tag.next
202
- assert left_space.text?
203
- assert right_space.text?
204
-
205
- left_space.add_previous_sibling(right_space)
206
- assert_equal left_space, right_space
207
- end
208
-
209
- def test_add_next_sibling_merge
210
- xml = Nokogiri::XML(<<-eoxml)
211
- <root>
212
- <a>Hello world</a>
213
- </root>
214
- eoxml
215
-
216
- assert a_tag = xml.css('a').first
217
-
218
- left_space = a_tag.previous
219
- right_space = a_tag.next
220
- assert left_space.text?
221
- assert right_space.text?
222
-
223
- right_space.add_next_sibling(left_space)
224
- assert_equal left_space, right_space
225
- end
226
-
227
- def test_add_next_sibling_to_root_raises_exception
228
- xml = Nokogiri::XML(<<-eoxml)
229
- <root />
230
- eoxml
231
-
232
- node = Nokogiri::XML::Node.new 'child', xml
233
-
234
- assert_raise(ArgumentError) do
235
- xml.root.add_next_sibling(node)
236
- end
237
- end
238
-
239
- def test_add_previous_sibling_to_root_raises_exception
240
- xml = Nokogiri::XML(<<-eoxml)
241
- <root />
242
- eoxml
243
-
244
- node = Nokogiri::XML::Node.new 'child', xml
245
-
246
- assert_raise(ArgumentError) do
247
- xml.root.add_previous_sibling(node)
248
- end
249
- end
250
-
251
- def test_add_pi_as_previous_sibling_to_root_is_ok
252
- doc = Nokogiri::XML "<root>foo</root>"
253
- pi = Nokogiri::XML::ProcessingInstruction.new(doc, "xml-stylesheet", %q{type="text/xsl" href="foo.xsl"})
254
- doc.root.add_previous_sibling pi
255
- expected_doc = %Q{<?xml version="1.0"?>\n<?xml-stylesheet type="text/xsl" href="foo.xsl"?>\n<root>foo</root>}
256
- assert_includes doc.to_xml, expected_doc
257
- end
258
-
259
- def test_find_by_css_with_tilde_eql
260
- xml = Nokogiri::XML.parse(<<-eoxml)
261
- <root>
262
- <a>Hello world</a>
263
- <a class='foo bar'>Bar</a>
264
- <a class='bar foo'>Bar</a>
265
- <a class='bar'>Bar</a>
266
- <a class='baz bar foo'>Bar</a>
267
- <a class='bazbarfoo'>Awesome</a>
268
- <a class='bazbar'>Awesome</a>
269
- </root>
270
- eoxml
271
- set = xml.css('a[@class~="bar"]')
272
- assert_equal 4, set.length
273
- assert_equal ['Bar'], set.map { |node| node.content }.uniq
274
- end
275
-
276
- def test_unlink
277
- xml = Nokogiri::XML.parse(<<-eoxml)
278
- <root>
279
- <a class='foo bar'>Bar</a>
280
- <a class='bar foo'>Bar</a>
281
- <a class='bar'>Bar</a>
282
- <a>Hello world</a>
283
- <a class='baz bar foo'>Bar</a>
284
- <a class='bazbarfoo'>Awesome</a>
285
- <a class='bazbar'>Awesome</a>
286
- </root>
287
- eoxml
288
- node = xml.xpath('.//a')[3]
289
- assert_equal('Hello world', node.text)
290
- assert_match(/Hello world/, xml.to_s)
291
- assert node.parent
292
- assert node.document
293
- assert node.previous_sibling
294
- assert node.next_sibling
295
- node.unlink
296
- assert !node.parent
297
- # assert !node.document
298
- assert !node.previous_sibling
299
- assert !node.next_sibling
300
- assert_no_match(/Hello world/, xml.to_s)
301
- end
302
-
303
- def test_next_sibling
304
- assert sibling = @node.child.next_sibling
305
- assert_equal('employee', sibling.name)
306
- end
307
-
308
- def test_previous_sibling
309
- assert sibling = @node.child.next_sibling
310
- assert_equal('employee', sibling.name)
311
- assert_equal(sibling.previous_sibling, @node.child)
312
- end
313
-
314
- def test_name=
315
- @node.name = 'awesome'
316
- assert_equal('awesome', @node.name)
317
- end
318
-
319
- def test_child
320
- assert child = @node.child
321
- assert_equal('text', child.name)
322
- end
323
-
324
- def test_key?
325
- assert node = @node.search('.//address').first
326
- assert(!node.key?('asdfasdf'))
327
- end
328
-
329
- def test_set_property
330
- assert node = @node.search('.//address').first
331
- node['foo'] = 'bar'
332
- assert_equal('bar', node['foo'])
333
- end
334
-
335
- def test_attributes
336
- assert node = @node.search('.//address').first
337
- assert_nil(node['asdfasdfasdf'])
338
- assert_equal('Yes', node['domestic'])
339
-
340
- assert node = @node.search('.//address')[2]
341
- attr = node.attributes
342
- assert_equal 2, attr.size
343
- assert_equal 'Yes', attr['domestic'].value
344
- assert_equal 'Yes', attr['domestic'].to_s
345
- assert_equal 'No', attr['street'].value
346
- end
347
-
348
- def test_path
349
- assert set = @node.search('.//employee')
350
- assert node = set.first
351
- assert_equal('/staff/employee[1]', node.path)
352
- end
353
-
354
- def test_search_by_symbol
355
- assert set = @node.search(:employee)
356
- assert 5, set.length
357
-
358
- assert node = @node.at(:employee)
359
- assert node.text =~ /EMP0001/
360
- end
361
-
362
- def test_new_node
363
- node = Nokogiri::XML::Node.new('form', @node.document)
364
- assert_equal('form', node.name)
365
- assert(node.document)
366
- end
367
-
368
- def test_encode_special_chars
369
- foo = @node.css('employee').first.encode_special_chars('&')
370
- assert_equal '&amp;', foo
371
- end
372
-
373
- def test_content
374
- node = Nokogiri::XML::Node.new('form', @node)
375
- assert_equal('', node.content)
376
-
377
- node.content = 'hello world!'
378
- assert_equal('hello world!', node.content)
379
- end
380
-
381
- def test_whitespace_nodes
382
- doc = Nokogiri::XML.parse("<root><b>Foo</b>\n<i>Bar</i> <p>Bazz</p></root>")
383
- children = doc.at('.//root').children.collect{|j| j.to_s}
384
- assert_equal "\n", children[1]
385
- assert_equal " ", children[3]
386
- end
387
-
388
- def test_replace
389
- set = @node.search('.//employee')
390
- assert 5, set.length
391
- assert 0, @node.search('.//form').length
392
-
393
- first = set[0]
394
- second = set[1]
395
-
396
- node = Nokogiri::XML::Node.new('form', @node)
397
- first.replace(node)
398
-
399
- assert set = @node.search('.//employee')
400
- assert_equal 4, set.length
401
- assert 1, @node.search('.//form').length
402
-
403
- assert_equal set[0].to_xml, second.to_xml
404
- end
405
-
406
- def test_replace_on_unparented_node
407
- foo = Node.new('foo', @node.document)
408
- if Nokogiri.jruby? # JRuby Nokogiri doesn't raise an exception
409
- @node.replace(foo)
410
- else
411
- assert_raises(RuntimeError){ @node.replace(foo) }
412
- end
413
- end
414
-
415
- def test_illegal_replace_of_node_with_doc
416
- new_node = Nokogiri::XML.parse('<foo>bar</foo>')
417
- old_node = @node.at('.//employee')
418
- assert_raises(ArgumentError){ old_node.replace new_node }
419
- end
420
- end
421
- end
422
- end
@@ -1,83 +0,0 @@
1
- require "helper"
2
-
3
- module Nokogiri
4
- module XML
5
- class TestXInclude < Nokogiri::TestCase
6
- def setup
7
- super
8
- @xml = Nokogiri::XML.parse(File.read(XML_XINCLUDE_FILE), XML_XINCLUDE_FILE)
9
- @included = "this snippet is to be included from xinclude.xml"
10
- end
11
-
12
- def test_xinclude_on_document_parse
13
- skip("Pure Java version XInlcude has a conflict with NekoDTD setting. This will be fixed later.") if Nokogiri.jruby?
14
- # first test that xinclude works when requested
15
- xml_doc = nil
16
-
17
- File.open(XML_XINCLUDE_FILE) do |fp|
18
- xml_doc = Nokogiri::XML(fp) do |conf|
19
- conf.strict.dtdload.noent.nocdata.xinclude
20
- end
21
- end
22
-
23
- assert_not_nil xml_doc
24
- assert_not_nil included = xml_doc.at_xpath('//included')
25
- assert_equal @included, included.content
26
-
27
- # no xinclude should happen when not requested
28
- xml_doc = nil
29
-
30
- File.open(XML_XINCLUDE_FILE) do |fp|
31
- xml_doc = Nokogiri::XML(fp) do |conf|
32
- conf.strict.dtdload.noent.nocdata
33
- end
34
- end
35
-
36
- assert_not_nil xml_doc
37
- assert_nil xml_doc.at_xpath('//included')
38
- end
39
-
40
- def test_xinclude_on_document_node
41
- skip("Pure Java version turns XInlcude on against a parser.") if Nokogiri.jruby?
42
- assert_nil @xml.at_xpath('//included')
43
- @xml.do_xinclude
44
- assert_not_nil included = @xml.at_xpath('//included')
45
- assert_equal @included, included.content
46
- end
47
-
48
- def test_xinclude_on_element_subtree
49
- skip("Pure Java version turns XInlcude on against a parser.") if Nokogiri.jruby?
50
- assert_nil @xml.at_xpath('//included')
51
- @xml.root.do_xinclude
52
- assert_not_nil included = @xml.at_xpath('//included')
53
- assert_equal @included, included.content
54
- end
55
-
56
- def test_do_xinclude_accepts_block
57
- non_default_options = Nokogiri::XML::ParseOptions::NOBLANKS | \
58
- Nokogiri::XML::ParseOptions::XINCLUDE
59
-
60
- @xml.do_xinclude(non_default_options) do |options|
61
- assert_equal non_default_options, options.to_i
62
- end
63
- end
64
-
65
- def test_include_nonexistent_throws_exception
66
- skip("Pure Java version behaves differently") if Nokogiri.jruby?
67
- # break inclusion deliberately
68
- @xml.at_xpath('//xi:include')['href'] = "nonexistent.xml"
69
-
70
- exception_raised = false
71
- begin
72
- @xml.do_xinclude { |opts| opts.nowarning }
73
- rescue Exception => e
74
- assert_equal Nokogiri::XML::SyntaxError, e.class
75
- exception_raised = true
76
- end
77
-
78
- assert exception_raised
79
- end
80
-
81
- end
82
- end
83
- end