Last active
September 26, 2023 18:49
-
-
Save chbndrhnns/5e961974c8cb57bfe7e4955af23f1985 to your computer and use it in GitHub Desktop.
FastAPI 0.103 loses custom class name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import typing as t | |
import pytest | |
from pydantic import BaseModel | |
from pydantic.json_schema import GenerateJsonSchema | |
from fastapi import FastAPI | |
from fastapi._compat import get_definitions | |
from fastapi.openapi.constants import REF_TEMPLATE | |
from fastapi.openapi.utils import get_fields_from_routes | |
T = t.TypeVar("T") | |
app = FastAPI() | |
class Response(BaseModel, t.Generic[T]): | |
data: T | |
@classmethod | |
def model_parametrized_name(cls, params: tuple[type[t.Any], ...]) -> str: | |
return "IntWrapper" | |
@app.get("/", response_model=Response[int]) | |
async def get(): | |
return {"data": 1} | |
def test_spec(): | |
spec = app.openapi() | |
actual = set(spec["components"]["schemas"].keys()) | |
assert "IntWrapper" in actual, actual | |
def test_internals(): | |
# duplicated from utils.get_openapi() | |
all_fields = get_fields_from_routes(list(app.routes)) | |
schema_generator = GenerateJsonSchema(ref_template=REF_TEMPLATE) | |
field_mapping, definitions = get_definitions( | |
fields=all_fields, | |
schema_generator=schema_generator, | |
model_name_map={}, | |
) | |
assert "IntWrapper" in set(definitions), definitions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It works with pydantic v1: