mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
* ✨ Re-export main features used from Starlette to simplify developer's code * ♻️ Refactor Starlette exports * ♻️ Refactor tutorial examples to use re-exported utils from Starlette * 📝 Add examples for all middlewares * 📝 Add new docs for middlewares * 📝 Add examples for custom responses * 📝 Extend docs for custom responses * 📝 Update docs and add notes explaining re-exports from Starlette everywhere * 🍱 Update screenshot for HTTP status * 🔧 Update MkDocs config with new content * ♻️ Refactor tests to use re-exported utils from Starlette * ✨ Re-export WebSocketDisconnect from Starlette for tests * ✅ Add extra tests for extra re-exported middleware * ✅ Add tests for re-exported responses from Starlette * ✨ Add docs about mounting WSGI apps * ➕ Add Flask as a dependency to test WSGIMiddleware * ✅ Test WSGIMiddleware example
28 lines
706 B
Python
28 lines
706 B
Python
from fastapi import FastAPI
|
|
from fastapi.testclient import TestClient
|
|
|
|
swagger_ui_init_oauth = {"clientId": "the-foo-clients", "appName": "The Predendapp"}
|
|
|
|
app = FastAPI(swagger_ui_init_oauth=swagger_ui_init_oauth)
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items():
|
|
return {"id": "foo"}
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_swagger_ui():
|
|
response = client.get("/docs")
|
|
assert response.status_code == 200
|
|
print(response.text)
|
|
assert f"ui.initOAuth" in response.text
|
|
assert f'"appName": "The Predendapp"' in response.text
|
|
assert f'"clientId": "the-foo-clients"' in response.text
|
|
|
|
|
|
def test_response():
|
|
response = client.get("/items/")
|
|
assert response.json() == {"id": "foo"}
|