committed by
Sebastián Ramírez
3 changed files with 236 additions and 0 deletions
@ -0,0 +1,41 @@ |
|||
from fastapi import FastAPI |
|||
from fastapi.openapi.docs import ( |
|||
get_redoc_html, |
|||
get_swagger_ui_html, |
|||
get_swagger_ui_oauth2_redirect_html, |
|||
) |
|||
from starlette.staticfiles import StaticFiles |
|||
|
|||
app = FastAPI(docs_url=None, redoc_url=None) |
|||
|
|||
app.mount("/static", StaticFiles(directory="static"), name="static") |
|||
|
|||
|
|||
@app.get("/docs", include_in_schema=False) |
|||
async def custom_swagger_ui_html(): |
|||
return get_swagger_ui_html( |
|||
openapi_url=app.openapi_url, |
|||
title=app.title + " - Swagger UI", |
|||
oauth2_redirect_url=app.swagger_ui_oauth2_redirect_url, |
|||
swagger_js_url="/static/swagger-ui-bundle.js", |
|||
swagger_css_url="/static/swagger-ui.css", |
|||
) |
|||
|
|||
|
|||
@app.get(app.swagger_ui_oauth2_redirect_url, include_in_schema=False) |
|||
async def swagger_ui_redirect(): |
|||
return get_swagger_ui_oauth2_redirect_html() |
|||
|
|||
|
|||
@app.get("/redoc", include_in_schema=False) |
|||
async def redoc_html(): |
|||
return get_redoc_html( |
|||
openapi_url=app.openapi_url, |
|||
title=app.title + " - ReDoc", |
|||
redoc_js_url="/static/redoc.standalone.js", |
|||
) |
|||
|
|||
|
|||
@app.get("/users/{username}") |
|||
async def read_user(username: str): |
|||
return {"message": f"Hello {username}"} |
@ -0,0 +1,42 @@ |
|||
import os |
|||
from pathlib import Path |
|||
|
|||
import pytest |
|||
from starlette.testclient import TestClient |
|||
|
|||
|
|||
@pytest.fixture(scope="module") |
|||
def client(): |
|||
static_dir: Path = Path(os.getcwd()) / "static" |
|||
print(static_dir) |
|||
static_dir.mkdir(exist_ok=True) |
|||
from extending_openapi.tutorial002 import app |
|||
|
|||
with TestClient(app) as client: |
|||
yield client |
|||
static_dir.rmdir() |
|||
|
|||
|
|||
def test_swagger_ui_html(client: TestClient): |
|||
response = client.get("/docs") |
|||
assert response.status_code == 200 |
|||
assert "/static/swagger-ui-bundle.js" in response.text |
|||
assert "/static/swagger-ui.css" in response.text |
|||
|
|||
|
|||
def test_swagger_ui_oauth2_redirect_html(client: TestClient): |
|||
response = client.get("/docs/oauth2-redirect") |
|||
assert response.status_code == 200 |
|||
assert "window.opener.swaggerUIRedirectOauth2" in response.text |
|||
|
|||
|
|||
def test_redoc_html(client: TestClient): |
|||
response = client.get("/redoc") |
|||
assert response.status_code == 200 |
|||
assert "/static/redoc.standalone.js" in response.text |
|||
|
|||
|
|||
def test_api(client: TestClient): |
|||
response = client.get("/users/john") |
|||
assert response.status_code == 200 |
|||
assert response.json()["message"] == "Hello john" |
Loading…
Reference in new issue