Browse Source

tests/test_tutorial/test_path_params_test_tutorial004.py: updated

pull/13479/head
alv2017 4 weeks ago
parent
commit
766e65d24f
  1. 21
      tests/test_tutorial/test_path_params/test_tutorial004.py

21
tests/test_tutorial/test_path_params/test_tutorial004.py

@ -1,3 +1,4 @@
import pytest
from fastapi.testclient import TestClient from fastapi.testclient import TestClient
from docs_src.path_params.tutorial004 import app from docs_src.path_params.tutorial004 import app
@ -5,18 +6,18 @@ from docs_src.path_params.tutorial004 import app
client = TestClient(app) client = TestClient(app)
def test_file_path(): test_data = [
response = client.get("/files/home/johndoe/myfile.txt") ("/files/data/monthly-2024.csv", {"file_path": "data/monthly-2024.csv"}),
print(response.content) ("/files/home/johndoe/myfile.txt", {"file_path": "home/johndoe/myfile.txt"}),
assert response.status_code == 200, response.text ("/files//home/johndoe/myfile.txt", {"file_path": "/home/johndoe/myfile.txt"}),
assert response.json() == {"file_path": "home/johndoe/myfile.txt"} ]
def test_root_file_path(): @pytest.mark.parametrize("url_path, expected_response", test_data)
response = client.get("/files//home/johndoe/myfile.txt") def test_file_paths(url_path, expected_response):
print(response.content) response = client.get(url_path)
assert response.status_code == 200, response.text assert response.status_code == 200
assert response.json() == {"file_path": "/home/johndoe/myfile.txt"} assert response.json() == expected_response
def test_openapi_schema(): def test_openapi_schema():

Loading…
Cancel
Save