forked from agronholm/typeguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_instrumentation.py
344 lines (241 loc) · 10.7 KB
/
test_instrumentation.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
import asyncio
import sys
import warnings
from importlib import import_module
from importlib.util import cache_from_source
from pathlib import Path
import pytest
from pytest import FixtureRequest
from typeguard import TypeCheckError, config, install_import_hook, suppress_type_checks
from typeguard._importhook import OPTIMIZATION
pytestmark = pytest.mark.filterwarnings("error:no type annotations present")
this_dir = Path(__file__).parent
dummy_module_path = this_dir / "dummymodule.py"
cached_module_path = Path(
cache_from_source(str(dummy_module_path), optimization=OPTIMIZATION)
)
# This block here is to test the recipe mentioned in the user guide
if "pytest" in sys.modules:
from typeguard import typechecked
else:
from typing import TypeVar
_T = TypeVar("_T")
def typechecked(target: _T, **kwargs) -> _T:
return target if target else typechecked
@pytest.fixture(scope="module", params=["typechecked", "importhook"])
def method(request: FixtureRequest) -> str:
return request.param
@pytest.fixture(scope="module")
def dummymodule(method: str):
config.debug_instrumentation = True
sys.path.insert(0, str(this_dir))
try:
sys.modules.pop("dummymodule", None)
if cached_module_path.exists():
cached_module_path.unlink()
if method == "typechecked":
return import_module("dummymodule")
with install_import_hook(["dummymodule"]):
with warnings.catch_warnings():
warnings.filterwarnings("error", module="typeguard")
module = import_module("dummymodule")
return module
finally:
sys.path.remove(str(this_dir))
def test_type_checked_func(dummymodule):
assert dummymodule.type_checked_func(2, 3) == 6
def test_type_checked_func_error(dummymodule):
pytest.raises(TypeCheckError, dummymodule.type_checked_func, 2, "3").match(
r'argument "y" \(str\) is not an instance of int'
)
def test_non_type_checked_func(dummymodule):
assert dummymodule.non_type_checked_func("bah", 9) == "foo"
def test_non_type_checked_decorated_func(dummymodule):
assert dummymodule.non_type_checked_func("bah", 9) == "foo"
def test_typeguard_ignored_func(dummymodule):
assert dummymodule.non_type_checked_func("bah", 9) == "foo"
def test_type_checked_method(dummymodule):
instance = dummymodule.DummyClass()
pytest.raises(TypeCheckError, instance.type_checked_method, "bah", 9).match(
r'argument "x" \(str\) is not an instance of int'
)
def test_type_checked_classmethod(dummymodule):
pytest.raises(
TypeCheckError, dummymodule.DummyClass.type_checked_classmethod, "bah", 9
).match(r'argument "x" \(str\) is not an instance of int')
def test_type_checked_staticmethod(dummymodule):
pytest.raises(
TypeCheckError, dummymodule.DummyClass.type_checked_staticmethod, "bah", 9
).match(r'argument "x" \(str\) is not an instance of int')
@pytest.mark.xfail(reason="No workaround for this has been implemented yet")
def test_inner_class_method(dummymodule):
retval = dummymodule.Outer().create_inner()
assert retval.__class__.__qualname__ == "Outer.Inner"
@pytest.mark.xfail(reason="No workaround for this has been implemented yet")
def test_inner_class_classmethod(dummymodule):
retval = dummymodule.Outer.create_inner_classmethod()
assert retval.__class__.__qualname__ == "Outer.Inner"
@pytest.mark.xfail(reason="No workaround for this has been implemented yet")
def test_inner_class_staticmethod(dummymodule):
retval = dummymodule.Outer.create_inner_staticmethod()
assert retval.__class__.__qualname__ == "Outer.Inner"
def test_local_class_instance(dummymodule):
instance = dummymodule.create_local_class_instance()
assert (
instance.__class__.__qualname__ == "create_local_class_instance.<locals>.Inner"
)
def test_contextmanager(dummymodule):
with dummymodule.dummy_context_manager() as value:
assert value == 1
def test_overload(dummymodule):
dummymodule.overloaded_func(1)
dummymodule.overloaded_func("x")
pytest.raises(TypeCheckError, dummymodule.overloaded_func, b"foo")
def test_async_func(dummymodule):
pytest.raises(TypeCheckError, asyncio.run, dummymodule.async_func(b"foo"))
def test_generator_valid(dummymodule):
gen = dummymodule.generator_func(6, "foo")
assert gen.send(None) == 6
try:
gen.send(None)
except StopIteration as exc:
assert exc.value == "foo"
else:
pytest.fail("Generator did not exit")
def test_generator_bad_yield_type(dummymodule):
gen = dummymodule.generator_func("foo", "foo")
pytest.raises(TypeCheckError, gen.send, None).match(
r"yielded value \(str\) is not an instance of int"
)
gen.close()
def test_generator_bad_return_type(dummymodule):
gen = dummymodule.generator_func(6, 6)
assert gen.send(None) == 6
pytest.raises(TypeCheckError, gen.send, None).match(
r"return value \(int\) is not an instance of str"
)
gen.close()
def test_asyncgen_valid(dummymodule):
gen = dummymodule.asyncgen_func(6)
assert asyncio.run(gen.asend(None)) == 6
def test_asyncgen_bad_yield_type(dummymodule):
gen = dummymodule.asyncgen_func("foo")
pytest.raises(TypeCheckError, asyncio.run, gen.asend(None)).match(
r"yielded value \(str\) is not an instance of int"
)
def test_missing_return(dummymodule):
pytest.raises(TypeCheckError, dummymodule.missing_return).match(
r"the return value \(None\) is not an instance of int"
)
def test_pep_604_union_args(dummymodule):
pytest.raises(TypeCheckError, dummymodule.pep_604_union_args, 1.1).match(
r'argument "x" \(float\) did not match any element in the union:'
r"\n Callable\[list, Literal\[-1\]\]: is not callable"
r"\n Callable\[ellipsis, Union\[int, str\]\]: is not callable"
)
def test_pep_604_union_retval(dummymodule):
pytest.raises(TypeCheckError, dummymodule.pep_604_union_retval, 1.1).match(
r"the return value \(float\) did not match any element in the union:"
r"\n str: is not an instance of str"
r"\n int: is not an instance of int"
)
def test_builtin_generic_collections(dummymodule):
pytest.raises(TypeCheckError, dummymodule.builtin_generic_collections, 1.1).match(
r'argument "x" \(float\) is not a list'
)
def test_paramspec(dummymodule):
def foo(a: int, b: str, *, c: bytes) -> None:
pass
dummymodule.paramspec_function(foo, (1, "bar"), {"c": b"abc"})
def test_augmented_assign(dummymodule):
assert dummymodule.aug_assign() == 2
def test_multi_assign_single_value(dummymodule):
assert dummymodule.multi_assign_single_value() == (6, 6, 6)
def test_multi_assign_iterable(dummymodule):
assert dummymodule.multi_assign_iterable() == ([6, 7], [6, 7], [6, 7])
def test_unpacking_assign(dummymodule):
assert dummymodule.unpacking_assign() == (1, "foo")
def test_unpacking_assign_from_generator(dummymodule):
assert dummymodule.unpacking_assign_generator() == (1, "foo")
def test_unpacking_assign_star_with_annotation(dummymodule):
assert dummymodule.unpacking_assign_star_with_annotation() == (
1,
[b"abc", b"bah"],
"foo",
)
def test_unpacking_assign_star_no_annotation_success(dummymodule):
assert dummymodule.unpacking_assign_star_no_annotation(
(1, b"abc", b"bah", "foo")
) == (
1,
[b"abc", b"bah"],
"foo",
)
def test_unpacking_assign_star_no_annotation_fail(dummymodule):
with pytest.raises(
TypeCheckError, match=r"value assigned to z \(bytes\) is not an instance of str"
):
dummymodule.unpacking_assign_star_no_annotation((1, b"abc", b"bah", b"foo"))
class TestOptionsOverride:
def test_forward_ref_policy(self, dummymodule):
with pytest.raises(NameError, match="name 'NonexistentType' is not defined"):
dummymodule.override_forward_ref_policy(6)
def test_typecheck_fail_callback(self, dummymodule, capsys):
dummymodule.override_typecheck_fail_callback("foo")
assert capsys.readouterr().out == (
'argument "value" (str) is not an instance of int\n'
)
def test_override_collection_check_strategy(self, dummymodule):
with pytest.raises(
TypeCheckError,
match=r'item 1 of argument "value" \(list\) is not an instance of int',
):
dummymodule.override_collection_check_strategy([1, "foo"])
def test_outer_class_typecheck_fail_callback(self, dummymodule, capsys):
dummymodule.OverrideClass().override_typecheck_fail_callback("foo")
assert capsys.readouterr().out == (
'argument "value" (str) is not an instance of int\n'
)
def test_inner_class_no_overrides(self, dummymodule):
with pytest.raises(TypeCheckError):
dummymodule.OverrideClass.Inner().override_typecheck_fail_callback("foo")
class TestVariableArguments:
def test_success(self, dummymodule):
assert dummymodule.typed_variable_args("foo", "bar", a=1, b=8) == (
("foo", "bar"),
{"a": 1, "b": 8},
)
def test_args_fail(self, dummymodule):
with pytest.raises(
TypeCheckError,
match=r'item 0 of argument "args" \(tuple\) is not an instance of str',
):
dummymodule.typed_variable_args(1, a=1, b=8)
def test_kwargs_fail(self, dummymodule):
with pytest.raises(
TypeCheckError,
match=r'value of key \'a\' of argument "kwargs" \(dict\) is not an '
r"instance of int",
):
dummymodule.typed_variable_args("foo", "bar", a="baz")
class TestGuardedType:
def test_plain(self, dummymodule):
assert dummymodule.guarded_type_hint_plain("foo") == "foo"
def test_subscript_toplevel(self, dummymodule):
assert dummymodule.guarded_type_hint_subscript_toplevel("foo") == "foo"
def test_subscript_nested(self, dummymodule):
assert dummymodule.guarded_type_hint_subscript_nested(["foo"]) == ["foo"]
def test_literal(dummymodule):
assert dummymodule.literal("foo") == "foo"
def test_literal_in_union(dummymodule):
"""Regression test for #372."""
assert dummymodule.literal_in_union("foo") == "foo"
def test_typevar_forwardref(dummymodule):
instance = dummymodule.typevar_forwardref(dummymodule.DummyClass)
assert isinstance(instance, dummymodule.DummyClass)
def test_suppress_annotated_assignment(dummymodule):
with suppress_type_checks():
assert dummymodule.literal_in_union("foo") == "foo"
def test_suppress_annotated_multi_assignment(dummymodule):
with suppress_type_checks():
assert dummymodule.multi_assign_single_value() == (6, 6, 6)