mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-24 14:02:49 -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
36 lines
728 B
Python
36 lines
728 B
Python
import pytest
|
|
from fastapi import APIRouter, FastAPI
|
|
from fastapi.testclient import TestClient
|
|
|
|
app = FastAPI()
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("")
|
|
def get_empty():
|
|
return ["OK"]
|
|
|
|
|
|
app.include_router(router, prefix="/prefix")
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_use_empty():
|
|
with client:
|
|
response = client.get("/prefix")
|
|
assert response.status_code == 200
|
|
assert response.json() == ["OK"]
|
|
|
|
response = client.get("/prefix/")
|
|
assert response.status_code == 200
|
|
assert response.json() == ["OK"]
|
|
|
|
|
|
def test_include_empty():
|
|
# if both include and router.path are empty - it should raise exception
|
|
with pytest.raises(Exception):
|
|
app.include_router(router)
|