From 5661a482f2d4acfa959754fc51c8d2817df3a7e6 Mon Sep 17 00:00:00 2001 From: alv2017 Date: Mon, 10 Mar 2025 17:33:12 +0200 Subject: [PATCH] New tests added: tutorial:Path Parameters, tests/test_tutorial/test_path_params/test_tutorial001.py --- .../test_path_params/test_tutorial001.py | 145 ++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 tests/test_tutorial/test_path_params/test_tutorial001.py diff --git a/tests/test_tutorial/test_path_params/test_tutorial001.py b/tests/test_tutorial/test_path_params/test_tutorial001.py new file mode 100644 index 000000000..a14e294b5 --- /dev/null +++ b/tests/test_tutorial/test_path_params/test_tutorial001.py @@ -0,0 +1,145 @@ +import pytest + +from fastapi.testclient import TestClient +from docs_src.path_params.tutorial001 import app + + +@pytest.fixture(name="client") +def get_client(): + return TestClient(app) + + +@pytest.mark.parametrize("parameter_value", [-10, 0, 10]) +def test_with_integer_parameters(client, parameter_value): + parameter: int = parameter_value + response = client.get(f"/items/{parameter}") + assert response.status_code == 200 + assert response.json() == {"item_id": str(parameter)} + + +@pytest.mark.parametrize("parameter_value", [-3.14, 0.00, 3.14]) +def test_with_float_parameters(client, parameter_value): + parameter: float = parameter_value + response = client.get(f"/items/{parameter}") + assert response.status_code == 200 + assert response.json() == {"item_id": str(parameter)} + + +@pytest.mark.parametrize("parameter_value", ["foo", "foo bar", "foo bar baz"]) +def test_with_string_parameters(client, parameter_value): + parameter: str = parameter_value + response = client.get(f"/items/{parameter}") + assert response.status_code == 200 + assert response.json() == {"item_id": str(parameter)} + + +@pytest.mark.parametrize("parameter_value", [ + [1, 2, 3], + [-1.1, 0.0, 1.2], + ["alpha", "beta", "gamma"] +]) +def test_with_list_parameters(client, parameter_value): + parameter: list = parameter_value + response = client.get(f"/items/{parameter}") + assert response.status_code == 200 + assert response.json() == {"item_id": str(parameter)} + + +def test_openapi_schema(client): + response = client.get("/openapi.json") + assert response.status_code == 200 + assert response.json() == { + "openapi": "3.1.0", + "info": { + "title": "FastAPI", + "version": "0.1.0" + }, + "paths": { + "/items/{item_id}": { + "get": { + "summary": "Read Item", + "operationId": "read_item_items__item_id__get", + "parameters": [ + { + "name": "item_id", + "in": "path", + "required": True, + "schema": { + "title": "Item Id" + } + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + } + } + } + } \ No newline at end of file