test_read_items() — fastapi Function Reference
Architecture documentation for the test_read_items() function in test_tutorial005.py from the fastapi codebase.
Entity Profile
Dependency Diagram
graph TD 4a56c9f7_b215_dbac_cf75_cd6ae2ace48c["test_read_items()"] 132df24a_932a_c5a5_9fcb_bb38e95d696f["test_tutorial005.py"] 4a56c9f7_b215_dbac_cf75_cd6ae2ace48c -->|defined in| 132df24a_932a_c5a5_9fcb_bb38e95d696f 73cf2ed9_002b_77bd_5a4f_5029b98b7156["get_access_token()"] 4a56c9f7_b215_dbac_cf75_cd6ae2ace48c -->|calls| 73cf2ed9_002b_77bd_5a4f_5029b98b7156 style 4a56c9f7_b215_dbac_cf75_cd6ae2ace48c fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
tests/test_tutorial/test_security/test_tutorial005.py lines 186–193
def test_read_items(mod: ModuleType):
client = TestClient(mod.app)
access_token = get_access_token(scope="me items", client=client)
response = client.get(
"/users/me/items/", headers={"Authorization": f"Bearer {access_token}"}
)
assert response.status_code == 200, response.text
assert response.json() == [{"item_id": "Foo", "owner": "johndoe"}]
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does test_read_items() do?
test_read_items() is a function in the fastapi codebase, defined in tests/test_tutorial/test_security/test_tutorial005.py.
Where is test_read_items() defined?
test_read_items() is defined in tests/test_tutorial/test_security/test_tutorial005.py at line 186.
What does test_read_items() call?
test_read_items() calls 1 function(s): get_access_token.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free