mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-29 00:11:16 -05: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
103 lines
3.1 KiB
Python
103 lines
3.1 KiB
Python
from fastapi import Depends, FastAPI, Header, status
|
|
from fastapi.testclient import TestClient
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
def get_header(*, someheader: str = Header(...)):
|
|
return someheader
|
|
|
|
|
|
def get_something_else(*, someheader: str = Depends(get_header)):
|
|
return f"{someheader}123"
|
|
|
|
|
|
@app.get("/")
|
|
def get_deps(dep1: str = Depends(get_header), dep2: str = Depends(get_something_else)):
|
|
return {"dep1": dep1, "dep2": dep2}
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
schema = {
|
|
"components": {
|
|
"schemas": {
|
|
"HTTPValidationError": {
|
|
"properties": {
|
|
"detail": {
|
|
"items": {"$ref": "#/components/schemas/ValidationError"},
|
|
"title": "Detail",
|
|
"type": "array",
|
|
}
|
|
},
|
|
"title": "HTTPValidationError",
|
|
"type": "object",
|
|
},
|
|
"ValidationError": {
|
|
"properties": {
|
|
"loc": {
|
|
"items": {"type": "string"},
|
|
"title": "Location",
|
|
"type": "array",
|
|
},
|
|
"msg": {"title": "Message", "type": "string"},
|
|
"type": {"title": "Error " "Type", "type": "string"},
|
|
},
|
|
"required": ["loc", "msg", "type"],
|
|
"title": "ValidationError",
|
|
"type": "object",
|
|
},
|
|
}
|
|
},
|
|
"info": {"title": "FastAPI", "version": "0.1.0"},
|
|
"openapi": "3.0.2",
|
|
"paths": {
|
|
"/": {
|
|
"get": {
|
|
"operationId": "get_deps__get",
|
|
"parameters": [
|
|
{
|
|
"in": "header",
|
|
"name": "someheader",
|
|
"required": True,
|
|
"schema": {"title": "Someheader", "type": "string"},
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"content": {"application/json": {"schema": {}}},
|
|
"description": "Successful " "Response",
|
|
},
|
|
"422": {
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {
|
|
"$ref": "#/components/schemas/HTTPValidationError"
|
|
}
|
|
}
|
|
},
|
|
"description": "Validation " "Error",
|
|
},
|
|
},
|
|
"summary": "Get Deps",
|
|
}
|
|
}
|
|
},
|
|
}
|
|
|
|
|
|
def test_schema():
|
|
response = client.get("/openapi.json")
|
|
assert response.status_code == status.HTTP_200_OK
|
|
actual_schema = response.json()
|
|
assert actual_schema == schema
|
|
assert (
|
|
len(actual_schema["paths"]["/"]["get"]["parameters"]) == 1
|
|
) # primary goal of this test
|
|
|
|
|
|
def test_response():
|
|
response = client.get("/", headers={"someheader": "hello"})
|
|
assert response.status_code == status.HTTP_200_OK
|
|
assert response.json() == {"dep1": "hello", "dep2": "hello123"}
|