mirror of https://github.com/tiangolo/fastapi.git
183 lines
6.0 KiB
Python
183 lines
6.0 KiB
Python
import importlib
|
|
|
|
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from ...utils import needs_py310
|
|
|
|
|
|
@pytest.fixture(
|
|
name="client",
|
|
params=[
|
|
pytest.param("tutorial004_py39"),
|
|
pytest.param("tutorial004_py310", marks=needs_py310),
|
|
],
|
|
)
|
|
def get_client(request: pytest.FixtureRequest):
|
|
mod = importlib.import_module(f"docs_src.body.{request.param}")
|
|
|
|
client = TestClient(mod.app)
|
|
return client
|
|
|
|
|
|
def test_put_all(client: TestClient):
|
|
response = client.put(
|
|
"/items/123",
|
|
json={"name": "Foo", "price": 50.1, "description": "Some Foo", "tax": 0.3},
|
|
params={"q": "somequery"},
|
|
)
|
|
assert response.status_code == 200
|
|
assert response.json() == {
|
|
"item_id": 123,
|
|
"name": "Foo",
|
|
"price": 50.1,
|
|
"description": "Some Foo",
|
|
"tax": 0.3,
|
|
"q": "somequery",
|
|
}
|
|
|
|
|
|
def test_put_only_required(client: TestClient):
|
|
response = client.put(
|
|
"/items/123",
|
|
json={"name": "Foo", "price": 50.1},
|
|
)
|
|
assert response.status_code == 200
|
|
assert response.json() == {
|
|
"item_id": 123,
|
|
"name": "Foo",
|
|
"price": 50.1,
|
|
"description": None,
|
|
"tax": None,
|
|
}
|
|
|
|
|
|
def test_put_with_no_data(client: TestClient):
|
|
response = client.put("/items/123", json={})
|
|
assert response.status_code == 422
|
|
assert response.json() == {
|
|
"detail": [
|
|
{
|
|
"type": "missing",
|
|
"loc": ["body", "name"],
|
|
"msg": "Field required",
|
|
"input": {},
|
|
},
|
|
{
|
|
"type": "missing",
|
|
"loc": ["body", "price"],
|
|
"msg": "Field required",
|
|
"input": {},
|
|
},
|
|
]
|
|
}
|
|
|
|
|
|
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/{item_id}": {
|
|
"put": {
|
|
"parameters": [
|
|
{
|
|
"in": "path",
|
|
"name": "item_id",
|
|
"required": True,
|
|
"schema": {
|
|
"title": "Item Id",
|
|
"type": "integer",
|
|
},
|
|
},
|
|
{
|
|
"required": False,
|
|
"schema": {
|
|
"anyOf": [{"type": "string"}, {"type": "null"}],
|
|
"title": "Q",
|
|
},
|
|
"name": "q",
|
|
"in": "query",
|
|
},
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "Successful Response",
|
|
"content": {"application/json": {"schema": {}}},
|
|
},
|
|
"422": {
|
|
"description": "Validation Error",
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {
|
|
"$ref": "#/components/schemas/HTTPValidationError"
|
|
}
|
|
}
|
|
},
|
|
},
|
|
},
|
|
"summary": "Update Item",
|
|
"operationId": "update_item_items__item_id__put",
|
|
"requestBody": {
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {"$ref": "#/components/schemas/Item"}
|
|
}
|
|
},
|
|
"required": True,
|
|
},
|
|
}
|
|
}
|
|
},
|
|
"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"}],
|
|
},
|
|
},
|
|
},
|
|
"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"},
|
|
}
|
|
},
|
|
},
|
|
}
|
|
},
|
|
}
|