Browse Source

Merge 6158f8d8d9 into 8032e21418

pull/4657/merge
Lorhan Sohaky 1 day ago
committed by GitHub
parent
commit
70bab35757
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      fastapi/openapi/utils.py
  2. 36
      tests/test_custom_openapi_subapp.py

2
fastapi/openapi/utils.py

@ -488,6 +488,7 @@ def get_openapi(
terms_of_service: Optional[str] = None,
contact: Optional[Dict[str, Union[str, Any]]] = None,
license_info: Optional[Dict[str, Union[str, Any]]] = None,
prefix: str = "",
separate_input_output_schemas: bool = True,
) -> Dict[str, Any]:
info: Dict[str, Any] = {"title": title, "version": version}
@ -529,6 +530,7 @@ def get_openapi(
)
if result:
path, security_schemes, path_definitions = result
route.path_format = f"{prefix}{route.path_format}"
if path:
paths.setdefault(route.path_format, {}).update(path)
if security_schemes:

36
tests/test_custom_openapi_subapp.py

@ -0,0 +1,36 @@
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"]
Loading…
Cancel
Save