-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
258 lines (203 loc) · 7.17 KB
/
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
# -*- coding: utf-8 -*-
import json
from io import BytesIO
from testy import (
Skip,
assertEqual,
assertIsFloat,
assertIsInt,
assertRaises,
assertTrue,
cli,
)
from __init__ import (
Parser,
UnexpectedCharacter,
)
###############################################################################
# Parsing helper
###############################################################################
def parse(b):
parser = Parser(BytesIO(b))
result = []
for event, value_gen in parser.parse():
if value_gen is not None:
result.append((event, b''.join(value_gen)))
else:
result.append(event)
return result
###############################################################################
# Test simple scalar values
###############################################################################
def test_string():
assertEqual(parse(b'"test"'), [('STRING', b'test')])
def test_nonascii_string():
assertEqual(
parse('"κόσμε"'.encode('utf-8')),
[('STRING', 'κόσμε'.encode('utf-8'))]
)
def test_single_digit():
assertEqual(parse(b'0'), [('NUMBER', b'0')])
def test_double_digit():
assertEqual(parse(b'13'), [('NUMBER', b'13')])
def test_negative_digit():
assertEqual(parse(b'-3'), [('NUMBER', b'-3')])
def test_float():
assertEqual(parse(b'3.1415'), [('NUMBER', b'3.1415')])
def test_negative_float():
assertEqual(parse(b'-3.1415'), [('NUMBER', b'-3.1415')])
def test_null():
assertEqual(parse(b'null'), ['NULL'])
def test_true():
assertEqual(parse(b'true'), ['TRUE'])
def test_false():
assertEqual(parse(b'false'), ['FALSE'])
###############################################################################
# Test invalid scalar values
###############################################################################
def test_number_containing_multiple_numeric_chars():
assertRaises(UnexpectedCharacter, parse, b'-3.14.-1-5')
###############################################################################
# Test empty containers
###############################################################################
def test_empty_array():
assertEqual(parse(b'[]'), ['ARRAY_OPEN', 'ARRAY_CLOSE'])
def test_empty_object():
assertEqual(parse(b'{}'), ['OBJECT_OPEN', 'OBJECT_CLOSE'])
###############################################################################
# Test Arrays
###############################################################################
def test_single_element_array():
assertEqual(
parse(b'[1]'),
['ARRAY_OPEN', ('ARRAY_VALUE_NUMBER', b'1'), 'ARRAY_CLOSE']
)
def test_single_element_array_with_trailing_comma():
assertEqual(
parse(b'[1]'),
['ARRAY_OPEN', ('ARRAY_VALUE_NUMBER', b'1'), 'ARRAY_CLOSE']
)
###############################################################################
# Test Objects
###############################################################################
def test_single_item_object():
assertEqual(
parse(b'{"a": 0}'),
[
'OBJECT_OPEN',
('OBJECT_KEY', b'a'),
'KV_SEP',
('OBJECT_VALUE_NUMBER', b'0'),
'OBJECT_CLOSE'
]
)
def test_single_item_object_with_trailing_comma():
assertEqual(
parse(b'{"a": 0,}'),
[
'OBJECT_OPEN',
('OBJECT_KEY', b'a'),
'KV_SEP',
('OBJECT_VALUE_NUMBER', b'0'),
'OBJECT_ITEM_SEP',
'OBJECT_CLOSE'
]
)
###############################################################################
# Test value conversions
###############################################################################
def test_string_conversion():
assertEqual(
Parser(b'').convert('STRING', (b't', b'e', b's', b't')),
'test'
)
def test_single_digit_conversion():
v = Parser(b'').convert('NUMBER', (b'0',))
assertIsInt(v)
assertEqual(v, 0)
def test_double_digit_conversion():
v = Parser(b'').convert('NUMBER', (b'13',))
assertIsInt(v)
assertEqual(v, 13)
def test_negative_digit_conversion():
v = Parser(b'').convert('NUMBER', (b'-3',))
assertIsInt(v)
assertEqual(v, -3)
def test_float_conversion():
v = Parser(b'').convert('NUMBER', (b'3.1415',))
assertIsFloat(v)
assertEqual(v, 3.1415)
def test_negative_float_conversion():
v = Parser(b'').convert('NUMBER', (b'-3.1415',))
assertIsFloat(v)
assertEqual(v, -3.1415)
def test_null_conversion():
assertEqual(Parser(b'').convert('NULL', None), None)
def test_true_conversion():
assertEqual(Parser(b'').convert('TRUE', None), True)
def test_false_conversion():
assertEqual(Parser(b'').convert('FALSE', None), False)
###############################################################################
# Test yield paths
###############################################################################
def test_yield_paths():
fh = open('test_data/api_weather_gov_points.json', 'rb')
parser = Parser(fh)
path = [
'properties',
'relativeLocation',
'geometry',
'coordinates',
1
]
assertEqual(list(parser.yield_paths((path,))), [(path, 41.50324)])
###############################################################################
# Test invalid things
###############################################################################
def test_string_containing_control_code():
# Check that characters 0x00 - 0x1f are not allowed.
for x in range(32):
char = chr(x).encode('utf-8')
exc = assertRaises(
UnexpectedCharacter,
parse,
b'"' + char + b'"'
)
# Test the exception string to ensure that it was raised for the
# expected reason.
assertTrue(str(exc).endswith(f'got {repr(char)}'))
# Check that characters the next character, 0x20, is allowed.
assertEqual(
parse(f'"{chr(32)}"'.encode("utf-8")),
[('STRING', b'\x20')]
)
###############################################################################
# Test things you know are broken
###############################################################################
def test_object_key_containing_double_quote():
parse(b'{"a_\\"good\\"_key": 0}')
def test_escaped_unicode_chars():
assertEqual(
parse(b'"1 \\u0032 \\u0033 4 \\u0035"'),
[('STRING', '1 2 3 4 5')]
)
def test_string_containing_unicode_control_code():
assertRaises(UnexpectedCharacter, parse, b'"\\u0000"')
###############################################################################
# Test parity with built-in Python json.load()
###############################################################################
def test_parity_with_builtin_json_load_github_repos():
_open = lambda: open('test_data/api_github_com_users_github_repos.json',
'rb')
assertEqual(
json.load(_open()),
Parser(_open()).load()
)
def test_parity_with_builtin_json_load_weather_data():
_open = lambda: open('test_data/api_weather_gov_points.json', 'rb')
assertEqual(
json.load(_open()),
Parser(_open()).load()
)
if __name__ == '__main__':
cli(globals())