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.
36 lines
805 B
36 lines
805 B
import pytest
|
|
from fastapi import APIRouter, FastAPI
|
|
from fastapi.exceptions import FastAPIError
|
|
from fastapi.testclient import TestClient
|
|
|
|
app = FastAPI()
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("")
|
|
def get_empty():
|
|
return ["OK"]
|
|
|
|
|
|
app.include_router(router, prefix="/prefix")
|
|
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_use_empty():
|
|
with client:
|
|
response = client.get("/prefix")
|
|
assert response.status_code == 200, response.text
|
|
assert response.json() == ["OK"]
|
|
|
|
response = client.get("/prefix/")
|
|
assert response.status_code == 200, response.text
|
|
assert response.json() == ["OK"]
|
|
|
|
|
|
def test_include_empty():
|
|
# if both include and router.path are empty - it should raise exception
|
|
with pytest.raises(FastAPIError):
|
|
app.include_router(router)
|
|
|