-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjsonply_test.py
executable file
·339 lines (266 loc) · 11.5 KB
/
jsonply_test.py
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#!/usr/bin/python2.5
# -*- coding: utf-8 -*-#
# Copyright 2009 DeWitt Clinton All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
'''Unit tests for the jsonply library.'''
__author__ = '[email protected]'
import unittest
import jsonply
class JsonPlyTest(unittest.TestCase):
'''Tests the module-level jsonply methods.'''
def testParse(self):
'''Test the module-level parse method.'''
actual = jsonply.parse('{"foo": "bar", "arr": [1, {"a": -2.50e4}, true]}')
self.assertEqual(True, actual['arr'][2])
class JsonParserTest(unittest.TestCase):
'''Tests the JsonParser methods.'''
def setUp(self):
self.parser = jsonply.JsonParser()
# TODO(dewitt): Capture and check the SyntaxErrors
# def testEmptyString(self):
# '''Tests that an invalid empty input returns None.'''
# actual = self.parser.parse('')
# self.assertEquals(None, actual)
def testEmptylist(self):
'''Tests that an empty list returns [].'''
actual = self.parser.parse('[]')
self.assertEquals([], actual)
def testEmptyDict(self):
'''Tests that an empty dict returns {}.'''
actual = self.parser.parse('{}')
self.assertEquals({}, actual)
def testLeadingSpace(self):
'''Tests leading space is ignored.'''
actual = self.parser.parse(' {}')
self.assertEquals({}, actual)
def testLeadingWhitespace(self):
'''Tests leading whitespace is ignored.'''
actual = self.parser.parse(' \t \n \r {}')
self.assertEquals({}, actual)
def testTrailingSpace(self):
'''Tests trailing space is ignored.'''
actual = self.parser.parse('{} ')
self.assertEquals({}, actual)
def testTrailingWhitespace(self):
'''Tests trailing whitespace is ignored.'''
actual = self.parser.parse('{} \t \n \r ')
self.assertEquals({}, actual)
def testEmbeddedSpace(self):
'''Tests embedded space is ignored.'''
actual = self.parser.parse('{ }')
self.assertEquals({}, actual)
def testEmbeddedWhitespace(self):
'''Tests embedded whitespace is ignored.'''
actual = self.parser.parse('{ \t \n \r }')
self.assertEquals({}, actual)
def testTrue(self):
'''Tests that the value for 'true' is parsed.'''
actual = self.parser.parse('[true]')
self.assertEquals(True, actual[0])
def testFalse(self):
'''Tests that the value for 'false' is parsed.'''
actual = self.parser.parse('[false]')
self.assertEquals(False, actual[0])
def testNull(self):
'''Tests that the value for 'null' is parsed.'''
actual = self.parser.parse('[null]')
self.assertEquals(None, actual[0])
def testEmptyString(self):
'''Tests that an empty string is parsed.'''
actual = self.parser.parse('[""]')
self.assertEquals('', actual[0])
def testUnescapedString(self):
'''Tests that unescaped string sequences are parsed.'''
actual = self.parser.parse('["abcdefg"]')
self.assertEquals('abcdefg', actual[0])
def testLeadingSpaceString(self):
'''Tests that leading string spaces are parsed.'''
actual = self.parser.parse('[" a"]')
self.assertEquals(' a', actual[0])
def testTrailingSpaceString(self):
'''Tests that trailing string spaces are parsed.'''
actual = self.parser.parse('["a "]')
self.assertEquals('a ', actual[0])
def testEmbeddedSpaceString(self):
'''Tests that embedded string spaces are parsed.'''
actual = self.parser.parse('["a b"]')
self.assertEquals('a b', actual[0])
# TODO(dewitt): Test that embedded whitespaces raise syntax errors
def testEscapedQuotationMarkString(self):
'''Tests that escaped quotes are parsed.'''
actual = self.parser.parse('["\\""]')
self.assertEquals('"', actual[0])
def testEscapedReverseSolidusString(self):
'''Tests that escaped '\\' chars are parsed.'''
actual = self.parser.parse('["\\\\"]')
self.assertEquals('\\', actual[0])
def testEscapedSolidusString(self):
'''Tests that escaped '/' chars are parsed.'''
actual = self.parser.parse('["\\/"]')
self.assertEquals('/', actual[0])
def testEscapedBackspaceString(self):
'''Tests that escaped '\\b' chars are parsed.'''
actual = self.parser.parse('["\\b"]')
self.assertEquals('\b', actual[0])
def testEscapedFormFeedString(self):
'''Tests that escaped '\\f' chars are parsed.'''
actual = self.parser.parse('["\\f"]')
self.assertEquals('\f', actual[0])
def testEscapedCarriageReturnString(self):
'''Tests that escaped '\\r' chars are parsed.'''
actual = self.parser.parse('["\\r"]')
self.assertEquals('\r', actual[0])
def testEscapedLineFeedString(self):
'''Tests that escaped '\\t' chars are parsed.'''
actual = self.parser.parse('["\\t"]')
self.assertEquals('\t', actual[0])
def testEscapedTabString(self):
'''Tests that escaped '\\n' chars are parsed.'''
actual = self.parser.parse('["\\n"]')
self.assertEquals('\n', actual[0])
def testEscapedUnicodeHexAscii(self):
'''Tests that escaped 'uXXXX' chars are parsed.'''
actual = self.parser.parse('["\\u0061"]')
self.assertEquals('a', actual[0])
def testEscapedUnicodeHexNonAscii(self):
'''Tests that an escaped 'イ' character is parsed.'''
actual = self.parser.parse('["\\u30A4"]')
self.assertEquals(u'\u30A4', actual[0])
def testMixedString(self):
'''Tests that strings containing multiple chars are parsed.'''
actual = self.parser.parse('[" a\\u30A4b \\r\\u0063 "]')
self.assertEquals(u' a\u30A4b \rc ', actual[0])
def testSingleDigitInt(self):
'''Tests that zero is parsed correctly.'''
actual = self.parser.parse('[0]')
self.assertEquals(0, actual[0])
def testSingleDigitInt(self):
'''Tests that positive single digit ints are parsed correctly.'''
actual = self.parser.parse('[1]')
self.assertEquals(1, actual[0])
def testMultiDigitInt(self):
'''Tests that positive multi digit ints are parsed correctly.'''
actual = self.parser.parse('[123]')
self.assertEquals(123, actual[0])
def testSingleDigitNegativeInt(self):
'''Tests that negative single digit ints are parsed correctly.'''
actual = self.parser.parse('[-1]')
self.assertEquals(-1, actual[0])
def testMultiDigitNegativeInt(self):
'''Tests that negative multi digit ints are parsed correctly.'''
actual = self.parser.parse('[-123]')
self.assertEquals(-123, actual[0])
def testMultiDigitFloat(self):
'''Tests that positive multi digit floats are parsed correctly.'''
actual = self.parser.parse('[123.4]')
self.assertEquals(123.4, actual[0])
def testMultiDigitNegativeFloat(self):
'''Tests that negative multi digit floats are parsed correctly.'''
actual = self.parser.parse('[-123.4]')
self.assertEquals(-123.4, actual[0])
def testIntExponent(self):
'''Tests that int exponents are parsed correctly.'''
actual = self.parser.parse('[123e4]')
self.assertEquals(123e4, actual[0])
def testIntPositiveExponent(self):
'''Tests that int positive exponents are parsed correctly.'''
actual = self.parser.parse('[123e+4]')
self.assertEquals(123e+4, actual[0])
def testIntNegativeExponent(self):
'''Tests that int positive exponents are parsed correctly.'''
actual = self.parser.parse('[123e-4]')
self.assertEquals(123e-4, actual[0])
def testNegativeIntExponent(self):
'''Tests that negative int exponents are parsed correctly.'''
actual = self.parser.parse('[-123e4]')
self.assertEquals(-123e4, actual[0])
def testNegativeIntPositiveExponent(self):
'''Tests that negative int positive exponents are parsed correctly.'''
actual = self.parser.parse('[-123e+4]')
self.assertEquals(-123e+4, actual[0])
def testNegativeIntNegativeExponent(self):
'''Tests that negative int positive exponents are parsed correctly.'''
actual = self.parser.parse('[-123e-4]')
self.assertEquals(-123e-4, actual[0])
def testFloatExponent(self):
'''Tests that float exponents are parsed correctly.'''
actual = self.parser.parse('[1.23e4]')
self.assertEquals(1.23e4, actual[0])
def testFloatPositiveExponent(self):
'''Tests that float positive exponents are parsed correctly.'''
actual = self.parser.parse('[1.23e+4]')
self.assertEquals(1.23e+4, actual[0])
def testFloatNegativeExponent(self):
'''Tests that float negative exponents are parsed correctly.'''
actual = self.parser.parse('[1.23e-4]')
self.assertEquals(1.23e-4, actual[0])
def testNegativeFloatExponent(self):
'''Tests that negative float exponents are parsed correctly.'''
actual = self.parser.parse('[-1.23e4]')
self.assertEquals(-1.23e4, actual[0])
def testNegativeFloatPositiveExponent(self):
'''Tests that negative float positive exponents are parsed correctly.'''
actual = self.parser.parse('[-1.23e+4]')
self.assertEquals(-1.23e+4, actual[0])
def testNegativeFloatNegativeExponent(self):
'''Tests that negative float negative exponents are parsed correctly.'''
actual = self.parser.parse('[-1.23e-4]')
self.assertEquals(-1.23e-4, actual[0])
def testArrayOfStrings(self):
'''Tests that arrays can contain strings.'''
actual = self.parser.parse('["a", "b", "c"]')
self.assertEquals([u'a', u'b', u'c'], actual)
def testArrayOfNumbers(self):
'''Tests that arrays can contain strings.'''
actual = self.parser.parse('[1, 1.2, 3.4e5]')
self.assertEquals([1, 1.2, 3.4e5], actual)
def testArrayOfArrays(self):
'''Tests that arrays can contain arrays.'''
actual = self.parser.parse('[["a", "b", "c"]]')
self.assertEquals([[u'a', u'b', u'c']], actual)
def testArrayOfDicts(self):
'''Tests that arrays can contain dicts.'''
actual = self.parser.parse('[{"a": "b"}, {"c": "d"}]')
self.assertEquals([{'a': 'b'}, {'c': 'd'}], actual)
def testArrayOfMixedItems(self):
'''Tests that arrays can contain mixed elements.'''
actual = self.parser.parse('[1, true, {"a": "b"}, ["c"]]')
self.assertEquals([1, True, {'a': 'b'}, ['c']], actual)
def testDictOfStrings(self):
'''Tests that dicts can contain strings.'''
actual = self.parser.parse('{"a": "b", "c": "d"}')
self.assertEquals({'a': 'b', 'c': 'd'}, actual)
def testDictOfNumbers(self):
'''Tests that dicts can contain numbers.'''
actual = self.parser.parse('{"a": 1, "b": 2.3}')
self.assertEquals({'a': 1, 'b': 2.3}, actual)
def testDictOfArrays(self):
'''Tests that dicts can contain arrays.'''
actual = self.parser.parse('{"a": ["b", "c"], "d": [1, 2.3]}')
self.assertEquals({'a': ['b', 'c'], 'd': [1, 2.3]}, actual)
def testDictOfDicts(self):
'''Tests that dicts can contain dicts.'''
actual = self.parser.parse('{"a": {"b": "c"}, "d": {"e": "f"}}')
self.assertEquals({'a': {'b': 'c'}, 'd': {'e': 'f'}}, actual)
def testDictOfMixedItems(self):
'''Tests that dicts can contain mixed elements.'''
actual = self.parser.parse('{"a": true, "b": [1, 2.3], "c": {"d": null}}')
self.assertEquals({'a': True, 'b': [1, 2.3], 'c': {'d': None}}, actual)
def suite():
suite = unittest.TestSuite()
suite.addTests(unittest.makeSuite(JsonPlyTest))
suite.addTests(unittest.makeSuite(JsonParserTest))
return suite
if __name__ == '__main__':
unittest.main()