Home / File/ test_tutorial002.py — fastapi Source File

test_tutorial002.py — fastapi Source File

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

File python FastAPI Responses 5 imports 3 functions

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

import importlib

import pytest
from dirty_equals import IsOneOf
from fastapi.testclient import TestClient

from tests.utils import needs_py310


@pytest.fixture(
    name="client",
    params=[
        pytest.param("tutorial002_py39"),
        pytest.param("tutorial002_py310", marks=needs_py310),
        pytest.param("tutorial002_an_py39"),
        pytest.param("tutorial002_an_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_endpoint_works(client: TestClient):
    response = client.post("/", json=[1, 2, 3])
    assert response.json() == 6


def test_exception_handler_body_access(client: TestClient):
    response = client.post("/", json={"numbers": [1, 2, 3]})
    assert response.json() == {
        "detail": {
            "errors": [
                {
                    "type": "list_type",
                    "loc": ["body"],
                    "msg": "Input should be a valid list",
                    "input": {"numbers": [1, 2, 3]},
                }
            ],
            # httpx 0.28.0 switches to compact JSON https://github.com/encode/httpx/issues/3363
            "body": IsOneOf('{"numbers": [1, 2, 3]}', '{"numbers":[1,2,3]}'),
        }
    }

Domain

Subdomains

Dependencies

Frequently Asked Questions

What does test_tutorial002.py do?
test_tutorial002.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_tutorial002.py?
test_tutorial002.py defines 3 function(s): get_client, test_endpoint_works, test_exception_handler_body_access.
What does test_tutorial002.py depend on?
test_tutorial002.py imports 5 module(s): dirty_equals, importlib, pytest, testclient.py, utils.py.
Where is test_tutorial002.py in the architecture?
test_tutorial002.py is located at tests/test_tutorial/test_custom_request_and_route/test_tutorial002.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