2 changed files with 38 additions and 1 deletions
@ -0,0 +1,32 @@ |
|||
from functools import update_wrapper |
|||
|
|||
from fastapi import FastAPI |
|||
from fastapi.testclient import TestClient |
|||
|
|||
|
|||
class SomeDecorator: |
|||
def __init__(self, original_route): |
|||
update_wrapper(wrapper=self, wrapped=original_route) |
|||
self.route = original_route |
|||
|
|||
async def __call__(self, *args, **kwargs): |
|||
return await self.route(*args, **kwargs) |
|||
|
|||
|
|||
data = {"working": True} |
|||
|
|||
|
|||
@SomeDecorator |
|||
async def route(): |
|||
return data |
|||
|
|||
|
|||
app = FastAPI() |
|||
app.get("/")(route) |
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
def test_endpoint_with_async_class_decorator(): |
|||
response = client.get("/") |
|||
assert data == response.json() |
Loading…
Reference in new issue