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_compat.rb DELETED
@@ -1,540 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # encoding: utf-8
3
-
4
- $: << File.dirname(__FILE__)
5
- $oj_dir = File.dirname(File.expand_path(File.dirname(__FILE__)))
6
- %w(lib ext).each do |dir|
7
- $: << File.join($oj_dir, dir)
8
- end
9
-
10
- require 'minitest'
11
- require 'minitest/autorun'
12
- require 'stringio'
13
- require 'date'
14
- require 'bigdecimal'
15
- require 'oj'
16
-
17
- class CompatJuice < Minitest::Test
18
-
19
- class Jeez
20
- attr_accessor :x, :y
21
-
22
- def initialize(x, y)
23
- @x = x
24
- @y = y
25
- end
26
-
27
- def eql?(o)
28
- self.class == o.class && @x == o.x && @y == o.y
29
- end
30
- alias == eql?
31
-
32
- def to_json(*a)
33
- %|{"json_class":"#{self.class.to_s}","x":#{@x},"y":#{@y}}|
34
- end
35
-
36
- def self.json_create(h)
37
- self.new(h['x'], h['y'])
38
- end
39
- end # Jeez
40
-
41
- class Argy
42
- def initialize()
43
- end
44
-
45
- def to_json(*a)
46
- %|{"args":"#{a}"}|
47
- end
48
- end # Argy
49
-
50
- class Stringy
51
- def initialize()
52
- end
53
-
54
- def to_s()
55
- %|[1,2]|
56
- end
57
- end # Stringy
58
-
59
- module One
60
- module Two
61
- module Three
62
- class Deep
63
-
64
- def initialize()
65
- end
66
-
67
- def eql?(o)
68
- self.class == o.class
69
- end
70
- alias == eql?
71
-
72
- def to_json(*a)
73
- %|{"json_class":"#{self.class.name}"}|
74
- end
75
-
76
- def self.json_create(h)
77
- self.new()
78
- end
79
- end # Deep
80
- end # Three
81
- end # Two
82
- end # One
83
-
84
- def setup
85
- @default_options = Oj.default_options
86
- # in compat mode other options other than the JSON gem globals and options
87
- # are not used.
88
- Oj.default_options = { :mode => :compat }
89
- end
90
-
91
- def teardown
92
- Oj.default_options = @default_options
93
- end
94
-
95
- def test_nil
96
- dump_and_load(nil, false)
97
- end
98
-
99
- def test_true
100
- dump_and_load(true, false)
101
- end
102
-
103
- def test_false
104
- dump_and_load(false, false)
105
- end
106
-
107
- def test_fixnum
108
- dump_and_load(0, false)
109
- dump_and_load(12345, false)
110
- dump_and_load(-54321, false)
111
- dump_and_load(1, false)
112
- end
113
-
114
- def test_float
115
- dump_and_load(0.0, false)
116
- dump_and_load(0.56, false)
117
- dump_and_load(3.0, false)
118
- dump_and_load(12345.6789, false)
119
- dump_and_load(70.35, false)
120
- dump_and_load(-54321.012, false)
121
- dump_and_load(1.7775, false)
122
- dump_and_load(2.5024, false)
123
- dump_and_load(2.48e16, false)
124
- dump_and_load(2.48e100 * 1.0e10, false)
125
- dump_and_load(-2.48e100 * 1.0e10, false)
126
- dump_and_load(1405460727.723866, false)
127
- dump_and_load(0.5773, false)
128
- dump_and_load(0.6768, false)
129
- dump_and_load(0.685, false)
130
- dump_and_load(0.7032, false)
131
- dump_and_load(0.7051, false)
132
- dump_and_load(0.8274, false)
133
- dump_and_load(0.9149, false)
134
- dump_and_load(64.4, false)
135
- dump_and_load(71.6, false)
136
- dump_and_load(73.4, false)
137
- dump_and_load(80.6, false)
138
- dump_and_load(-95.640172, false)
139
- end
140
-
141
- def test_string
142
- dump_and_load('', false)
143
- dump_and_load('abc', false)
144
- dump_and_load("abc\ndef", false)
145
- dump_and_load("a\u0041", false)
146
- end
147
-
148
- def test_encode
149
- opts = Oj.default_options
150
- Oj.default_options = { :ascii_only => true }
151
- json = Oj.dump("ぴーたー")
152
- assert_equal(%{"\\u3074\\u30fc\\u305f\\u30fc"}, json)
153
- Oj.default_options = opts
154
- end
155
-
156
- def test_unicode
157
- # hits the 3 normal ranges and one extended surrogate pair
158
- json = %{"\\u019f\\u05e9\\u3074\\ud834\\udd1e"}
159
- obj = Oj.load(json)
160
- json2 = Oj.dump(obj, :ascii_only => true)
161
- assert_equal(json, json2)
162
- end
163
-
164
- def test_array
165
- dump_and_load([], false)
166
- dump_and_load([true, false], false)
167
- dump_and_load(['a', 1, nil], false)
168
- dump_and_load([[nil]], false)
169
- dump_and_load([[nil], 58], false)
170
- end
171
-
172
- def test_array_deep
173
- dump_and_load([1,[2,[3,[4,[5,[6,[7,[8,[9,[10,[11,[12,[13,[14,[15,[16,[17,[18,[19,[20]]]]]]]]]]]]]]]]]]]], false)
174
- end
175
-
176
- def test_symbol
177
- json = Oj.dump(:abc, :mode => :compat)
178
- assert_equal('"abc"', json)
179
- end
180
-
181
- def test_time_xml_schema
182
- t = Time.xmlschema("2012-01-05T23:58:07.123456000+09:00")
183
- #t = Time.local(2012, 1, 5, 23, 58, 7, 123456)
184
- json = Oj.dump(t, :mode => :compat)
185
- assert_equal(%{"2012-01-05 23:58:07 +0900"}, json)
186
- end
187
-
188
- def test_class
189
- json = Oj.dump(CompatJuice, :mode => :compat)
190
- assert_equal(%{"CompatJuice"}, json)
191
- end
192
-
193
- def test_module
194
- json = Oj.dump(One::Two, :mode => :compat)
195
- assert_equal(%{"CompatJuice::One::Two"}, json)
196
- end
197
-
198
- # Hash
199
- def test_non_str_hash
200
- json = Oj.dump({ 1 => true, 0 => false }, :mode => :compat)
201
- h = Oj.load(json, :mode => :strict)
202
- assert_equal({ "1" => true, "0" => false }, h)
203
- end
204
- def test_hash
205
- dump_and_load({}, false)
206
- dump_and_load({ 'true' => true, 'false' => false}, false)
207
- dump_and_load({ 'true' => true, 'array' => [], 'hash' => { }}, false)
208
- end
209
-
210
- def test_hash_deep
211
- dump_and_load({'1' => {
212
- '2' => {
213
- '3' => {
214
- '4' => {
215
- '5' => {
216
- '6' => {
217
- '7' => {
218
- '8' => {
219
- '9' => {
220
- '10' => {
221
- '11' => {
222
- '12' => {
223
- '13' => {
224
- '14' => {
225
- '15' => {
226
- '16' => {
227
- '17' => {
228
- '18' => {
229
- '19' => {
230
- '20' => {}}}}}}}}}}}}}}}}}}}}}, false)
231
- end
232
-
233
- def test_hash_escaped_key
234
- json = %{{"a\nb":true,"c\td":false}}
235
- obj = Oj.compat_load(json)
236
- assert_equal({"a\nb" => true, "c\td" => false}, obj)
237
- end
238
-
239
- def test_invalid_escapes_handled
240
- json = '{"subtext":"\"404er\” \w \k \3 \a"}'
241
- obj = Oj.compat_load(json)
242
- assert_equal({"subtext" => "\"404er” w k 3 a"}, obj)
243
- end
244
-
245
- def test_hash_escaping
246
- json = Oj.to_json({'<>' => '<>'}, mode: :compat)
247
- assert_equal(json, '{"<>":"<>"}')
248
- end
249
-
250
- def test_bignum_object
251
- dump_and_load(7 ** 55, false)
252
- end
253
-
254
- def test_json_object
255
- obj = Jeez.new(true, 58)
256
- json = Oj.to_json(obj)
257
- assert(%|{"json_class":"CompatJuice::Jeez","x":true,"y":58}| == json ||
258
- %|{"json_class":"CompatJuice::Jeez","y":58,"x":true}| == json)
259
- dump_to_json_and_load(obj, false)
260
- end
261
-
262
- def test_json_object_create_id
263
- Oj.default_options = { :create_id => 'kson_class', :create_additions => true}
264
- expected = Jeez.new(true, 58)
265
- json = %{{"kson_class":"CompatJuice::Jeez","x":true,"y":58}}
266
- obj = Oj.load(json)
267
- assert_equal(expected, obj)
268
- Oj.default_options = { :create_id => 'json_class' }
269
- end
270
-
271
- def test_bignum_compat
272
- json = Oj.dump(7 ** 55, :mode => :compat)
273
- b = Oj.load(json, :mode => :strict)
274
- assert_equal(30226801971775055948247051683954096612865741943, b)
275
- end
276
-
277
- # BigDecimal
278
- def test_bigdecimal
279
- # BigDecimals are dumped as strings and can not be restored to the
280
- # original value without using an undocumented feature of the JSON gem.
281
- json = Oj.dump(BigDecimal('3.14159265358979323846'))
282
- # 2.4.0 changes the exponent to lowercase
283
- assert_equal('"0.314159265358979323846e1"', json.downcase)
284
- end
285
-
286
- def test_decimal_class
287
- big = BigDecimal('3.14159265358979323846')
288
- # :decimal_class is the undocumented feature.
289
- json = Oj.load('3.14159265358979323846', mode: :compat, decimal_class: BigDecimal)
290
- assert_equal(big, json)
291
- end
292
-
293
- def test_infinity
294
- assert_raises(Oj::ParseError) { Oj.load('Infinity', :mode => :strict) }
295
- x = Oj.load('Infinity', :mode => :compat)
296
- assert_equal('Infinity', x.to_s)
297
- end
298
-
299
- # Time
300
- def test_time_from_time_object
301
- t = Time.new(2015, 1, 5, 21, 37, 7.123456, -8 * 3600)
302
- expect = '"' + t.to_s + '"'
303
- json = Oj.dump(t)
304
- assert_equal(expect, json)
305
- end
306
-
307
- def test_date_compat
308
- orig = Date.new(2012, 6, 19)
309
- json = Oj.dump(orig, :mode => :compat)
310
- x = Oj.load(json, :mode => :compat)
311
- # Some Rubies implement Date as data and some as a real Object. Either are
312
- # okay for the test.
313
- if x.is_a?(String)
314
- assert_equal(orig.to_s, x)
315
- else # better be a Hash
316
- assert_equal({"year" => orig.year, "month" => orig.month, "day" => orig.day, "start" => orig.start}, x)
317
- end
318
- end
319
-
320
- def test_datetime_compat
321
- orig = DateTime.new(2012, 6, 19, 20, 19, 27)
322
- json = Oj.dump(orig, :mode => :compat)
323
- x = Oj.load(json, :mode => :compat)
324
- # Some Rubies implement Date as data and some as a real Object. Either are
325
- # okay for the test.
326
- assert_equal(orig.to_s, x)
327
- end
328
-
329
- # Stream IO
330
- def test_io_string
331
- json = %{{
332
- "x":true,
333
- "y":58,
334
- "z": [1,2,3]
335
- }
336
- }
337
- input = StringIO.new(json)
338
- obj = Oj.compat_load(input)
339
- assert_equal({ 'x' => true, 'y' => 58, 'z' => [1, 2, 3]}, obj)
340
- end
341
-
342
- def test_io_file
343
- filename = File.join(File.dirname(__FILE__), 'open_file_test.json')
344
- File.open(filename, 'w') { |f| f.write(%{{
345
- "x":true,
346
- "y":58,
347
- "z": [1,2,3]
348
- }
349
- }) }
350
- f = File.new(filename)
351
- obj = Oj.compat_load(f)
352
- f.close()
353
- assert_equal({ 'x' => true, 'y' => 58, 'z' => [1, 2, 3]}, obj)
354
- end
355
-
356
- # symbol_keys option
357
- def test_symbol_keys
358
- json = %{{
359
- "x":true,
360
- "y":58,
361
- "z": [1,2,3]
362
- }
363
- }
364
- obj = Oj.compat_load(json, :symbol_keys => true)
365
- assert_equal({ :x => true, :y => 58, :z => [1, 2, 3]}, obj)
366
- end
367
-
368
- # comments
369
- def test_comment_slash
370
- json = %{{
371
- "x":true,//three
372
- "y":58,
373
- "z": [1,2,
374
- 3 // six
375
- ]}
376
- }
377
- obj = Oj.compat_load(json)
378
- assert_equal({ 'x' => true, 'y' => 58, 'z' => [1, 2, 3]}, obj)
379
- end
380
-
381
- def test_comment_c
382
- json = %{{
383
- "x"/*one*/:/*two*/true,
384
- "y":58,
385
- "z": [1,2,3]}
386
- }
387
- obj = Oj.compat_load(json)
388
- assert_equal({ 'x' => true, 'y' => 58, 'z' => [1, 2, 3]}, obj)
389
- end
390
-
391
- def test_comment
392
- json = %{{
393
- "x"/*one*/:/*two*/true,//three
394
- "y":58/*four*/,
395
- "z": [1,2/*five*/,
396
- 3 // six
397
- ]
398
- }
399
- }
400
- obj = Oj.compat_load(json)
401
- assert_equal({ 'x' => true, 'y' => 58, 'z' => [1, 2, 3]}, obj)
402
- end
403
-
404
- # If mimic_JSON has not been called then Oj.dump will call to_json on the
405
- # top level object only.
406
- def test_json_object_top
407
- obj = Jeez.new(true, 58)
408
- dump_to_json_and_load(obj, false)
409
- end
410
-
411
- # A child to_json should not be called.
412
- def test_json_object_child
413
- obj = { "child" => Jeez.new(true, 58) }
414
- assert_equal('{"child":{"json_class":"CompatJuice::Jeez","x":true,"y":58}}', Oj.dump(obj))
415
- end
416
-
417
- def test_json_module_object
418
- obj = One::Two::Three::Deep.new()
419
- dump_to_json_and_load(obj, false)
420
- end
421
-
422
- def test_json_object_dump_create_id
423
- expected = Jeez.new(true, 58)
424
- json = Oj.to_json(expected)
425
- obj = Oj.compat_load(json, :create_additions => true)
426
- assert_equal(expected, obj)
427
- end
428
-
429
- def test_json_object_bad
430
- json = %{{"json_class":"CompatJuice::Junk","x":true}}
431
- begin
432
- Oj.compat_load(json, :create_additions => true)
433
- rescue Exception => e
434
- assert_equal("ArgumentError", e.class().name)
435
- return
436
- end
437
- assert(false, "*** expected an exception")
438
- end
439
-
440
- def test_json_object_create_cache
441
- expected = Jeez.new(true, 58)
442
- json = Oj.to_json(expected)
443
- obj = Oj.compat_load(json, :class_cache => true, :create_additions => true)
444
- assert_equal(expected, obj)
445
- obj = Oj.compat_load(json, :class_cache => false, :create_additions => true)
446
- assert_equal(expected, obj)
447
- end
448
-
449
- def test_json_object_create_id_other
450
- expected = Jeez.new(true, 58)
451
- json = Oj.to_json(expected)
452
- json.gsub!('json_class', '_class_')
453
- obj = Oj.compat_load(json, :create_id => "_class_", :create_additions => true)
454
- assert_equal(expected, obj)
455
- end
456
-
457
- def test_json_object_create_deep
458
- expected = One::Two::Three::Deep.new()
459
- json = Oj.to_json(expected)
460
- obj = Oj.compat_load(json, :create_additions => true)
461
- assert_equal(expected, obj)
462
- end
463
-
464
- def test_range
465
- json = Oj.dump(1..7)
466
- assert_equal('"1..7"', json)
467
- end
468
-
469
- def test_arg_passing
470
- json = Oj.to_json(Argy.new(), :max_nesting=> 40)
471
- assert_equal(%|{"args":"[{:max_nesting=>40}]"}|, json)
472
- end
473
-
474
- def test_bad_unicode
475
- assert_raises() { Oj.to_json("\xE4xy") }
476
- end
477
-
478
- def test_bad_unicode_e2
479
- assert_raises() { Oj.to_json("L\xE2m ") }
480
- end
481
-
482
- def test_bad_unicode_start
483
- assert_raises() { Oj.to_json("\x8abc") }
484
- end
485
-
486
- def test_parse_to_s
487
- s = Stringy.new
488
- assert_equal([1,2], Oj.load(s, :mode => :compat))
489
- end
490
-
491
- def test_parse_large_string
492
- error = assert_raises() { Oj.load(%|{"a":"aaaaaaaaaa\0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"}|) }
493
- assert(error.message.include?('NULL byte in string'))
494
-
495
- error = assert_raises() { Oj.load(%|{"a":"aaaaaaaaaaaaaaaaaaaa }|) }
496
- assert(error.message.include?('quoted string not terminated'))
497
-
498
- json =<<~JSON
499
- {
500
- "a": "\\u3074\\u30fc\\u305f\\u30fc",
501
- "b": "aaaaaaaaaaaaaaaaaaaaaaaaaaaa"
502
- }
503
- JSON
504
- assert_equal("ぴーたー", Oj.load(json)['a'])
505
- end
506
-
507
- def test_parse_large_escaped_string
508
- invalid_json = %|{"a":\"aaaa\\nbbbb\\rcccc\\tddd\\feee\\bf\/\\\\\\u3074\\u30fc\\u305f\\u30fc }|
509
- error = assert_raises() { Oj.load(invalid_json) }
510
- assert(error.message.include?('quoted string not terminated'))
511
-
512
- json = "\"aaaa\\nbbbb\\rcccc\\tddd\\feee\\bf\/\\\\\\u3074\\u30fc\\u305f\\u30fc \""
513
- assert_equal("aaaa\nbbbb\rcccc\tddd\feee\bf/\\ぴーたー ", Oj.load(json))
514
- end
515
-
516
- def dump_and_load(obj, trace=false)
517
- json = Oj.dump(obj)
518
- puts json if trace
519
- loaded = Oj.compat_load(json, :create_additions => true);
520
- if obj.nil?
521
- assert_nil(loaded)
522
- else
523
- assert_equal(obj, loaded)
524
- end
525
- loaded
526
- end
527
-
528
- def dump_to_json_and_load(obj, trace=false)
529
- json = Oj.to_json(obj, :indent => ' ')
530
- puts json if trace
531
- loaded = Oj.compat_load(json, :create_additions => true);
532
- if obj.nil?
533
- assert_nil(loaded)
534
- else
535
- assert_equal(obj, loaded)
536
- end
537
- loaded
538
- end
539
-
540
- end