mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-20 11:58:24 -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
26 lines
543 B
Python
26 lines
543 B
Python
from fastapi import FastAPI
|
|
from fastapi.params import Param
|
|
from fastapi.testclient import TestClient
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/")
|
|
def read_items(q: str = Param(None)):
|
|
return {"q": q}
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_default_param_query_none():
|
|
response = client.get("/items/")
|
|
assert response.status_code == 200
|
|
assert response.json() == {"q": None}
|
|
|
|
|
|
def test_default_param_query():
|
|
response = client.get("/items/?q=foo")
|
|
assert response.status_code == 200
|
|
assert response.json() == {"q": "foo"}
|