Skip to content

Commit 8ce3c6b

Browse files
committed
Add tests around param type utils
1 parent 2b0c0d0 commit 8ce3c6b

File tree

2 files changed

+498
-19
lines changed

2 files changed

+498
-19
lines changed

src/openapi_test_client/libraries/api/api_functions/utils/param_type.py

+21-19
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ def replace_base_type(tp: Any, new_type: Any, replace_container_type: bool = Fal
268268
return new_type
269269

270270

271-
def is_type_of(tp: str | Any, type_to_check: Any) -> bool:
272-
"""Check if the given param type is same as the specified type to check
271+
def is_type_of(param_type: str | Any, type_to_check: Any) -> bool:
272+
"""Check if the specified type falls into the given parameter type
273273
274274
eg. This will return True:
275275
- param_type=Annotated[list[Any]]
@@ -278,29 +278,29 @@ def is_type_of(tp: str | Any, type_to_check: Any) -> bool:
278278
:param tp: OpenAPI parameter type or python type annotation
279279
:param type_to_check: Python type
280280
"""
281-
if isinstance(tp, str):
281+
if isinstance(param_type, str):
282282
# OpenAPI param type
283283
if type_to_check is list:
284-
return tp in LIST_PARAM_TYPES
284+
return param_type in LIST_PARAM_TYPES
285285
elif type_to_check is str:
286-
return tp in STR_PARAM_TYPES
286+
return param_type in STR_PARAM_TYPES
287287
elif type_to_check is bool:
288-
return tp in BOOL_PARAM_TYPES
288+
return param_type in BOOL_PARAM_TYPES
289289
elif type_to_check is int:
290-
return tp in LIST_PARAM_TYPES
290+
return param_type in INT_PARAM_TYPES
291291
elif type_to_check is None:
292-
return tp in NULL_PARAM_TYPES
292+
return param_type in NULL_PARAM_TYPES
293293
else:
294294
# Add if needed
295295
raise NotImplementedError
296-
elif origin_type := get_origin(tp):
296+
elif origin_type := get_origin(param_type):
297297
if origin_type is type_to_check:
298298
return True
299299
elif origin_type is Annotated:
300-
return is_type_of(tp.__origin__, type_to_check)
301-
elif is_union_type(tp):
302-
return any([is_type_of(x, type_to_check) for x in get_args(tp)])
303-
return tp is type_to_check
300+
return is_type_of(param_type.__origin__, type_to_check)
301+
elif is_union_type(param_type):
302+
return any([is_type_of(x, type_to_check) for x in get_args(param_type)])
303+
return param_type is type_to_check
304304

305305

306306
def is_optional_type(tp: Any) -> bool:
@@ -428,16 +428,18 @@ def modify_metadata(tp: Any):
428428
def get_annotated_type(tp: Any) -> _AnnotatedAlias | tuple[_AnnotatedAlias] | None:
429429
"""Get annotated type definition(s)
430430
431+
NOTE: If the type annotation is a union of multiple Annotated[] types, all annotated types will be returned
432+
431433
:param tp: Type annotation
432434
"""
433435
if is_union_type(tp):
434436
annotated_types = tuple(filter(None, [get_annotated_type(arg) for arg in get_args(tp)]))
435-
if not annotated_types:
436-
return None
437-
elif len(annotated_types) == 1:
438-
return annotated_types[0]
439-
else:
440-
return annotated_types
437+
if annotated_types:
438+
if len(annotated_types) == 1:
439+
return annotated_types[0]
440+
else:
441+
return annotated_types
442+
return None
441443
else:
442444
if get_origin(tp) is Annotated:
443445
return tp

0 commit comments

Comments
 (0)