Browse Source
to allow them to be optional, also allowing the declaration of multiple security schemespull/138/head
committed by
GitHub
14 changed files with 1033 additions and 54 deletions
@ -0,0 +1,75 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import Depends, FastAPI, Security |
||||
|
from fastapi.security import APIKeyCookie |
||||
|
from pydantic import BaseModel |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
api_key = APIKeyCookie(name="key", auto_error=False) |
||||
|
|
||||
|
|
||||
|
class User(BaseModel): |
||||
|
username: str |
||||
|
|
||||
|
|
||||
|
def get_current_user(oauth_header: Optional[str] = Security(api_key)): |
||||
|
if oauth_header is None: |
||||
|
return None |
||||
|
user = User(username=oauth_header) |
||||
|
return user |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user(current_user: User = Depends(get_current_user)): |
||||
|
if current_user is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
else: |
||||
|
return current_user |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"APIKeyCookie": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": { |
||||
|
"APIKeyCookie": {"type": "apiKey", "name": "key", "in": "cookie"} |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_api_key(): |
||||
|
response = client.get("/users/me", cookies={"key": "secret"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"username": "secret"} |
||||
|
|
||||
|
|
||||
|
def test_security_api_key_no_key(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
@ -0,0 +1,74 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import Depends, FastAPI, Security |
||||
|
from fastapi.security import APIKeyHeader |
||||
|
from pydantic import BaseModel |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
api_key = APIKeyHeader(name="key", auto_error=False) |
||||
|
|
||||
|
|
||||
|
class User(BaseModel): |
||||
|
username: str |
||||
|
|
||||
|
|
||||
|
def get_current_user(oauth_header: Optional[str] = Security(api_key)): |
||||
|
if oauth_header is None: |
||||
|
return None |
||||
|
user = User(username=oauth_header) |
||||
|
return user |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user(current_user: Optional[User] = Depends(get_current_user)): |
||||
|
if current_user is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return current_user |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"APIKeyHeader": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": { |
||||
|
"APIKeyHeader": {"type": "apiKey", "name": "key", "in": "header"} |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_api_key(): |
||||
|
response = client.get("/users/me", headers={"key": "secret"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"username": "secret"} |
||||
|
|
||||
|
|
||||
|
def test_security_api_key_no_key(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
@ -0,0 +1,74 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import Depends, FastAPI, Security |
||||
|
from fastapi.security import APIKeyQuery |
||||
|
from pydantic import BaseModel |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
api_key = APIKeyQuery(name="key", auto_error=False) |
||||
|
|
||||
|
|
||||
|
class User(BaseModel): |
||||
|
username: str |
||||
|
|
||||
|
|
||||
|
def get_current_user(oauth_header: Optional[str] = Security(api_key)): |
||||
|
if oauth_header is None: |
||||
|
return None |
||||
|
user = User(username=oauth_header) |
||||
|
return user |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user(current_user: Optional[User] = Depends(get_current_user)): |
||||
|
if current_user is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return current_user |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"APIKeyQuery": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": { |
||||
|
"APIKeyQuery": {"type": "apiKey", "name": "key", "in": "query"} |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_api_key(): |
||||
|
response = client.get("/users/me?key=secret") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"username": "secret"} |
||||
|
|
||||
|
|
||||
|
def test_security_api_key_no_key(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
@ -0,0 +1,62 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import FastAPI, Security |
||||
|
from fastapi.security.http import HTTPAuthorizationCredentials, HTTPBase |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
security = HTTPBase(scheme="Other", auto_error=False) |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user( |
||||
|
credentials: Optional[HTTPAuthorizationCredentials] = Security(security) |
||||
|
): |
||||
|
if credentials is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return {"scheme": credentials.scheme, "credentials": credentials.credentials} |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"HTTPBase": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": {"HTTPBase": {"type": "http", "scheme": "Other"}} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_http_base(): |
||||
|
response = client.get("/users/me", headers={"Authorization": "Other foobar"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"scheme": "Other", "credentials": "foobar"} |
||||
|
|
||||
|
|
||||
|
def test_security_http_base_no_credentials(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
@ -0,0 +1,79 @@ |
|||||
|
from base64 import b64encode |
||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import FastAPI, Security |
||||
|
from fastapi.security import HTTPBasic, HTTPBasicCredentials |
||||
|
from requests.auth import HTTPBasicAuth |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
security = HTTPBasic(auto_error=False) |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user(credentials: Optional[HTTPBasicCredentials] = Security(security)): |
||||
|
if credentials is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return {"username": credentials.username, "password": credentials.password} |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"HTTPBasic": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": {"HTTPBasic": {"type": "http", "scheme": "basic"}} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_http_basic(): |
||||
|
auth = HTTPBasicAuth(username="john", password="secret") |
||||
|
response = client.get("/users/me", auth=auth) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"username": "john", "password": "secret"} |
||||
|
|
||||
|
|
||||
|
def test_security_http_basic_no_credentials(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
||||
|
|
||||
|
|
||||
|
def test_security_http_basic_invalid_credentials(): |
||||
|
response = client.get( |
||||
|
"/users/me", headers={"Authorization": "Basic notabase64token"} |
||||
|
) |
||||
|
assert response.status_code == 403 |
||||
|
assert response.json() == {"detail": "Invalid authentication credentials"} |
||||
|
|
||||
|
|
||||
|
def test_security_http_basic_non_basic_credentials(): |
||||
|
payload = b64encode(b"johnsecret").decode("ascii") |
||||
|
auth_header = f"Basic {payload}" |
||||
|
response = client.get("/users/me", headers={"Authorization": auth_header}) |
||||
|
assert response.status_code == 403 |
||||
|
assert response.json() == {"detail": "Invalid authentication credentials"} |
@ -0,0 +1,68 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import FastAPI, Security |
||||
|
from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
security = HTTPBearer(auto_error=False) |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user( |
||||
|
credentials: Optional[HTTPAuthorizationCredentials] = Security(security) |
||||
|
): |
||||
|
if credentials is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return {"scheme": credentials.scheme, "credentials": credentials.credentials} |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"HTTPBearer": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": {"HTTPBearer": {"type": "http", "scheme": "bearer"}} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_http_bearer(): |
||||
|
response = client.get("/users/me", headers={"Authorization": "Bearer foobar"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"scheme": "Bearer", "credentials": "foobar"} |
||||
|
|
||||
|
|
||||
|
def test_security_http_bearer_no_credentials(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
||||
|
|
||||
|
|
||||
|
def test_security_http_bearer_incorrect_scheme_credentials(): |
||||
|
response = client.get("/users/me", headers={"Authorization": "Basic notreally"}) |
||||
|
assert response.status_code == 403 |
||||
|
assert response.json() == {"detail": "Invalid authentication credentials"} |
@ -0,0 +1,70 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import FastAPI, Security |
||||
|
from fastapi.security import HTTPAuthorizationCredentials, HTTPDigest |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
security = HTTPDigest(auto_error=False) |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user( |
||||
|
credentials: Optional[HTTPAuthorizationCredentials] = Security(security) |
||||
|
): |
||||
|
if credentials is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return {"scheme": credentials.scheme, "credentials": credentials.credentials} |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"HTTPDigest": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": {"HTTPDigest": {"type": "http", "scheme": "digest"}} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_http_digest(): |
||||
|
response = client.get("/users/me", headers={"Authorization": "Digest foobar"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"scheme": "Digest", "credentials": "foobar"} |
||||
|
|
||||
|
|
||||
|
def test_security_http_digest_no_credentials(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
||||
|
|
||||
|
|
||||
|
def test_security_http_digest_incorrect_scheme_credentials(): |
||||
|
response = client.get( |
||||
|
"/users/me", headers={"Authorization": "Other invalidauthorization"} |
||||
|
) |
||||
|
assert response.status_code == 403 |
||||
|
assert response.json() == {"detail": "Invalid authentication credentials"} |
@ -0,0 +1,254 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
import pytest |
||||
|
from fastapi import Depends, FastAPI, Security |
||||
|
from fastapi.security import OAuth2 |
||||
|
from fastapi.security.oauth2 import OAuth2PasswordRequestFormStrict |
||||
|
from pydantic import BaseModel |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
reusable_oauth2 = OAuth2( |
||||
|
flows={ |
||||
|
"password": { |
||||
|
"tokenUrl": "/token", |
||||
|
"scopes": {"read:users": "Read the users", "write:users": "Create users"}, |
||||
|
} |
||||
|
}, |
||||
|
auto_error=False, |
||||
|
) |
||||
|
|
||||
|
|
||||
|
class User(BaseModel): |
||||
|
username: str |
||||
|
|
||||
|
|
||||
|
def get_current_user(oauth_header: Optional[str] = Security(reusable_oauth2)): |
||||
|
if oauth_header is None: |
||||
|
return None |
||||
|
user = User(username=oauth_header) |
||||
|
return user |
||||
|
|
||||
|
|
||||
|
@app.post("/login") |
||||
|
def read_current_user(form_data: OAuth2PasswordRequestFormStrict = Depends()): |
||||
|
return form_data |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user(current_user: Optional[User] = Depends(get_current_user)): |
||||
|
if current_user is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return current_user |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/login": { |
||||
|
"post": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
}, |
||||
|
"422": { |
||||
|
"description": "Validation Error", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/HTTPValidationError" |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"summary": "Read Current User Post", |
||||
|
"operationId": "read_current_user_login_post", |
||||
|
"requestBody": { |
||||
|
"content": { |
||||
|
"application/x-www-form-urlencoded": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/Body_read_current_user" |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"required": True, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"OAuth2": []}], |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"components": { |
||||
|
"schemas": { |
||||
|
"Body_read_current_user": { |
||||
|
"title": "Body_read_current_user", |
||||
|
"required": ["grant_type", "username", "password"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"grant_type": { |
||||
|
"title": "Grant_Type", |
||||
|
"pattern": "password", |
||||
|
"type": "string", |
||||
|
}, |
||||
|
"username": {"title": "Username", "type": "string"}, |
||||
|
"password": {"title": "Password", "type": "string"}, |
||||
|
"scope": {"title": "Scope", "type": "string", "default": ""}, |
||||
|
"client_id": {"title": "Client_Id", "type": "string"}, |
||||
|
"client_secret": {"title": "Client_Secret", "type": "string"}, |
||||
|
}, |
||||
|
}, |
||||
|
"ValidationError": { |
||||
|
"title": "ValidationError", |
||||
|
"required": ["loc", "msg", "type"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"loc": { |
||||
|
"title": "Location", |
||||
|
"type": "array", |
||||
|
"items": {"type": "string"}, |
||||
|
}, |
||||
|
"msg": {"title": "Message", "type": "string"}, |
||||
|
"type": {"title": "Error Type", "type": "string"}, |
||||
|
}, |
||||
|
}, |
||||
|
"HTTPValidationError": { |
||||
|
"title": "HTTPValidationError", |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"detail": { |
||||
|
"title": "Detail", |
||||
|
"type": "array", |
||||
|
"items": {"$ref": "#/components/schemas/ValidationError"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"securitySchemes": { |
||||
|
"OAuth2": { |
||||
|
"type": "oauth2", |
||||
|
"flows": { |
||||
|
"password": { |
||||
|
"scopes": { |
||||
|
"read:users": "Read the users", |
||||
|
"write:users": "Create users", |
||||
|
}, |
||||
|
"tokenUrl": "/token", |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_oauth2(): |
||||
|
response = client.get("/users/me", headers={"Authorization": "Bearer footokenbar"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"username": "Bearer footokenbar"} |
||||
|
|
||||
|
|
||||
|
def test_security_oauth2_password_other_header(): |
||||
|
response = client.get("/users/me", headers={"Authorization": "Other footokenbar"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"username": "Other footokenbar"} |
||||
|
|
||||
|
|
||||
|
def test_security_oauth2_password_bearer_no_header(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
||||
|
|
||||
|
|
||||
|
required_params = { |
||||
|
"detail": [ |
||||
|
{ |
||||
|
"loc": ["body", "grant_type"], |
||||
|
"msg": "field required", |
||||
|
"type": "value_error.missing", |
||||
|
}, |
||||
|
{ |
||||
|
"loc": ["body", "username"], |
||||
|
"msg": "field required", |
||||
|
"type": "value_error.missing", |
||||
|
}, |
||||
|
{ |
||||
|
"loc": ["body", "password"], |
||||
|
"msg": "field required", |
||||
|
"type": "value_error.missing", |
||||
|
}, |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
grant_type_required = { |
||||
|
"detail": [ |
||||
|
{ |
||||
|
"loc": ["body", "grant_type"], |
||||
|
"msg": "field required", |
||||
|
"type": "value_error.missing", |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
grant_type_incorrect = { |
||||
|
"detail": [ |
||||
|
{ |
||||
|
"loc": ["body", "grant_type"], |
||||
|
"msg": 'string does not match regex "password"', |
||||
|
"type": "value_error.str.regex", |
||||
|
"ctx": {"pattern": "password"}, |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
|
||||
|
@pytest.mark.parametrize( |
||||
|
"data,expected_status,expected_response", |
||||
|
[ |
||||
|
(None, 422, required_params), |
||||
|
({"username": "johndoe", "password": "secret"}, 422, grant_type_required), |
||||
|
( |
||||
|
{"username": "johndoe", "password": "secret", "grant_type": "incorrect"}, |
||||
|
422, |
||||
|
grant_type_incorrect, |
||||
|
), |
||||
|
( |
||||
|
{"username": "johndoe", "password": "secret", "grant_type": "password"}, |
||||
|
200, |
||||
|
{ |
||||
|
"grant_type": "password", |
||||
|
"username": "johndoe", |
||||
|
"password": "secret", |
||||
|
"scopes": [], |
||||
|
"client_id": None, |
||||
|
"client_secret": None, |
||||
|
}, |
||||
|
), |
||||
|
], |
||||
|
) |
||||
|
def test_strict_login(data, expected_status, expected_response): |
||||
|
response = client.post("/login", data=data) |
||||
|
assert response.status_code == expected_status |
||||
|
assert response.json() == expected_response |
@ -0,0 +1,71 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import FastAPI, Security |
||||
|
from fastapi.security import OAuth2PasswordBearer |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="/token", auto_error=False) |
||||
|
|
||||
|
|
||||
|
@app.get("/items/") |
||||
|
async def read_items(token: Optional[str] = Security(oauth2_scheme)): |
||||
|
if token is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return {"token": token} |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/items/": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Items Get", |
||||
|
"operationId": "read_items_items__get", |
||||
|
"security": [{"OAuth2PasswordBearer": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": { |
||||
|
"OAuth2PasswordBearer": { |
||||
|
"type": "oauth2", |
||||
|
"flows": {"password": {"scopes": {}, "tokenUrl": "/token"}}, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_no_token(): |
||||
|
response = client.get("/items") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
||||
|
|
||||
|
|
||||
|
def test_token(): |
||||
|
response = client.get("/items", headers={"Authorization": "Bearer testtoken"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"token": "testtoken"} |
||||
|
|
||||
|
|
||||
|
def test_incorrect_token(): |
||||
|
response = client.get("/items", headers={"Authorization": "Notexistent testtoken"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
@ -0,0 +1,80 @@ |
|||||
|
from typing import Optional |
||||
|
|
||||
|
from fastapi import Depends, FastAPI, Security |
||||
|
from fastapi.security.open_id_connect_url import OpenIdConnect |
||||
|
from pydantic import BaseModel |
||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
oid = OpenIdConnect(openIdConnectUrl="/openid", auto_error=False) |
||||
|
|
||||
|
|
||||
|
class User(BaseModel): |
||||
|
username: str |
||||
|
|
||||
|
|
||||
|
def get_current_user(oauth_header: Optional[str] = Security(oid)): |
||||
|
if oauth_header is None: |
||||
|
return None |
||||
|
user = User(username=oauth_header) |
||||
|
return user |
||||
|
|
||||
|
|
||||
|
@app.get("/users/me") |
||||
|
def read_current_user(current_user: Optional[User] = Depends(get_current_user)): |
||||
|
if current_user is None: |
||||
|
return {"msg": "Create an account first"} |
||||
|
return current_user |
||||
|
|
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/users/me": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
"summary": "Read Current User Get", |
||||
|
"operationId": "read_current_user_users_me_get", |
||||
|
"security": [{"OpenIdConnect": []}], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"securitySchemes": { |
||||
|
"OpenIdConnect": {"type": "openIdConnect", "openIdConnectUrl": "/openid"} |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_security_oauth2(): |
||||
|
response = client.get("/users/me", headers={"Authorization": "Bearer footokenbar"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"username": "Bearer footokenbar"} |
||||
|
|
||||
|
|
||||
|
def test_security_oauth2_password_other_header(): |
||||
|
response = client.get("/users/me", headers={"Authorization": "Other footokenbar"}) |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"username": "Other footokenbar"} |
||||
|
|
||||
|
|
||||
|
def test_security_oauth2_password_bearer_no_header(): |
||||
|
response = client.get("/users/me") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"msg": "Create an account first"} |
Loading…
Reference in new issue