test_optional_validation_alias_schema() — fastapi Function Reference
Architecture documentation for the test_optional_validation_alias_schema() function in test_optional.py from the fastapi codebase.
Entity Profile
Dependency Diagram
graph TD fdd7c731_67ff_dad1_cee8_aa5a1a470589["test_optional_validation_alias_schema()"] ca62ab9d_6699_f566_9a0c_577e941c769c["test_optional.py"] fdd7c731_67ff_dad1_cee8_aa5a1a470589 -->|defined in| ca62ab9d_6699_f566_9a0c_577e941c769c d1360ba2_24b5_be26_1bb8_d64ba3706aef["get_body_model_name()"] fdd7c731_67ff_dad1_cee8_aa5a1a470589 -->|calls| d1360ba2_24b5_be26_1bb8_d64ba3706aef style fdd7c731_67ff_dad1_cee8_aa5a1a470589 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
tests/test_request_params/test_file/test_optional.py lines 195–211
def test_optional_validation_alias_schema(path: str):
openapi = app.openapi()
body_model_name = get_body_model_name(openapi, path)
assert app.openapi()["components"]["schemas"][body_model_name] == {
"properties": {
"p_val_alias": {
"anyOf": [
{"type": "string", "format": "binary"},
{"type": "null"},
],
"title": "P Val Alias",
}
},
"title": body_model_name,
"type": "object",
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does test_optional_validation_alias_schema() do?
test_optional_validation_alias_schema() is a function in the fastapi codebase, defined in tests/test_request_params/test_file/test_optional.py.
Where is test_optional_validation_alias_schema() defined?
test_optional_validation_alias_schema() is defined in tests/test_request_params/test_file/test_optional.py at line 195.
What does test_optional_validation_alias_schema() call?
test_optional_validation_alias_schema() calls 1 function(s): get_body_model_name.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free