-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdecorator.py
51 lines (36 loc) · 1.23 KB
/
decorator.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
from functools import partial
from hypothesis import given
def instantiate_given(params, **kwargs):
def maybe_apply_kwargs(param, **kwargs):
if not isinstance(param, partial):
return param
else:
return param(**kwargs)
given_args, given_kwargs = params
instantiated_args = tuple(
maybe_apply_kwargs(param, **kwargs) for param in given_args
)
instantiated_kwargs = {
name: maybe_apply_kwargs(param, **kwargs)
for name, param in given_kwargs.items()
}
return instantiated_args, instantiated_kwargs
def initialize_tests(cls):
for name in dir(cls):
if not name.startswith("test_"):
continue
method = getattr(cls, name)
if not hasattr(method, "__hypothesis_given__"):
continue
params = method.__hypothesis_given__
args, kwargs = instantiate_given(
params, array_strategy_fn=cls.array_strategy_fn
)
decorated = given(*args, **kwargs)(method)
setattr(cls, name, decorated)
return cls
def delayed_given(*_given_args, **_given_kwargs):
def wrapper(f):
f.__hypothesis_given__ = (_given_args, _given_kwargs)
return f
return wrapper