mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 18:46:40 +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
19 lines
615 B
Python
19 lines
615 B
Python
import shutil
|
|
|
|
from fastapi.testclient import TestClient
|
|
|
|
|
|
def test_main():
|
|
shutil.copytree("./docs/src/templates/templates/", "./templates")
|
|
shutil.copytree("./docs/src/templates/static/", "./static")
|
|
from templates.tutorial001 import app
|
|
|
|
client = TestClient(app)
|
|
response = client.get("/items/foo")
|
|
assert response.status_code == 200
|
|
assert b"<h1>Item ID: foo</h1>" in response.content
|
|
response = client.get("/static/styles.css")
|
|
assert response.status_code == 200
|
|
assert b"color: green;" in response.content
|
|
shutil.rmtree("./templates")
|
|
shutil.rmtree("./static")
|