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.
77 lines
1.7 KiB
77 lines
1.7 KiB
from typing import Dict, List, Tuple
|
|
|
|
import pytest
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
|
|
def test_invalid_sequence():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
class Item(BaseModel):
|
|
title: str
|
|
|
|
@app.get("/items/{id}")
|
|
def read_items(id: List[Item]):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_tuple():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
class Item(BaseModel):
|
|
title: str
|
|
|
|
@app.get("/items/{id}")
|
|
def read_items(id: Tuple[Item, Item]):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_dict():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
class Item(BaseModel):
|
|
title: str
|
|
|
|
@app.get("/items/{id}")
|
|
def read_items(id: Dict[str, Item]):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_simple_list():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
@app.get("/items/{id}")
|
|
def read_items(id: list):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_simple_tuple():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
@app.get("/items/{id}")
|
|
def read_items(id: tuple):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_simple_set():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
@app.get("/items/{id}")
|
|
def read_items(id: set):
|
|
pass # pragma: no cover
|
|
|
|
|
|
def test_invalid_simple_dict():
|
|
with pytest.raises(AssertionError):
|
|
app = FastAPI()
|
|
|
|
@app.get("/items/{id}")
|
|
def read_items(id: dict):
|
|
pass # pragma: no cover
|
|
|