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.
34 lines
735 B
34 lines
735 B
from datetime import datetime, timezone
|
|
|
|
from fastapi import FastAPI
|
|
from fastapi.testclient import TestClient
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class ModelWithDatetimeField(BaseModel):
|
|
dt_field: datetime
|
|
|
|
class Config:
|
|
json_encoders = {
|
|
datetime: lambda dt: dt.replace(
|
|
microsecond=0, tzinfo=timezone.utc
|
|
).isoformat()
|
|
}
|
|
|
|
|
|
app = FastAPI()
|
|
model = ModelWithDatetimeField(dt_field=datetime(2019, 1, 1, 8))
|
|
|
|
|
|
@app.get("/model", response_model=ModelWithDatetimeField)
|
|
def get_model():
|
|
return model
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_dt():
|
|
with client:
|
|
response = client.get("/model")
|
|
assert response.json() == {"dt_field": "2019-01-01T08:00:00+00:00"}
|
|
|