Coverage for tests/test_security_api_key_cookie_optional.py: 100%
34 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
1from typing import Optional 1abcde
3from fastapi import Depends, FastAPI, Security 1abcde
4from fastapi.security import APIKeyCookie 1abcde
5from fastapi.testclient import TestClient 1abcde
6from pydantic import BaseModel 1abcde
8app = FastAPI() 1abcde
10api_key = APIKeyCookie(name="key", auto_error=False) 1abcde
13class User(BaseModel): 1abcde
14 username: str 1abcde
17def get_current_user(oauth_header: Optional[str] = Security(api_key)): 1abcde
18 if oauth_header is None: 1abcde
19 return None 1abcde
20 user = User(username=oauth_header) 1abcde
21 return user 1abcde
24@app.get("/users/me") 1abcde
25def read_current_user(current_user: User = Depends(get_current_user)): 1abcde
26 if current_user is None: 1abcde
27 return {"msg": "Create an account first"} 1abcde
28 else:
29 return current_user 1abcde
32def test_security_api_key(): 1abcde
33 client = TestClient(app, cookies={"key": "secret"}) 1abcde
34 response = client.get("/users/me") 1abcde
35 assert response.status_code == 200, response.text 1abcde
36 assert response.json() == {"username": "secret"} 1abcde
39def test_security_api_key_no_key(): 1abcde
40 client = TestClient(app) 1abcde
41 response = client.get("/users/me") 1abcde
42 assert response.status_code == 200, response.text 1abcde
43 assert response.json() == {"msg": "Create an account first"} 1abcde
46def test_openapi_schema(): 1abcde
47 client = TestClient(app) 1abcde
48 response = client.get("/openapi.json") 1abcde
49 assert response.status_code == 200, response.text 1abcde
50 assert response.json() == { 1abcde
51 "openapi": "3.1.0",
52 "info": {"title": "FastAPI", "version": "0.1.0"},
53 "paths": {
54 "/users/me": {
55 "get": {
56 "responses": {
57 "200": {
58 "description": "Successful Response",
59 "content": {"application/json": {"schema": {}}},
60 }
61 },
62 "summary": "Read Current User",
63 "operationId": "read_current_user_users_me_get",
64 "security": [{"APIKeyCookie": []}],
65 }
66 }
67 },
68 "components": {
69 "securitySchemes": {
70 "APIKeyCookie": {"type": "apiKey", "name": "key", "in": "cookie"}
71 }
72 },
73 }