forked from openapi-generators/openapi-python-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconftest.py
More file actions
276 lines (205 loc) · 7.86 KB
/
conftest.py
File metadata and controls
276 lines (205 loc) · 7.86 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
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
from pathlib import Path
from typing import Any, Callable, Dict
import pytest
from openapi_python_client import Config, MetaType
from openapi_python_client import schema as oai
from openapi_python_client.config import ConfigFile
from openapi_python_client.parser.properties import (
AnyProperty,
BooleanProperty,
DateProperty,
DateTimeProperty,
EnumProperty,
FileProperty,
IntProperty,
ListProperty,
ModelProperty,
NoneProperty,
StringProperty,
UnionProperty,
)
from openapi_python_client.schema.openapi_schema_pydantic import Parameter
from openapi_python_client.schema.parameter_location import ParameterLocation
@pytest.fixture(scope="session")
def config() -> Config:
"""Create a default config for when it doesn't matter"""
return Config.from_sources(
ConfigFile(),
MetaType.POETRY,
document_source=Path("openapi.yaml"),
file_encoding="utf-8",
overwrite=False,
output_path=None,
)
@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"),
"data": oai.Schema.model_construct(),
"roots": set(),
"required_properties": None,
"optional_properties": None,
"relative_imports": None,
"lazy_imports": None,
"additional_properties": None,
"python_name": "",
"example": "",
**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 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 none_property_factory() -> Callable[..., NoneProperty]:
"""
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 NoneProperty(**kwargs)
return _factory
@pytest.fixture
def boolean_property_factory() -> Callable[..., BooleanProperty]:
"""
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 BooleanProperty(**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
@pytest.fixture
def param_factory() -> Callable[..., Parameter]:
"""
This fixture surfaces in the test as a function which manufactures a Parameter with defaults.
You can pass the same params into this as the Parameter constructor to override defaults.
"""
def _factory(**kwargs):
kwargs = {
"name": "",
"in": ParameterLocation.QUERY,
**kwargs,
}
return Parameter(**kwargs)
return _factory
def _common_kwargs(kwargs: Dict[str, Any]) -> Dict[str, Any]:
kwargs = {
"name": "test",
"required": True,
"default": None,
"description": None,
"example": None,
**kwargs,
}
if not kwargs.get("python_name"):
kwargs["python_name"] = kwargs["name"]
return kwargs