Coverage for tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial002.py: 100%
11 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
1from fastapi.testclient import TestClient 1abcdefg
3from docs_src.path_operation_advanced_configuration.tutorial002 import app 1abcdefg
5client = TestClient(app) 1abcdefg
8def test_get(): 1abcdefg
9 response = client.get("/items/") 1hijklmn
10 assert response.status_code == 200, response.text 1hijklmn
11 assert response.json() == [{"item_id": "Foo"}] 1hijklmn
14def test_openapi_schema(): 1abcdefg
15 response = client.get("/openapi.json") 1opqrstu
16 assert response.status_code == 200, response.text 1opqrstu
17 assert response.json() == { 1opqrstu
18 "openapi": "3.1.0",
19 "info": {"title": "FastAPI", "version": "0.1.0"},
20 "paths": {
21 "/items/": {
22 "get": {
23 "responses": {
24 "200": {
25 "description": "Successful Response",
26 "content": {"application/json": {"schema": {}}},
27 }
28 },
29 "summary": "Read Items",
30 "operationId": "read_items",
31 }
32 }
33 },
34 }