Browse Source
assert that include_router does not cause initialization
pull/10589/head
Jan Vollmer
7 months ago
No known key found for this signature in database
GPG Key ID: 19473D3A5AB433DA
1 changed files with
11 additions and
0 deletions
-
tests/test_route_deferred_init.py
|
|
@ -1,3 +1,4 @@ |
|
|
|
from itertools import chain |
|
|
|
from typing import List, Optional |
|
|
|
|
|
|
|
from fastapi import APIRouter, Depends, FastAPI |
|
|
@ -104,3 +105,13 @@ def test_root_router_always_initialized(): |
|
|
|
client = TestClient(app) |
|
|
|
response = client.get("/test") |
|
|
|
assert response.status_code == 200 |
|
|
|
|
|
|
|
|
|
|
|
def test_include_router_no_init(): |
|
|
|
router1 = create_test_router() |
|
|
|
|
|
|
|
router2 = create_test_router() |
|
|
|
router2.include_router(router1) |
|
|
|
|
|
|
|
for route in chain(router1.routes, router2.routes): |
|
|
|
check_if_initialized(route, should_not=True) |
|
|
|