From 766e65d24f04432fbaa81fb0bbf62b029d6012bd Mon Sep 17 00:00:00 2001 From: alv2017 Date: Tue, 11 Mar 2025 14:05:03 +0200 Subject: [PATCH 1/3] tests/test_tutorial/test_path_params_test_tutorial004.py: updated --- .../test_path_params/test_tutorial004.py | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/tests/test_tutorial/test_path_params/test_tutorial004.py b/tests/test_tutorial/test_path_params/test_tutorial004.py index acbeaca76..6fb25ecd5 100644 --- a/tests/test_tutorial/test_path_params/test_tutorial004.py +++ b/tests/test_tutorial/test_path_params/test_tutorial004.py @@ -1,3 +1,4 @@ +import pytest from fastapi.testclient import TestClient from docs_src.path_params.tutorial004 import app @@ -5,18 +6,18 @@ from docs_src.path_params.tutorial004 import app client = TestClient(app) -def test_file_path(): - response = client.get("/files/home/johndoe/myfile.txt") - print(response.content) - assert response.status_code == 200, response.text - assert response.json() == {"file_path": "home/johndoe/myfile.txt"} +test_data = [ + ("/files/data/monthly-2024.csv", {"file_path": "data/monthly-2024.csv"}), + ("/files/home/johndoe/myfile.txt", {"file_path": "home/johndoe/myfile.txt"}), + ("/files//home/johndoe/myfile.txt", {"file_path": "/home/johndoe/myfile.txt"}), +] -def test_root_file_path(): - response = client.get("/files//home/johndoe/myfile.txt") - print(response.content) - assert response.status_code == 200, response.text - assert response.json() == {"file_path": "/home/johndoe/myfile.txt"} +@pytest.mark.parametrize("url_path, expected_response", test_data) +def test_file_paths(url_path, expected_response): + response = client.get(url_path) + assert response.status_code == 200 + assert response.json() == expected_response def test_openapi_schema(): From 9ab648569f16a7162e9b2aeccb7633e74a931885 Mon Sep 17 00:00:00 2001 From: alv2017 Date: Tue, 11 Mar 2025 14:19:03 +0200 Subject: [PATCH 2/3] tests/test_tutorial/test_path_params/test_tutorial005.py: updated --- .../test_path_params/test_tutorial005.py | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/tests/test_tutorial/test_path_params/test_tutorial005.py b/tests/test_tutorial/test_path_params/test_tutorial005.py index 2e4b0146b..be65eb41c 100644 --- a/tests/test_tutorial/test_path_params/test_tutorial005.py +++ b/tests/test_tutorial/test_path_params/test_tutorial005.py @@ -1,3 +1,4 @@ +import pytest from dirty_equals import IsDict from fastapi.testclient import TestClient @@ -6,22 +7,18 @@ from docs_src.path_params.tutorial005 import app client = TestClient(app) -def test_get_enums_alexnet(): - response = client.get("/models/alexnet") - assert response.status_code == 200 - assert response.json() == {"model_name": "alexnet", "message": "Deep Learning FTW!"} - - -def test_get_enums_lenet(): - response = client.get("/models/lenet") - assert response.status_code == 200 - assert response.json() == {"model_name": "lenet", "message": "LeCNN all the images"} +test_data = [ + ("/models/alexnet", {"model_name": "alexnet", "message": "Deep Learning FTW!"}), + ("/models/lenet", {"model_name": "lenet", "message": "LeCNN all the images"}), + ("/models/resnet", {"model_name": "resnet", "message": "Have some residuals"}), +] -def test_get_enums_resnet(): - response = client.get("/models/resnet") +@pytest.mark.parametrize("url_path, expected_response", test_data) +def test_get_enums(url_path, expected_response): + response = client.get(url_path) assert response.status_code == 200 - assert response.json() == {"model_name": "resnet", "message": "Have some residuals"} + assert response.json() == expected_response def test_get_enums_invalid(): From 83db81d0016135ab3b7016eadc0bb175b216a25b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 11 Mar 2025 12:25:39 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20for?= =?UTF-8?q?mat=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_tutorial/test_path_params/test_tutorial004.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_tutorial/test_path_params/test_tutorial004.py b/tests/test_tutorial/test_path_params/test_tutorial004.py index 6fb25ecd5..f4512ed74 100644 --- a/tests/test_tutorial/test_path_params/test_tutorial004.py +++ b/tests/test_tutorial/test_path_params/test_tutorial004.py @@ -7,9 +7,9 @@ client = TestClient(app) test_data = [ - ("/files/data/monthly-2024.csv", {"file_path": "data/monthly-2024.csv"}), - ("/files/home/johndoe/myfile.txt", {"file_path": "home/johndoe/myfile.txt"}), - ("/files//home/johndoe/myfile.txt", {"file_path": "/home/johndoe/myfile.txt"}), + ("/files/data/monthly-2024.csv", {"file_path": "data/monthly-2024.csv"}), + ("/files/home/johndoe/myfile.txt", {"file_path": "home/johndoe/myfile.txt"}), + ("/files//home/johndoe/myfile.txt", {"file_path": "/home/johndoe/myfile.txt"}), ]