jwagener-nokogiri 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (277) hide show
  1. data/.autotest +26 -0
  2. data/CHANGELOG.ja.rdoc +366 -0
  3. data/CHANGELOG.rdoc +345 -0
  4. data/Manifest.txt +276 -0
  5. data/README.ja.rdoc +106 -0
  6. data/README.rdoc +126 -0
  7. data/Rakefile +248 -0
  8. data/bin/nokogiri +49 -0
  9. data/deps.rip +5 -0
  10. data/ext/nokogiri/extconf.rb +149 -0
  11. data/ext/nokogiri/html_document.c +145 -0
  12. data/ext/nokogiri/html_document.h +10 -0
  13. data/ext/nokogiri/html_element_description.c +272 -0
  14. data/ext/nokogiri/html_element_description.h +10 -0
  15. data/ext/nokogiri/html_entity_lookup.c +32 -0
  16. data/ext/nokogiri/html_entity_lookup.h +8 -0
  17. data/ext/nokogiri/html_sax_parser_context.c +92 -0
  18. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  19. data/ext/nokogiri/nokogiri.c +96 -0
  20. data/ext/nokogiri/nokogiri.h +148 -0
  21. data/ext/nokogiri/xml_attr.c +92 -0
  22. data/ext/nokogiri/xml_attr.h +9 -0
  23. data/ext/nokogiri/xml_attribute_decl.c +67 -0
  24. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  25. data/ext/nokogiri/xml_cdata.c +54 -0
  26. data/ext/nokogiri/xml_cdata.h +9 -0
  27. data/ext/nokogiri/xml_comment.c +52 -0
  28. data/ext/nokogiri/xml_comment.h +9 -0
  29. data/ext/nokogiri/xml_document.c +386 -0
  30. data/ext/nokogiri/xml_document.h +24 -0
  31. data/ext/nokogiri/xml_document_fragment.c +46 -0
  32. data/ext/nokogiri/xml_document_fragment.h +10 -0
  33. data/ext/nokogiri/xml_dtd.c +192 -0
  34. data/ext/nokogiri/xml_dtd.h +10 -0
  35. data/ext/nokogiri/xml_element_content.c +123 -0
  36. data/ext/nokogiri/xml_element_content.h +10 -0
  37. data/ext/nokogiri/xml_element_decl.c +69 -0
  38. data/ext/nokogiri/xml_element_decl.h +9 -0
  39. data/ext/nokogiri/xml_encoding_handler.c +79 -0
  40. data/ext/nokogiri/xml_encoding_handler.h +8 -0
  41. data/ext/nokogiri/xml_entity_decl.c +97 -0
  42. data/ext/nokogiri/xml_entity_decl.h +10 -0
  43. data/ext/nokogiri/xml_entity_reference.c +50 -0
  44. data/ext/nokogiri/xml_entity_reference.h +9 -0
  45. data/ext/nokogiri/xml_io.c +31 -0
  46. data/ext/nokogiri/xml_io.h +11 -0
  47. data/ext/nokogiri/xml_namespace.c +82 -0
  48. data/ext/nokogiri/xml_namespace.h +13 -0
  49. data/ext/nokogiri/xml_node.c +1080 -0
  50. data/ext/nokogiri/xml_node.h +13 -0
  51. data/ext/nokogiri/xml_node_set.c +405 -0
  52. data/ext/nokogiri/xml_node_set.h +9 -0
  53. data/ext/nokogiri/xml_processing_instruction.c +54 -0
  54. data/ext/nokogiri/xml_processing_instruction.h +9 -0
  55. data/ext/nokogiri/xml_reader.c +593 -0
  56. data/ext/nokogiri/xml_reader.h +10 -0
  57. data/ext/nokogiri/xml_relax_ng.c +159 -0
  58. data/ext/nokogiri/xml_relax_ng.h +9 -0
  59. data/ext/nokogiri/xml_sax_parser.c +283 -0
  60. data/ext/nokogiri/xml_sax_parser.h +43 -0
  61. data/ext/nokogiri/xml_sax_parser_context.c +157 -0
  62. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  63. data/ext/nokogiri/xml_sax_push_parser.c +114 -0
  64. data/ext/nokogiri/xml_sax_push_parser.h +9 -0
  65. data/ext/nokogiri/xml_schema.c +156 -0
  66. data/ext/nokogiri/xml_schema.h +9 -0
  67. data/ext/nokogiri/xml_syntax_error.c +52 -0
  68. data/ext/nokogiri/xml_syntax_error.h +13 -0
  69. data/ext/nokogiri/xml_text.c +48 -0
  70. data/ext/nokogiri/xml_text.h +9 -0
  71. data/ext/nokogiri/xml_xpath.c +53 -0
  72. data/ext/nokogiri/xml_xpath.h +11 -0
  73. data/ext/nokogiri/xml_xpath_context.c +239 -0
  74. data/ext/nokogiri/xml_xpath_context.h +9 -0
  75. data/ext/nokogiri/xslt_stylesheet.c +131 -0
  76. data/ext/nokogiri/xslt_stylesheet.h +9 -0
  77. data/lib/nokogiri.rb +116 -0
  78. data/lib/nokogiri/css.rb +25 -0
  79. data/lib/nokogiri/css/generated_parser.rb +661 -0
  80. data/lib/nokogiri/css/generated_tokenizer.rb +145 -0
  81. data/lib/nokogiri/css/node.rb +99 -0
  82. data/lib/nokogiri/css/parser.rb +82 -0
  83. data/lib/nokogiri/css/parser.y +230 -0
  84. data/lib/nokogiri/css/syntax_error.rb +7 -0
  85. data/lib/nokogiri/css/tokenizer.rb +7 -0
  86. data/lib/nokogiri/css/tokenizer.rex +55 -0
  87. data/lib/nokogiri/css/xpath_visitor.rb +164 -0
  88. data/lib/nokogiri/decorators/slop.rb +33 -0
  89. data/lib/nokogiri/ffi/encoding_handler.rb +42 -0
  90. data/lib/nokogiri/ffi/html/document.rb +28 -0
  91. data/lib/nokogiri/ffi/html/element_description.rb +81 -0
  92. data/lib/nokogiri/ffi/html/entity_lookup.rb +16 -0
  93. data/lib/nokogiri/ffi/html/sax/parser_context.rb +38 -0
  94. data/lib/nokogiri/ffi/io_callbacks.rb +42 -0
  95. data/lib/nokogiri/ffi/libxml.rb +372 -0
  96. data/lib/nokogiri/ffi/structs/common_node.rb +26 -0
  97. data/lib/nokogiri/ffi/structs/html_elem_desc.rb +24 -0
  98. data/lib/nokogiri/ffi/structs/html_entity_desc.rb +13 -0
  99. data/lib/nokogiri/ffi/structs/xml_alloc.rb +16 -0
  100. data/lib/nokogiri/ffi/structs/xml_attr.rb +19 -0
  101. data/lib/nokogiri/ffi/structs/xml_attribute.rb +27 -0
  102. data/lib/nokogiri/ffi/structs/xml_buffer.rb +16 -0
  103. data/lib/nokogiri/ffi/structs/xml_char_encoding_handler.rb +11 -0
  104. data/lib/nokogiri/ffi/structs/xml_document.rb +108 -0
  105. data/lib/nokogiri/ffi/structs/xml_dtd.rb +28 -0
  106. data/lib/nokogiri/ffi/structs/xml_element.rb +26 -0
  107. data/lib/nokogiri/ffi/structs/xml_element_content.rb +17 -0
  108. data/lib/nokogiri/ffi/structs/xml_entity.rb +32 -0
  109. data/lib/nokogiri/ffi/structs/xml_enumeration.rb +12 -0
  110. data/lib/nokogiri/ffi/structs/xml_node.rb +28 -0
  111. data/lib/nokogiri/ffi/structs/xml_node_set.rb +53 -0
  112. data/lib/nokogiri/ffi/structs/xml_notation.rb +11 -0
  113. data/lib/nokogiri/ffi/structs/xml_ns.rb +15 -0
  114. data/lib/nokogiri/ffi/structs/xml_parser_context.rb +19 -0
  115. data/lib/nokogiri/ffi/structs/xml_relax_ng.rb +14 -0
  116. data/lib/nokogiri/ffi/structs/xml_sax_handler.rb +51 -0
  117. data/lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb +124 -0
  118. data/lib/nokogiri/ffi/structs/xml_schema.rb +13 -0
  119. data/lib/nokogiri/ffi/structs/xml_syntax_error.rb +31 -0
  120. data/lib/nokogiri/ffi/structs/xml_text_reader.rb +12 -0
  121. data/lib/nokogiri/ffi/structs/xml_xpath_context.rb +37 -0
  122. data/lib/nokogiri/ffi/structs/xml_xpath_object.rb +35 -0
  123. data/lib/nokogiri/ffi/structs/xml_xpath_parser_context.rb +20 -0
  124. data/lib/nokogiri/ffi/structs/xslt_stylesheet.rb +13 -0
  125. data/lib/nokogiri/ffi/xml/attr.rb +41 -0
  126. data/lib/nokogiri/ffi/xml/attribute_decl.rb +27 -0
  127. data/lib/nokogiri/ffi/xml/cdata.rb +19 -0
  128. data/lib/nokogiri/ffi/xml/comment.rb +18 -0
  129. data/lib/nokogiri/ffi/xml/document.rb +135 -0
  130. data/lib/nokogiri/ffi/xml/document_fragment.rb +21 -0
  131. data/lib/nokogiri/ffi/xml/dtd.rb +67 -0
  132. data/lib/nokogiri/ffi/xml/element_content.rb +43 -0
  133. data/lib/nokogiri/ffi/xml/element_decl.rb +19 -0
  134. data/lib/nokogiri/ffi/xml/entity_decl.rb +27 -0
  135. data/lib/nokogiri/ffi/xml/entity_reference.rb +19 -0
  136. data/lib/nokogiri/ffi/xml/namespace.rb +44 -0
  137. data/lib/nokogiri/ffi/xml/node.rb +465 -0
  138. data/lib/nokogiri/ffi/xml/node_set.rb +146 -0
  139. data/lib/nokogiri/ffi/xml/processing_instruction.rb +20 -0
  140. data/lib/nokogiri/ffi/xml/reader.rb +227 -0
  141. data/lib/nokogiri/ffi/xml/relax_ng.rb +85 -0
  142. data/lib/nokogiri/ffi/xml/sax/parser.rb +135 -0
  143. data/lib/nokogiri/ffi/xml/sax/parser_context.rb +67 -0
  144. data/lib/nokogiri/ffi/xml/sax/push_parser.rb +51 -0
  145. data/lib/nokogiri/ffi/xml/schema.rb +92 -0
  146. data/lib/nokogiri/ffi/xml/syntax_error.rb +98 -0
  147. data/lib/nokogiri/ffi/xml/text.rb +18 -0
  148. data/lib/nokogiri/ffi/xml/xpath.rb +19 -0
  149. data/lib/nokogiri/ffi/xml/xpath_context.rb +135 -0
  150. data/lib/nokogiri/ffi/xslt/stylesheet.rb +50 -0
  151. data/lib/nokogiri/html.rb +35 -0
  152. data/lib/nokogiri/html/builder.rb +35 -0
  153. data/lib/nokogiri/html/document.rb +88 -0
  154. data/lib/nokogiri/html/document_fragment.rb +15 -0
  155. data/lib/nokogiri/html/element_description.rb +23 -0
  156. data/lib/nokogiri/html/entity_lookup.rb +13 -0
  157. data/lib/nokogiri/html/sax/parser.rb +48 -0
  158. data/lib/nokogiri/html/sax/parser_context.rb +16 -0
  159. data/lib/nokogiri/syntax_error.rb +4 -0
  160. data/lib/nokogiri/version.rb +33 -0
  161. data/lib/nokogiri/version_warning.rb +11 -0
  162. data/lib/nokogiri/xml.rb +67 -0
  163. data/lib/nokogiri/xml/attr.rb +14 -0
  164. data/lib/nokogiri/xml/attribute_decl.rb +18 -0
  165. data/lib/nokogiri/xml/builder.rb +405 -0
  166. data/lib/nokogiri/xml/cdata.rb +11 -0
  167. data/lib/nokogiri/xml/character_data.rb +7 -0
  168. data/lib/nokogiri/xml/document.rb +162 -0
  169. data/lib/nokogiri/xml/document_fragment.rb +73 -0
  170. data/lib/nokogiri/xml/dtd.rb +11 -0
  171. data/lib/nokogiri/xml/element_content.rb +36 -0
  172. data/lib/nokogiri/xml/element_decl.rb +13 -0
  173. data/lib/nokogiri/xml/entity_decl.rb +15 -0
  174. data/lib/nokogiri/xml/fragment_handler.rb +79 -0
  175. data/lib/nokogiri/xml/namespace.rb +13 -0
  176. data/lib/nokogiri/xml/node.rb +736 -0
  177. data/lib/nokogiri/xml/node/save_options.rb +42 -0
  178. data/lib/nokogiri/xml/node_set.rb +324 -0
  179. data/lib/nokogiri/xml/notation.rb +6 -0
  180. data/lib/nokogiri/xml/parse_options.rb +85 -0
  181. data/lib/nokogiri/xml/pp.rb +2 -0
  182. data/lib/nokogiri/xml/pp/character_data.rb +18 -0
  183. data/lib/nokogiri/xml/pp/node.rb +56 -0
  184. data/lib/nokogiri/xml/processing_instruction.rb +8 -0
  185. data/lib/nokogiri/xml/reader.rb +74 -0
  186. data/lib/nokogiri/xml/relax_ng.rb +32 -0
  187. data/lib/nokogiri/xml/sax.rb +4 -0
  188. data/lib/nokogiri/xml/sax/document.rb +160 -0
  189. data/lib/nokogiri/xml/sax/parser.rb +115 -0
  190. data/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  191. data/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  192. data/lib/nokogiri/xml/schema.rb +61 -0
  193. data/lib/nokogiri/xml/syntax_error.rb +43 -0
  194. data/lib/nokogiri/xml/xpath.rb +10 -0
  195. data/lib/nokogiri/xml/xpath/syntax_error.rb +8 -0
  196. data/lib/nokogiri/xml/xpath_context.rb +16 -0
  197. data/lib/nokogiri/xslt.rb +48 -0
  198. data/lib/nokogiri/xslt/stylesheet.rb +25 -0
  199. data/lib/xsd/xmlparser/nokogiri.rb +90 -0
  200. data/tasks/test.rb +100 -0
  201. data/test/css/test_nthiness.rb +159 -0
  202. data/test/css/test_parser.rb +282 -0
  203. data/test/css/test_tokenizer.rb +190 -0
  204. data/test/css/test_xpath_visitor.rb +76 -0
  205. data/test/ffi/test_document.rb +35 -0
  206. data/test/files/2ch.html +108 -0
  207. data/test/files/address_book.rlx +12 -0
  208. data/test/files/address_book.xml +10 -0
  209. data/test/files/bar/bar.xsd +4 -0
  210. data/test/files/dont_hurt_em_why.xml +422 -0
  211. data/test/files/exslt.xml +8 -0
  212. data/test/files/exslt.xslt +35 -0
  213. data/test/files/foo/foo.xsd +4 -0
  214. data/test/files/po.xml +32 -0
  215. data/test/files/po.xsd +66 -0
  216. data/test/files/shift_jis.html +10 -0
  217. data/test/files/shift_jis.xml +5 -0
  218. data/test/files/snuggles.xml +3 -0
  219. data/test/files/staff.dtd +10 -0
  220. data/test/files/staff.xml +59 -0
  221. data/test/files/staff.xslt +32 -0
  222. data/test/files/tlm.html +850 -0
  223. data/test/files/valid_bar.xml +2 -0
  224. data/test/helper.rb +131 -0
  225. data/test/html/sax/test_parser.rb +64 -0
  226. data/test/html/sax/test_parser_context.rb +48 -0
  227. data/test/html/test_builder.rb +164 -0
  228. data/test/html/test_document.rb +390 -0
  229. data/test/html/test_document_encoding.rb +77 -0
  230. data/test/html/test_document_fragment.rb +170 -0
  231. data/test/html/test_element_description.rb +94 -0
  232. data/test/html/test_named_characters.rb +14 -0
  233. data/test/html/test_node.rb +242 -0
  234. data/test/html/test_node_encoding.rb +27 -0
  235. data/test/test_convert_xpath.rb +135 -0
  236. data/test/test_css_cache.rb +45 -0
  237. data/test/test_encoding_handler.rb +46 -0
  238. data/test/test_memory_leak.rb +87 -0
  239. data/test/test_nokogiri.rb +138 -0
  240. data/test/test_reader.rb +358 -0
  241. data/test/test_soap4r_sax.rb +52 -0
  242. data/test/test_xslt_transforms.rb +174 -0
  243. data/test/xml/node/test_save_options.rb +20 -0
  244. data/test/xml/node/test_subclass.rb +44 -0
  245. data/test/xml/sax/test_parser.rb +307 -0
  246. data/test/xml/sax/test_parser_context.rb +63 -0
  247. data/test/xml/sax/test_push_parser.rb +139 -0
  248. data/test/xml/test_attr.rb +38 -0
  249. data/test/xml/test_attribute_decl.rb +82 -0
  250. data/test/xml/test_builder.rb +167 -0
  251. data/test/xml/test_cdata.rb +38 -0
  252. data/test/xml/test_comment.rb +29 -0
  253. data/test/xml/test_document.rb +633 -0
  254. data/test/xml/test_document_encoding.rb +26 -0
  255. data/test/xml/test_document_fragment.rb +144 -0
  256. data/test/xml/test_dtd.rb +82 -0
  257. data/test/xml/test_dtd_encoding.rb +33 -0
  258. data/test/xml/test_element_content.rb +56 -0
  259. data/test/xml/test_element_decl.rb +73 -0
  260. data/test/xml/test_entity_decl.rb +83 -0
  261. data/test/xml/test_entity_reference.rb +21 -0
  262. data/test/xml/test_namespace.rb +68 -0
  263. data/test/xml/test_node.rb +738 -0
  264. data/test/xml/test_node_attributes.rb +34 -0
  265. data/test/xml/test_node_encoding.rb +107 -0
  266. data/test/xml/test_node_reparenting.rb +261 -0
  267. data/test/xml/test_node_set.rb +582 -0
  268. data/test/xml/test_parse_options.rb +52 -0
  269. data/test/xml/test_processing_instruction.rb +30 -0
  270. data/test/xml/test_reader_encoding.rb +126 -0
  271. data/test/xml/test_relax_ng.rb +60 -0
  272. data/test/xml/test_schema.rb +89 -0
  273. data/test/xml/test_syntax_error.rb +12 -0
  274. data/test/xml/test_text.rb +30 -0
  275. data/test/xml/test_unparented_node.rb +381 -0
  276. data/test/xml/test_xpath.rb +106 -0
  277. metadata +482 -0
