|
|
@ -22,37 +22,6 @@ def read_current_user(current_user: User = Depends(get_current_user)): |
|
|
|
return current_user |
|
|
|
|
|
|
|
|
|
|
|
openapi_schema = { |
|
|
|
"openapi": "3.0.2", |
|
|
|
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|
|
|
"paths": { |
|
|
|
"/users/me": { |
|
|
|
"get": { |
|
|
|
"responses": { |
|
|
|
"200": { |
|
|
|
"description": "Successful Response", |
|
|
|
"content": {"application/json": {"schema": {}}}, |
|
|
|
} |
|
|
|
}, |
|
|
|
"summary": "Read Current User", |
|
|
|
"operationId": "read_current_user_users_me_get", |
|
|
|
"security": [{"key": []}], |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
"components": { |
|
|
|
"securitySchemes": {"key": {"type": "apiKey", "name": "key", "in": "cookie"}} |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
def test_openapi_schema(): |
|
|
|
client = TestClient(app) |
|
|
|
response = client.get("/openapi.json") |
|
|
|
assert response.status_code == 200, response.text |
|
|
|
assert response.json() == openapi_schema |
|
|
|
|
|
|
|
|
|
|
|
def test_security_api_key(): |
|
|
|
client = TestClient(app, cookies={"key": "secret"}) |
|
|
|
response = client.get("/users/me") |
|
|
@ -85,13 +54,13 @@ def test_openapi_schema(): |
|
|
|
}, |
|
|
|
"summary": "Read Current User", |
|
|
|
"operationId": "read_current_user_users_me_get", |
|
|
|
"security": [{"APIKeyCookie": []}], |
|
|
|
"security": [{"key": []}], |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
"components": { |
|
|
|
"securitySchemes": { |
|
|
|
"APIKeyCookie": {"type": "apiKey", "name": "key", "in": "cookie"} |
|
|
|
"key": {"type": "apiKey", "name": "key", "in": "cookie"} |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|