pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
790 B
36 lines
790 B
from fastapi import FastAPI
|
|
from fastapi.openapi.utils import get_openapi
|
|
from fastapi.testclient import TestClient
|
|
|
|
app = FastAPI()
|
|
sub_app = FastAPI(
|
|
docs_url=None,
|
|
redoc_url=None,
|
|
openapi_url=None,
|
|
)
|
|
|
|
|
|
@sub_app.get("/openapi.json")
|
|
async def openapi(
|
|
# Custom Deps
|
|
):
|
|
return get_openapi(
|
|
title="Custom OpenAPI",
|
|
version="0.1",
|
|
routes=sub_app.routes,
|
|
prefix="/sub_app",
|
|
)
|
|
|
|
|
|
app.mount("/sub_app", sub_app)
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_sub_app_open_api():
|
|
response = client.get("/sub_app/openapi.json")
|
|
assert response.status_code == 200, response.json()
|
|
assert response.headers["content-type"] == "application/json"
|
|
paths = list(response.json()["paths"].keys())
|
|
assert paths == ["/sub_app/openapi.json"]
|
|
|