committed by
GitHub
6 changed files with 185 additions and 18 deletions
@ -0,0 +1,34 @@ |
|||
from typing import List |
|||
|
|||
import yaml |
|||
from fastapi import FastAPI, HTTPException, Request |
|||
from pydantic import BaseModel, ValidationError |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
class Item(BaseModel): |
|||
name: str |
|||
tags: List[str] |
|||
|
|||
|
|||
@app.post( |
|||
"/items/", |
|||
openapi_extra={ |
|||
"requestBody": { |
|||
"content": {"application/x-yaml": {"schema": Item.schema()}}, |
|||
"required": True, |
|||
}, |
|||
}, |
|||
) |
|||
async def create_item(request: Request): |
|||
raw_body = await request.body() |
|||
try: |
|||
data = yaml.safe_load(raw_body) |
|||
except yaml.YAMLError: |
|||
raise HTTPException(status_code=422, detail="Invalid YAML") |
|||
try: |
|||
item = Item.parse_obj(data) |
|||
except ValidationError as e: |
|||
raise HTTPException(status_code=422, detail=e.errors()) |
|||
return item |
@ -0,0 +1,106 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_pydanticv1 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.path_operation_advanced_configuration.tutorial007_pv1 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_pydanticv1 |
|||
def test_post(client: TestClient): |
|||
yaml_data = """ |
|||
name: Deadpoolio |
|||
tags: |
|||
- x-force |
|||
- x-men |
|||
- x-avengers |
|||
""" |
|||
response = client.post("/items/", content=yaml_data) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"name": "Deadpoolio", |
|||
"tags": ["x-force", "x-men", "x-avengers"], |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv1 |
|||
def test_post_broken_yaml(client: TestClient): |
|||
yaml_data = """ |
|||
name: Deadpoolio |
|||
tags: |
|||
x - x-force |
|||
x - x-men |
|||
x - x-avengers |
|||
""" |
|||
response = client.post("/items/", content=yaml_data) |
|||
assert response.status_code == 422, response.text |
|||
assert response.json() == {"detail": "Invalid YAML"} |
|||
|
|||
|
|||
@needs_pydanticv1 |
|||
def test_post_invalid(client: TestClient): |
|||
yaml_data = """ |
|||
name: Deadpoolio |
|||
tags: |
|||
- x-force |
|||
- x-men |
|||
- x-avengers |
|||
- sneaky: object |
|||
""" |
|||
response = client.post("/items/", content=yaml_data) |
|||
assert response.status_code == 422, response.text |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{"loc": ["tags", 3], "msg": "str type expected", "type": "type_error.str"} |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv1 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/": { |
|||
"post": { |
|||
"summary": "Create Item", |
|||
"operationId": "create_item_items__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-yaml": { |
|||
"schema": { |
|||
"title": "Item", |
|||
"required": ["name", "tags"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"tags": { |
|||
"title": "Tags", |
|||
"type": "array", |
|||
"items": {"type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
} |
Loading…
Reference in new issue