mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
Co-authored-by: Xuan Yang <xygoogle@google.com> PiperOrigin-RevId: 827557144
735 lines
25 KiB
Python
735 lines
25 KiB
Python
# Copyright 2025 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 sys
|
|
from unittest.mock import AsyncMock
|
|
from unittest.mock import Mock
|
|
from unittest.mock import patch
|
|
|
|
from google.adk.auth.auth_credential import AuthCredential
|
|
from google.adk.auth.auth_credential import AuthCredentialTypes
|
|
from google.adk.auth.auth_credential import HttpAuth
|
|
from google.adk.auth.auth_credential import HttpCredentials
|
|
from google.adk.auth.auth_credential import OAuth2Auth
|
|
from google.adk.auth.auth_credential import ServiceAccount
|
|
import pytest
|
|
|
|
# Skip all tests in this module if Python version is less than 3.10
|
|
pytestmark = pytest.mark.skipif(
|
|
sys.version_info < (3, 10), reason="MCP tool requires Python 3.10+"
|
|
)
|
|
|
|
# Import dependencies with version checking
|
|
try:
|
|
from google.adk.tools.mcp_tool.mcp_session_manager import MCPSessionManager
|
|
from google.adk.tools.mcp_tool.mcp_tool import MCPTool
|
|
from google.adk.tools.tool_context import ToolContext
|
|
from google.genai.types import FunctionDeclaration
|
|
from google.genai.types import Type
|
|
from mcp.types import CallToolResult
|
|
from mcp.types import TextContent
|
|
except ImportError as e:
|
|
if sys.version_info < (3, 10):
|
|
# Create dummy classes to prevent NameError during test collection
|
|
# Tests will be skipped anyway due to pytestmark
|
|
class DummyClass:
|
|
pass
|
|
|
|
MCPSessionManager = DummyClass
|
|
MCPTool = DummyClass
|
|
ToolContext = DummyClass
|
|
FunctionDeclaration = DummyClass
|
|
Type = DummyClass
|
|
CallToolResult = DummyClass
|
|
TextContent = DummyClass
|
|
else:
|
|
raise e
|
|
|
|
|
|
# Mock MCP Tool from mcp.types
|
|
class MockMCPTool:
|
|
"""Mock MCP Tool for testing."""
|
|
|
|
def __init__(self, name="test_tool", description="Test tool description"):
|
|
self.name = name
|
|
self.description = description
|
|
self.inputSchema = {
|
|
"type": "object",
|
|
"properties": {
|
|
"param1": {"type": "string", "description": "First parameter"},
|
|
"param2": {"type": "integer", "description": "Second parameter"},
|
|
},
|
|
"required": ["param1"],
|
|
}
|
|
self.outputSchema = None
|
|
|
|
|
|
class TestMCPTool:
|
|
"""Test suite for MCPTool class."""
|
|
|
|
def setup_method(self):
|
|
"""Set up test fixtures."""
|
|
self.mock_mcp_tool = MockMCPTool()
|
|
self.mock_session_manager = Mock(spec=MCPSessionManager)
|
|
self.mock_session = AsyncMock()
|
|
self.mock_session_manager.create_session = AsyncMock(
|
|
return_value=self.mock_session
|
|
)
|
|
|
|
def test_init_basic(self):
|
|
"""Test basic initialization without auth."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
assert tool.name == "test_tool"
|
|
assert tool.description == "Test tool description"
|
|
assert tool._mcp_tool == self.mock_mcp_tool
|
|
assert tool._mcp_session_manager == self.mock_session_manager
|
|
|
|
def test_init_with_auth(self):
|
|
"""Test initialization with authentication."""
|
|
# Create real auth scheme instances instead of mocks
|
|
from fastapi.openapi.models import OAuth2
|
|
|
|
auth_scheme = OAuth2(flows={})
|
|
auth_credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OAUTH2,
|
|
oauth2=OAuth2Auth(client_id="test_id", client_secret="test_secret"),
|
|
)
|
|
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
auth_scheme=auth_scheme,
|
|
auth_credential=auth_credential,
|
|
)
|
|
|
|
# The auth config is stored in the parent class _credentials_manager
|
|
assert tool._credentials_manager is not None
|
|
assert tool._credentials_manager._auth_config.auth_scheme == auth_scheme
|
|
assert (
|
|
tool._credentials_manager._auth_config.raw_auth_credential
|
|
== auth_credential
|
|
)
|
|
|
|
def test_init_with_empty_description(self):
|
|
"""Test initialization with empty description."""
|
|
mock_tool = MockMCPTool(description=None)
|
|
tool = MCPTool(
|
|
mcp_tool=mock_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
assert tool.description == ""
|
|
|
|
def test_get_declaration(self):
|
|
"""Test function declaration generation."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
declaration = tool._get_declaration()
|
|
|
|
assert isinstance(declaration, FunctionDeclaration)
|
|
assert declaration.name == "test_tool"
|
|
assert declaration.description == "Test tool description"
|
|
assert declaration.parameters is not None
|
|
assert declaration.response is None
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_impl_no_auth(self):
|
|
"""Test running tool without authentication."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
# Mock the session response - must return CallToolResult
|
|
mcp_response = CallToolResult(
|
|
content=[TextContent(type="text", text="success")]
|
|
)
|
|
self.mock_session.call_tool = AsyncMock(return_value=mcp_response)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
args = {"param1": "test_value"}
|
|
|
|
result = await tool._run_async_impl(
|
|
args=args, tool_context=tool_context, credential=None
|
|
)
|
|
|
|
# Verify the result matches the model_dump output
|
|
assert result == mcp_response.model_dump(exclude_none=True, mode="json")
|
|
self.mock_session_manager.create_session.assert_called_once_with(
|
|
headers=None
|
|
)
|
|
# Fix: call_tool uses 'arguments' parameter, not positional args
|
|
self.mock_session.call_tool.assert_called_once_with(
|
|
"test_tool", arguments=args
|
|
)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_impl_with_oauth2(self):
|
|
"""Test running tool with OAuth2 authentication."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
# Create OAuth2 credential
|
|
oauth2_auth = OAuth2Auth(access_token="test_access_token")
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OAUTH2, oauth2=oauth2_auth
|
|
)
|
|
|
|
# Mock the session response - must return CallToolResult
|
|
mcp_response = CallToolResult(
|
|
content=[TextContent(type="text", text="success")]
|
|
)
|
|
self.mock_session.call_tool = AsyncMock(return_value=mcp_response)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
args = {"param1": "test_value"}
|
|
|
|
result = await tool._run_async_impl(
|
|
args=args, tool_context=tool_context, credential=credential
|
|
)
|
|
|
|
assert result == mcp_response.model_dump(exclude_none=True, mode="json")
|
|
# Check that headers were passed correctly
|
|
self.mock_session_manager.create_session.assert_called_once()
|
|
call_args = self.mock_session_manager.create_session.call_args
|
|
headers = call_args[1]["headers"]
|
|
assert headers == {"Authorization": "Bearer test_access_token"}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_oauth2(self):
|
|
"""Test header generation for OAuth2 credentials."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
oauth2_auth = OAuth2Auth(access_token="test_token")
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OAUTH2, oauth2=oauth2_auth
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
headers = await tool._get_headers(tool_context, credential)
|
|
|
|
assert headers == {"Authorization": "Bearer test_token"}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_http_bearer(self):
|
|
"""Test header generation for HTTP Bearer credentials."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
http_auth = HttpAuth(
|
|
scheme="bearer", credentials=HttpCredentials(token="bearer_token")
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.HTTP, http=http_auth
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
headers = await tool._get_headers(tool_context, credential)
|
|
|
|
assert headers == {"Authorization": "Bearer bearer_token"}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_http_basic(self):
|
|
"""Test header generation for HTTP Basic credentials."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
http_auth = HttpAuth(
|
|
scheme="basic",
|
|
credentials=HttpCredentials(username="user", password="pass"),
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.HTTP, http=http_auth
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
headers = await tool._get_headers(tool_context, credential)
|
|
|
|
# Should create Basic auth header with base64 encoded credentials
|
|
import base64
|
|
|
|
expected_encoded = base64.b64encode(b"user:pass").decode()
|
|
assert headers == {"Authorization": f"Basic {expected_encoded}"}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_api_key_with_valid_header_scheme(self):
|
|
"""Test header generation for API Key credentials with header-based auth scheme."""
|
|
from fastapi.openapi.models import APIKey
|
|
from fastapi.openapi.models import APIKeyIn
|
|
from google.adk.auth.auth_schemes import AuthSchemeType
|
|
|
|
# Create auth scheme for header-based API key
|
|
auth_scheme = APIKey(**{
|
|
"type": AuthSchemeType.apiKey,
|
|
"in": APIKeyIn.header,
|
|
"name": "X-Custom-API-Key",
|
|
})
|
|
auth_credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.API_KEY, api_key="my_api_key"
|
|
)
|
|
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
auth_scheme=auth_scheme,
|
|
auth_credential=auth_credential,
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
headers = await tool._get_headers(tool_context, auth_credential)
|
|
|
|
assert headers == {"X-Custom-API-Key": "my_api_key"}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_api_key_with_query_scheme_raises_error(self):
|
|
"""Test that API Key with query-based auth scheme raises ValueError."""
|
|
from fastapi.openapi.models import APIKey
|
|
from fastapi.openapi.models import APIKeyIn
|
|
from google.adk.auth.auth_schemes import AuthSchemeType
|
|
|
|
# Create auth scheme for query-based API key (not supported)
|
|
auth_scheme = APIKey(**{
|
|
"type": AuthSchemeType.apiKey,
|
|
"in": APIKeyIn.query,
|
|
"name": "api_key",
|
|
})
|
|
auth_credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.API_KEY, api_key="my_api_key"
|
|
)
|
|
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
auth_scheme=auth_scheme,
|
|
auth_credential=auth_credential,
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="McpTool only supports header-based API key authentication",
|
|
):
|
|
await tool._get_headers(tool_context, auth_credential)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_api_key_with_cookie_scheme_raises_error(self):
|
|
"""Test that API Key with cookie-based auth scheme raises ValueError."""
|
|
from fastapi.openapi.models import APIKey
|
|
from fastapi.openapi.models import APIKeyIn
|
|
from google.adk.auth.auth_schemes import AuthSchemeType
|
|
|
|
# Create auth scheme for cookie-based API key (not supported)
|
|
auth_scheme = APIKey(**{
|
|
"type": AuthSchemeType.apiKey,
|
|
"in": APIKeyIn.cookie,
|
|
"name": "session_id",
|
|
})
|
|
auth_credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.API_KEY, api_key="my_api_key"
|
|
)
|
|
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
auth_scheme=auth_scheme,
|
|
auth_credential=auth_credential,
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="McpTool only supports header-based API key authentication",
|
|
):
|
|
await tool._get_headers(tool_context, auth_credential)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_api_key_without_auth_config_raises_error(self):
|
|
"""Test that API Key without auth config raises ValueError."""
|
|
# Create tool without auth scheme/config
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.API_KEY, api_key="my_api_key"
|
|
)
|
|
tool_context = Mock(spec=ToolContext)
|
|
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="Cannot find corresponding auth scheme for API key credential",
|
|
):
|
|
await tool._get_headers(tool_context, credential)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_api_key_without_credentials_manager_raises_error(
|
|
self,
|
|
):
|
|
"""Test that API Key without credentials manager raises ValueError."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
# Manually set credentials manager to None to simulate error condition
|
|
tool._credentials_manager = None
|
|
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.API_KEY, api_key="my_api_key"
|
|
)
|
|
tool_context = Mock(spec=ToolContext)
|
|
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="Cannot find corresponding auth scheme for API key credential",
|
|
):
|
|
await tool._get_headers(tool_context, credential)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_no_credential(self):
|
|
"""Test header generation with no credentials."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
headers = await tool._get_headers(tool_context, None)
|
|
|
|
assert headers is None
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_service_account(self):
|
|
"""Test header generation for service account credentials."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
# Create service account credential
|
|
service_account = ServiceAccount(scopes=["test"])
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.SERVICE_ACCOUNT,
|
|
service_account=service_account,
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
headers = await tool._get_headers(tool_context, credential)
|
|
|
|
# Should return None as service account credentials are not supported for direct header generation
|
|
assert headers is None
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_impl_with_api_key_header_auth(self):
|
|
"""Test running tool with API key header authentication end-to-end."""
|
|
from fastapi.openapi.models import APIKey
|
|
from fastapi.openapi.models import APIKeyIn
|
|
from google.adk.auth.auth_schemes import AuthSchemeType
|
|
|
|
# Create auth scheme for header-based API key
|
|
auth_scheme = APIKey(**{
|
|
"type": AuthSchemeType.apiKey,
|
|
"in": APIKeyIn.header,
|
|
"name": "X-Service-API-Key",
|
|
})
|
|
auth_credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.API_KEY, api_key="test_service_key"
|
|
)
|
|
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
auth_scheme=auth_scheme,
|
|
auth_credential=auth_credential,
|
|
)
|
|
|
|
# Mock the session response - must return CallToolResult
|
|
mcp_response = CallToolResult(
|
|
content=[TextContent(type="text", text="authenticated_success")]
|
|
)
|
|
self.mock_session.call_tool = AsyncMock(return_value=mcp_response)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
args = {"param1": "test_value"}
|
|
|
|
result = await tool._run_async_impl(
|
|
args=args, tool_context=tool_context, credential=auth_credential
|
|
)
|
|
|
|
assert result == mcp_response.model_dump(exclude_none=True, mode="json")
|
|
# Check that headers were passed correctly with custom API key header
|
|
self.mock_session_manager.create_session.assert_called_once()
|
|
call_args = self.mock_session_manager.create_session.call_args
|
|
headers = call_args[1]["headers"]
|
|
assert headers == {"X-Service-API-Key": "test_service_key"}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_impl_retry_decorator(self):
|
|
"""Test that the retry decorator is applied correctly."""
|
|
# This is more of an integration test to ensure the decorator is present
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
# Check that the method has the retry decorator
|
|
assert hasattr(tool._run_async_impl, "__wrapped__")
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_http_custom_scheme(self):
|
|
"""Test header generation for custom HTTP scheme."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
)
|
|
|
|
http_auth = HttpAuth(
|
|
scheme="custom", credentials=HttpCredentials(token="custom_token")
|
|
)
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.HTTP, http=http_auth
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
headers = await tool._get_headers(tool_context, credential)
|
|
|
|
assert headers == {"Authorization": "custom custom_token"}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_headers_api_key_error_logging(self):
|
|
"""Test that API key errors are logged correctly."""
|
|
from fastapi.openapi.models import APIKey
|
|
from fastapi.openapi.models import APIKeyIn
|
|
from google.adk.auth.auth_schemes import AuthSchemeType
|
|
|
|
# Create auth scheme for query-based API key (not supported)
|
|
auth_scheme = APIKey(**{
|
|
"type": AuthSchemeType.apiKey,
|
|
"in": APIKeyIn.query,
|
|
"name": "api_key",
|
|
})
|
|
auth_credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.API_KEY, api_key="my_api_key"
|
|
)
|
|
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
auth_scheme=auth_scheme,
|
|
auth_credential=auth_credential,
|
|
)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
|
|
# Test with logging
|
|
with patch("google.adk.tools.mcp_tool.mcp_tool.logger") as mock_logger:
|
|
with pytest.raises(ValueError):
|
|
await tool._get_headers(tool_context, auth_credential)
|
|
|
|
# Verify error was logged
|
|
mock_logger.error.assert_called_once()
|
|
logged_message = mock_logger.error.call_args[0][0]
|
|
assert (
|
|
"McpTool only supports header-based API key authentication"
|
|
in logged_message
|
|
)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_require_confirmation_true_no_confirmation(self):
|
|
"""Test require_confirmation=True with no confirmation in context."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
require_confirmation=True,
|
|
)
|
|
tool_context = Mock(spec=ToolContext)
|
|
tool_context.tool_confirmation = None
|
|
tool_context.request_confirmation = Mock()
|
|
args = {"param1": "test_value"}
|
|
|
|
result = await tool.run_async(args=args, tool_context=tool_context)
|
|
|
|
assert result == {
|
|
"error": (
|
|
"This tool call requires confirmation, please approve or reject."
|
|
)
|
|
}
|
|
tool_context.request_confirmation.assert_called_once()
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_require_confirmation_true_rejected(self):
|
|
"""Test require_confirmation=True with rejection in context."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
require_confirmation=True,
|
|
)
|
|
tool_context = Mock(spec=ToolContext)
|
|
tool_context.tool_confirmation = Mock(confirmed=False)
|
|
args = {"param1": "test_value"}
|
|
|
|
result = await tool.run_async(args=args, tool_context=tool_context)
|
|
|
|
assert result == {"error": "This tool call is rejected."}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_require_confirmation_true_confirmed(self):
|
|
"""Test require_confirmation=True with confirmation in context."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
require_confirmation=True,
|
|
)
|
|
tool_context = Mock(spec=ToolContext)
|
|
tool_context.tool_confirmation = Mock(confirmed=True)
|
|
args = {"param1": "test_value"}
|
|
|
|
with patch(
|
|
"google.adk.tools.base_authenticated_tool.BaseAuthenticatedTool.run_async",
|
|
new_callable=AsyncMock,
|
|
) as mock_super_run_async:
|
|
await tool.run_async(args=args, tool_context=tool_context)
|
|
mock_super_run_async.assert_called_once_with(
|
|
args=args, tool_context=tool_context
|
|
)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_require_confirmation_callable_true_no_confirmation(
|
|
self,
|
|
):
|
|
"""Test require_confirmation=callable with no confirmation in context."""
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
require_confirmation=lambda **kwargs: True,
|
|
)
|
|
tool_context = Mock(spec=ToolContext)
|
|
tool_context.tool_confirmation = None
|
|
tool_context.request_confirmation = Mock()
|
|
args = {"param1": "test_value"}
|
|
|
|
result = await tool.run_async(args=args, tool_context=tool_context)
|
|
|
|
assert result == {
|
|
"error": (
|
|
"This tool call requires confirmation, please approve or reject."
|
|
)
|
|
}
|
|
tool_context.request_confirmation.assert_called_once()
|
|
|
|
def test_init_validation(self):
|
|
"""Test that initialization validates required parameters."""
|
|
# This test ensures that the MCPTool properly handles its dependencies
|
|
with pytest.raises(TypeError):
|
|
MCPTool() # Missing required parameters
|
|
|
|
with pytest.raises(TypeError):
|
|
MCPTool(mcp_tool=self.mock_mcp_tool) # Missing session manager
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_impl_with_header_provider_no_auth(self):
|
|
"""Test running tool with header_provider but no auth."""
|
|
expected_headers = {"X-Tenant-ID": "test-tenant"}
|
|
header_provider = Mock(return_value=expected_headers)
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
header_provider=header_provider,
|
|
)
|
|
|
|
# Mock the session response - must return CallToolResult
|
|
mcp_response = CallToolResult(
|
|
content=[TextContent(type="text", text="success")]
|
|
)
|
|
self.mock_session.call_tool = AsyncMock(return_value=mcp_response)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
tool_context._invocation_context = Mock()
|
|
args = {"param1": "test_value"}
|
|
|
|
result = await tool._run_async_impl(
|
|
args=args, tool_context=tool_context, credential=None
|
|
)
|
|
|
|
assert result == mcp_response.model_dump(exclude_none=True, mode="json")
|
|
header_provider.assert_called_once()
|
|
self.mock_session_manager.create_session.assert_called_once_with(
|
|
headers=expected_headers
|
|
)
|
|
self.mock_session.call_tool.assert_called_once_with(
|
|
"test_tool", arguments=args
|
|
)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_run_async_impl_with_header_provider_and_oauth2(self):
|
|
"""Test running tool with header_provider and OAuth2 auth."""
|
|
dynamic_headers = {"X-Tenant-ID": "test-tenant"}
|
|
header_provider = Mock(return_value=dynamic_headers)
|
|
tool = MCPTool(
|
|
mcp_tool=self.mock_mcp_tool,
|
|
mcp_session_manager=self.mock_session_manager,
|
|
header_provider=header_provider,
|
|
)
|
|
|
|
oauth2_auth = OAuth2Auth(access_token="test_access_token")
|
|
credential = AuthCredential(
|
|
auth_type=AuthCredentialTypes.OAUTH2, oauth2=oauth2_auth
|
|
)
|
|
|
|
# Mock the session response - must return CallToolResult
|
|
mcp_response = CallToolResult(
|
|
content=[TextContent(type="text", text="success")]
|
|
)
|
|
self.mock_session.call_tool = AsyncMock(return_value=mcp_response)
|
|
|
|
tool_context = Mock(spec=ToolContext)
|
|
tool_context._invocation_context = Mock()
|
|
args = {"param1": "test_value"}
|
|
|
|
result = await tool._run_async_impl(
|
|
args=args, tool_context=tool_context, credential=credential
|
|
)
|
|
|
|
assert result == mcp_response.model_dump(exclude_none=True, mode="json")
|
|
header_provider.assert_called_once()
|
|
self.mock_session_manager.create_session.assert_called_once()
|
|
call_args = self.mock_session_manager.create_session.call_args
|
|
headers = call_args[1]["headers"]
|
|
assert headers == {
|
|
"Authorization": "Bearer test_access_token",
|
|
"X-Tenant-ID": "test-tenant",
|
|
}
|
|
self.mock_session.call_tool.assert_called_once_with(
|
|
"test_tool", arguments=args
|
|
)
|