ec2b666284
Continuous Integration / Pre-commit Linter (push) Has been cancelled
Continuous Integration / Mypy Check (Python 3.10) (push) Has been cancelled
Continuous Integration / Mypy Check (Python 3.11) (push) Has been cancelled
Continuous Integration / Mypy Check (Python 3.12) (push) Has been cancelled
Continuous Integration / Mypy Check (Python 3.13) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.10) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.11) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.12) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.13) (push) Has been cancelled
Continuous Integration / Unit Tests (Python 3.14) (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.10) (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.11) (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.12) (push) Has been cancelled
Copybara PR Handler / close-imported-pr (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.13) (push) Has been cancelled
Continuous Integration / A2A v0.3 Tests (Python 3.14) (push) Has been cancelled
508 lines
18 KiB
Python
508 lines
18 KiB
Python
# Copyright 2026 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import time
|
|
from unittest.mock import Mock
|
|
from unittest.mock import patch
|
|
from urllib.parse import parse_qs
|
|
|
|
from authlib.integrations.requests_client import OAuth2Session
|
|
from authlib.oauth2.rfc6749 import OAuth2Token
|
|
from fastapi.openapi.models import OAuth2
|
|
from fastapi.openapi.models import OAuthFlowClientCredentials
|
|
from fastapi.openapi.models import OAuthFlows
|
|
from google.adk.auth.auth_credential import AuthCredential
|
|
from google.adk.auth.auth_credential import AuthCredentialTypes
|
|
from google.adk.auth.auth_credential import OAuth2Auth
|
|
from google.adk.auth.auth_schemes import OAuthGrantType
|
|
from google.adk.auth.auth_schemes import OpenIdConnectWithConfig
|
|
from google.adk.auth.exchanger import oauth2_credential_exchanger
|
|
from google.adk.auth.exchanger.base_credential_exchanger import CredentialExchangeError
|
|
from google.adk.auth.exchanger.oauth2_credential_exchanger import OAuth2CredentialExchanger
|
|
import pytest
|
|
|
|
|
|
class _TokenBodyCapturingOAuth2Session(OAuth2Session):
|
|
"""A mock OAuth2Session that captures the final token request body."""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.request_body = ""
|
|
|
|
def _fetch_token(
|
|
self,
|
|
url=None,
|
|
body="",
|
|
auth=None,
|
|
method="POST",
|
|
headers=None,
|
|
**kwargs,
|
|
):
|
|
if auth is not None:
|
|
_, _, body = auth.prepare(method, url, headers or {}, body)
|
|
self.request_body = body
|
|
return OAuth2Token({
|
|
"access_token": "new_access_token",
|
|
"refresh_token": "new_refresh_token",
|
|
"expires_at": int(time.time()) + 3600,
|
|
"expires_in": 3600,
|
|
})
|
|
|
|
|
|
class TestOAuth2CredentialExchanger:
|
|
"""Test suite for OAuth2CredentialExchanger."""
|
|
|
|
async def test_exchange_with_existing_token(self):
|
|
"""Test exchange method when access token already exists."""
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
access_token="existing_token",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
# Should return the same credential since access token already exists
|
|
assert exchange_result.credential == credential
|
|
assert exchange_result.credential.oauth2.access_token == "existing_token"
|
|
assert not exchange_result.was_exchanged
|
|
|
|
@patch("google.adk.auth.oauth2_credential_util.OAuth2Session")
|
|
async def test_exchange_success(self, mock_oauth2_session):
|
|
"""Test successful token exchange."""
|
|
# Setup mock
|
|
mock_client = Mock()
|
|
mock_oauth2_session.return_value = mock_client
|
|
mock_tokens = OAuth2Token({
|
|
"access_token": "new_access_token",
|
|
"refresh_token": "new_refresh_token",
|
|
"expires_at": int(time.time()) + 3600,
|
|
"expires_in": 3600,
|
|
})
|
|
mock_client.fetch_token.return_value = mock_tokens
|
|
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
auth_response_uri="https://example.com/callback?code=auth_code",
|
|
auth_code="auth_code",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
# Verify token exchange was successful
|
|
assert exchange_result.credential.oauth2.access_token == "new_access_token"
|
|
assert (
|
|
exchange_result.credential.oauth2.refresh_token == "new_refresh_token"
|
|
)
|
|
assert exchange_result.was_exchanged
|
|
mock_client.fetch_token.assert_called_once()
|
|
|
|
@patch("google.adk.auth.oauth2_credential_util.OAuth2Session")
|
|
async def test_exchange_success_pkce(self, mock_oauth2_session):
|
|
"""Test successful token exchange with PKCE."""
|
|
# Setup mock
|
|
mock_client = Mock()
|
|
mock_oauth2_session.return_value = mock_client
|
|
mock_tokens = OAuth2Token({
|
|
"access_token": "new_access_token",
|
|
"refresh_token": "new_refresh_token",
|
|
"expires_at": int(time.time()) + 3600,
|
|
"expires_in": 3600,
|
|
})
|
|
mock_client.fetch_token.return_value = mock_tokens
|
|
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
auth_response_uri="https://example.com/callback?code=auth_code",
|
|
auth_code="auth_code",
|
|
code_verifier="mock_code_verifier",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
# Verify token exchange was successful
|
|
assert exchange_result.credential.oauth2.access_token == "new_access_token"
|
|
assert (
|
|
exchange_result.credential.oauth2.refresh_token == "new_refresh_token"
|
|
)
|
|
assert exchange_result.was_exchanged
|
|
mock_client.fetch_token.assert_called_once_with(
|
|
"https://example.com/token",
|
|
authorization_response="https://example.com/callback?code=auth_code",
|
|
code="auth_code",
|
|
grant_type=OAuthGrantType.AUTHORIZATION_CODE,
|
|
code_verifier="mock_code_verifier",
|
|
)
|
|
|
|
async def test_exchange_missing_auth_scheme(self):
|
|
"""Test exchange with missing auth_scheme raises ValueError."""
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
try:
|
|
await exchanger.exchange(credential, None)
|
|
assert False, "Should have raised ValueError"
|
|
except CredentialExchangeError as e:
|
|
assert "auth_scheme is required" in str(e)
|
|
|
|
@patch("google.adk.auth.oauth2_credential_util.OAuth2Session")
|
|
async def test_exchange_no_session(self, mock_oauth2_session):
|
|
"""Test exchange when OAuth2Session cannot be created."""
|
|
# Mock to return None for create_oauth2_session
|
|
mock_oauth2_session.return_value = None
|
|
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
# Missing client_secret to trigger session creation failure
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
# Should return original credential when session creation fails
|
|
assert exchange_result.credential == credential
|
|
assert exchange_result.credential.oauth2.access_token is None
|
|
assert not exchange_result.was_exchanged
|
|
|
|
@patch("google.adk.auth.oauth2_credential_util.OAuth2Session")
|
|
async def test_exchange_fetch_token_failure(self, mock_oauth2_session):
|
|
"""Test exchange when fetch_token fails."""
|
|
# Setup mock to raise exception during fetch_token
|
|
mock_client = Mock()
|
|
mock_oauth2_session.return_value = mock_client
|
|
mock_client.fetch_token.side_effect = Exception("Token fetch failed")
|
|
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
auth_response_uri="https://example.com/callback?code=auth_code",
|
|
auth_code="auth_code",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
# Should return original credential when fetch_token fails
|
|
assert exchange_result.credential == credential
|
|
assert exchange_result.credential.oauth2.access_token is None
|
|
assert not exchange_result.was_exchanged
|
|
mock_client.fetch_token.assert_called_once()
|
|
|
|
async def test_exchange_authlib_not_available(self):
|
|
"""Test exchange when authlib is not available."""
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
auth_response_uri="https://example.com/callback?code=auth_code",
|
|
auth_code="auth_code",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
|
|
# Mock AUTHLIB_AVAILABLE to False
|
|
with patch(
|
|
"google.adk.auth.exchanger.oauth2_credential_exchanger.AUTHLIB_AVAILABLE",
|
|
False,
|
|
):
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
# Should return original credential when authlib is not available
|
|
assert exchange_result.credential == credential
|
|
assert exchange_result.credential.oauth2.access_token is None
|
|
assert not exchange_result.was_exchanged
|
|
|
|
@patch("google.adk.auth.oauth2_credential_util.OAuth2Session")
|
|
async def test_exchange_client_credentials_success(self, mock_oauth2_session):
|
|
"""Test successful client credentials exchange."""
|
|
# Setup mock
|
|
mock_client = Mock()
|
|
mock_oauth2_session.return_value = mock_client
|
|
mock_tokens = OAuth2Token({
|
|
"access_token": "client_access_token",
|
|
"expires_at": int(time.time()) + 3600,
|
|
"expires_in": 3600,
|
|
})
|
|
mock_client.fetch_token.return_value = mock_tokens
|
|
|
|
# Create OAuth2 scheme with client credentials flow
|
|
flows = OAuthFlows(
|
|
clientCredentials=OAuthFlowClientCredentials(
|
|
tokenUrl="https://example.com/token",
|
|
scopes={"read": "Read access", "write": "Write access"},
|
|
)
|
|
)
|
|
scheme = OAuth2(flows=flows)
|
|
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OAUTH2,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
# Verify client credentials exchange was successful
|
|
assert (
|
|
exchange_result.credential.oauth2.access_token == "client_access_token"
|
|
)
|
|
assert exchange_result.was_exchanged
|
|
mock_client.fetch_token.assert_called_once_with(
|
|
"https://example.com/token",
|
|
grant_type="client_credentials",
|
|
)
|
|
|
|
@patch("google.adk.auth.oauth2_credential_util.OAuth2Session")
|
|
async def test_exchange_client_credentials_failure(self, mock_oauth2_session):
|
|
"""Test client credentials exchange failure."""
|
|
# Setup mock to raise exception during fetch_token
|
|
mock_client = Mock()
|
|
mock_oauth2_session.return_value = mock_client
|
|
mock_client.fetch_token.side_effect = Exception(
|
|
"Client credentials fetch failed"
|
|
)
|
|
|
|
# Create OAuth2 scheme with client credentials flow
|
|
flows = OAuthFlows(
|
|
clientCredentials=OAuthFlowClientCredentials(
|
|
tokenUrl="https://example.com/token", scopes={"read": "Read access"}
|
|
)
|
|
)
|
|
scheme = OAuth2(flows=flows)
|
|
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OAUTH2,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
# Should return original credential when client credentials exchange fails
|
|
assert exchange_result.credential == credential
|
|
assert exchange_result.credential.oauth2.access_token is None
|
|
assert not exchange_result.was_exchanged
|
|
mock_client.fetch_token.assert_called_once()
|
|
|
|
@patch("google.adk.auth.oauth2_credential_util.OAuth2Session")
|
|
async def test_exchange_normalize_uri(self, mock_oauth2_session):
|
|
"""Test exchange method normalizes auth_response_uri."""
|
|
mock_client = Mock()
|
|
mock_oauth2_session.return_value = mock_client
|
|
mock_tokens = OAuth2Token({
|
|
"access_token": "new_access_token",
|
|
"refresh_token": "new_refresh_token",
|
|
"expires_at": int(time.time()) + 3600,
|
|
"expires_in": 3600,
|
|
})
|
|
mock_client.fetch_token.return_value = mock_tokens
|
|
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
auth_response_uri="https://example.com/callback?code=auth_code#", # URI with trailing hash
|
|
auth_code="auth_code",
|
|
),
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
await exchanger.exchange(credential, scheme)
|
|
|
|
# Verify fetch_token was called with the normalized URI
|
|
mock_client.fetch_token.assert_called_once_with(
|
|
"https://example.com/token",
|
|
authorization_response="https://example.com/callback?code=auth_code", # Normalized URI
|
|
code="auth_code",
|
|
grant_type=OAuthGrantType.AUTHORIZATION_CODE,
|
|
)
|
|
|
|
async def test_exchange_client_secret_post_has_single_client_id(self):
|
|
"""Test exchange lets Authlib add client_id only once for body auth."""
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OPEN_ID_CONNECT,
|
|
oauth2=OAuth2Auth(
|
|
client_id="test_client_id",
|
|
client_secret="test_client_secret",
|
|
token_endpoint_auth_method="client_secret_post",
|
|
auth_response_uri="https://example.com/callback?code=auth_code",
|
|
auth_code="auth_code",
|
|
),
|
|
)
|
|
|
|
client = _TokenBodyCapturingOAuth2Session(
|
|
credential.oauth2.client_id,
|
|
credential.oauth2.client_secret,
|
|
token_endpoint_auth_method="client_secret_post",
|
|
)
|
|
|
|
with patch.object(
|
|
oauth2_credential_exchanger,
|
|
"create_oauth2_session",
|
|
autospec=True,
|
|
return_value=(client, "https://example.com/token"),
|
|
):
|
|
exchanger = OAuth2CredentialExchanger()
|
|
exchange_result = await exchanger.exchange(credential, scheme)
|
|
|
|
request_params = parse_qs(client.request_body)
|
|
|
|
assert exchange_result.was_exchanged
|
|
assert request_params["grant_type"] == [OAuthGrantType.AUTHORIZATION_CODE]
|
|
assert request_params["code"] == ["auth_code"]
|
|
assert request_params["client_id"] == ["test_client_id"]
|
|
assert request_params["client_secret"] == ["test_client_secret"]
|
|
|
|
async def test_determine_grant_type_client_credentials(self):
|
|
"""Test grant type determination for client credentials."""
|
|
flows = OAuthFlows(
|
|
clientCredentials=OAuthFlowClientCredentials(
|
|
tokenUrl="https://example.com/token", scopes={"read": "Read access"}
|
|
)
|
|
)
|
|
scheme = OAuth2(flows=flows)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
grant_type = exchanger._determine_grant_type(scheme)
|
|
|
|
from google.adk.auth.auth_schemes import OAuthGrantType
|
|
|
|
assert grant_type == OAuthGrantType.CLIENT_CREDENTIALS
|
|
|
|
async def test_determine_grant_type_openid_connect(self):
|
|
"""Test grant type determination for OpenID Connect (defaults to auth code)."""
|
|
scheme = OpenIdConnectWithConfig(
|
|
type_="openIdConnect",
|
|
openId_connect_url=(
|
|
"https://example.com/.well-known/openid_configuration"
|
|
),
|
|
authorization_endpoint="https://example.com/auth",
|
|
token_endpoint="https://example.com/token",
|
|
scopes=["openid"],
|
|
)
|
|
|
|
exchanger = OAuth2CredentialExchanger()
|
|
grant_type = exchanger._determine_grant_type(scheme)
|
|
|
|
from google.adk.auth.auth_schemes import OAuthGrantType
|
|
|
|
assert grant_type == OAuthGrantType.AUTHORIZATION_CODE
|