Home / File/ test_tutorial003.py — fastapi Source File

test_tutorial003.py — fastapi Source File

Architecture documentation for test_tutorial003.py, a python file in the fastapi codebase. 4 imports, 0 dependents.

File python FastAPI Responses 4 imports 3 functions

Entity Profile

Dependency Diagram

graph LR
  22918029_c8c6_3a79_ea73_e2b5173d9637["test_tutorial003.py"]
  83e01a9c_50a9_bec9_6f86_8e729106de01["importlib"]
  22918029_c8c6_3a79_ea73_e2b5173d9637 --> 83e01a9c_50a9_bec9_6f86_8e729106de01
  5befe8bf_65d1_d058_6b78_4a597a8488e9["pytest"]
  22918029_c8c6_3a79_ea73_e2b5173d9637 --> 5befe8bf_65d1_d058_6b78_4a597a8488e9
  a7c04dee_ee23_5891_b185_47ff6bed036d["testclient.py"]
  22918029_c8c6_3a79_ea73_e2b5173d9637 --> a7c04dee_ee23_5891_b185_47ff6bed036d
  8fd7072e_05b0_6622_0f14_e1e357032855["utils.py"]
  22918029_c8c6_3a79_ea73_e2b5173d9637 --> 8fd7072e_05b0_6622_0f14_e1e357032855
  style 22918029_c8c6_3a79_ea73_e2b5173d9637 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import importlib

import pytest
from fastapi.testclient import TestClient

from tests.utils import needs_py310


@pytest.fixture(
    name="client",
    params=[
        pytest.param("tutorial003_py39"),
        pytest.param("tutorial003_py310", marks=needs_py310),
    ],
)
def get_client(request: pytest.FixtureRequest):
    mod = importlib.import_module(f"docs_src.custom_request_and_route.{request.param}")

    client = TestClient(mod.app)
    return client


def test_get(client: TestClient):
    response = client.get("/")
    assert response.json() == {"message": "Not timed"}
    assert "X-Response-Time" not in response.headers


def test_get_timed(client: TestClient):
    response = client.get("/timed")
    assert response.json() == {"message": "It's the time of my life"}
    assert "X-Response-Time" in response.headers
    assert float(response.headers["X-Response-Time"]) >= 0

Domain

Subdomains

Dependencies

Frequently Asked Questions

What does test_tutorial003.py do?
test_tutorial003.py is a source file in the fastapi codebase, written in python. It belongs to the FastAPI domain, Responses subdomain.
What functions are defined in test_tutorial003.py?
test_tutorial003.py defines 3 function(s): get_client, test_get, test_get_timed.
What does test_tutorial003.py depend on?
test_tutorial003.py imports 4 module(s): importlib, pytest, testclient.py, utils.py.
Where is test_tutorial003.py in the architecture?
test_tutorial003.py is located at tests/test_tutorial/test_custom_request_and_route/test_tutorial003.py (domain: FastAPI, subdomain: Responses, directory: tests/test_tutorial/test_custom_request_and_route).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free