@@ -0,0 +1,38 @@
1
+ require "helper"
2
+
3
+ module Nokogiri
4
+ module XML
5
+ class TestAttr < Nokogiri::TestCase
6
+ def test_new
7
+ 100.times {
8
+ doc = Nokogiri::XML::Document.new
9
+ attribute = Nokogiri::XML::Attr.new(doc, 'foo')
10
+ }
11
+ end
12
+
13
+ def test_content=
14
+ xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
15
+ address = xml.xpath('//address')[3]
16
+ street = address.attributes['street']
17
+ street.content = "Y&ent1;"
18
+ assert_equal "Y&ent1;", street.value
19
+ end
20
+
21
+ def test_value=
22
+ xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
23
+ address = xml.xpath('//address')[3]
24
+ street = address.attributes['street']
25
+ street.value = "Y&ent1;"
26
+ assert_equal "Y&ent1;", street.value
27
+ end
28
+
29
+ def test_unlink
30
+ xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
31
+ address = xml.xpath('/staff/employee/address').first
32
+ assert_equal 'Yes', address['domestic']
33
+ address.attribute_nodes.first.unlink
34
+ assert_nil address['domestic']
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,82 @@
1
+ require "helper"
2
+
3
+ module Nokogiri
4
+ module XML
5
+ class TestAttributeDecl < Nokogiri::TestCase
6
+ def setup
7
+ super
8
+ @xml = Nokogiri::XML(<<-eoxml)
9
+ <?xml version="1.0"?><?TEST-STYLE PIDATA?>
10
+ <!DOCTYPE staff SYSTEM "staff.dtd" [
11
+ <!ATTLIST br width CDATA "0">
12
+ <!ATTLIST a width CDATA >
13
+ <!ATTLIST payment type (check|cash) "cash">
14
+ ]>
15
+ <root />
16
+ eoxml
17
+ @attrs = @xml.internal_subset.children
18
+ @attr_decl = @attrs.first
19
+ end
20
+
21
+ def test_inspect
22
+ assert_equal(
23
+ "#<#{@attr_decl.class.name}:#{sprintf("0x%x", @attr_decl.object_id)} #{@attr_decl.to_s.inspect}>",
24
+ @attr_decl.inspect
25
+ )
26
+ end
27
+
28
+ def test_type
29
+ assert_equal 16, @attr_decl.type
30
+ end
31
+
32
+ def test_class
33
+ assert_instance_of Nokogiri::XML::AttributeDecl, @attr_decl
34
+ end
35
+
36
+ def test_content
37
+ assert_raise NoMethodError do
38
+ @attr_decl.content
39
+ end
40
+ end
41
+
42
+ def test_attributes
43
+ assert_raise NoMethodError do
44
+ @attr_decl.attributes
45
+ end
46
+ end
47
+
48
+ def test_namespace
49
+ assert_raise NoMethodError do
50
+ @attr_decl.namespace
51
+ end
52
+ end
53
+
54
+ def test_namespace_definitions
55
+ assert_raise NoMethodError do
56
+ @attr_decl.namespace_definitions
57
+ end
58
+ end
59
+
60
+ def test_line
61
+ assert_raise NoMethodError do
62
+ @attr_decl.line
63
+ end
64
+ end
65
+
66
+ def test_attribute_type
67
+ assert_equal 1, @attr_decl.attribute_type
68
+ end
69
+
70
+ def test_default
71
+ assert_equal '0', @attr_decl.default
72
+ assert_nil @attrs[1].default
73
+ end
74
+
75
+ def test_enumeration
76
+ assert_equal [], @attr_decl.enumeration
77
+ assert_equal ['check', 'cash'], @attrs[2].enumeration
78
+ end
79
+ end
80
+ end
81
+ end
82
+
@@ -0,0 +1,167 @@
1
+ require "helper"
2
+
3
+ module Nokogiri
4
+ module XML
5
+ class TestBuilder < Nokogiri::TestCase
6
+ def test_with_root
7
+ doc = Nokogiri::XML(File.read(XML_FILE))
8
+ Nokogiri::XML::Builder.with(doc.at('employee')) do |xml|
9
+ xml.foo
10
+ end
11
+ assert_equal 1, doc.xpath('//employee/foo').length
12
+ end
13
+
14
+ def test_root_namespace_default_decl
15
+ b = Nokogiri::XML::Builder.new { |xml| xml.root(:xmlns => 'one:two') }
16
+ doc = b.doc
17
+ assert_equal 'one:two', doc.root.namespace.href
18
+ assert_equal({ 'xmlns' => 'one:two' }, doc.root.namespaces)
19
+ end
20
+
21
+ def test_root_namespace_multi_decl
22
+ b = Nokogiri::XML::Builder.new { |xml|
23
+ xml.root(:xmlns => 'one:two', 'xmlns:foo' => 'bar') do
24
+ xml.hello
25
+ end
26
+ }
27
+ doc = b.doc
28
+ assert_equal 'one:two', doc.root.namespace.href
29
+ assert_equal({ 'xmlns' => 'one:two', 'xmlns:foo' => 'bar' }, doc.root.namespaces)
30
+
31
+ assert_equal 'one:two', doc.at('hello').namespace.href
32
+ end
33
+
34
+ def test_non_root_namespace
35
+ b = Nokogiri::XML::Builder.new { |xml|
36
+ xml.root { xml.hello(:xmlns => 'one') }
37
+ }
38
+ assert_equal 'one', b.doc.at('hello', 'xmlns' => 'one').namespace.href
39
+ end
40
+
41
+ def test_specify_namespace
42
+ b = Nokogiri::XML::Builder.new { |xml|
43
+ xml.root('xmlns:foo' => 'bar') do
44
+ xml[:foo].bar
45
+ xml['foo'].baz
46
+ end
47
+ }
48
+ doc = b.doc
49
+ assert_equal 'bar', b.doc.at('foo|bar', 'foo' => 'bar').namespace.href
50
+ assert_equal 'bar', b.doc.at('foo|baz', 'foo' => 'bar').namespace.href
51
+ end
52
+
53
+ def test_specify_namespace_nested
54
+ b = Nokogiri::XML::Builder.new { |xml|
55
+ xml.root('xmlns:foo' => 'bar') do
56
+ xml.yay do
57
+ xml[:foo].bar
58
+
59
+ xml.yikes do
60
+ xml['foo'].baz
61
+ end
62
+ end
63
+ end
64
+ }
65
+ doc = b.doc
66
+ assert_equal 'bar', b.doc.at('foo|bar', 'foo' => 'bar').namespace.href
67
+ assert_equal 'bar', b.doc.at('foo|baz', 'foo' => 'bar').namespace.href
68
+ end
69
+
70
+ def test_specified_namespace_undeclared
71
+ b = Nokogiri::XML::Builder.new { |xml|
72
+ xml.root do
73
+ assert_raises(ArgumentError) do
74
+ xml[:foo]
75
+ end
76
+ end
77
+ }
78
+ end
79
+
80
+ def test_set_encoding
81
+ builder = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') do |xml|
82
+ xml.root do
83
+ xml.bar 'blah'
84
+ end
85
+ end
86
+ assert_match 'UTF-8', builder.to_xml
87
+ end
88
+
89
+ def test_bang_and_underscore_is_escaped
90
+ builder = Nokogiri::XML::Builder.new do |xml|
91
+ xml.root do
92
+ xml.p_('adsfadsf')
93
+ xml.p!('adsfadsf')
94
+ end
95
+ end
96
+ assert_equal 2, builder.doc.xpath('//p').length
97
+ end
98
+
99
+ def test_square_brackets_set_attributes
100
+ builder = Nokogiri::XML::Builder.new do |xml|
101
+ xml.root do
102
+ foo = xml.foo
103
+ foo['id'] = 'hello'
104
+ assert_equal 'hello', foo['id']
105
+ end
106
+ end
107
+ assert_equal 1, builder.doc.xpath('//foo[@id = "hello"]').length
108
+ end
109
+
110
+ def test_nested_local_variable
111
+ @ivar = 'hello'
112
+ local_var = 'hello world'
113
+ builder = Nokogiri::XML::Builder.new do |xml|
114
+ xml.root do
115
+ xml.foo local_var
116
+ xml.bar @ivar
117
+ xml.baz {
118
+ xml.text @ivar
119
+ }
120
+ end
121
+ end
122
+
123
+ assert_equal 'hello world', builder.doc.at('//root/foo').content
124
+ assert_equal 'hello', builder.doc.at('//root/bar').content
125
+ assert_equal 'hello', builder.doc.at('baz').content
126
+ end
127
+
128
+ def test_raw_append
129
+ builder = Nokogiri::XML::Builder.new do |xml|
130
+ xml.root do
131
+ xml << 'hello'
132
+ end
133
+ end
134
+
135
+ assert_equal 'hello', builder.doc.at('/root').content
136
+ end
137
+
138
+ def test_raw_append_with_instance_eval
139
+ builder = Nokogiri::XML::Builder.new do
140
+ root do
141
+ self << 'hello'
142
+ end
143
+ end
144
+
145
+ assert_equal 'hello', builder.doc.at('/root').content
146
+ end
147
+
148
+ def test_cdata
149
+ builder = Nokogiri::XML::Builder.new do
150
+ root {
151
+ cdata "hello world"
152
+ }
153
+ end
154
+ assert_equal("<?xml version=\"1.0\"?><root><![CDATA[hello world]]></root>", builder.to_xml.gsub(/\n/, ''))
155
+ end
156
+
157
+ def test_builder_no_block
158
+ string = "hello world"
159
+ builder = Nokogiri::XML::Builder.new
160
+ builder.root {
161
+ cdata string
162
+ }
163
+ assert_equal("<?xml version=\"1.0\"?><root><![CDATA[hello world]]></root>", builder.to_xml.gsub(/\n/, ''))
164
+ end
165
+ end
166
+ end
167
+ end
@@ -0,0 +1,38 @@
1
+ require "helper"
2
+
3
+ module Nokogiri
4
+ module XML
5
+ class TestCDATA < Nokogiri::TestCase
6
+ def setup
7
+ super
8
+ @xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
9
+ end
10
+
11
+ def test_cdata_node
12
+ name = @xml.xpath('//employee[2]/name').first
13
+ assert cdata = name.children[1]
14
+ assert cdata.cdata?
15
+ assert_equal '#cdata-section', cdata.name
16
+ end
17
+
18
+ def test_new
19
+ node = CDATA.new(@xml, "foo")
20
+ assert_equal "foo", node.content
21
+
22
+ node = CDATA.new(@xml.root, "foo")
23
+ assert_equal "foo", node.content
24
+ end
25
+
26
+ def test_new_with_nil
27
+ node = CDATA.new(@xml, nil)
28
+ assert_equal nil, node.content
29
+ end
30
+
31
+ def test_lots_of_new_cdata
32
+ 100.times {
33
+ node = CDATA.new(@xml, "asdfasdf")
34
+ }
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,29 @@
1
+ require "helper"
2
+
3
+ module Nokogiri
4
+ module XML
5
+ class TestComment < Nokogiri::TestCase
6
+ def setup
7
+ super
8
+ @xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
9
+ end
10
+
11
+ def test_new
12
+ comment = Nokogiri::XML::Comment.new(@xml, 'hello world')
13
+ assert_equal('<!--hello world-->', comment.to_s)
14
+ end
15
+
16
+ def test_comment?
17
+ comment = Nokogiri::XML::Comment.new(@xml, 'hello world')
18
+ assert(comment.comment?)
19
+ assert(!@xml.root.comment?)
20
+ end
21
+
22
+ def test_many_comments
23
+ 100.times {
24
+ Nokogiri::XML::Comment.new(@xml, 'hello world')
25
+ }
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,633 @@
1
+ require "helper"
2
+
3
+ require 'uri'
4
+
5
+ module Nokogiri
6
+ module XML
7
+ class TestDocument < Nokogiri::TestCase
8
+ def setup
9
+ super
10
+ @xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
11
+ end
12
+
13
+ def test_collect_namespaces
14
+ doc = Nokogiri::XML(<<-eoxml)
15
+ <xml>
16
+ <foo xmlns='hello'>
17
+ <bar xmlns:foo='world' />
18
+ </foo>
19
+ </xml>
20
+ eoxml
21
+ assert_equal({"xmlns"=>"hello", "xmlns:foo"=>"world"},
22
+ doc.collect_namespaces)
23
+ end
24
+
25
+ def test_subclass_initialize_modify # testing a segv
26
+ Class.new(Nokogiri::XML::Document) {
27
+ def initialize
28
+ super
29
+ body_node = Nokogiri::XML::Node.new "body", self
30
+ body_node.content = "stuff"
31
+ self.root = body_node
32
+ end
33
+ }.new
34
+ end
35
+
36
+ def test_create_text_node
37
+ txt = @xml.create_text_node 'foo'
38
+ assert_instance_of Nokogiri::XML::Text, txt
39
+ assert_equal 'foo', txt.text
40
+ assert_equal @xml, txt.document
41
+ end
42
+
43
+ def test_create_element
44
+ elm = @xml.create_element('foo')
45
+ assert_instance_of Nokogiri::XML::Element, elm
46
+ assert_equal 'foo', elm.name
47
+ assert_equal @xml, elm.document
48
+ end
49
+
50
+ def test_pp
51
+ out = StringIO.new('')
52
+ assert_nothing_raised do
53
+ ::PP.pp @xml, out
54
+ end
55
+ end
56
+
57
+ def test_create_internal_subset_on_existing_subset
58
+ assert_not_nil @xml.internal_subset
59
+ assert_raises(RuntimeError) do
60
+ @xml.create_internal_subset('staff', nil, 'staff.dtd')
61
+ end
62
+ end
63
+
64
+ def test_create_internal_subset
65
+ xml = Nokogiri::XML('<root />')
66
+ assert_nil xml.internal_subset
67
+
68
+ xml.create_internal_subset('name', nil, 'staff.dtd')
69
+ ss = xml.internal_subset
70
+ assert_equal 'name', ss.name
71
+ assert_nil ss.external_id
72
+ assert_equal 'staff.dtd', ss.system_id
73
+ end
74
+
75
+ def test_external_subset
76
+ assert_nil @xml.external_subset
77
+ Dir.chdir(ASSETS_DIR) do
78
+ @xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) { |cfg|
79
+ cfg.dtdload
80
+ }
81
+ end
82
+ assert @xml.external_subset
83
+ end
84
+
85
+ def test_create_external_subset_fails_with_existing_subset
86
+ assert_nil @xml.external_subset
87
+ Dir.chdir(ASSETS_DIR) do
88
+ @xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) { |cfg|
89
+ cfg.dtdload
90
+ }
91
+ end
92
+ assert @xml.external_subset
93
+
94
+ assert_raises(RuntimeError) do
95
+ @xml.create_external_subset('staff', nil, 'staff.dtd')
96
+ end
97
+ end
98
+
99
+ def test_create_external_subset
100
+ dtd = @xml.create_external_subset('staff', nil, 'staff.dtd')
101
+ assert_nil dtd.external_id
102
+ assert_equal 'staff.dtd', dtd.system_id
103
+ assert_equal 'staff', dtd.name
104
+ assert_equal dtd, @xml.external_subset
105
+ end
106
+
107
+ def test_version
108
+ assert_equal '1.0', @xml.version
109
+ end
110
+
111
+ def test_add_namespace
112
+ assert_raise NoMethodError do
113
+ @xml.add_namespace('foo', 'bar')
114
+ end
115
+ end
116
+
117
+ def test_attributes
118
+ assert_raise NoMethodError do
119
+ @xml.attributes
120
+ end
121
+ end
122
+
123
+ def test_namespace
124
+ assert_raise NoMethodError do
125
+ @xml.namespace
126
+ end
127
+ end
128
+
129
+ def test_namespace_definitions
130
+ assert_raise NoMethodError do
131
+ @xml.namespace_definitions
132
+ end
133
+ end
134
+
135
+ def test_line
136
+ assert_raise NoMethodError do
137
+ @xml.line
138
+ end
139
+ end
140
+
141
+ def test_empty_node_converted_to_html_is_not_self_closing
142
+ doc = Nokogiri::XML('<a></a>')
143
+ assert_equal "<a></a>", doc.inner_html
144
+ end
145
+
146
+ def test_fragment
147
+ fragment = @xml.fragment
148
+ assert_equal 0, fragment.children.length
149
+ end
150
+
151
+ def test_add_child_fragment_with_single_node
152
+ doc = Nokogiri::XML::Document.new
153
+ fragment = doc.fragment('<hello />')
154
+ doc.add_child fragment
155
+ assert_equal '/hello', doc.at('//hello').path
156
+ assert_equal 'hello', doc.root.name
157
+ end
158
+
159
+ def test_add_child_fragment_with_multiple_nodes
160
+ doc = Nokogiri::XML::Document.new
161
+ fragment = doc.fragment('<hello /><goodbye />')
162
+ assert_raises(RuntimeError) do
163
+ doc.add_child fragment
164
+ end
165
+ end
166
+
167
+ def test_add_child_with_multiple_roots
168
+ assert_raises(RuntimeError) do
169
+ @xml << Node.new('foo', @xml)
170
+ end
171
+ end
172
+
173
+ def test_move_root_to_document_with_no_root
174
+ sender = Nokogiri::XML('<root>foo</root>')
175
+ newdoc = Nokogiri::XML::Document.new
176
+ newdoc.root = sender.root
177
+ end
178
+
179
+ def test_move_root_with_existing_root_gets_gcd
180
+ doc = Nokogiri::XML('<root>test</root>')
181
+ doc2 = Nokogiri::XML("<root>#{'x' * 5000000}</root>")
182
+ doc2.root = doc.root
183
+ end
184
+
185
+ def test_validate
186
+ assert_equal 44, @xml.validate.length
187
+ end
188
+
189
+ def test_validate_no_internal_subset
190
+ doc = Nokogiri::XML('<test/>')
191
+ assert_nil doc.validate
192
+ end
193
+
194
+ def test_clone
195
+ assert @xml.clone
196
+ end
197
+
198
+ def test_document_should_not_have_default_ns
199
+ doc = Nokogiri::XML::Document.new
200
+
201
+ assert_raises NoMethodError do
202
+ doc.default_namespace = 'http://innernet.com/'
203
+ end
204
+
205
+ assert_raises NoMethodError do
206
+ doc.add_namespace_definition('foo', 'bar')
207
+ end
208
+ end
209
+
210
+ def test_parse_handles_nil_gracefully
211
+ assert_nothing_raised do
212
+ @doc = Nokogiri::XML::Document.parse(nil)
213
+ end
214
+ assert_instance_of Nokogiri::XML::Document, @doc
215
+ end
216
+
217
+ def test_parse_takes_block
218
+ options = nil
219
+ Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) do |cfg|
220
+ options = cfg
221
+ end
222
+ assert options
223
+ end
224
+
225
+ def test_parse_yields_parse_options
226
+ options = nil
227
+ Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE) do |cfg|
228
+ options = cfg
229
+ options.nonet.nowarning.dtdattr
230
+ end
231
+ assert options.nonet?
232
+ assert options.nowarning?
233
+ assert options.dtdattr?
234
+ end
235
+
236
+ def test_XML_takes_block
237
+ options = nil
238
+ Nokogiri::XML(File.read(XML_FILE), XML_FILE) do |cfg|
239
+ options = cfg
240
+ options.nonet.nowarning.dtdattr
241
+ end
242
+ assert options.nonet?
243
+ assert options.nowarning?
244
+ assert options.dtdattr?
245
+ end
246
+
247
+ def test_subclass
248
+ klass = Class.new(Nokogiri::XML::Document)
249
+ doc = klass.new
250
+ assert_instance_of klass, doc
251
+ end
252
+
253
+ def test_subclass_initialize
254
+ klass = Class.new(Nokogiri::XML::Document) do
255
+ attr_accessor :initialized_with
256
+
257
+ def initialize(*args)
258
+ @initialized_with = args
259
+ end
260
+ end
261
+ doc = klass.new("1.0", 1)
262
+ assert_equal ["1.0", 1], doc.initialized_with
263
+ end
264
+
265
+ def test_subclass_dup
266
+ klass = Class.new(Nokogiri::XML::Document)
267
+ doc = klass.new.dup
268
+ assert_instance_of klass, doc
269
+ end
270
+
271
+ def test_subclass_parse
272
+ klass = Class.new(Nokogiri::XML::Document)
273
+ doc = klass.parse(File.read(XML_FILE))
274
+ assert_equal @xml.to_s, doc.to_s
275
+ assert_instance_of klass, doc
276
+ end
277
+
278
+ def test_document_parse_method
279
+ xml = Nokogiri::XML::Document.parse(File.read(XML_FILE))
280
+ assert_equal @xml.to_s, xml.to_s
281
+ end
282
+
283
+ def test_encoding=
284
+ @xml.encoding = 'UTF-8'
285
+ assert_match 'UTF-8', @xml.to_xml
286
+
287
+ @xml.encoding = 'EUC-JP'
288
+ assert_match 'EUC-JP', @xml.to_xml
289
+ end
290
+
291
+ def test_namespace_should_not_exist
292
+ assert_raises(NoMethodError) {
293
+ @xml.namespace
294
+ }
295
+ end
296
+
297
+ def test_non_existant_function
298
+ # WTF. I don't know why this is different between MRI and ffi.
299
+ # They should be the same... Either way, raising an exception
300
+ # is the correct thing to do.
301
+ exception = RuntimeError
302
+
303
+ if Nokogiri::VERSION_INFO['libxml']['platform'] == 'jruby'
304
+ exception = Nokogiri::XML::XPath::SyntaxError
305
+ end
306
+
307
+ assert_raises(exception) {
308
+ @xml.xpath('//name[foo()]')
309
+ }
310
+ end
311
+
312
+ def test_ancestors
313
+ assert_equal 0, @xml.ancestors.length
314
+ end
315
+
316
+ def test_root_node_parent_is_document
317
+ parent = @xml.root.parent
318
+ assert_equal @xml, parent
319
+ assert_instance_of Nokogiri::XML::Document, parent
320
+ end
321
+
322
+ def test_xmlns_is_automatically_registered
323
+ doc = Nokogiri::XML(<<-eoxml)
324
+ <root xmlns="http://tenderlovemaking.com/">
325
+ <foo>
326
+ bar
327
+ </foo>
328
+ </root>
329
+ eoxml
330
+ assert_equal 1, doc.css('xmlns|foo').length
331
+ assert_equal 1, doc.css('foo').length
332
+ assert_equal 0, doc.css('|foo').length
333
+ assert_equal 1, doc.xpath('//xmlns:foo').length
334
+ assert_equal 1, doc.search('xmlns|foo').length
335
+ assert_equal 1, doc.search('//xmlns:foo').length
336
+ assert doc.at('xmlns|foo')
337
+ assert doc.at('//xmlns:foo')
338
+ assert doc.at('foo')
339
+ end
340
+
341
+ def test_xmlns_is_registered_for_nodesets
342
+ doc = Nokogiri::XML(<<-eoxml)
343
+ <root xmlns="http://tenderlovemaking.com/">
344
+ <foo>
345
+ <bar>
346
+ baz
347
+ </bar>
348
+ </foo>
349
+ </root>
350
+ eoxml
351
+ assert_equal 1, doc.css('xmlns|foo').css('xmlns|bar').length
352
+ assert_equal 1, doc.css('foo').css('bar').length
353
+ assert_equal 1, doc.xpath('//xmlns:foo').xpath('./xmlns:bar').length
354
+ assert_equal 1, doc.search('xmlns|foo').search('xmlns|bar').length
355
+ assert_equal 1, doc.search('//xmlns:foo').search('./xmlns:bar').length
356
+ end
357
+
358
+ def test_to_xml_with_indent
359
+ doc = Nokogiri::XML('<root><foo><bar/></foo></root>')
360
+ doc = Nokogiri::XML(doc.to_xml(:indent => 5))
361
+
362
+ assert_indent 5, doc
363
+ end
364
+
365
+ def test_write_xml_to_with_indent
366
+ io = StringIO.new
367
+ doc = Nokogiri::XML('<root><foo><bar/></foo></root>')
368
+ doc.write_xml_to io, :indent => 5
369
+ io.rewind
370
+ doc = Nokogiri::XML(io.read)
371
+ assert_indent 5, doc
372
+ end
373
+
374
+ # wtf... osx's libxml sucks.
375
+ unless Nokogiri::LIBXML_VERSION =~ /^2\.6\./
376
+ def test_encoding
377
+ xml = Nokogiri::XML(File.read(XML_FILE), XML_FILE, 'UTF-8')
378
+ assert_equal 'UTF-8', xml.encoding
379
+ end
380
+ end
381
+
382
+ def test_document_has_errors
383
+ doc = Nokogiri::XML(<<-eoxml)
384
+ <foo><bar></foo>
385
+ eoxml
386
+ assert doc.errors.length > 0
387
+ doc.errors.each do |error|
388
+ assert_match error.message, error.inspect
389
+ assert_match error.message, error.to_s
390
+ end
391
+ end
392
+
393
+ def test_strict_document_throws_syntax_error
394
+ assert_raises(Nokogiri::XML::SyntaxError) {
395
+ Nokogiri::XML('<foo><bar></foo>', nil, nil, 0)
396
+ }
397
+
398
+ assert_raises(Nokogiri::XML::SyntaxError) {
399
+ Nokogiri::XML('<foo><bar></foo>') { |cfg|
400
+ cfg.strict
401
+ }
402
+ }
403
+
404
+ assert_raises(Nokogiri::XML::SyntaxError) {
405
+ Nokogiri::XML(StringIO.new('<foo><bar></foo>')) { |cfg|
406
+ cfg.strict
407
+ }
408
+ }
409
+ end
410
+
411
+ def test_XML_function
412
+ xml = Nokogiri::XML(File.read(XML_FILE), XML_FILE)
413
+ assert xml.xml?
414
+ end
415
+
416
+ def test_url
417
+ assert @xml.url
418
+ assert_equal XML_FILE, URI.unescape(@xml.url).sub('file:///', '')
419
+ end
420
+
421
+ def test_document_parent
422
+ xml = Nokogiri::XML(File.read(XML_FILE), XML_FILE)
423
+ assert_raises(NoMethodError) {
424
+ xml.parent
425
+ }
426
+ end
427
+
428
+ def test_document_name
429
+ xml = Nokogiri::XML(File.read(XML_FILE), XML_FILE)
430
+ assert_equal 'document', xml.name
431
+ end
432
+
433
+ def test_parse_can_take_io
434
+ xml = nil
435
+ File.open(XML_FILE, 'rb') { |f|
436
+ xml = Nokogiri::XML(f)
437
+ }
438
+ assert xml.xml?
439
+ set = xml.search('//employee')
440
+ assert set.length > 0
441
+ end
442
+
443
+ def test_search_on_empty_documents
444
+ doc = Nokogiri::XML::Document.new
445
+ ns = doc.search('//foo')
446
+ assert_equal 0, ns.length
447
+
448
+ ns = doc.css('foo')
449
+ assert_equal 0, ns.length
450
+
451
+ ns = doc.xpath('//foo')
452
+ assert_equal 0, ns.length
453
+ end
454
+
455
+ def test_bad_xpath_raises_syntax_error
456
+ assert_raises(XML::XPath::SyntaxError) {
457
+ @xml.xpath('\\')
458
+ }
459
+ end
460
+
461
+ def test_find_with_namespace
462
+ doc = Nokogiri::XML.parse(<<-eoxml)
463
+ <x xmlns:tenderlove='http://tenderlovemaking.com/'>
464
+ <tenderlove:foo awesome='true'>snuggles!</tenderlove:foo>
465
+ </x>
466
+ eoxml
467
+
468
+ ctx = Nokogiri::XML::XPathContext.new(doc)
469
+ ctx.register_ns 'tenderlove', 'http://tenderlovemaking.com/'
470
+ set = ctx.evaluate('//tenderlove:foo').node_set
471
+ assert_equal 1, set.length
472
+ assert_equal 'foo', set.first.name
473
+
474
+ # It looks like only the URI is important:
475
+ ctx = Nokogiri::XML::XPathContext.new(doc)
476
+ ctx.register_ns 'america', 'http://tenderlovemaking.com/'
477
+ set = ctx.evaluate('//america:foo').node_set
478
+ assert_equal 1, set.length
479
+ assert_equal 'foo', set.first.name
480
+
481
+ # Its so important that a missing slash will cause it to return nothing
482
+ ctx = Nokogiri::XML::XPathContext.new(doc)
483
+ ctx.register_ns 'america', 'http://tenderlovemaking.com'
484
+ set = ctx.evaluate('//america:foo').node_set
485
+ assert_equal 0, set.length
486
+ end
487
+
488
+ def test_xml?
489
+ assert @xml.xml?
490
+ end
491
+
492
+ def test_document
493
+ assert @xml.document
494
+ end
495
+
496
+ def test_singleton_methods
497
+ assert node_set = @xml.search('//name')
498
+ assert node_set.length > 0
499
+ node = node_set.first
500
+ def node.test
501
+ 'test'
502
+ end
503
+ assert node_set = @xml.search('//name')
504
+ assert_equal 'test', node_set.first.test
505
+ end
506
+
507
+ def test_multiple_search
508
+ assert node_set = @xml.search('//employee', '//name')
509
+ employees = @xml.search('//employee')
510
+ names = @xml.search('//name')
511
+ assert_equal(employees.length + names.length, node_set.length)
512
+ end
513
+
514
+ def test_node_set_index
515
+ assert node_set = @xml.search('//employee')
516
+
517
+ assert_equal(5, node_set.length)
518
+ assert node_set[4]
519
+ assert_nil node_set[5]
520
+ end
521
+
522
+ def test_search
523
+ assert node_set = @xml.search('//employee')
524
+
525
+ assert_equal(5, node_set.length)
526
+
527
+ node_set.each do |node|
528
+ assert_equal('employee', node.name)
529
+ end
530
+ end
531
+
532
+ def test_dump
533
+ assert @xml.serialize
534
+ assert @xml.to_xml
535
+ end
536
+
537
+ def test_dup
538
+ dup = @xml.dup
539
+ assert_instance_of Nokogiri::XML::Document, dup
540
+ assert dup.xml?, 'duplicate should be xml'
541
+ end
542
+
543
+ def test_subset_is_decorated
544
+ x = Module.new do
545
+ def awesome!
546
+ end
547
+ end
548
+ util_decorate(@xml, x)
549
+
550
+ assert @xml.respond_to?(:awesome!)
551
+ assert node_set = @xml.search('//staff')
552
+ assert node_set.respond_to?(:awesome!)
553
+ assert subset = node_set.search('.//employee')
554
+ assert subset.respond_to?(:awesome!)
555
+ assert sub_subset = node_set.search('.//name')
556
+ assert sub_subset.respond_to?(:awesome!)
557
+ end
558
+
559
+ def test_decorator_is_applied
560
+ x = Module.new do
561
+ def awesome!
562
+ end
563
+ end
564
+ util_decorate(@xml, x)
565
+
566
+ assert @xml.respond_to?(:awesome!)
567
+ assert node_set = @xml.search('//employee')
568
+ assert node_set.respond_to?(:awesome!)
569
+ node_set.each do |node|
570
+ assert node.respond_to?(:awesome!), node.class
571
+ end
572
+ assert @xml.root.respond_to?(:awesome!)
573
+ end
574
+
575
+ def test_new
576
+ doc = nil
577
+ assert_nothing_raised {
578
+ doc = Nokogiri::XML::Document.new
579
+ }
580
+ assert doc
581
+ assert doc.xml?
582
+ assert_nil doc.root
583
+ end
584
+
585
+ def test_set_root
586
+ doc = nil
587
+ assert_nothing_raised {
588
+ doc = Nokogiri::XML::Document.new
589
+ }
590
+ assert doc
591
+ assert doc.xml?
592
+ assert_nil doc.root
593
+ node = Nokogiri::XML::Node.new("b", doc) { |n|
594
+ n.content = 'hello world'
595
+ }
596
+ assert_equal('hello world', node.content)
597
+ doc.root = node
598
+ assert_equal(node, doc.root)
599
+ end
600
+
601
+ def test_remove_namespaces
602
+ doc = Nokogiri::XML <<-EOX
603
+ <root xmlns:a="http://a.flavorjon.es/" xmlns:b="http://b.flavorjon.es/">
604
+ <a:foo>hello from a</a:foo>
605
+ <b:foo>hello from b</b:foo>
606
+ <container xmlns:c="http://c.flavorjon.es/">
607
+ <c:foo>hello from c</c:foo>
608
+ </container>
609
+ </root>
610
+ EOX
611
+
612
+ # assert on setup
613
+ assert_equal 0, doc.xpath("//foo").length
614
+ assert_equal 1, doc.xpath("//a:foo").length
615
+ assert_equal 1, doc.xpath("//a:foo").length
616
+ assert_equal 1, doc.xpath("//x:foo", "x" => "http://c.flavorjon.es/").length
617
+
618
+ doc.remove_namespaces!
619
+
620
+ assert_equal 3, doc.xpath("//foo").length
621
+ assert_equal 0, doc.xpath("//a:foo").length
622
+ assert_equal 0, doc.xpath("//a:foo").length
623
+ assert_equal 0, doc.xpath("//x:foo", "x" => "http://c.flavorjon.es/").length
624
+ end
625
+
626
+ def util_decorate(document, x)
627
+ document.decorators(XML::Node) << x
628
+ document.decorators(XML::NodeSet) << x
629
+ document.decorate!
630
+ end
631
+ end
632
+ end
633
+ end