Files
google--adk-python/tests/integration/test_managed_agent.py
T
wehub-resource-sync ec2b666284
Continuous Integration / Pre-commit Linter (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.10) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.11) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.12) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.13) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.10) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.11) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.12) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.13) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.14) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.10) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.11) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.12) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.13) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.14) (push) Waiting to run
Copybara PR Handler / close-imported-pr (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:25:13 +08:00

173 lines
5.2 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.
"""Live integration tests for ManagedAgent.
Assumes tests/integration/.env is present (auto-loaded by conftest.py) and that
auth (ADC) is configured. Run explicitly:
pytest tests/integration/test_managed_agent.py -v -s
"""
from __future__ import annotations
import os
from google.adk.agents import ManagedAgent
from google.adk.runners import Runner
from google.adk.sessions.in_memory_session_service import InMemorySessionService
from google.adk.tools import google_search
from google.adk.tools import RemoteMcpServer
from google.adk.utils.context_utils import Aclosing
from google.genai import types
import pytest
_AGENT_ID = 'antigravity-preview-05-2026'
async def _run_turn(runner, session, text: str) -> list:
events = []
async with Aclosing(
runner.run_async(
user_id='test_user',
session_id=session.id,
new_message=types.Content(
role='user', parts=[types.Part.from_text(text=text)]
),
)
) as agen:
async for event in agen:
events.append(event)
return events
def _joined_text(events) -> str:
return ' '.join(
part.text
for e in events
if e.content and e.content.parts
for part in e.content.parts
if part.text
)
@pytest.mark.asyncio
async def test_google_search_project_hail_mary():
agent = ManagedAgent(
name='managed_search_agent',
agent_id=_AGENT_ID,
environment={'type': 'remote'},
tools=[google_search],
)
session_service = InMemorySessionService()
runner = Runner(
app_name='managed_agent_it',
agent=agent,
session_service=session_service,
)
session = await session_service.create_session(
app_name='managed_agent_it', user_id='test_user'
)
events = await _run_turn(
runner, session, 'Who plays Rocky in the movie Project Hail Mary?'
)
answer = _joined_text(events)
print('\n=== ManagedAgent answer ===\n', answer)
assert (
'james ortiz' in answer.lower()
), f'expected the grounded answer to contain "James Ortiz"; got: {answer!r}'
@pytest.mark.asyncio
async def test_code_execution_prime_sum():
agent = ManagedAgent(
name='managed_code_execution_agent',
agent_id=_AGENT_ID,
environment={'type': 'remote'},
tools=[types.Tool(code_execution=types.ToolCodeExecution())],
)
session_service = InMemorySessionService()
runner = Runner(
app_name='managed_agent_it',
agent=agent,
session_service=session_service,
)
session = await session_service.create_session(
app_name='managed_agent_it', user_id='test_user'
)
events = await _run_turn(
runner,
session,
'What is the sum of the first 50 prime numbers? Use code to compute it.',
)
answer = _joined_text(events)
print('\n=== ManagedAgent code execution answer ===\n', answer)
# The model may stream the number with thousands separators and/or stray
# whitespace (e.g. "5,117" or "5, 117"), so remove all whitespace and commas
# before matching the code-executed sum.
normalized = ''.join(answer.split()).replace(',', '')
assert (
'5117' in normalized
), f'expected the code-executed sum 5117; got: {answer!r}'
@pytest.mark.asyncio
# Server-side remote MCP (mcp_server tool param) is currently only accepted by
# the Gemini Developer API Interactions endpoint. The Vertex Interactions
# endpoint returns 400 invalid_request for it (google-genai likewise documents
# types.Tool.mcp_servers as unsupported on Vertex AI), so this live test is
# scoped to GOOGLE_AI.
@pytest.mark.parametrize('llm_backend', ['GOOGLE_AI'], indirect=True)
@pytest.mark.skipif(
not os.environ.get('GOOGLE_MAPS_API_KEY'),
reason='GOOGLE_MAPS_API_KEY not set',
)
async def test_remote_mcp_maps_grounding_lite():
agent = ManagedAgent(
name='managed_maps_agent',
agent_id=_AGENT_ID,
environment={'type': 'remote'},
tools=[
RemoteMcpServer(
name='maps_grounding_lite',
url='https://mapstools.googleapis.com/mcp',
header_provider=lambda ctx: {
'X-Goog-Api-Key': os.environ['GOOGLE_MAPS_API_KEY']
},
)
],
)
session_service = InMemorySessionService()
runner = Runner(
app_name='managed_agent_it',
agent=agent,
session_service=session_service,
)
session = await session_service.create_session(
app_name='managed_agent_it', user_id='test_user'
)
events = await _run_turn(
runner, session, 'Find a few coffee shops near Golden Gate Park.'
)
# Non-deterministic content; assert a non-empty grounded answer came back and
# no terminal error event was emitted.
assert _joined_text(events).strip()
assert not any(e.error_code for e in events)