1 changed files with 197 additions and 0 deletions
@ -0,0 +1,197 @@ |
|||||
|
import importlib |
||||
|
|
||||
|
import pytest |
||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from ...utils import needs_py39, needs_py310, needs_pydanticv2 |
||||
|
|
||||
|
skip_for_pydantic_v1 = needs_pydanticv2 |
||||
|
|
||||
|
|
||||
|
@pytest.fixture( |
||||
|
name="client", |
||||
|
params=[ |
||||
|
pytest.param("tutorial001"), |
||||
|
pytest.param("tutorial001_py39", marks=needs_py39), |
||||
|
pytest.param("tutorial001_py310", marks=needs_py310), |
||||
|
pytest.param("tutorial001_01"), |
||||
|
pytest.param("tutorial001_01_py39", marks=needs_py39), |
||||
|
pytest.param("tutorial001_01_py310", marks=needs_py310), |
||||
|
], |
||||
|
) |
||||
|
def get_client(request: pytest.FixtureRequest): |
||||
|
mod = importlib.import_module(f"docs_src.response_model.{request.param}") |
||||
|
|
||||
|
client = TestClient(mod.app) |
||||
|
return client |
||||
|
|
||||
|
|
||||
|
def test_read_items(client: TestClient): |
||||
|
response = client.get("/items/") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == [ |
||||
|
{ |
||||
|
"name": "Portal Gun", |
||||
|
"description": None, |
||||
|
"price": 42.0, |
||||
|
"tags": [], |
||||
|
"tax": None, |
||||
|
}, |
||||
|
{ |
||||
|
"name": "Plumbus", |
||||
|
"description": None, |
||||
|
"price": 32.0, |
||||
|
"tags": [], |
||||
|
"tax": None, |
||||
|
}, |
||||
|
] |
||||
|
|
||||
|
|
||||
|
def test_create_item(client: TestClient): |
||||
|
item_data = { |
||||
|
"name": "Test Item", |
||||
|
"description": "A test item", |
||||
|
"price": 10.5, |
||||
|
"tax": 1.5, |
||||
|
"tags": ["test", "item"], |
||||
|
} |
||||
|
response = client.post("/items/", json=item_data) |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == item_data |
||||
|
|
||||
|
|
||||
|
def test_create_item_only_required(client: TestClient): |
||||
|
response = client.post( |
||||
|
"/items/", |
||||
|
json={ |
||||
|
"name": "Test Item", |
||||
|
"price": 10.5, |
||||
|
}, |
||||
|
) |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == { |
||||
|
"name": "Test Item", |
||||
|
"price": 10.5, |
||||
|
"description": None, |
||||
|
"tax": None, |
||||
|
"tags": [], |
||||
|
} |
||||
|
|
||||
|
|
||||
|
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/": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"type": "array", |
||||
|
"items": {"$ref": "#/components/schemas/Item"}, |
||||
|
"title": "Response Read Items Items Get", |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"summary": "Read Items", |
||||
|
"operationId": "read_items_items__get", |
||||
|
}, |
||||
|
"post": { |
||||
|
"requestBody": { |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/Item", |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"required": True, |
||||
|
}, |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": {"$ref": "#/components/schemas/Item"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"422": { |
||||
|
"description": "Validation Error", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/HTTPValidationError" |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"summary": "Create Item", |
||||
|
"operationId": "create_item_items__post", |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"schemas": { |
||||
|
"Item": { |
||||
|
"title": "Item", |
||||
|
"required": ["name", "price"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"name": {"title": "Name", "type": "string"}, |
||||
|
"price": {"title": "Price", "type": "number"}, |
||||
|
"description": { |
||||
|
"title": "Description", |
||||
|
"anyOf": [{"type": "string"}, {"type": "null"}], |
||||
|
}, |
||||
|
"tax": { |
||||
|
"title": "Tax", |
||||
|
"anyOf": [{"type": "number"}, {"type": "null"}], |
||||
|
}, |
||||
|
"tags": { |
||||
|
"title": "Tags", |
||||
|
"type": "array", |
||||
|
"items": {"type": "string"}, |
||||
|
"default": [], |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"ValidationError": { |
||||
|
"title": "ValidationError", |
||||
|
"required": ["loc", "msg", "type"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"loc": { |
||||
|
"title": "Location", |
||||
|
"type": "array", |
||||
|
"items": { |
||||
|
"anyOf": [{"type": "string"}, {"type": "integer"}] |
||||
|
}, |
||||
|
}, |
||||
|
"msg": {"title": "Message", "type": "string"}, |
||||
|
"type": {"title": "Error Type", "type": "string"}, |
||||
|
}, |
||||
|
}, |
||||
|
"HTTPValidationError": { |
||||
|
"title": "HTTPValidationError", |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"detail": { |
||||
|
"title": "Detail", |
||||
|
"type": "array", |
||||
|
"items": {"$ref": "#/components/schemas/ValidationError"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
Loading…
Reference in new issue