pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
457 B
25 lines
457 B
from functools import partial
|
|
from typing import Optional
|
|
|
|
from fastapi import FastAPI
|
|
from fastapi.testclient import TestClient
|
|
|
|
|
|
def main(some_arg, q: Optional[str] = None):
|
|
return {"some_arg": some_arg, "q": q}
|
|
|
|
|
|
endpoint = partial(main, "foo")
|
|
|
|
app = FastAPI()
|
|
|
|
app.get("/")(endpoint)
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_partial():
|
|
response = client.get("/?q=bar")
|
|
data = response.json()
|
|
assert data == {"some_arg": "foo", "q": "bar"}
|
|
|