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_saj.rb DELETED
@@ -1,186 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # encoding: UTF-8
3
-
4
- $: << File.dirname(__FILE__)
5
-
6
- require 'helper'
7
-
8
- $json = %{{
9
- "array": [
10
- {
11
- "num" : 3,
12
- "string": "message",
13
- "hash" : {
14
- "h2" : {
15
- "a" : [ 1, 2, 3 ]
16
- }
17
- }
18
- }
19
- ],
20
- "boolean" : true
21
- }}
22
-
23
- class AllSaj < Oj::Saj
24
- attr_accessor :calls
25
-
26
- def initialize()
27
- @calls = []
28
- end
29
-
30
- def hash_start(key)
31
- @calls << [:hash_start, key]
32
- end
33
-
34
- def hash_end(key)
35
- @calls << [:hash_end, key]
36
- end
37
-
38
- def array_start(key)
39
- @calls << [:array_start, key]
40
- end
41
-
42
- def array_end(key)
43
- @calls << [:array_end, key]
44
- end
45
-
46
- def add_value(value, key)
47
- @calls << [:add_value, value, key]
48
- end
49
-
50
- def error(message, line, column)
51
- @calls << [:error, message, line, column]
52
- end
53
-
54
- end # AllSaj
55
-
56
- class SajTest < Minitest::Test
57
-
58
- def setup
59
- @default_options = Oj.default_options
60
- end
61
-
62
- def teardown
63
- Oj.default_options = @default_options
64
- end
65
-
66
- def test_nil
67
- handler = AllSaj.new()
68
- json = %{null}
69
- Oj.saj_parse(handler, json)
70
- assert_equal([[:add_value, nil, nil]], handler.calls)
71
- end
72
-
73
- def test_true
74
- handler = AllSaj.new()
75
- json = %{true}
76
- Oj.saj_parse(handler, json)
77
- assert_equal([[:add_value, true, nil]], handler.calls)
78
- end
79
-
80
- def test_false
81
- handler = AllSaj.new()
82
- json = %{false}
83
- Oj.saj_parse(handler, json)
84
- assert_equal([[:add_value, false, nil]], handler.calls)
85
- end
86
-
87
- def test_string
88
- handler = AllSaj.new()
89
- json = %{"a string"}
90
- Oj.saj_parse(handler, json)
91
- assert_equal([[:add_value, 'a string', nil]], handler.calls)
92
- end
93
-
94
- def test_fixnum
95
- handler = AllSaj.new()
96
- json = %{12345}
97
- Oj.saj_parse(handler, json)
98
- assert_equal([[:add_value, 12345, nil]], handler.calls)
99
- end
100
-
101
- def test_float
102
- handler = AllSaj.new()
103
- json = %{12345.6789}
104
- Oj.saj_parse(handler, json)
105
- assert_equal([[:add_value, 12345.6789, nil]], handler.calls)
106
- end
107
-
108
- def test_float_exp
109
- handler = AllSaj.new()
110
- json = %{12345.6789e7}
111
- Oj.saj_parse(handler, json)
112
- assert_equal(1, handler.calls.size)
113
- assert_equal(:add_value, handler.calls[0][0])
114
- assert_equal((12345.6789e7 * 10000).to_i, (handler.calls[0][1] * 10000).to_i)
115
- end
116
-
117
- def test_array_empty
118
- handler = AllSaj.new()
119
- json = %{[]}
120
- Oj.saj_parse(handler, json)
121
- assert_equal([[:array_start, nil],
122
- [:array_end, nil]], handler.calls)
123
- end
124
-
125
- def test_array
126
- handler = AllSaj.new()
127
- json = %{[true,false]}
128
- Oj.saj_parse(handler, json)
129
- assert_equal([[:array_start, nil],
130
- [:add_value, true, nil],
131
- [:add_value, false, nil],
132
- [:array_end, nil]], handler.calls)
133
- end
134
-
135
- def test_hash_empty
136
- handler = AllSaj.new()
137
- json = %{{}}
138
- Oj.saj_parse(handler, json)
139
- assert_equal([[:hash_start, nil],
140
- [:hash_end, nil]], handler.calls)
141
- end
142
-
143
- def test_hash
144
- handler = AllSaj.new()
145
- json = %{{"one":true,"two":false}}
146
- Oj.saj_parse(handler, json)
147
- assert_equal([[:hash_start, nil],
148
- [:add_value, true, 'one'],
149
- [:add_value, false, 'two'],
150
- [:hash_end, nil]], handler.calls)
151
- end
152
-
153
- def test_full
154
- handler = AllSaj.new()
155
- Oj.saj_parse(handler, $json)
156
- assert_equal([[:hash_start, nil],
157
- [:array_start, 'array'],
158
- [:hash_start, nil],
159
- [:add_value, 3, 'num'],
160
- [:add_value, 'message', 'string'],
161
- [:hash_start, 'hash'],
162
- [:hash_start, 'h2'],
163
- [:array_start, 'a'],
164
- [:add_value, 1, nil],
165
- [:add_value, 2, nil],
166
- [:add_value, 3, nil],
167
- [:array_end, 'a'],
168
- [:hash_end, 'h2'],
169
- [:hash_end, 'hash'],
170
- [:hash_end, nil],
171
- [:array_end, 'array'],
172
- [:add_value, true, 'boolean'],
173
- [:hash_end, nil]], handler.calls)
174
- end
175
-
176
- def test_fixnum_bad
177
- handler = AllSaj.new()
178
- json = %{12345xyz}
179
- Oj.saj_parse(handler, json)
180
- assert_equal([:add_value, 12345, nil], handler.calls.first)
181
- type, message, line, column = handler.calls.last
182
- assert_equal([:error, 1, 6], [type, line, column])
183
- assert_match(%r{invalid format, extra characters at line 1, column 6 \[(?:[A-Za-z]:\/)?(?:[a-z\.]+/)*saj\.c:\d+\]}, message)
184
- end
185
-
186
- end
data/test/test_scp.rb DELETED
@@ -1,431 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # encoding: UTF-8
3
-
4
- $: << File.dirname(__FILE__)
5
-
6
- require 'helper'
7
- require 'socket'
8
- require 'stringio'
9
-
10
- $json = %{{
11
- "array": [
12
- {
13
- "num" : 3,
14
- "string": "message",
15
- "hash" : {
16
- "h2" : {
17
- "a" : [ 1, 2, 3 ]
18
- }
19
- }
20
- }
21
- ],
22
- "boolean" : true
23
- }}
24
-
25
- class NoHandler < Oj::ScHandler
26
- def initialize()
27
- end
28
- end
29
-
30
- class AllHandler < Oj::ScHandler
31
- attr_accessor :calls
32
-
33
- def initialize()
34
- @calls = []
35
- end
36
-
37
- def hash_start()
38
- @calls << [:hash_start]
39
- {}
40
- end
41
-
42
- def hash_end()
43
- @calls << [:hash_end]
44
- end
45
-
46
- def hash_key(key)
47
- @calls << [:hash_key, key]
48
- return 'too' if 'two' == key
49
- return :symbol if 'symbol' == key
50
- key
51
- end
52
-
53
- def array_start()
54
- @calls << [:array_start]
55
- []
56
- end
57
-
58
- def array_end()
59
- @calls << [:array_end]
60
- end
61
-
62
- def add_value(value)
63
- @calls << [:add_value, value]
64
- end
65
-
66
- def hash_set(h, key, value)
67
- @calls << [:hash_set, key, value]
68
- end
69
-
70
- def array_append(a, value)
71
- @calls << [:array_append, value]
72
- end
73
-
74
- end # AllHandler
75
-
76
- class Closer < AllHandler
77
- attr_accessor :io
78
- def initialize(io)
79
- super()
80
- @io = io
81
- end
82
-
83
- def hash_start()
84
- @calls << [:hash_start]
85
- @io.close
86
- {}
87
- end
88
-
89
- def hash_set(h, key, value)
90
- @calls << [:hash_set, key, value]
91
- @io.close
92
- end
93
-
94
- end # Closer
95
-
96
- class ScpTest < Minitest::Test
97
-
98
- def setup
99
- @default_options = Oj.default_options
100
- end
101
-
102
- def teardown
103
- Oj.default_options = @default_options
104
- end
105
-
106
- def test_nil
107
- handler = AllHandler.new()
108
- json = %{null}
109
- Oj.sc_parse(handler, json)
110
- assert_equal([[:add_value, nil]], handler.calls)
111
- end
112
-
113
- def test_true
114
- handler = AllHandler.new()
115
- json = %{true}
116
- Oj.sc_parse(handler, json)
117
- assert_equal([[:add_value, true]], handler.calls)
118
- end
119
-
120
- def test_false
121
- handler = AllHandler.new()
122
- json = %{false}
123
- Oj.sc_parse(handler, json)
124
- assert_equal([[:add_value, false]], handler.calls)
125
- end
126
-
127
- def test_string
128
- handler = AllHandler.new()
129
- json = %{"a string"}
130
- Oj.sc_parse(handler, json)
131
- assert_equal([[:add_value, 'a string']], handler.calls)
132
- end
133
-
134
- def test_fixnum
135
- handler = AllHandler.new()
136
- json = %{12345}
137
- Oj.sc_parse(handler, json)
138
- assert_equal([[:add_value, 12345]], handler.calls)
139
- end
140
-
141
- def test_float
142
- handler = AllHandler.new()
143
- json = %{12345.6789}
144
- Oj.sc_parse(handler, json)
145
- assert_equal([[:add_value, 12345.6789]], handler.calls)
146
- end
147
-
148
- def test_float_exp
149
- handler = AllHandler.new()
150
- json = %{12345.6789e7}
151
- Oj.sc_parse(handler, json)
152
- assert_equal(1, handler.calls.size)
153
- assert_equal(:add_value, handler.calls[0][0])
154
- assert_equal((12345.6789e7 * 10000).to_i, (handler.calls[0][1] * 10000).to_i)
155
- end
156
-
157
- def test_array_empty
158
- handler = AllHandler.new()
159
- json = %{[]}
160
- Oj.sc_parse(handler, json)
161
- assert_equal([[:array_start],
162
- [:array_end],
163
- [:add_value, []]], handler.calls)
164
- end
165
-
166
- def test_array
167
- handler = AllHandler.new()
168
- json = %{[true,false]}
169
- Oj.sc_parse(handler, json)
170
- assert_equal([[:array_start],
171
- [:array_append, true],
172
- [:array_append, false],
173
- [:array_end],
174
- [:add_value, []]], handler.calls)
175
- end
176
-
177
- def test_hash_empty
178
- handler = AllHandler.new()
179
- json = %{{}}
180
- Oj.sc_parse(handler, json)
181
- assert_equal([[:hash_start],
182
- [:hash_end],
183
- [:add_value, {}]], handler.calls)
184
- end
185
-
186
- def test_hash
187
- handler = AllHandler.new()
188
- json = %{{"one":true,"two":false}}
189
- Oj.sc_parse(handler, json)
190
- assert_equal([[:hash_start],
191
- [:hash_key, 'one'],
192
- [:hash_set, 'one', true],
193
- [:hash_key, 'two'],
194
- [:hash_set, 'too', false],
195
- [:hash_end],
196
- [:add_value, {}]], handler.calls)
197
- end
198
-
199
- def test_hash_sym
200
- handler = AllHandler.new()
201
- json = %{{"one":true,"two":false}}
202
- Oj.sc_parse(handler, json, :symbol_keys => true)
203
- assert_equal([[:hash_start],
204
- [:hash_key, 'one'],
205
- [:hash_set, 'one', true],
206
- [:hash_key, 'two'],
207
- [:hash_set, 'too', false],
208
- [:hash_end],
209
- [:add_value, {}]], handler.calls)
210
- end
211
-
212
- def test_symbol_hash_key_without_symbol_keys
213
- handler = AllHandler.new()
214
- json = %{{"one":true,"symbol":false}}
215
- Oj.sc_parse(handler, json)
216
- assert_equal([[:hash_start],
217
- [:hash_key, 'one'],
218
- [:hash_set, 'one', true],
219
- [:hash_key, 'symbol'],
220
- [:hash_set, :symbol, false],
221
- [:hash_end],
222
- [:add_value, {}]], handler.calls)
223
- end
224
-
225
- def test_full
226
- handler = AllHandler.new()
227
- Oj.sc_parse(handler, $json)
228
- assert_equal([[:hash_start],
229
- [:hash_key, 'array'],
230
- [:array_start],
231
- [:hash_start],
232
- [:hash_key, 'num'],
233
- [:hash_set, "num", 3],
234
- [:hash_key, 'string'],
235
- [:hash_set, "string", "message"],
236
- [:hash_key, 'hash'],
237
- [:hash_start],
238
- [:hash_key, 'h2'],
239
- [:hash_start],
240
- [:hash_key, 'a'],
241
- [:array_start],
242
- [:array_append, 1],
243
- [:array_append, 2],
244
- [:array_append, 3],
245
- [:array_end],
246
- [:hash_set, "a", []],
247
- [:hash_end],
248
- [:hash_set, "h2", {}],
249
- [:hash_end],
250
- [:hash_set, "hash", {}],
251
- [:hash_end],
252
- [:array_append, {}],
253
- [:array_end],
254
- [:hash_set, "array", []],
255
- [:hash_key, 'boolean'],
256
- [:hash_set, "boolean", true],
257
- [:hash_end],
258
- [:add_value, {}]], handler.calls)
259
- end
260
-
261
- def test_double
262
- handler = AllHandler.new()
263
- json = %{{"one":true,"two":false}{"three":true,"four":false}}
264
- Oj.sc_parse(handler, json)
265
- assert_equal([[:hash_start],
266
- [:hash_key, 'one'],
267
- [:hash_set, 'one', true],
268
- [:hash_key, 'two'],
269
- [:hash_set, 'too', false],
270
- [:hash_end],
271
- [:add_value, {}],
272
- [:hash_start],
273
- [:hash_key, 'three'],
274
- [:hash_set, 'three', true],
275
- [:hash_key, 'four'],
276
- [:hash_set, 'four', false],
277
- [:hash_end],
278
- [:add_value, {}]], handler.calls)
279
- end
280
-
281
- def test_double_io
282
- handler = AllHandler.new()
283
- json = %{{"one":true,"two":false}{"three":true,"four":false}}
284
- Oj.sc_parse(handler, StringIO.new(json))
285
- assert_equal([[:hash_start],
286
- [:hash_key, 'one'],
287
- [:hash_set, 'one', true],
288
- [:hash_key, 'two'],
289
- [:hash_set, 'too', false],
290
- [:hash_end],
291
- [:add_value, {}],
292
- [:hash_start],
293
- [:hash_key, 'three'],
294
- [:hash_set, 'three', true],
295
- [:hash_key, 'four'],
296
- [:hash_set, 'four', false],
297
- [:hash_end],
298
- [:add_value, {}]], handler.calls)
299
- end
300
-
301
- def test_none
302
- handler = NoHandler.new()
303
- Oj.sc_parse(handler, $json)
304
- end
305
-
306
- def test_fixnum_bad
307
- handler = AllHandler.new()
308
- json = %{12345xyz}
309
- assert_raises Oj::ParseError do
310
- Oj.sc_parse(handler, json)
311
- end
312
- end
313
-
314
- def test_null_string
315
- handler = AllHandler.new()
316
- json = %{"\0"}
317
- assert_raises Oj::ParseError do
318
- Oj.sc_parse(handler, json)
319
- end
320
- end
321
-
322
- def test_pipe
323
- skip 'needs fork' unless Process.respond_to?(:fork)
324
-
325
- handler = AllHandler.new()
326
- json = %{{"one":true,"two":false}}
327
- IO.pipe do |read_io, write_io|
328
- if fork
329
- write_io.close
330
- Oj.sc_parse(handler, read_io)
331
- read_io.close
332
- assert_equal([[:hash_start],
333
- [:hash_key, 'one'],
334
- [:hash_set, 'one', true],
335
- [:hash_key, 'two'],
336
- [:hash_set, 'too', false],
337
- [:hash_end],
338
- [:add_value, {}]], handler.calls)
339
- else
340
- read_io.close
341
- write_io.write json
342
- write_io.close
343
- Process.exit(0)
344
- end
345
- end
346
- end
347
-
348
- def test_bad_bignum
349
- if '2.4.0' < RUBY_VERSION
350
- handler = AllHandler.new()
351
- json = %|{"big":-e123456789}|
352
- assert_raises Exception do # Can be either Oj::ParseError or ArgumentError depending on Ruby version
353
- Oj.sc_parse(handler, json)
354
- end
355
- end
356
- end
357
-
358
- def test_pipe_close
359
- skip 'needs fork' unless Process.respond_to?(:fork)
360
-
361
- json = %{{"one":true,"two":false}}
362
- IO.pipe do |read_io, write_io|
363
- if fork
364
- write_io.close
365
- handler = Closer.new(read_io)
366
- err = nil
367
- begin
368
- Oj.sc_parse(handler, read_io)
369
- read_io.close
370
- rescue Exception => e
371
- err = e.class.to_s
372
- end
373
- assert_equal("IOError", err)
374
- assert_equal([[:hash_start],
375
- [:hash_key, 'one'],
376
- [:hash_set, 'one', true]], handler.calls)
377
- else
378
- read_io.close
379
- write_io.write json[0..11]
380
- sleep(0.1)
381
- begin
382
- write_io.write json[12..-1]
383
- rescue Exception => e
384
- # ignore, should fail to write
385
- end
386
- write_io.close
387
- Process.exit(0)
388
- end
389
- end
390
- end
391
-
392
- def test_socket_close
393
- json = %{{"one":true,"two":false}}
394
- begin
395
- server = TCPServer.new(8080)
396
- rescue
397
- # Not able to open a socket to run the test. Might be Travis.
398
- return
399
- end
400
- Thread.start(json) do |j|
401
- c = server.accept()
402
- c.puts json[0..11]
403
- 10.times {
404
- break if c.closed?
405
- sleep(0.1)
406
- }
407
- unless c.closed?
408
- c.puts json[12..-1]
409
- c.close
410
- end
411
- end
412
- begin
413
- sock = TCPSocket.new('localhost', 8080)
414
- rescue
415
- # Not able to open a socket to run the test. Might be Travis.
416
- return
417
- end
418
- handler = Closer.new(sock)
419
- err = nil
420
- begin
421
- Oj.sc_parse(handler, sock)
422
- rescue Exception => e
423
- err = e.class.to_s
424
- end
425
- assert_equal("IOError", err)
426
- assert_equal([[:hash_start],
427
- [:hash_key, 'one'],
428
- [:hash_set, 'one', true]], handler.calls)
429
- end
430
-
431
- end