|
|
@ -1,5 +1,11 @@ |
|
|
|
from fastapi import APIRouter, FastAPI |
|
|
|
from fastapi.testclient import TestClient |
|
|
|
from pydantic import BaseModel |
|
|
|
|
|
|
|
|
|
|
|
class ResponseModel(BaseModel): |
|
|
|
message: str |
|
|
|
|
|
|
|
|
|
|
|
app = FastAPI() |
|
|
|
router = APIRouter() |
|
|
@ -33,6 +39,18 @@ async def c(): |
|
|
|
return "c" |
|
|
|
|
|
|
|
|
|
|
|
@router.get( |
|
|
|
"/d", |
|
|
|
responses={ |
|
|
|
"400": {"description": "Error with str"}, |
|
|
|
"5XX": {"model": ResponseModel}, |
|
|
|
"default": {"model": ResponseModel}, |
|
|
|
}, |
|
|
|
) |
|
|
|
async def d(): |
|
|
|
return "d" |
|
|
|
|
|
|
|
|
|
|
|
app.include_router(router) |
|
|
|
|
|
|
|
openapi_schema = { |
|
|
@ -81,6 +99,45 @@ openapi_schema = { |
|
|
|
"operationId": "c_c_get", |
|
|
|
} |
|
|
|
}, |
|
|
|
"/d": { |
|
|
|
"get": { |
|
|
|
"responses": { |
|
|
|
"400": {"description": "Error with str"}, |
|
|
|
"5XX": { |
|
|
|
"description": "Server Error", |
|
|
|
"content": { |
|
|
|
"application/json": { |
|
|
|
"schema": {"$ref": "#/components/schemas/ResponseModel"} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
"200": { |
|
|
|
"description": "Successful Response", |
|
|
|
"content": {"application/json": {"schema": {}}}, |
|
|
|
}, |
|
|
|
"default": { |
|
|
|
"description": "Default Response", |
|
|
|
"content": { |
|
|
|
"application/json": { |
|
|
|
"schema": {"$ref": "#/components/schemas/ResponseModel"} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
"summary": "D", |
|
|
|
"operationId": "d_d_get", |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
"components": { |
|
|
|
"schemas": { |
|
|
|
"ResponseModel": { |
|
|
|
"title": "ResponseModel", |
|
|
|
"required": ["message"], |
|
|
|
"type": "object", |
|
|
|
"properties": {"message": {"title": "Message", "type": "string"}}, |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
@ -109,3 +166,9 @@ def test_c(): |
|
|
|
response = client.get("/c") |
|
|
|
assert response.status_code == 200, response.text |
|
|
|
assert response.json() == "c" |
|
|
|
|
|
|
|
|
|
|
|
def test_d(): |
|
|
|
response = client.get("/d") |
|
|
|
assert response.status_code == 200, response.text |
|
|
|
assert response.json() == "d" |
|
|
|