forked from openapi-generators/openapi-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconftest.py
More file actions
217 lines (158 loc) · 6.1 KB
/
conftest.py
File metadata and controls
217 lines (158 loc) · 6.1 KB
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
from typing import Any, Callable, Dict
import pytest
from openapi_python_client.parser.properties import (
AnyProperty,
DateProperty,
DateTimeProperty,
EnumProperty,
FileProperty,
IntProperty,
ListProperty,
ModelProperty,
Property,
StringProperty,
UnionProperty,
)
@pytest.fixture
def model_property_factory() -> Callable[..., ModelProperty]:
"""
This fixture surfaces in the test as a function which manufactures ModelProperties with defaults.
You can pass the same params into this as the ModelProperty constructor to override defaults.
"""
from openapi_python_client.parser.properties import Class
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
kwargs = {
"description": "",
"class_info": Class(name="MyClass", module_name="my_module"),
"required_properties": [],
"optional_properties": [],
"relative_imports": set(),
"additional_properties": False,
"python_name": "",
**kwargs,
}
return ModelProperty(**kwargs)
return _factory
@pytest.fixture
def enum_property_factory() -> Callable[..., EnumProperty]:
"""
This fixture surfaces in the test as a function which manufactures EnumProperties with defaults.
You can pass the same params into this as the EnumProerty constructor to override defaults.
"""
from openapi_python_client.parser.properties import Class
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
kwargs = {
"class_info": Class(name=kwargs["name"], module_name=kwargs["name"]),
"values": {},
"value_type": str,
**kwargs,
}
return EnumProperty(**kwargs)
return _factory
@pytest.fixture
def property_factory() -> Callable[..., Property]:
"""
This fixture surfaces in the test as a function which manufactures Properties with defaults.
You can pass the same params into this as the Property constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
return Property(**kwargs)
return _factory
@pytest.fixture
def any_property_factory() -> Callable[..., AnyProperty]:
"""
This fixture surfaces in the test as a function which manufactures AnyProperty with defaults.
You can pass the same params into this as the AnyProperty constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
return AnyProperty(**kwargs)
return _factory
@pytest.fixture
def string_property_factory() -> Callable[..., StringProperty]:
"""
This fixture surfaces in the test as a function which manufactures StringProperties with defaults.
You can pass the same params into this as the StringProperty constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
return StringProperty(**kwargs)
return _factory
@pytest.fixture
def int_property_factory() -> Callable[..., IntProperty]:
"""
This fixture surfaces in the test as a function which manufactures StringProperties with defaults.
You can pass the same params into this as the StringProperty constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
return IntProperty(**kwargs)
return _factory
@pytest.fixture
def date_time_property_factory() -> Callable[..., DateTimeProperty]:
"""
This fixture surfaces in the test as a function which manufactures DateTimeProperties with defaults.
You can pass the same params into this as the DateTimeProperty constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
return DateTimeProperty(**kwargs)
return _factory
@pytest.fixture
def date_property_factory() -> Callable[..., DateProperty]:
"""
This fixture surfaces in the test as a function which manufactures DateProperties with defaults.
You can pass the same params into this as the DateProperty constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
return DateProperty(**kwargs)
return _factory
@pytest.fixture
def file_property_factory() -> Callable[..., FileProperty]:
"""
This fixture surfaces in the test as a function which manufactures FileProperties with defaults.
You can pass the same params into this as the FileProperty constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
return FileProperty(**kwargs)
return _factory
@pytest.fixture
def list_property_factory(string_property_factory) -> Callable[..., ListProperty]:
"""
This fixture surfaces in the test as a function which manufactures ListProperties with defaults.
You can pass the same params into this as the ListProperty constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
if "inner_property" not in kwargs:
kwargs["inner_property"] = string_property_factory()
return ListProperty(**kwargs)
return _factory
@pytest.fixture
def union_property_factory(date_time_property_factory, string_property_factory) -> Callable[..., UnionProperty]:
"""
This fixture surfaces in the test as a function which manufactures UnionProperties with defaults.
You can pass the same params into this as the UnionProperty constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
if "inner_properties" not in kwargs:
kwargs["inner_properties"] = [date_time_property_factory(), string_property_factory()]
return UnionProperty(**kwargs)
return _factory
def _common_kwargs(kwargs: Dict[str, Any]) -> Dict[str, Any]:
kwargs = {
"name": "test",
"required": True,
"nullable": False,
"default": None,
**kwargs,
}
if not kwargs.get("python_name"):
kwargs["python_name"] = kwargs["name"]
return kwargs