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.
53 lines
1.2 KiB
53 lines
1.2 KiB
from typing import Dict, List, Optional, Tuple
|
|
|
|
import pytest
|
|
from fastapi import FastAPI, Query
|
|
from pydantic import BaseModel
|
|
|
|
|
|
def test_invalid_sequence():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
class Item(BaseModel):
|
|
title: str
|
|
|
|
@app.get("/items/")
|
|
def read_items(q: List[Item] = Query(default=None)):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_tuple():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
class Item(BaseModel):
|
|
title: str
|
|
|
|
@app.get("/items/")
|
|
def read_items(q: Tuple[Item, Item] = Query(default=None)):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_dict():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
class Item(BaseModel):
|
|
title: str
|
|
|
|
@app.get("/items/")
|
|
def read_items(q: Dict[str, Item] = Query(default=None)):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_simple_dict():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
class Item(BaseModel):
|
|
title: str
|
|
|
|
@app.get("/items/")
|
|
def read_items(q: Optional[dict] = Query(default=None)):
|
|
pass # pragma: no cover
|
|
|