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
325 lines (245 loc) · 9.46 KB
/
conftest.py
File metadata and controls
325 lines (245 loc) · 9.46 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
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
from __future__ import annotations
from pathlib import Path
from typing import Any, Callable
import pytest
from mypy.semanal_shared import Protocol
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,
Class,
DateProperty,
DateTimeProperty,
EnumProperty,
FileProperty,
IntProperty,
ListProperty,
LiteralEnumProperty,
ModelProperty,
NoneProperty,
StringProperty,
UnionProperty,
)
from openapi_python_client.parser.properties.float import FloatProperty
from openapi_python_client.parser.properties.protocol import PropertyType, Value
from openapi_python_client.schema.openapi_schema_pydantic import Parameter
from openapi_python_client.schema.parameter_location import ParameterLocation
from openapi_python_client.utils import ClassName, PythonIdentifier
@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,
)
class ModelFactory(Protocol):
def __call__(self, *args, **kwargs): ...
@pytest.fixture
def model_property_factory() -> ModelFactory:
"""
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.
"""
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
kwargs = {
"description": "",
"class_info": Class(name=ClassName("MyClass", ""), module_name=PythonIdentifier("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
def _simple_factory(
cls: type[PropertyType], default_kwargs: dict | Callable[[dict], dict] | None = None
) -> Callable[..., PropertyType]:
def _factory(**kwargs):
kwargs = _common_kwargs(kwargs)
defaults = default_kwargs
if defaults:
if callable(defaults):
defaults = defaults(kwargs)
kwargs = {**defaults, **kwargs}
rv = cls(**kwargs)
return rv
return _factory
class SimpleFactory(Protocol[PropertyType]):
def __call__(
self,
*,
default: Value | None = None,
name: str | None = None,
required: bool | None = None,
description: str | None = None,
example: str | None = None,
) -> PropertyType: ...
class EnumFactory(Protocol[PropertyType]):
def __call__(
self,
*,
default: Value | None = None,
name: str | None = None,
required: bool | None = None,
values: dict[str, str | int] | None = None,
class_info: Class | None = None,
value_type: type | None = None,
python_name: PythonIdentifier | None = None,
description: str | None = None,
example: str | None = None,
) -> PropertyType: ...
@pytest.fixture
def enum_property_factory() -> EnumFactory[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.
"""
return _simple_factory(
EnumProperty,
lambda kwargs: {
"class_info": Class(name=kwargs["name"], module_name=kwargs["name"]),
"values": {},
"value_type": str,
},
)
@pytest.fixture
def literal_enum_property_factory() -> EnumFactory[LiteralEnumProperty]:
"""
This fixture surfaces in the test as a function which manufactures LiteralEnumProperties with defaults.
You can pass the same params into this as the LiteralEnumProerty constructor to override defaults.
"""
return _simple_factory(
LiteralEnumProperty,
lambda kwargs: {
"class_info": Class(name=kwargs["name"], module_name=kwargs["name"]),
"values": set(),
"value_type": str,
},
)
@pytest.fixture
def any_property_factory() -> SimpleFactory[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.
"""
return _simple_factory(AnyProperty)
@pytest.fixture
def string_property_factory() -> SimpleFactory[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.
"""
return _simple_factory(StringProperty)
@pytest.fixture
def int_property_factory() -> SimpleFactory[IntProperty]:
"""
This fixture surfaces in the test as a function which manufactures IntProperties with defaults.
You can pass the same params into this as the IntProperty constructor to override defaults.
"""
return _simple_factory(IntProperty)
@pytest.fixture
def float_property_factory() -> SimpleFactory[FloatProperty]:
"""
This fixture surfaces in the test as a function which manufactures FloatProperties with defaults.
You can pass the same params into this as the FloatProperty constructor to override defaults.
"""
return _simple_factory(FloatProperty)
@pytest.fixture
def none_property_factory() -> SimpleFactory[NoneProperty]:
"""
This fixture surfaces in the test as a function which manufactures NoneProperties with defaults.
You can pass the same params into this as the NoneProperty constructor to override defaults.
"""
return _simple_factory(NoneProperty)
@pytest.fixture
def boolean_property_factory() -> SimpleFactory[BooleanProperty]:
"""
This fixture surfaces in the test as a function which manufactures BooleanProperties with defaults.
You can pass the same params into this as the BooleanProperty constructor to override defaults.
"""
return _simple_factory(BooleanProperty)
@pytest.fixture
def date_time_property_factory() -> SimpleFactory[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.
"""
return _simple_factory(DateTimeProperty)
@pytest.fixture
def date_property_factory() -> SimpleFactory[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.
"""
return _simple_factory(DateProperty)
@pytest.fixture
def file_property_factory() -> SimpleFactory[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.
"""
return _simple_factory(FileProperty)
@pytest.fixture
def list_property_factory(string_property_factory) -> SimpleFactory[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.
"""
return _simple_factory(ListProperty, {"inner_property": string_property_factory()})
class UnionFactory(SimpleFactory):
def __call__(
self,
*,
default: Value | None = None,
name: str | None = None,
required: bool | None = None,
inner_properties: list[PropertyType] | None = None,
) -> UnionProperty: ...
@pytest.fixture
def union_property_factory(date_time_property_factory, string_property_factory) -> UnionFactory:
"""
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.
"""
return _simple_factory(
UnionProperty, {"inner_properties": [date_time_property_factory(), string_property_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