Coverage for tests / test_tutorial / test_custom_response / test_tutorial010.py: 100%
17 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
1import importlib 1abcd
3import pytest 1abcd
4from fastapi.testclient import TestClient 1abcd
5from inline_snapshot import snapshot 1abcd
8@pytest.fixture( 1abcd
9 name="client",
10 params=[
11 pytest.param("tutorial010_py310"),
12 ],
13)
14def get_client(request: pytest.FixtureRequest): 1abcd
15 mod = importlib.import_module(f"docs_src.custom_response.{request.param}") 1efghijkl
16 client = TestClient(mod.app) 1efghijkl
17 return client 1efghijkl
20def test_get_custom_response(client: TestClient): 1abcd
21 response = client.get("/items/") 1mnop
22 assert response.status_code == 200, response.text 1mnop
23 assert response.text == snapshot("<h1>Items</h1><p>This is a list of items.</p>") 1mnop
26def test_openapi_schema(client: TestClient): 1abcd
27 response = client.get("/openapi.json") 1qrst
28 assert response.status_code == 200, response.text 1qrst
29 assert response.json() == snapshot( 1qrst
30 {
31 "openapi": "3.1.0",
32 "info": {"title": "FastAPI", "version": "0.1.0"},
33 "paths": {
34 "/items/": {
35 "get": {
36 "responses": {
37 "200": {
38 "description": "Successful Response",
39 "content": {
40 "text/html": {"schema": {"type": "string"}}
41 },
42 }
43 },
44 "summary": "Read Items",
45 "operationId": "read_items_items__get",
46 }
47 }
48 },
49 }
50 )