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 2024-08-08 03:53 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
1from fastapi.testclient import TestClient 1abcde
3from docs_src.path_operation_advanced_configuration.tutorial002 import app 1abcde
5client = TestClient(app) 1abcde
8def test_get(): 1abcde
9 response = client.get("/items/") 1abcde
10 assert response.status_code == 200, response.text 1abcde
11 assert response.json() == [{"item_id": "Foo"}] 1abcde
14def test_openapi_schema(): 1abcde
15 response = client.get("/openapi.json") 1abcde
16 assert response.status_code == 200, response.text 1abcde
17 assert response.json() == { 1abcde
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 }