Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lifespan context v2 #4147

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/en/docs/advanced/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,15 @@ Here, the `shutdown` event handler function will write a text line `"Application

!!! info
You can read more about these event handlers in <a href="https://www.starlette.io/events/" class="external-link" target="_blank">Starlette's Events' docs</a>.

# Lifespan

You can also define a lifespan context as an async generator, instead of using startup and shutdown events.

This is useful when the startup and shutdown events of your application are encompassed in a context manager.

This function must be declared with `async def` and contain one `yield` statement.

```Python hl_lines="4"
{!../../../docs_src/events/tutorial003.py!}
```
15 changes: 15 additions & 0 deletions docs_src/events/tutorial003.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from fastapi import FastAPI


async def lifespan(app):
print("startup")
yield
print("shutdown")


app = FastAPI(lifespan=lifespan)


@app.get("/")
async def hello():
return {"result": "hello world"}
15 changes: 14 additions & 1 deletion fastapi/applications.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
from typing import Any, Callable, Coroutine, Dict, List, Optional, Sequence, Type, Union
from typing import (
Any,
AsyncGenerator,
Callable,
Coroutine,
Dict,
List,
Optional,
Sequence,
Type,
Union,
)

from fastapi import routing
from fastapi.concurrency import AsyncExitStack
Expand Down Expand Up @@ -55,6 +66,7 @@ def __init__(
] = None,
on_startup: Optional[Sequence[Callable[[], Any]]] = None,
on_shutdown: Optional[Sequence[Callable[[], Any]]] = None,
lifespan: Optional[Callable[[Any], AsyncGenerator[Any, Any]]] = None,
terms_of_service: Optional[str] = None,
contact: Optional[Dict[str, Union[str, Any]]] = None,
license_info: Optional[Dict[str, Union[str, Any]]] = None,
Expand All @@ -74,6 +86,7 @@ def __init__(
dependency_overrides_provider=self,
on_startup=on_startup,
on_shutdown=on_shutdown,
lifespan=lifespan,
default_response_class=default_response_class,
dependencies=dependencies,
callbacks=callbacks,
Expand Down
3 changes: 3 additions & 0 deletions fastapi/routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import json
from typing import (
Any,
AsyncGenerator,
Callable,
Coroutine,
Dict,
Expand Down Expand Up @@ -450,6 +451,7 @@ def __init__(
route_class: Type[APIRoute] = APIRoute,
on_startup: Optional[Sequence[Callable[[], Any]]] = None,
on_shutdown: Optional[Sequence[Callable[[], Any]]] = None,
lifespan: Optional[Callable[[Any], AsyncGenerator[Any, Any]]] = None,
deprecated: Optional[bool] = None,
include_in_schema: bool = True,
) -> None:
Expand All @@ -459,6 +461,7 @@ def __init__(
default=default, # type: ignore # in Starlette
on_startup=on_startup, # type: ignore # in Starlette
on_shutdown=on_shutdown, # type: ignore # in Starlette
lifespan=lifespan, # type: ignore # in Starlette
)
if prefix:
assert prefix.startswith("/"), "A path prefix must start with '/'"
Expand Down
96 changes: 58 additions & 38 deletions tests/test_router_events.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import pytest
from fastapi import APIRouter, FastAPI
from fastapi.testclient import TestClient
from pydantic import BaseModel
Expand All @@ -12,57 +13,49 @@ class State(BaseModel):
sub_router_shutdown: bool = False


state = State()
@pytest.fixture
def state():
return State()

app = FastAPI()

def test_router_events(state):
app = FastAPI()

@app.on_event("startup")
def app_startup():
state.app_startup = True
@app.get("/")
def main():
return {"message": "Hello World"}

@app.on_event("startup")
def app_startup():
state.app_startup = True

@app.on_event("shutdown")
def app_shutdown():
state.app_shutdown = True
@app.on_event("shutdown")
def app_shutdown():
state.app_shutdown = True

router = APIRouter()

router = APIRouter()
@router.on_event("startup")
def router_startup():
state.router_startup = True

@router.on_event("shutdown")
def router_shutdown():
state.router_shutdown = True

@router.on_event("startup")
def router_startup():
state.router_startup = True
sub_router = APIRouter()

@sub_router.on_event("startup")
def sub_router_startup():
state.sub_router_startup = True

@router.on_event("shutdown")
def router_shutdown():
state.router_shutdown = True
@sub_router.on_event("shutdown")
def sub_router_shutdown():
state.sub_router_shutdown = True

router.include_router(sub_router)
app.include_router(router)

sub_router = APIRouter()


@sub_router.on_event("startup")
def sub_router_startup():
state.sub_router_startup = True


@sub_router.on_event("shutdown")
def sub_router_shutdown():
state.sub_router_shutdown = True


@sub_router.get("/")
def main():
return {"message": "Hello World"}


router.include_router(sub_router)
app.include_router(router)


def test_router_events():
assert state.app_startup is False
assert state.router_startup is False
assert state.sub_router_startup is False
Expand All @@ -85,3 +78,30 @@ def test_router_events():
assert state.app_shutdown is True
assert state.router_shutdown is True
assert state.sub_router_shutdown is True


def test_app_lifespan_state(state):
class Lifespan:
def __init__(self, app):
pass
async def __aenter__(self):
state.app_startup = True
async def __aexit__(self, exc_type, exc_value, exc_tb):
state.app_shutdown = True

app = FastAPI(lifespan=Lifespan)

@app.get("/")
def main():
return {"message": "Hello World"}

assert state.app_startup is False
assert state.app_shutdown is False
with TestClient(app) as client:
assert state.app_startup is True
assert state.app_shutdown is False
response = client.get("/")
assert response.status_code == 200, response.text
assert response.json() == {"message": "Hello World"}
assert state.app_startup is True
assert state.app_shutdown is True