Skip to content

Commit 3bb1998

Browse files
committed
Add small optimizations
1 parent 36e7819 commit 3bb1998

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

src/openapi_test_client/libraries/api/api_classes/__init__.py

+11-8
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ def init_api_classes(base_api_class: type[APIClassType]) -> list[type[APIClassTy
5656

5757
# Set all API class' Endpoint objects to the base class's endpoint attribute
5858
base_api_class.endpoints = sorted(
59-
list(itertools.chain(*[x.endpoints for x in api_classes if x.endpoints])),
60-
key=lambda x: (", ".join(x.tags), x.method, x.path),
59+
itertools.chain(*(x.endpoints for x in api_classes if x.endpoints)),
60+
key=lambda x: (x.tags, x.method, x.path),
6161
)
6262
return sorted(api_classes, key=lambda x: x.TAGs)
6363

@@ -71,14 +71,17 @@ def get_api_classes(api_class_dir: Path, base_api_class: type[APIClassType]) ->
7171
raise RuntimeError(f"Found no API class modules in {api_class_dir}")
7272

7373
api_classes = [
74-
getattr(mod, x)
74+
obj
7575
for mod in api_modules
7676
for x in dir(mod)
77-
if inspect.isclass(getattr(mod, x))
78-
and issubclass(getattr(mod, x), base_api_class)
77+
if not x.startswith("_")
7978
and x != base_api_class.__name__
79+
and (obj := getattr(mod, x))
80+
and inspect.isclass(obj)
81+
and issubclass(obj, base_api_class)
8082
]
81-
assert api_classes, (
82-
f"Unable to find any API class that is a subclass of {base_api_class.__name__} in {api_class_dir}"
83-
)
83+
if not api_classes:
84+
raise RuntimeError(
85+
f"Unable to find any API class that is a subclass of {base_api_class.__name__} in {api_class_dir}"
86+
)
8487
return api_classes

src/openapi_test_client/libraries/api/api_functions/endpoints.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
logger = get_logger(__name__)
3939

4040

41-
@dataclass(frozen=True)
41+
@dataclass(frozen=True, slots=True)
4242
class Endpoint:
4343
"""An Endpoint class to hold various endpoint data associated to an API class function
4444

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

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def create_endpoint_model(endpoint_func: EndpointFunc, api_spec: dict[str, Any]
8888
namespace={"content_type": content_type, "endpoint_func": endpoint_func},
8989
kw_only=True,
9090
frozen=True,
91+
slots=True,
9192
),
9293
)
9394

src/openapi_test_client/libraries/api/types.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -430,14 +430,14 @@ def to_tuple(self) -> tuple[str, str | bytes | str]:
430430
return astuple(self) # type: ignore
431431

432432

433-
@dataclass(frozen=True)
433+
@dataclass(frozen=True, slots=True)
434434
class ParamAnnotationType:
435435
"""Base class for all custom classes used for annotating endpoint function parameters"""
436436

437437
...
438438

439439

440-
@dataclass(frozen=True)
440+
@dataclass(frozen=True, slots=True)
441441
class Alias(ParamAnnotationType):
442442
"""Alias param name
443443
@@ -448,7 +448,7 @@ class Alias(ParamAnnotationType):
448448
value: str
449449

450450

451-
@dataclass(frozen=True)
451+
@dataclass(frozen=True, slots=True)
452452
class Format(ParamAnnotationType):
453453
"""OpenAPI parameter format
454454
@@ -458,7 +458,7 @@ class Format(ParamAnnotationType):
458458
value: str
459459

460460

461-
@dataclass(frozen=True)
461+
@dataclass(frozen=True, slots=True)
462462
class Constraint(ParamAnnotationType):
463463
"""OpenAPI parameter constraints (maxLength, minLength, etc.)
464464

0 commit comments

Comments
 (0)