diff --git a/docs/en/docs/advanced/testing-events.md b/docs/en/docs/advanced/testing-events.md index 0c554c4ec..6c800f279 100644 --- a/docs/en/docs/advanced/testing-events.md +++ b/docs/en/docs/advanced/testing-events.md @@ -1,5 +1,7 @@ # Testing Events: startup - shutdown -When you need your event handlers (`startup` and `shutdown`) to run in your tests, you can use the `TestClient` with a `with` statement: +When you need your event handlers (`lifespan`, `startup` and `shutdown`) to run in your tests, you can use the `TestClient` with a `with` statement: -{* ../../docs_src/app_testing/tutorial003.py hl[9:12,20:24] *} +You can read more details about the ["Running lifespan in tests in the official Starlette documentation site."](https://www.starlette.io/lifespan/#running-lifespan-in-tests) + +{* ../../docs_src/app_testing/tutorial003.py hl[9:15,32:37] *} \ No newline at end of file diff --git a/docs_src/app_testing/tutorial003.py b/docs_src/app_testing/tutorial003.py index ca6b45ce0..3b952dd73 100644 --- a/docs_src/app_testing/tutorial003.py +++ b/docs_src/app_testing/tutorial003.py @@ -1,15 +1,27 @@ +from contextlib import asynccontextmanager + from fastapi import FastAPI from fastapi.testclient import TestClient -app = FastAPI() - items = {} -@app.on_event("startup") -async def startup_event(): +@asynccontextmanager +async def lifespan(app: FastAPI): items["foo"] = {"name": "Fighters"} items["bar"] = {"name": "Tenders"} + yield + # clean up items or other work + ... + + +app = FastAPI(lifespan=lifespan) + +# startup event and shutdown event are deprecated, you should use lifespan instead +# @app.on_event("startup") +# async def startup_event(): +# items["foo"] = {"name": "Fighters"} +# items["bar"] = {"name": "Tenders"} @app.get("/items/{item_id}") diff --git a/tests/test_tutorial/test_testing/test_tutorial003.py b/tests/test_tutorial/test_testing/test_tutorial003.py index 2a5d67071..d9e16390e 100644 --- a/tests/test_tutorial/test_testing/test_tutorial003.py +++ b/tests/test_tutorial/test_testing/test_tutorial003.py @@ -1,7 +1,5 @@ -import pytest +from docs_src.app_testing.tutorial003 import test_read_items def test_main(): - with pytest.warns(DeprecationWarning): - from docs_src.app_testing.tutorial003 import test_read_items test_read_items()