Coverage for tests/test_security_http_basic_optional.py: 100%
37 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
1from base64 import b64encode 1abcdef
2from typing import Optional 1abcdef
4from fastapi import FastAPI, Security 1abcdef
5from fastapi.security import HTTPBasic, HTTPBasicCredentials 1abcdef
6from fastapi.testclient import TestClient 1abcdef
8app = FastAPI() 1abcdef
10security = HTTPBasic(auto_error=False) 1abcdef
13@app.get("/users/me") 1abcdef
14def read_current_user(credentials: Optional[HTTPBasicCredentials] = Security(security)): 1abcdef
15 if credentials is None: 1mnopqrstuvwx
16 return {"msg": "Create an account first"} 1nprtvx
17 return {"username": credentials.username, "password": credentials.password} 1moqsuw
20client = TestClient(app) 1abcdef
23def test_security_http_basic(): 1abcdef
24 response = client.get("/users/me", auth=("john", "secret")) 1moqsuw
25 assert response.status_code == 200, response.text 1moqsuw
26 assert response.json() == {"username": "john", "password": "secret"} 1moqsuw
29def test_security_http_basic_no_credentials(): 1abcdef
30 response = client.get("/users/me") 1nprtvx
31 assert response.status_code == 200, response.text 1nprtvx
32 assert response.json() == {"msg": "Create an account first"} 1nprtvx
35def test_security_http_basic_invalid_credentials(): 1abcdef
36 response = client.get( 1yzABCD
37 "/users/me", headers={"Authorization": "Basic notabase64token"}
38 )
39 assert response.status_code == 401, response.text 1yzABCD
40 assert response.headers["WWW-Authenticate"] == "Basic" 1yzABCD
41 assert response.json() == {"detail": "Invalid authentication credentials"} 1yzABCD
44def test_security_http_basic_non_basic_credentials(): 1abcdef
45 payload = b64encode(b"johnsecret").decode("ascii") 1ghijkl
46 auth_header = f"Basic {payload}" 1ghijkl
47 response = client.get("/users/me", headers={"Authorization": auth_header}) 1ghijkl
48 assert response.status_code == 401, response.text 1ghijkl
49 assert response.headers["WWW-Authenticate"] == "Basic" 1ghijkl
50 assert response.json() == {"detail": "Invalid authentication credentials"} 1ghijkl
53def test_openapi_schema(): 1abcdef
54 response = client.get("/openapi.json") 1EFGHIJ
55 assert response.status_code == 200, response.text 1EFGHIJ
56 assert response.json() == { 1EFGHIJ
57 "openapi": "3.1.0",
58 "info": {"title": "FastAPI", "version": "0.1.0"},
59 "paths": {
60 "/users/me": {
61 "get": {
62 "responses": {
63 "200": {
64 "description": "Successful Response",
65 "content": {"application/json": {"schema": {}}},
66 }
67 },
68 "summary": "Read Current User",
69 "operationId": "read_current_user_users_me_get",
70 "security": [{"HTTPBasic": []}],
71 }
72 }
73 },
74 "components": {
75 "securitySchemes": {"HTTPBasic": {"type": "http", "scheme": "basic"}}
76 },
77 }