committed by
GitHub
2 changed files with 38 additions and 0 deletions
@ -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…
Reference in new issue