committed by
GitHub
5 changed files with 392 additions and 3 deletions
@ -0,0 +1,201 @@ |
|||
from typing import Optional |
|||
|
|||
from fastapi import APIRouter, Depends, FastAPI |
|||
from fastapi._compat import PYDANTIC_V2 |
|||
from fastapi.testclient import TestClient |
|||
|
|||
app = FastAPI() |
|||
|
|||
router = APIRouter() |
|||
|
|||
|
|||
async def common_parameters(q: str, skip: int = 0, limit: int = 100): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
@app.get("/main-depends/") |
|||
async def main_depends(commons: dict = Depends(common_parameters)): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
app.include_router(router) |
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
async def overrider_dependency_simple(q: Optional[str] = None): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
async def overrider_sub_dependency(k: str): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
async def overrider_dependency_with_sub(msg: dict = Depends(overrider_sub_dependency)): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
override_simple_openapi_schema = { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/main-depends/": { |
|||
"get": { |
|||
"summary": "Main Depends", |
|||
"operationId": "main_depends_main_depends__get", |
|||
"parameters": [ |
|||
{ |
|||
"required": False, |
|||
"schema": { |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
"title": "Q", |
|||
}, |
|||
"name": "q", |
|||
"in": "query", |
|||
}, |
|||
], |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
|||
if not PYDANTIC_V2: |
|||
override_simple_openapi_schema["paths"]["/main-depends/"]["get"]["parameters"][0][ |
|||
"schema" |
|||
] = {"title": "Q", "type": "string"} |
|||
|
|||
|
|||
def test_override_simple_openapi(): |
|||
app.dependency_overrides[common_parameters] = overrider_dependency_simple |
|||
app.openapi_schema = None |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == override_simple_openapi_schema |
|||
|
|||
|
|||
overrider_dependency_with_sub_schema = { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/main-depends/": { |
|||
"get": { |
|||
"summary": "Main Depends", |
|||
"operationId": "main_depends_main_depends__get", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "K", "type": "string"}, |
|||
"name": "k", |
|||
"in": "query", |
|||
}, |
|||
], |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
def test_overrider_dependency_with_sub(): |
|||
app.dependency_overrides[common_parameters] = overrider_dependency_with_sub |
|||
app.openapi_schema = None |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == overrider_dependency_with_sub_schema |
|||
|
|||
|
|||
def test_overrider_dependency_with_overriden_sub(): |
|||
app.dependency_overrides[common_parameters] = overrider_dependency_with_sub |
|||
app.dependency_overrides[overrider_sub_dependency] = overrider_dependency_simple |
|||
app.openapi_schema = None |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == override_simple_openapi_schema |
@ -0,0 +1,107 @@ |
|||
from fastapi import Depends, FastAPI, Header |
|||
from fastapi.security import OAuth2PasswordBearer |
|||
from fastapi.testclient import TestClient |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
def get_user_id() -> int: |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
def get_user(user_id=Depends(get_user_id)): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") |
|||
|
|||
|
|||
def get_user_id_from_auth_override(token: str = Depends(oauth2_scheme)): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
def get_user_id_from_header_override(user_id: int = Header()): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
@app.get("/user") |
|||
def read_user( |
|||
user: str = Depends(get_user), |
|||
): |
|||
pass # pragma: no cover |
|||
|
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
override_with_security_schema = { |
|||
"components": { |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"flows": {"password": {"scopes": {}, "tokenUrl": "token"}}, |
|||
"type": "oauth2", |
|||
} |
|||
} |
|||
}, |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"openapi": "3.1.0", |
|||
"paths": { |
|||
"/user": { |
|||
"get": { |
|||
"operationId": "read_user_user_get", |
|||
"responses": { |
|||
"200": { |
|||
"content": {"application/json": {"schema": {}}}, |
|||
"description": "Successful " "Response", |
|||
} |
|||
}, |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
"summary": "Read User", |
|||
} |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
def test_override_with_security(): |
|||
app.dependency_overrides[get_user_id] = get_user_id_from_auth_override |
|||
app.openapi_schema = None |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == override_with_security_schema |
|||
|
|||
|
|||
override_with_header_schema = { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/user": { |
|||
"get": { |
|||
"summary": "Read User", |
|||
"operationId": "read_user_user_get", |
|||
"parameters": [ |
|||
{ |
|||
"name": "user-id", |
|||
"in": "header", |
|||
"required": True, |
|||
"schema": {"type": "integer", "title": "User-Id"}, |
|||
} |
|||
], |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
def test_override_with_header(): |
|||
app.dependency_overrides[get_user_id] = get_user_id_from_header_override |
|||
app.openapi_schema = None |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == override_with_header_schema |
Loading…
Reference in new issue