oj 3.13.23 → 3.16.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +86 -0
  3. data/README.md +2 -2
  4. data/ext/oj/buf.h +7 -6
  5. data/ext/oj/cache.c +29 -26
  6. data/ext/oj/cache.h +3 -2
  7. data/ext/oj/cache8.c +10 -9
  8. data/ext/oj/circarray.c +7 -5
  9. data/ext/oj/circarray.h +2 -2
  10. data/ext/oj/code.c +5 -12
  11. data/ext/oj/code.h +2 -2
  12. data/ext/oj/compat.c +20 -60
  13. data/ext/oj/custom.c +26 -59
  14. data/ext/oj/debug.c +3 -9
  15. data/ext/oj/dump.c +103 -53
  16. data/ext/oj/dump.h +1 -4
  17. data/ext/oj/dump_compat.c +557 -592
  18. data/ext/oj/dump_leaf.c +3 -5
  19. data/ext/oj/dump_object.c +42 -48
  20. data/ext/oj/dump_strict.c +10 -22
  21. data/ext/oj/encoder.c +1 -1
  22. data/ext/oj/err.c +2 -13
  23. data/ext/oj/err.h +9 -12
  24. data/ext/oj/extconf.rb +16 -7
  25. data/ext/oj/fast.c +63 -98
  26. data/ext/oj/intern.c +62 -47
  27. data/ext/oj/intern.h +3 -7
  28. data/ext/oj/mem.c +318 -0
  29. data/ext/oj/mem.h +53 -0
  30. data/ext/oj/mimic_json.c +54 -38
  31. data/ext/oj/object.c +33 -43
  32. data/ext/oj/odd.c +8 -6
  33. data/ext/oj/odd.h +4 -4
  34. data/ext/oj/oj.c +245 -216
  35. data/ext/oj/oj.h +83 -81
  36. data/ext/oj/parse.c +109 -153
  37. data/ext/oj/parse.h +21 -24
  38. data/ext/oj/parser.c +80 -67
  39. data/ext/oj/parser.h +9 -8
  40. data/ext/oj/rails.c +71 -94
  41. data/ext/oj/reader.c +9 -14
  42. data/ext/oj/reader.h +4 -2
  43. data/ext/oj/resolve.c +3 -4
  44. data/ext/oj/rxclass.c +6 -5
  45. data/ext/oj/rxclass.h +1 -1
  46. data/ext/oj/saj.c +13 -15
  47. data/ext/oj/saj2.c +37 -49
  48. data/ext/oj/saj2.h +1 -1
  49. data/ext/oj/scp.c +6 -20
  50. data/ext/oj/sparse.c +22 -70
  51. data/ext/oj/stream_writer.c +46 -48
  52. data/ext/oj/strict.c +22 -56
  53. data/ext/oj/string_writer.c +64 -40
  54. data/ext/oj/trace.h +31 -4
  55. data/ext/oj/usual.c +125 -114
  56. data/ext/oj/usual.h +7 -6
  57. data/ext/oj/util.h +1 -1
  58. data/ext/oj/val_stack.c +13 -2
  59. data/ext/oj/val_stack.h +8 -7
  60. data/ext/oj/wab.c +25 -57
  61. data/lib/oj/active_support_helper.rb +1 -3
  62. data/lib/oj/bag.rb +7 -1
  63. data/lib/oj/easy_hash.rb +4 -5
  64. data/lib/oj/error.rb +0 -1
  65. data/lib/oj/json.rb +162 -150
  66. data/lib/oj/mimic.rb +7 -7
  67. data/lib/oj/schandler.rb +5 -4
  68. data/lib/oj/state.rb +8 -5
  69. data/lib/oj/version.rb +1 -2
  70. data/lib/oj.rb +2 -0
  71. data/pages/InstallOptions.md +20 -0
  72. data/pages/Options.md +4 -0
  73. metadata +46 -121
  74. data/test/_test_active.rb +0 -76
  75. data/test/_test_active_mimic.rb +0 -96
  76. data/test/_test_mimic_rails.rb +0 -126
  77. data/test/activerecord/result_test.rb +0 -32
  78. data/test/activesupport4/decoding_test.rb +0 -108
  79. data/test/activesupport4/encoding_test.rb +0 -531
  80. data/test/activesupport4/test_helper.rb +0 -41
  81. data/test/activesupport5/abstract_unit.rb +0 -45
  82. data/test/activesupport5/decoding_test.rb +0 -133
  83. data/test/activesupport5/encoding_test.rb +0 -500
  84. data/test/activesupport5/encoding_test_cases.rb +0 -98
  85. data/test/activesupport5/test_helper.rb +0 -72
  86. data/test/activesupport5/time_zone_test_helpers.rb +0 -39
  87. data/test/activesupport6/abstract_unit.rb +0 -44
  88. data/test/activesupport6/decoding_test.rb +0 -133
  89. data/test/activesupport6/encoding_test.rb +0 -507
  90. data/test/activesupport6/encoding_test_cases.rb +0 -98
  91. data/test/activesupport6/test_common.rb +0 -17
  92. data/test/activesupport6/test_helper.rb +0 -163
  93. data/test/activesupport6/time_zone_test_helpers.rb +0 -39
  94. data/test/activesupport7/abstract_unit.rb +0 -49
  95. data/test/activesupport7/decoding_test.rb +0 -125
  96. data/test/activesupport7/encoding_test.rb +0 -486
  97. data/test/activesupport7/encoding_test_cases.rb +0 -104
  98. data/test/activesupport7/time_zone_test_helpers.rb +0 -47
  99. data/test/bar.rb +0 -11
  100. data/test/baz.rb +0 -16
  101. data/test/bug.rb +0 -16
  102. data/test/files.rb +0 -29
  103. data/test/foo.rb +0 -77
  104. data/test/helper.rb +0 -42
  105. data/test/isolated/shared.rb +0 -308
  106. data/test/isolated/test_mimic_after.rb +0 -13
  107. data/test/isolated/test_mimic_alone.rb +0 -12
  108. data/test/isolated/test_mimic_as_json.rb +0 -45
  109. data/test/isolated/test_mimic_before.rb +0 -13
  110. data/test/isolated/test_mimic_define.rb +0 -28
  111. data/test/isolated/test_mimic_rails_after.rb +0 -22
  112. data/test/isolated/test_mimic_rails_before.rb +0 -21
  113. data/test/isolated/test_mimic_redefine.rb +0 -15
  114. data/test/json_gem/json_addition_test.rb +0 -216
  115. data/test/json_gem/json_common_interface_test.rb +0 -153
  116. data/test/json_gem/json_encoding_test.rb +0 -107
  117. data/test/json_gem/json_ext_parser_test.rb +0 -20
  118. data/test/json_gem/json_fixtures_test.rb +0 -35
  119. data/test/json_gem/json_generator_test.rb +0 -396
  120. data/test/json_gem/json_generic_object_test.rb +0 -90
  121. data/test/json_gem/json_parser_test.rb +0 -477
  122. data/test/json_gem/json_string_matching_test.rb +0 -42
  123. data/test/json_gem/test_helper.rb +0 -30
  124. data/test/mem.rb +0 -33
  125. data/test/perf.rb +0 -107
  126. data/test/perf_compat.rb +0 -130
  127. data/test/perf_dump.rb +0 -50
  128. data/test/perf_fast.rb +0 -164
  129. data/test/perf_file.rb +0 -64
  130. data/test/perf_object.rb +0 -138
  131. data/test/perf_once.rb +0 -58
  132. data/test/perf_parser.rb +0 -189
  133. data/test/perf_saj.rb +0 -109
  134. data/test/perf_scp.rb +0 -152
  135. data/test/perf_simple.rb +0 -287
  136. data/test/perf_strict.rb +0 -139
  137. data/test/perf_wab.rb +0 -131
  138. data/test/prec.rb +0 -23
  139. data/test/sample/change.rb +0 -14
  140. data/test/sample/dir.rb +0 -19
  141. data/test/sample/doc.rb +0 -36
  142. data/test/sample/file.rb +0 -48
  143. data/test/sample/group.rb +0 -16
  144. data/test/sample/hasprops.rb +0 -16
  145. data/test/sample/layer.rb +0 -12
  146. data/test/sample/line.rb +0 -20
  147. data/test/sample/oval.rb +0 -10
  148. data/test/sample/rect.rb +0 -10
  149. data/test/sample/shape.rb +0 -35
  150. data/test/sample/text.rb +0 -20
  151. data/test/sample.rb +0 -54
  152. data/test/sample_json.rb +0 -37
  153. data/test/test_compat.rb +0 -540
  154. data/test/test_custom.rb +0 -544
  155. data/test/test_debian.rb +0 -53
  156. data/test/test_fast.rb +0 -530
  157. data/test/test_file.rb +0 -255
  158. data/test/test_gc.rb +0 -60
  159. data/test/test_generate.rb +0 -21
  160. data/test/test_hash.rb +0 -39
  161. data/test/test_integer_range.rb +0 -72
  162. data/test/test_null.rb +0 -376
  163. data/test/test_object.rb +0 -1025
  164. data/test/test_parser.rb +0 -11
  165. data/test/test_parser_debug.rb +0 -27
  166. data/test/test_parser_saj.rb +0 -335
  167. data/test/test_parser_usual.rb +0 -217
  168. data/test/test_rails.rb +0 -35
  169. data/test/test_saj.rb +0 -186
  170. data/test/test_scp.rb +0 -431
  171. data/test/test_strict.rb +0 -435
  172. data/test/test_various.rb +0 -752
  173. data/test/test_wab.rb +0 -309
  174. data/test/test_writer.rb +0 -380
  175. data/test/tests.rb +0 -33
  176. data/test/tests_mimic.rb +0 -23
  177. data/test/tests_mimic_addition.rb +0 -16
  178. data/test/zoo.rb +0 -13
