json-jruby 1.1.2-universal-java-1.5
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.
- data/lib/json.rb +235 -0
- data/lib/json/add/core.rb +127 -0
- data/lib/json/add/rails.rb +58 -0
- data/lib/json/common.rb +354 -0
- data/lib/json/ext.rb +13 -0
- data/lib/json/ext/generator.jar +0 -0
- data/lib/json/ext/parser.jar +0 -0
- data/lib/json/pure.rb +75 -0
- data/lib/json/pure/generator.rb +394 -0
- data/lib/json/pure/parser.rb +259 -0
- data/lib/json/version.rb +9 -0
- data/tests/fixtures/fail1.json +1 -0
- data/tests/fixtures/fail10.json +1 -0
- data/tests/fixtures/fail11.json +1 -0
- data/tests/fixtures/fail12.json +1 -0
- data/tests/fixtures/fail13.json +1 -0
- data/tests/fixtures/fail14.json +1 -0
- data/tests/fixtures/fail18.json +1 -0
- data/tests/fixtures/fail19.json +1 -0
- data/tests/fixtures/fail2.json +1 -0
- data/tests/fixtures/fail20.json +1 -0
- data/tests/fixtures/fail21.json +1 -0
- data/tests/fixtures/fail22.json +1 -0
- data/tests/fixtures/fail23.json +1 -0
- data/tests/fixtures/fail24.json +1 -0
- data/tests/fixtures/fail25.json +1 -0
- data/tests/fixtures/fail27.json +2 -0
- data/tests/fixtures/fail28.json +2 -0
- data/tests/fixtures/fail3.json +1 -0
- data/tests/fixtures/fail4.json +1 -0
- data/tests/fixtures/fail5.json +1 -0
- data/tests/fixtures/fail6.json +1 -0
- data/tests/fixtures/fail7.json +1 -0
- data/tests/fixtures/fail8.json +1 -0
- data/tests/fixtures/fail9.json +1 -0
- data/tests/fixtures/pass1.json +56 -0
- data/tests/fixtures/pass15.json +1 -0
- data/tests/fixtures/pass16.json +1 -0
- data/tests/fixtures/pass17.json +1 -0
- data/tests/fixtures/pass2.json +1 -0
- data/tests/fixtures/pass26.json +1 -0
- data/tests/fixtures/pass3.json +6 -0
- data/tests/runner.rb +26 -0
- data/tests/test_json.rb +294 -0
- data/tests/test_json_addition.rb +144 -0
- data/tests/test_json_fixtures.rb +30 -0
- data/tests/test_json_generate.rb +100 -0
- data/tests/test_json_rails.rb +114 -0
- data/tests/test_json_unicode.rb +61 -0
- metadata +99 -0
data/tests/test_json.rb
ADDED
@@ -0,0 +1,294 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'json'
|
5
|
+
require 'stringio'
|
6
|
+
|
7
|
+
class TC_JSON < Test::Unit::TestCase
|
8
|
+
include JSON
|
9
|
+
|
10
|
+
def setup
|
11
|
+
$KCODE = 'UTF8'
|
12
|
+
@ary = [1, "foo", 3.14, 4711.0, 2.718, nil, [1,-2,3], false, true].map do
|
13
|
+
|x| [x]
|
14
|
+
end
|
15
|
+
@ary_to_parse = ["1", '"foo"', "3.14", "4711.0", "2.718", "null",
|
16
|
+
"[1,-2,3]", "false", "true"].map do
|
17
|
+
|x| "[#{x}]"
|
18
|
+
end
|
19
|
+
@hash = {
|
20
|
+
'a' => 2,
|
21
|
+
'b' => 3.141,
|
22
|
+
'c' => 'c',
|
23
|
+
'd' => [ 1, "b", 3.14 ],
|
24
|
+
'e' => { 'foo' => 'bar' },
|
25
|
+
'g' => "\"\0\037",
|
26
|
+
'h' => 1000.0,
|
27
|
+
'i' => 0.001
|
28
|
+
}
|
29
|
+
@json = '{"a":2,"b":3.141,"c":"c","d":[1,"b",3.14],"e":{"foo":"bar"},' +
|
30
|
+
'"g":"\\"\\u0000\\u001f","h":1.0E3,"i":1.0E-3}'
|
31
|
+
end
|
32
|
+
suite << TC_JSON.suite
|
33
|
+
|
34
|
+
def test_construction
|
35
|
+
parser = JSON::Parser.new('test')
|
36
|
+
assert_equal 'test', parser.source
|
37
|
+
end
|
38
|
+
|
39
|
+
def assert_equal_float(expected, is)
|
40
|
+
assert_in_delta(expected.first, is.first, 1e-2)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_parse_simple_arrays
|
44
|
+
assert_equal([], parse('[]'))
|
45
|
+
assert_equal([], parse(' [ ] '))
|
46
|
+
assert_equal([nil], parse('[null]'))
|
47
|
+
assert_equal([false], parse('[false]'))
|
48
|
+
assert_equal([true], parse('[true]'))
|
49
|
+
assert_equal([-23], parse('[-23]'))
|
50
|
+
assert_equal([23], parse('[23]'))
|
51
|
+
assert_equal([0.23], parse('[0.23]'))
|
52
|
+
assert_equal([0.0], parse('[0e0]'))
|
53
|
+
assert_raises(JSON::ParserError) { parse('[+23.2]') }
|
54
|
+
assert_raises(JSON::ParserError) { parse('[+23]') }
|
55
|
+
assert_raises(JSON::ParserError) { parse('[.23]') }
|
56
|
+
assert_raises(JSON::ParserError) { parse('[023]') }
|
57
|
+
assert_equal_float [3.141], parse('[3.141]')
|
58
|
+
assert_equal_float [-3.141], parse('[-3.141]')
|
59
|
+
assert_equal_float [3.141], parse('[3141e-3]')
|
60
|
+
assert_equal_float [3.141], parse('[3141.1e-3]')
|
61
|
+
assert_equal_float [3.141], parse('[3141E-3]')
|
62
|
+
assert_equal_float [3.141], parse('[3141.0E-3]')
|
63
|
+
assert_equal_float [-3.141], parse('[-3141.0e-3]')
|
64
|
+
assert_equal_float [-3.141], parse('[-3141e-3]')
|
65
|
+
assert_raises(ParserError) { parse('[NaN]') }
|
66
|
+
assert parse('[NaN]', :allow_nan => true).first.nan?
|
67
|
+
assert_raises(ParserError) { parse('[Infinity]') }
|
68
|
+
assert_equal [1.0/0], parse('[Infinity]', :allow_nan => true)
|
69
|
+
assert_raises(ParserError) { parse('[-Infinity]') }
|
70
|
+
assert_equal [-1.0/0], parse('[-Infinity]', :allow_nan => true)
|
71
|
+
assert_equal([""], parse('[""]'))
|
72
|
+
assert_equal(["foobar"], parse('["foobar"]'))
|
73
|
+
assert_equal([{}], parse('[{}]'))
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_parse_simple_objects
|
77
|
+
assert_equal({}, parse('{}'))
|
78
|
+
assert_equal({}, parse(' { } '))
|
79
|
+
assert_equal({ "a" => nil }, parse('{ "a" : null}'))
|
80
|
+
assert_equal({ "a" => nil }, parse('{"a":null}'))
|
81
|
+
assert_equal({ "a" => false }, parse('{ "a" : false } '))
|
82
|
+
assert_equal({ "a" => false }, parse('{"a":false}'))
|
83
|
+
assert_raises(JSON::ParserError) { parse('{false}') }
|
84
|
+
assert_equal({ "a" => true }, parse('{"a":true}'))
|
85
|
+
assert_equal({ "a" => true }, parse(' { "a" : true } '))
|
86
|
+
assert_equal({ "a" => -23 }, parse(' { "a" : -23 } '))
|
87
|
+
assert_equal({ "a" => -23 }, parse(' { "a" : -23 } '))
|
88
|
+
assert_equal({ "a" => 23 }, parse('{"a":23 } '))
|
89
|
+
assert_equal({ "a" => 23 }, parse(' { "a" : 23 } '))
|
90
|
+
assert_equal({ "a" => 0.23 }, parse(' { "a" : 0.23 } '))
|
91
|
+
assert_equal({ "a" => 0.23 }, parse(' { "a" : 0.23 } '))
|
92
|
+
end
|
93
|
+
|
94
|
+
begin
|
95
|
+
require 'permutation'
|
96
|
+
def test_parse_more_complex_arrays
|
97
|
+
a = [ nil, false, true, "foßbar", [ "n€st€d", true ], { "nested" => true, "n€ßt€ð2" => {} }]
|
98
|
+
perms = Permutation.for a
|
99
|
+
perms.each do |perm|
|
100
|
+
orig_ary = perm.project
|
101
|
+
json = pretty_generate(orig_ary)
|
102
|
+
assert_equal orig_ary, parse(json)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
def test_parse_complex_objects
|
107
|
+
a = [ nil, false, true, "foßbar", [ "n€st€d", true ], { "nested" => true, "n€ßt€ð2" => {} }]
|
108
|
+
perms = Permutation.for a
|
109
|
+
perms.each do |perm|
|
110
|
+
s = "a"
|
111
|
+
orig_obj = perm.project.inject({}) { |h, x| h[s.dup] = x; s = s.succ; h }
|
112
|
+
json = pretty_generate(orig_obj)
|
113
|
+
assert_equal orig_obj, parse(json)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
rescue LoadError
|
117
|
+
warn "Skipping permutation tests."
|
118
|
+
end
|
119
|
+
|
120
|
+
def test_parse_arrays
|
121
|
+
assert_equal([1,2,3], parse('[1,2,3]'))
|
122
|
+
assert_equal([1.2,2,3], parse('[1.2,2,3]'))
|
123
|
+
assert_equal([[],[[],[]]], parse('[[],[[],[]]]'))
|
124
|
+
end
|
125
|
+
|
126
|
+
def test_parse_values
|
127
|
+
assert_equal([""], parse('[""]'))
|
128
|
+
assert_equal(["\\"], parse('["\\\\"]'))
|
129
|
+
assert_equal(['"'], parse('["\""]'))
|
130
|
+
assert_equal(['\\"\\'], parse('["\\\\\\"\\\\"]'))
|
131
|
+
assert_equal(["\"\b\n\r\t\0\037"],
|
132
|
+
parse('["\"\b\n\r\t\u0000\u001f"]'))
|
133
|
+
for i in 0 ... @ary.size
|
134
|
+
assert_equal(@ary[i], parse(@ary_to_parse[i]))
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
def test_parse_array
|
139
|
+
assert_equal([], parse('[]'))
|
140
|
+
assert_equal([], parse(' [ ] '))
|
141
|
+
assert_equal([1], parse('[1]'))
|
142
|
+
assert_equal([1], parse(' [ 1 ] '))
|
143
|
+
assert_equal(@ary,
|
144
|
+
parse('[[1],["foo"],[3.14],[47.11e+2],[2718.0E-3],[null],[[1,-2,3]]'\
|
145
|
+
',[false],[true]]'))
|
146
|
+
assert_equal(@ary, parse(%Q{ [ [1] , ["foo"] , [3.14] \t , [47.11e+2]
|
147
|
+
, [2718.0E-3 ],\r[ null] , [[1, -2, 3 ]], [false ],[ true]\n ] }))
|
148
|
+
end
|
149
|
+
|
150
|
+
def test_parse_object
|
151
|
+
assert_equal({}, parse('{}'))
|
152
|
+
assert_equal({}, parse(' { } '))
|
153
|
+
assert_equal({'foo'=>'bar'}, parse('{"foo":"bar"}'))
|
154
|
+
assert_equal({'foo'=>'bar'}, parse(' { "foo" : "bar" } '))
|
155
|
+
end
|
156
|
+
|
157
|
+
def test_parser_reset
|
158
|
+
parser = Parser.new(@json)
|
159
|
+
assert_equal(@hash, parser.parse)
|
160
|
+
assert_equal(@hash, parser.parse)
|
161
|
+
end
|
162
|
+
|
163
|
+
def test_comments
|
164
|
+
json = <<EOT
|
165
|
+
{
|
166
|
+
"key1":"value1", // eol comment
|
167
|
+
"key2":"value2" /* multi line
|
168
|
+
* comment */,
|
169
|
+
"key3":"value3" /* multi line
|
170
|
+
// nested eol comment
|
171
|
+
* comment */
|
172
|
+
}
|
173
|
+
EOT
|
174
|
+
assert_equal(
|
175
|
+
{ "key1" => "value1", "key2" => "value2", "key3" => "value3" },
|
176
|
+
parse(json))
|
177
|
+
json = <<EOT
|
178
|
+
{
|
179
|
+
"key1":"value1" /* multi line
|
180
|
+
// nested eol comment
|
181
|
+
/* illegal nested multi line comment */
|
182
|
+
* comment */
|
183
|
+
}
|
184
|
+
EOT
|
185
|
+
assert_raises(ParserError) { parse(json) }
|
186
|
+
json = <<EOT
|
187
|
+
{
|
188
|
+
"key1":"value1" /* multi line
|
189
|
+
// nested eol comment
|
190
|
+
closed multi comment */
|
191
|
+
and again, throw an Error */
|
192
|
+
}
|
193
|
+
EOT
|
194
|
+
assert_raises(ParserError) { parse(json) }
|
195
|
+
json = <<EOT
|
196
|
+
{
|
197
|
+
"key1":"value1" /*/*/
|
198
|
+
}
|
199
|
+
EOT
|
200
|
+
assert_equal({ "key1" => "value1" }, parse(json))
|
201
|
+
end
|
202
|
+
|
203
|
+
def test_backslash
|
204
|
+
data = [ '\\.(?i:gif|jpe?g|png)$' ]
|
205
|
+
json = '["\\\\.(?i:gif|jpe?g|png)$"]'
|
206
|
+
assert_equal json, JSON.unparse(data)
|
207
|
+
assert_equal data, JSON.parse(json)
|
208
|
+
#
|
209
|
+
data = [ '\\"' ]
|
210
|
+
json = '["\\\\\""]'
|
211
|
+
assert_equal json, JSON.unparse(data)
|
212
|
+
assert_equal data, JSON.parse(json)
|
213
|
+
#
|
214
|
+
json = '["\/"]'
|
215
|
+
data = JSON.parse(json)
|
216
|
+
assert_equal ['/'], data
|
217
|
+
assert_equal json, JSON.unparse(data)
|
218
|
+
#
|
219
|
+
json = '["\""]'
|
220
|
+
data = JSON.parse(json)
|
221
|
+
assert_equal ['"'], data
|
222
|
+
assert_equal json, JSON.unparse(data)
|
223
|
+
json = '["\\\'"]'
|
224
|
+
data = JSON.parse(json)
|
225
|
+
assert_equal ["'"], data
|
226
|
+
assert_equal '["\'"]', JSON.unparse(data)
|
227
|
+
end
|
228
|
+
|
229
|
+
def test_wrong_inputs
|
230
|
+
assert_raises(ParserError) { JSON.parse('"foo"') }
|
231
|
+
assert_raises(ParserError) { JSON.parse('123') }
|
232
|
+
assert_raises(ParserError) { JSON.parse('[] bla') }
|
233
|
+
assert_raises(ParserError) { JSON.parse('[] 1') }
|
234
|
+
assert_raises(ParserError) { JSON.parse('[] []') }
|
235
|
+
assert_raises(ParserError) { JSON.parse('[] {}') }
|
236
|
+
assert_raises(ParserError) { JSON.parse('{} []') }
|
237
|
+
assert_raises(ParserError) { JSON.parse('{} {}') }
|
238
|
+
assert_raises(ParserError) { JSON.parse('[NULL]') }
|
239
|
+
assert_raises(ParserError) { JSON.parse('[FALSE]') }
|
240
|
+
assert_raises(ParserError) { JSON.parse('[TRUE]') }
|
241
|
+
assert_raises(ParserError) { JSON.parse('[07] ') }
|
242
|
+
assert_raises(ParserError) { JSON.parse('[0a]') }
|
243
|
+
assert_raises(ParserError) { JSON.parse('[1.]') }
|
244
|
+
assert_raises(ParserError) { JSON.parse(' ') }
|
245
|
+
end
|
246
|
+
|
247
|
+
def test_nesting
|
248
|
+
assert_raises(JSON::NestingError) { JSON.parse '[[]]', :max_nesting => 1 }
|
249
|
+
assert_raises(JSON::NestingError) { JSON.parser.new('[[]]', :max_nesting => 1).parse }
|
250
|
+
assert_equal [[]], JSON.parse('[[]]', :max_nesting => 2)
|
251
|
+
too_deep = '[[[[[[[[[[[[[[[[[[[["Too deep"]]]]]]]]]]]]]]]]]]]]'
|
252
|
+
too_deep_ary = eval too_deep
|
253
|
+
assert_raises(JSON::NestingError) { JSON.parse too_deep }
|
254
|
+
assert_raises(JSON::NestingError) { JSON.parser.new(too_deep).parse }
|
255
|
+
assert_raises(JSON::NestingError) { JSON.parse too_deep, :max_nesting => 19 }
|
256
|
+
ok = JSON.parse too_deep, :max_nesting => 20
|
257
|
+
assert_equal too_deep_ary, ok
|
258
|
+
ok = JSON.parse too_deep, :max_nesting => nil
|
259
|
+
assert_equal too_deep_ary, ok
|
260
|
+
ok = JSON.parse too_deep, :max_nesting => false
|
261
|
+
assert_equal too_deep_ary, ok
|
262
|
+
ok = JSON.parse too_deep, :max_nesting => 0
|
263
|
+
assert_equal too_deep_ary, ok
|
264
|
+
assert_raises(JSON::NestingError) { JSON.generate [[]], :max_nesting => 1 }
|
265
|
+
assert_equal '[[]]', JSON.generate([[]], :max_nesting => 2)
|
266
|
+
assert_raises(JSON::NestingError) { JSON.generate too_deep_ary }
|
267
|
+
assert_raises(JSON::NestingError) { JSON.generate too_deep_ary, :max_nesting => 19 }
|
268
|
+
ok = JSON.generate too_deep_ary, :max_nesting => 20
|
269
|
+
assert_equal too_deep, ok
|
270
|
+
ok = JSON.generate too_deep_ary, :max_nesting => nil
|
271
|
+
assert_equal too_deep, ok
|
272
|
+
ok = JSON.generate too_deep_ary, :max_nesting => false
|
273
|
+
assert_equal too_deep, ok
|
274
|
+
ok = JSON.generate too_deep_ary, :max_nesting => 0
|
275
|
+
assert_equal too_deep, ok
|
276
|
+
end
|
277
|
+
|
278
|
+
def test_load_dump
|
279
|
+
too_deep = '[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]'
|
280
|
+
assert_equal too_deep, JSON.dump(eval(too_deep))
|
281
|
+
assert_kind_of String, Marshal.dump(eval(too_deep))
|
282
|
+
assert_raises(ArgumentError) { JSON.dump(eval(too_deep), 19) }
|
283
|
+
assert_raises(ArgumentError) { Marshal.dump(eval(too_deep), 19) }
|
284
|
+
assert_equal too_deep, JSON.dump(eval(too_deep), 20)
|
285
|
+
assert_kind_of String, Marshal.dump(eval(too_deep), 20)
|
286
|
+
output = StringIO.new
|
287
|
+
JSON.dump(eval(too_deep), output)
|
288
|
+
assert_equal too_deep, output.string
|
289
|
+
output = StringIO.new
|
290
|
+
JSON.dump(eval(too_deep), output, 20)
|
291
|
+
assert_equal too_deep, output.string
|
292
|
+
end
|
293
|
+
end
|
294
|
+
# vim: set et sw=2 ts=2:
|
@@ -0,0 +1,144 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'json/add/core'
|
5
|
+
require 'date'
|
6
|
+
|
7
|
+
class TC_JSONAddition < Test::Unit::TestCase
|
8
|
+
include JSON
|
9
|
+
|
10
|
+
class A
|
11
|
+
def initialize(a)
|
12
|
+
@a = a
|
13
|
+
end
|
14
|
+
|
15
|
+
attr_reader :a
|
16
|
+
|
17
|
+
def ==(other)
|
18
|
+
a == other.a
|
19
|
+
end
|
20
|
+
|
21
|
+
def self.json_create(object)
|
22
|
+
new(*object['args'])
|
23
|
+
end
|
24
|
+
|
25
|
+
def to_json(*args)
|
26
|
+
{
|
27
|
+
'json_class' => self.class.name,
|
28
|
+
'args' => [ @a ],
|
29
|
+
}.to_json(*args)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
class B
|
34
|
+
def to_json(*args)
|
35
|
+
{
|
36
|
+
'json_class' => self.class.name,
|
37
|
+
}.to_json(*args)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
class C
|
42
|
+
def self.json_creatable?
|
43
|
+
false
|
44
|
+
end
|
45
|
+
|
46
|
+
def to_json(*args)
|
47
|
+
{
|
48
|
+
'json_class' => 'TC_JSONAddition::Nix',
|
49
|
+
}.to_json(*args)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def setup
|
54
|
+
$KCODE = 'UTF8'
|
55
|
+
end
|
56
|
+
|
57
|
+
def test_extended_json
|
58
|
+
a = A.new(666)
|
59
|
+
assert A.json_creatable?
|
60
|
+
json = generate(a)
|
61
|
+
a_again = JSON.parse(json)
|
62
|
+
assert_kind_of a.class, a_again
|
63
|
+
assert_equal a, a_again
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_extended_json_disabled
|
67
|
+
a = A.new(666)
|
68
|
+
assert A.json_creatable?
|
69
|
+
json = generate(a)
|
70
|
+
a_again = JSON.parse(json, :create_additions => true)
|
71
|
+
assert_kind_of a.class, a_again
|
72
|
+
assert_equal a, a_again
|
73
|
+
a_hash = JSON.parse(json, :create_additions => false)
|
74
|
+
assert_kind_of Hash, a_hash
|
75
|
+
assert_equal(
|
76
|
+
{"args"=>[666], "json_class"=>"TC_JSONAddition::A"}.sort_by { |k,| k },
|
77
|
+
a_hash.sort_by { |k,| k }
|
78
|
+
)
|
79
|
+
end
|
80
|
+
|
81
|
+
def test_extended_json_fail
|
82
|
+
b = B.new
|
83
|
+
assert !B.json_creatable?
|
84
|
+
json = generate(b)
|
85
|
+
assert_equal({ 'json_class' => B.name }, JSON.parse(json))
|
86
|
+
end
|
87
|
+
|
88
|
+
def test_extended_json_fail
|
89
|
+
c = C.new
|
90
|
+
assert !C.json_creatable?
|
91
|
+
json = generate(c)
|
92
|
+
assert_raises(ArgumentError) { JSON.parse(json) }
|
93
|
+
end
|
94
|
+
|
95
|
+
def test_raw_strings
|
96
|
+
raw = ''
|
97
|
+
raw_array = []
|
98
|
+
for i in 0..255
|
99
|
+
raw << i
|
100
|
+
raw_array << i
|
101
|
+
end
|
102
|
+
json = raw.to_json_raw
|
103
|
+
json_raw_object = raw.to_json_raw_object
|
104
|
+
hash = { 'json_class' => 'String', 'raw'=> raw_array }
|
105
|
+
assert_equal hash, json_raw_object
|
106
|
+
json_raw = <<EOT.chomp
|
107
|
+
{\"json_class\":\"String\",\"raw\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255]}
|
108
|
+
EOT
|
109
|
+
# "
|
110
|
+
assert_equal json_raw, json
|
111
|
+
raw_again = JSON.parse(json)
|
112
|
+
assert_equal raw, raw_again
|
113
|
+
end
|
114
|
+
|
115
|
+
def test_core
|
116
|
+
t = Time.now
|
117
|
+
assert_equal t, JSON(JSON(t))
|
118
|
+
d = Date.today
|
119
|
+
assert_equal d, JSON(JSON(d))
|
120
|
+
d = DateTime.civil(2007, 6, 14, 14, 57, 10, Rational(1, 12), 2299161)
|
121
|
+
assert_equal d, JSON(JSON(d))
|
122
|
+
assert_equal 1..10, JSON(JSON(1..10))
|
123
|
+
assert_equal 1...10, JSON(JSON(1...10))
|
124
|
+
assert_equal "a".."c", JSON(JSON("a".."c"))
|
125
|
+
assert_equal "a"..."c", JSON(JSON("a"..."c"))
|
126
|
+
struct = Struct.new 'MyJsonStruct', :foo, :bar
|
127
|
+
s = struct.new 4711, 'foot'
|
128
|
+
assert_equal s, JSON(JSON(s))
|
129
|
+
struct = Struct.new :foo, :bar
|
130
|
+
s = struct.new 4711, 'foot'
|
131
|
+
assert_raises(JSONError) { JSON(s) }
|
132
|
+
begin
|
133
|
+
raise TypeError, "test me"
|
134
|
+
rescue TypeError => e
|
135
|
+
e_json = JSON.generate e
|
136
|
+
e_again = JSON e_json
|
137
|
+
assert_kind_of TypeError, e_again
|
138
|
+
assert_equal e.message, e_again.message
|
139
|
+
assert_equal e.backtrace, e_again.backtrace
|
140
|
+
end
|
141
|
+
assert_equal /foo/, JSON(JSON(/foo/))
|
142
|
+
assert_equal /foo/i, JSON(JSON(/foo/i))
|
143
|
+
end
|
144
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'json'
|
5
|
+
|
6
|
+
class TC_JSONFixtures < Test::Unit::TestCase
|
7
|
+
def setup
|
8
|
+
$KCODE = 'UTF8'
|
9
|
+
fixtures = File.join(File.dirname(__FILE__), 'fixtures/*.json')
|
10
|
+
passed, failed = Dir[fixtures].partition { |f| f['pass'] }
|
11
|
+
@passed = passed.inject([]) { |a, f| a << [ f, File.read(f) ] }.sort
|
12
|
+
@failed = failed.inject([]) { |a, f| a << [ f, File.read(f) ] }.sort
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_passing
|
16
|
+
for name, source in @passed
|
17
|
+
assert JSON.parse(source),
|
18
|
+
"Did not pass for fixture '#{name}'"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_failing
|
23
|
+
for name, source in @failed
|
24
|
+
assert_raises(JSON::ParserError, JSON::NestingError,
|
25
|
+
"Did not fail for fixture '#{name}'") do
|
26
|
+
JSON.parse(source)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|