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