data/test/test_fast.rb DELETED
@@ -1,530 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # coding: utf-8
3
- # frozen_string_literal: true
4
-
5
- $: << File.dirname(__FILE__)
6
-
7
- require 'helper'
8
-
9
- class DocTest < Minitest::Test
10
- def setup
11
- @default_options = Oj.default_options
12
- @json1 = %|{
13
- "array": [
14
- {
15
- "num" : 3,
16
- "string": "message",
17
- "hash" : {
18
- "h2" : {
19
- "a" : [ 1, 2, 3 ]
20
- }
21
- }
22
- }
23
- ],
24
- "boolean" : true
25
- }|
26
- end
27
-
28
- def teardown
29
- Oj.default_options = @default_options
30
- end
31
-
32
- def test_nil
33
- json = %{null}
34
- Oj::Doc.open(json) do |doc|
35
- assert_equal(NilClass, doc.type)
36
- assert_nil(doc.fetch())
37
- end
38
- end
39
-
40
- def test_leaf_of_existing_path
41
- json = %{{"foo": 1, "fizz": true}}
42
- Oj::Doc.open(json) do |doc|
43
- %w(/foo/bar /fizz/bar).each do |path|
44
- assert_nil(doc.fetch(path))
45
- assert_equal(:default, doc.fetch(path, :default))
46
- refute(doc.exists?(path))
47
- end
48
- end
49
- end
50
-
51
- def test_true
52
- json = %{true}
53
- Oj::Doc.open(json) do |doc|
54
- assert_equal(TrueClass, doc.type)
55
- assert_equal(true, doc.fetch())
56
- end
57
- end
58
-
59
- def test_false
60
- json = %{false}
61
- Oj::Doc.open(json) do |doc|
62
- assert_equal(FalseClass, doc.type)
63
- assert_equal(false, doc.fetch())
64
- end
65
- end
66
-
67
- def test_string
68
- json = %{"a string"}
69
- Oj::Doc.open(json) do |doc|
70
- assert_equal(String, doc.type)
71
- assert_equal('a string', doc.fetch())
72
- end
73
- end
74
-
75
- def test_encoding
76
- json = %{"ぴーたー"}
77
- Oj::Doc.open(json) do |doc|
78
- assert_equal(String, doc.type)
79
- assert_equal("ぴーたー", doc.fetch())
80
- end
81
- end
82
-
83
- def test_encoding_escaped
84
- json = %{"\\u3074\\u30fc\\u305f\\u30fc"}
85
- Oj::Doc.open(json) do |doc|
86
- assert_equal(String, doc.type)
87
- assert_equal("ぴーたー", doc.fetch())
88
- end
89
- end
90
-
91
- def test_fixnum
92
- json = %{12345}
93
- Oj::Doc.open(json) do |doc|
94
- if '2.4.0' <= RUBY_VERSION
95
- assert_equal(Integer, doc.type)
96
- else
97
- assert_equal(Fixnum, doc.type)
98
- end
99
- assert_equal(12345, doc.fetch())
100
- end
101
- end
102
-
103
- def test_float
104
- json = %{12345.6789}
105
- Oj::Doc.open(json) do |doc|
106
- assert_equal(Float, doc.type)
107
- assert_equal(12345.6789, doc.fetch())
108
- end
109
- end
110
-
111
- def test_float_exp
112
- json = %{12345.6789e7}
113
- Oj::Doc.open(json) do |doc|
114
- assert_equal(Float, doc.type)
115
- #assert_equal(12345.6789e7, doc.fetch())
116
- assert_equal(12345.6789e7.to_i, doc.fetch().to_i)
117
- end
118
- end
119
-
120
- def test_array_empty
121
- json = %{[]}
122
- Oj::Doc.open(json) do |doc|
123
- assert_equal(Array, doc.type)
124
- assert_equal([], doc.fetch())
125
- end
126
- end
127
-
128
- def test_array
129
- json = %{[true,false]}
130
- Oj::Doc.open(json) do |doc|
131
- assert_equal(Array, doc.type)
132
- assert_equal([true, false], doc.fetch())
133
- end
134
- end
135
-
136
- def test_hash_empty
137
- json = %{{}}
138
- Oj::Doc.open(json) do |doc|
139
- assert_equal(Hash, doc.type)
140
- assert_equal({}, doc.fetch())
141
- end
142
- end
143
-
144
- def test_hash
145
- json = %{{"one":true,"two":false}}
146
- Oj::Doc.open(json) do |doc|
147
- assert_equal(Hash, doc.type)
148
- assert_equal({'one' => true, 'two' => false}, doc.fetch())
149
- end
150
- end
151
-
152
- # move() and where?()
153
- def test_move_hash
154
- json = %{{"one":{"two":false}}}
155
- Oj::Doc.open(json) do |doc|
156
- doc.move('/one')
157
- assert_equal('/one', doc.where?)
158
- doc.move('/one/two')
159
- assert_equal('/one/two', doc.where?)
160
- end
161
- end
162
-
163
- def test_move_array
164
- json = %{[1,[2,true]]}
165
- Oj::Doc.open(json) do |doc|
166
- doc.move('/1')
167
- assert_equal('/1', doc.where?)
168
- doc.move('/2/1')
169
- assert_equal('/2/1', doc.where?)
170
- end
171
- end
172
-
173
- def test_move
174
- Oj::Doc.open(@json1) do |doc|
175
- [ '/',
176
- '/array',
177
- '/boolean',
178
- '/array/1/hash/h2/a/3',
179
- ].each do |p|
180
- doc.move(p)
181
- assert_equal(p, doc.where?)
182
- end
183
- begin
184
- doc.move('/array/x')
185
- rescue Exception
186
- assert_equal('/', doc.where?)
187
- assert(true)
188
- end
189
- end
190
- end
191
-
192
- def test_move_slash
193
- Oj::Doc.open(%|{"top":{"a/b":3}}|) do |doc|
194
- doc.move('top/a\/b')
195
- assert_equal('/top/a\/b', doc.where?)
196
- end
197
- end
198
-
199
- def test_fetch_slash
200
- Oj::Doc.open(%|{"a/b":3}|) do |doc|
201
- x = doc.fetch('a\/b')
202
- assert_equal(3, x)
203
- end
204
- end
205
-
206
- def test_move_relative
207
- Oj::Doc.open(@json1) do |doc|
208
- [['/', 'array', '/array'],
209
- ['/array', '1/num', '/array/1/num'],
210
- ['/array/1/hash', 'h2/a', '/array/1/hash/h2/a'],
211
- ['/array/1', 'hash/h2/a/2', '/array/1/hash/h2/a/2'],
212
- ['/array/1/hash', '../string', '/array/1/string'],
213
- ['/array/1/hash', '..', '/array/1'],
214
- ].each do |start,path,where|
215
- doc.move(start)
216
- doc.move(path)
217
- assert_equal(where, doc.where?)
218
- end
219
- end
220
- end
221
-
222
- def test_type
223
- if '2.4.0' <= RUBY_VERSION
224
- num_class = Integer
225
- else
226
- num_class = Fixnum
227
- end
228
- Oj::Doc.open(@json1) do |doc|
229
- [['/', Hash],
230
- ['/array', Array],
231
- ['/array/1', Hash],
232
- ['/array/1/num', num_class],
233
- ['/array/1/string', String],
234
- ['/array/1/hash/h2/a', Array],
235
- ['/array/1/hash/../num', num_class],
236
- ['/array/1/hash/../..', Array],
237
- ].each do |path,type|
238
- assert_equal(type, doc.type(path))
239
- end
240
- end
241
- end
242
-
243
- def test_local_key
244
- Oj::Doc.open(@json1) do |doc|
245
- [['/', nil],
246
- ['/array', 'array'],
247
- ['/array/1', 1],
248
- ['/array/1/num', 'num'],
249
- ['/array/1/string', 'string'],
250
- ['/array/1/hash/h2/a', 'a'],
251
- ['/array/1/hash/../num', 'num'],
252
- ['/array/1/hash/..', 1],
253
- ['/array/1/hash/../..', 'array'],
254
- ].each do |path,key|
255
- doc.move(path)
256
- if key.nil?
257
- assert_nil(doc.local_key())
258
- else
259
- assert_equal(key, doc.local_key())
260
- end
261
- end
262
- end
263
- end
264
-
265
- def test_fetch_move
266
- Oj::Doc.open(@json1) do |doc|
267
- [['/array/1/num', 3],
268
- ['/array/1/string', 'message'],
269
- ['/array/1/hash/h2/a', [1, 2, 3]],
270
- ['/array/1/hash/../num', 3],
271
- ['/array/1/hash/..', {'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}],
272
- ['/array/1/hash/../..', [{'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}]],
273
- ['/array/1', {'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}],
274
- ['/array', [{'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}]],
275
- ['/', {'array' => [{'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}], 'boolean' => true}],
276
- ].each do |path,val|
277
- doc.move(path)
278
- assert_equal(val, doc.fetch())
279
- end
280
- end
281
- end
282
-
283
- def test_fetch_path
284
- Oj::Doc.open(@json1) do |doc|
285
- [['/array/1/num', 3],
286
- ['/array/1/string', 'message'],
287
- ['/array/1/hash/h2/a', [1, 2, 3]],
288
- ['/array/1/hash/../num', 3],
289
- ['/array/1/hash/..', {'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}],
290
- ['/array/1/hash/../..', [{'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}]],
291
- ['/array/1', {'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}],
292
- ['/array', [{'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}]],
293
- ['/', {'array' => [{'num' => 3, 'string' => 'message', 'hash' => {'h2' => {'a' => [1, 2, 3]}}}], 'boolean' => true}],
294
- ['/nothing', nil],
295
- ['/array/10', nil],
296
- ].each do |path,val|
297
- if val.nil?
298
- assert_nil(doc.fetch(path))
299
- else
300
- assert_equal(val, doc.fetch(path))
301
- end
302
- end
303
- end
304
- # verify empty hash and arrays return nil when a member is requested
305
- Oj::Doc.open('{}') do |doc|
306
- assert_nil(doc.fetch('/x'))
307
- assert_nil(doc.fetch('/0'))
308
- end
309
- Oj::Doc.open('[]') do |doc|
310
- assert_nil(doc.fetch('/x'))
311
- assert_nil(doc.fetch('/0'))
312
- end
313
-
314
- end
315
-
316
- def test_move_fetch_path
317
- Oj::Doc.open(@json1) do |doc|
318
- [['/array/1', 'num', 3],
319
- ['/array/1', 'string', 'message'],
320
- ['/array/1/hash', 'h2/a', [1, 2, 3]],
321
- ].each do |path,fetch_path,val|
322
- doc.move(path)
323
- assert_equal(val, doc.fetch(fetch_path))
324
- end
325
- end
326
- end
327
-
328
- def test_exists
329
- Oj::Doc.open(@json1) do |doc|
330
- [['/array/1', true],
331
- ['/array/1', true],
332
- ['/array/1/hash', true],
333
- ['/array/1/dash', false],
334
- ['/array/3', false],
335
- ['/nothing', false],
336
- ].each do |path,val|
337
- assert_equal(val, doc.exists?(path), "failed for #{path.inspect}")
338
- end
339
- end
340
- end
341
-
342
- def test_home
343
- Oj::Doc.open(@json1) do |doc|
344
- doc.move('/array/1/num')
345
- doc.home()
346
- assert_equal('/', doc.where?)
347
- end
348
- end
349
-
350
- def test_each_value_root
351
- Oj::Doc.open(@json1) do |doc|
352
- values = []
353
- doc.each_value() { |v| values << v.to_s }
354
- assert_equal(['1', '2', '3', '3', 'message', 'true'], values.sort)
355
- end
356
- end
357
-
358
- def test_each_value_move
359
- Oj::Doc.open(@json1) do |doc|
360
- doc.move('/array/1/hash')
361
- values = []
362
- doc.each_value() { |v| values << v.to_s }
363
- assert_equal(['1', '2', '3'], values.sort)
364
- end
365
- end
366
-
367
- def test_each_value_path
368
- Oj::Doc.open(@json1) do |doc|
369
- values = []
370
- doc.each_value('/array/1/hash') { |v| values << v.to_s }
371
- assert_equal(['1', '2', '3'], values.sort)
372
- end
373
- end
374
-
375
- def test_each_child_move
376
- Oj::Doc.open(@json1) do |doc|
377
- locations = []
378
- doc.move('/array/1/hash/h2/a')
379
- doc.each_child() { |d| locations << d.where? }
380
- assert_equal(['/array/1/hash/h2/a/1', '/array/1/hash/h2/a/2', '/array/1/hash/h2/a/3'], locations)
381
- locations = []
382
- doc.move('/array/1')
383
- doc.each_child() { |d| locations << d.where? }
384
- assert_equal(['/array/1/num', '/array/1/string', '/array/1/hash'], locations)
385
- end
386
- end
387
-
388
- def test_each_child_path
389
- Oj::Doc.open(@json1) do |doc|
390
- locations = []
391
- doc.each_child('/array/1/hash/h2/a') { |d| locations << d.where? }
392
- assert_equal(['/array/1/hash/h2/a/1', '/array/1/hash/h2/a/2', '/array/1/hash/h2/a/3'], locations)
393
- locations = []
394
- doc.each_child('/array/1') { |d| locations << d.where? }
395
- assert_equal(['/array/1/num', '/array/1/string', '/array/1/hash'], locations)
396
- end
397
- end
398
-
399
- def test_nested_each_child
400
- h = {}
401
- Oj::Doc.open('{"a":1,"c":[2],"d":3}') do |doc|
402
- doc.each_child('/') do |child|
403
- h[child.path] = child.fetch
404
- child.each_child do |grandchild|
405
- h[grandchild.path] = grandchild.fetch
406
- end
407
- end
408
- end
409
- assert_equal({"/a"=>1, "/c"=>[2], "/c/1"=>2, "/d"=>3}, h)
410
- end
411
-
412
- def test_size
413
- Oj::Doc.open('[1,2,3]') do |doc|
414
- assert_equal(4, doc.size)
415
- end
416
- Oj::Doc.open('{"a":[1,2,3]}') do |doc|
417
- assert_equal(5, doc.size)
418
- end
419
- end
420
-
421
- def test_open_file
422
- filename = File.join(File.dirname(__FILE__), 'open_file_test.json')
423
- File.open(filename, 'w') { |f| f.write('{"a":[1,2,3]}') }
424
- Oj::Doc.open_file(filename) do |doc|
425
- assert_equal(5, doc.size)
426
- end
427
- end
428
-
429
- def test_open_close
430
- json = %{{"a":[1,2,3]}}
431
- doc = Oj::Doc.open(json)
432
- assert_equal(Oj::Doc, doc.class)
433
- assert_equal(5, doc.size)
434
- assert_equal('/', doc.where?)
435
- doc.move('a/1')
436
- doc.home()
437
- assert_equal(2, doc.fetch('/a/2'))
438
- assert_equal(2, doc.fetch('a/2'))
439
- doc.close()
440
- begin
441
- doc.home()
442
- rescue Exception
443
- assert(true)
444
- end
445
- end
446
-
447
- def test_file_open_close
448
- filename = File.join(File.dirname(__FILE__), 'open_file_test.json')
449
- File.open(filename, 'w') { |f| f.write('{"a":[1,2,3]}') }
450
- doc = Oj::Doc.open_file(filename)
451
- assert_equal(Oj::Doc, doc.class)
452
- assert_equal(5, doc.size)
453
- assert_equal('/', doc.where?)
454
- doc.move('a/1')
455
- doc.home()
456
- assert_equal(2, doc.fetch('/a/2'))
457
- assert_equal(2, doc.fetch('a/2'))
458
- doc.close()
459
- begin
460
- doc.home()
461
- rescue Exception
462
- assert(true)
463
- end
464
- end
465
-
466
- def test_open_no_close
467
- json = %{{"a":[1,2,3]}}
468
- doc = Oj::Doc.open(json)
469
- assert_equal(Oj::Doc, doc.class)
470
- assert_equal(5, doc.size)
471
- assert_equal('/', doc.where?)
472
- doc.move('a/1')
473
- doc.home()
474
- assert_equal(2, doc.fetch('/a/2'))
475
- assert_equal(2, doc.fetch('a/2'))
476
- doc = nil
477
- GC.start
478
- # a print statement confirms close is called
479
- end
480
-
481
- def test_dump
482
- Oj::Doc.open('[1,[2,3]]') do |doc|
483
- assert_equal('[1,[2,3]]', doc.dump())
484
- end
485
- Oj::Doc.open('[1,[2,3]]') do |doc|
486
- assert_equal('[2,3]', doc.dump('/2'))
487
- end
488
- end
489
-
490
- def test_each_leaf
491
- results = Oj::Doc.open('[1,[2,3]]') do |doc|
492
- h = {}
493
- doc.each_leaf() { |d| h[d.where?] = d.fetch() }
494
- h
495
- end
496
- assert_equal({'/1' => 1, '/2/1' => 2, '/2/2' => 3}, results)
497
- end
498
-
499
- def test_each_leaf_hash
500
- results = Oj::Doc.open('{"a":{"x":2},"b":{"y":4}}') do |doc|
501
- h = {}
502
- doc.each_leaf() { |d| h[d.where?] = d.fetch() }
503
- h
504
- end
505
- assert_equal({'/a/x' => 2, '/b/y' => 4}, results)
506
- end
507
-
508
- def test_doc_empty
509
- result = Oj::Doc.open("") { |doc| doc.each_child {} }
510
- assert_nil(result)
511
- end
512
-
513
- def test_comment
514
- json = %{{
515
- "x"/*one*/:/*two*/true,//three
516
- "y":58/*four*/,
517
- "z": [1,2/*five*/,
518
- 3 // six
519
- ]
520
- }
521
- }
522
- results = Oj::Doc.open(json) do |doc|
523
- h = {}
524
- doc.each_leaf() { |d| h[d.where?] = d.fetch() }
525
- h
526
- end
527
- assert_equal({'/x' => true, '/y' => 58, '/z/1' => 1, '/z/2' => 2, '/z/3' => 3}, results)
528
- end
529
-
530
- end # DocTest