test_tutorial001.py — fastapi Source File
Architecture documentation for test_tutorial001.py, a python file in the fastapi codebase. 7 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 9366c388_e453_2a05_2fe1_5bbfa144567e["test_tutorial001.py"] fda8f0bb_782c_0c24_7ae3_e174de491ade["gzip"] 9366c388_e453_2a05_2fe1_5bbfa144567e --> fda8f0bb_782c_0c24_7ae3_e174de491ade 83e01a9c_50a9_bec9_6f86_8e729106de01["importlib"] 9366c388_e453_2a05_2fe1_5bbfa144567e --> 83e01a9c_50a9_bec9_6f86_8e729106de01 c1ef60e8_e635_2e82_29e5_a79e03e975d6["json"] 9366c388_e453_2a05_2fe1_5bbfa144567e --> c1ef60e8_e635_2e82_29e5_a79e03e975d6 5befe8bf_65d1_d058_6b78_4a597a8488e9["pytest"] 9366c388_e453_2a05_2fe1_5bbfa144567e --> 5befe8bf_65d1_d058_6b78_4a597a8488e9 534f6e44_61b8_3c38_8b89_6934a6df9802["__init__.py"] 9366c388_e453_2a05_2fe1_5bbfa144567e --> 534f6e44_61b8_3c38_8b89_6934a6df9802 a7c04dee_ee23_5891_b185_47ff6bed036d["testclient.py"] 9366c388_e453_2a05_2fe1_5bbfa144567e --> a7c04dee_ee23_5891_b185_47ff6bed036d 8fd7072e_05b0_6622_0f14_e1e357032855["utils.py"] 9366c388_e453_2a05_2fe1_5bbfa144567e --> 8fd7072e_05b0_6622_0f14_e1e357032855 style 9366c388_e453_2a05_2fe1_5bbfa144567e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import gzip
import importlib
import json
import pytest
from fastapi import Request
from fastapi.testclient import TestClient
from tests.utils import needs_py310
@pytest.fixture(
name="client",
params=[
pytest.param("tutorial001_py39"),
pytest.param("tutorial001_py310", marks=needs_py310),
pytest.param("tutorial001_an_py39"),
pytest.param("tutorial001_an_py310", marks=needs_py310),
],
)
def get_client(request: pytest.FixtureRequest):
mod = importlib.import_module(f"docs_src.custom_request_and_route.{request.param}")
@mod.app.get("/check-class")
async def check_gzip_request(request: Request):
return {"request_class": type(request).__name__}
client = TestClient(mod.app)
return client
@pytest.mark.parametrize("compress", [True, False])
def test_gzip_request(client: TestClient, compress):
n = 1000
headers = {}
body = [1] * n
data = json.dumps(body).encode()
if compress:
data = gzip.compress(data)
headers["Content-Encoding"] = "gzip"
headers["Content-Type"] = "application/json"
response = client.post("/sum", content=data, headers=headers)
assert response.json() == {"sum": n}
def test_request_class(client: TestClient):
response = client.get("/check-class")
assert response.json() == {"request_class": "GzipRequest"}
Domain
Subdomains
Dependencies
- __init__.py
- gzip
- importlib
- json
- pytest
- testclient.py
- utils.py
Source
Frequently Asked Questions
What does test_tutorial001.py do?
test_tutorial001.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_tutorial001.py?
test_tutorial001.py defines 3 function(s): get_client, test_gzip_request, test_request_class.
What does test_tutorial001.py depend on?
test_tutorial001.py imports 7 module(s): __init__.py, gzip, importlib, json, pytest, testclient.py, utils.py.
Where is test_tutorial001.py in the architecture?
test_tutorial001.py is located at tests/test_tutorial/test_custom_request_and_route/test_tutorial001.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