-
Notifications
You must be signed in to change notification settings - Fork 30
/
test_typing.py
363 lines (292 loc) · 10.3 KB
/
test_typing.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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
from enum import IntEnum
from hypothesis import given
from hypothesis.strategies import binary, booleans, dictionaries, integers, \
lists, none, sampled_from, text
from pytest import raises # type: ignore
from string import hexdigits
from typing import Callable, Dict, List, Optional, SupportsBytes, Type, \
TypeVar, no_type_check
from dvrip.errors import DVRIPDecodeError
from dvrip.typing import EnumValue, Member, Object, Value, absentmember, \
_compose, fixedmember, for_json, json_to, jsontype, \
member, optionalmember
def test_forjson():
with raises(TypeError, match='not a JSON value'):
for_json(NotImplementedError())
D = TypeVar('D', bound='DuckValue')
class SubclassValue(Value):
pass
class DuckValue(object):
def for_json(self) -> object:
pass
@staticmethod
def json_to(cls: Type[D], datum: object) -> D:
pass
class DuckNoValue(DuckValue):
json_to = None
def test_Value():
assert hasattr(Value, 'for_json')
assert hasattr(Value, 'json_to')
def test_Value_subclasshook():
assert not issubclass(int, Value)
assert issubclass(SubclassValue, Value)
assert not issubclass(Value, SubclassValue)
assert issubclass(DuckValue, Value)
assert not issubclass(DuckNoValue, Value)
class SubclassEnumValue(EnumValue, IntEnum):
ZERO = 0
ONE = 1
def test_EnumValue():
assert issubclass(SubclassEnumValue, IntEnum)
assert issubclass(SubclassEnumValue, Value)
assert SubclassEnumValue.ZERO == 0 and SubclassEnumValue.ONE == 1
@given(booleans())
def test_bool_forjson(b):
assert for_json(b) == b
@given(booleans())
def test_bool_jsonto(b):
assert json_to(bool)(b) == b
with raises(DVRIPDecodeError, match='not a boolean'):
json_to(bool)(1)
@given(booleans())
def test_bool_forjson_jsonto(b):
assert json_to(bool)(for_json(b)) == b
@given(booleans())
def test_bool_jsonto_forjson(b):
assert for_json(json_to(bool)(b)) == b
@given(integers())
def test_int_forjson(i):
assert for_json(i) == i
@given(integers())
def test_int_jsonto(i):
assert json_to(int)(i) == i
with raises(DVRIPDecodeError, match='not an integer'):
# False and True are tricky, because issubclass(bool, int)
json_to(int)(False)
@given(integers())
def test_int_forjson_jsonto(i):
assert json_to(int)(for_json(i)) == i
@given(integers())
def test_int_jsonto_forjson(i):
assert for_json(json_to(int)(i)) == i
@given(text())
def test_str_forjson(s):
assert for_json(s) == s
@given(text())
def test_str_jsonto(s):
assert json_to(str)(s) == s
with raises(DVRIPDecodeError, match='not a string'):
json_to(str)(57)
@given(text())
def test_str_forjson_jsonto(s):
assert json_to(str)(for_json(s)) == s
@given(text())
def test_str_jsonto_forjson(s):
assert for_json(json_to(str)(s)) == s
@given(none() | integers())
def test_optional_forjson(o):
assert for_json(o) == o
@given(none() | integers())
def test_optional_jsonto(o):
assert json_to(Optional[int])(o) == o
@given(none() | integers())
def test_optional_forjson_jsonto(o):
assert json_to(Optional[int])(for_json(o)) == o
@given(none() | integers())
def test_optional_jsonto_forjson(o):
assert for_json(json_to(Optional[int])(o)) == o
@given(lists(integers()))
def test_list_forjson(l):
assert for_json(l) == l
@given(lists(integers()))
def test_list_jsonto(l):
assert json_to(List[int])(l) == l
with raises(DVRIPDecodeError, match='not an array'):
json_to(List[int])({})
with raises(DVRIPDecodeError, match='not an integer'):
json_to(List[int])([False])
with raises(TypeError, match='no element type specified'):
json_to(list)(l)
@given(lists(integers()))
def test_list_forjson_jsonto(l):
assert json_to(List[int])(for_json(l)) == l
@given(lists(integers()))
def test_list_jsonto_forjson(l):
assert for_json(json_to(List[int])(l)) == l
@given(dictionaries(text(), integers()))
def test_dict_forjson(d):
assert for_json(d) == d
@given(dictionaries(text(), integers()))
def test_dict_jsonto(d):
assert json_to(Dict[str, int])(d) == d
with raises(DVRIPDecodeError, match='not an object'):
json_to(Dict[str, int])([])
with raises(DVRIPDecodeError, match='not a string'):
json_to(Dict[str, int])({42: 57})
with raises(DVRIPDecodeError, match='not an integer'):
json_to(Dict[str, int])({'key': False})
with raises(TypeError, match='no value type specified'):
json_to(dict)(d)
@given(dictionaries(text(), integers()))
def test_dict_forjson_jsonto(d):
assert json_to(Dict[str, int])(for_json(d)) == d
@given(dictionaries(text(), integers()))
def test_dict_jsonto_forjson(d):
assert for_json(json_to(Dict[str, int])(d)) == d
def test_jsontype():
assert jsontype(int) == (json_to(int), for_json)
class SubclassMember(Member):
pass
class DuckMember(object):
def __set_name__(self, _type: Type['Object'], _name: str) -> None:
pass
def push(self, push: Callable[[str, object], None], value: set) -> None:
pass
def pop(self, pop: Callable[[str], object]) -> set:
pass
class DuckNoMember(DuckMember):
__set_name__ = None
def test_Member():
assert hasattr(Member, '__set_name__')
def test_Member_subclasshook():
assert not issubclass(int, Member)
assert issubclass(SubclassMember, Member)
assert not issubclass(Member, SubclassMember)
assert issubclass(DuckMember, Member)
assert not issubclass(DuckNoMember, Member)
@given(integers())
def test_compose(i):
assert _compose(lambda x: x+1, lambda x: 2*x)(i) == 2*i + 1
def fromhex(value: object) -> bytes:
if not all(c in hexdigits for c in value):
raise DVRIPDecodeError('not a hex string')
return bytes.fromhex(value)
def tohex(value: SupportsBytes) -> object:
return bytes(value).hex()
def hextext():
return (text(sampled_from('0123456789abcdef'))
.filter(lambda s: len(s) % 2 == 0))
class FixedExample(Object):
mint: fixedmember = fixedmember('Int', 57)
def test_fixedmember_get():
assert FixedExample().mint == 57
def test_fixedmember_set():
obj = FixedExample()
obj.mint = 57
with raises(ValueError, match='not the fixed value'):
obj.mint = 58
assert obj.mint == 57
def test_fixedmember_forjson():
assert FixedExample().for_json() == {'Int': 57}
def test_fixedmember_jsonto():
assert FixedExample.json_to({'Int': 57}) == FixedExample()
with raises(DVRIPDecodeError, match='not the fixed value'):
FixedExample.json_to({'Int': 58})
class AbsentExample(Object):
mint: absentmember[int] = absentmember()
@given(integers())
def test_absentmember_forjson(i):
obj = AbsentExample()
assert obj.for_json() == {}
obj.mint = i
with raises(ValueError, match='value provided for absent member'):
obj.for_json()
def test_absentmember_jsonto():
assert AbsentExample.json_to({}).mint == NotImplemented
class Example(Object):
# a descriptor but not a field
@property
def room(self):
return 101
mint: member[int] = member('Int')
mhex: member[bytes] = member('Hex', (fromhex, tohex), jsontype(str))
class NestedExample(Object):
mint = member('Int', jsontype(int))
mobj: member[Example] = member('Obj')
class ConflictExample(Object):
mint: member[int] = member('Conflict')
nint: member[int] = member('Conflict')
def test_Object():
assert issubclass(Object, Value)
@no_type_check
def test_Member_nojsonto():
with raises(TypeError, match='no type or conversions specified'):
class FailingExample(Example):
bad = member('Bad')
with raises(TypeError, match='no type or conversions specified'):
class FailingExample(Example):
bad: 3 = member('Bad')
with raises(TypeError):
class FailingExample(Example):
bad: member[NotImplementedError] = member('Bad')
FailingExample(bad=NotImplementedError()).for_json()
@given(integers(), binary())
def test_Object_get(i, b):
mobj = Example(mint=i, mhex=b)
assert mobj.mint == i and mobj.mhex == b
@given(integers(), binary(), integers(), binary())
def test_Object_set(i, b, j, c):
mobj = Example(mint=i, mhex=b)
assert mobj.mint == i and mobj.mhex == b
mobj.mint = j
assert mobj.mint == j and mobj.mhex == b
mobj.mhex = c
assert mobj.mint == j and mobj.mhex == c
@given(integers(), binary())
def test_Object_repr(i, b):
assert (repr(Example(mint=i, mhex=b)) ==
'Example(mint={!r}, mhex={!r})'.format(i, b))
@given(integers(), binary(), integers(), binary())
def test_Object_eq(i, b, j, c):
assert ((Example(mint=i, mhex=b) == Example(mint=j, mhex=c)) ==
(i == j and b == c))
assert Example(mint=i, mhex=b) != Ellipsis
@given(integers(), binary(), integers())
def test_Object_forjson(i, b, j):
assert Example(mint=i, mhex=b).for_json() == {'Int': i, 'Hex': b.hex()}
with raises(TypeError, match='already set'):
ConflictExample(mint=i, nint=j).for_json()
@given(integers(), hextext())
def test_Object_jsonto(i, h):
assert (Example.json_to({'Int': i, 'Hex': h}) ==
Example(mint=i, mhex=bytes.fromhex(h)))
with raises(DVRIPDecodeError, match='not an object'):
Example.json_to([])
with raises(DVRIPDecodeError, match='no member'):
Example.json_to({})
with raises(DVRIPDecodeError, match='no member'):
Example.json_to({'Int': i})
with raises(DVRIPDecodeError, match='no member'):
Example.json_to({'Hex': h})
with raises(DVRIPDecodeError, match='extra member'):
Example.json_to({'Int': i, 'Hex': h, 'Extra': Ellipsis})
@given(integers(), integers(), binary())
def test_Object_forjson_jsonto(i, j, b):
mobj = Example(mint=j, mhex=b)
assert Example.json_to(mobj.for_json()) == mobj
nst = NestedExample(mint=i, mobj=mobj)
assert NestedExample.json_to(nst.for_json()) == nst
@given(integers(), integers(), hextext())
def test_Object_jsonto_forjson(i, j, h):
obj = {'Int': j, 'Hex': h}
assert Example.json_to(obj).for_json() == obj
nst = {'Int': i, 'Obj': obj}
assert NestedExample.json_to(nst).for_json() == nst
class OptionalExample(Object):
mint: member[int] = member('Int1')
nint: optionalmember[int] = optionalmember('Int2')
kint: member[int] = member('Int3')
@given(integers(), integers(), integers())
def test_optionalmember_forjson(i, j, k):
value = OptionalExample(mint=i, nint=j, kint=k)
assert value.for_json() == {'Int1': i, 'Int2': j, 'Int3': k}
value = OptionalExample(mint=i, nint=NotImplemented, kint=k)
assert value.for_json() == {'Int1': i, 'Int3': k}
@given(integers(), integers(), integers())
def test_optionalmember_jsonto(i, j, k):
datum = {'Int1': i, 'Int2': j, 'Int3': k}
assert (OptionalExample.json_to(datum) ==
OptionalExample(mint=i, nint=j, kint=k))
datum = {'Int1': i, 'Int3': k}
assert (OptionalExample.json_to(datum) ==
OptionalExample(mint=i, nint=NotImplemented, kint=k))