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
281 lines
9.0 KiB
Python
281 lines
9.0 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.
|
|
|
|
"""Tests for the interactions processor."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
from google.adk.events.event import Event
|
|
from google.adk.flows.llm_flows import interactions_processor
|
|
from google.genai import types
|
|
import pytest
|
|
|
|
|
|
class TestInteractionsRequestProcessor:
|
|
"""Tests for InteractionsRequestProcessor."""
|
|
|
|
def test_find_previous_interaction_id_empty_events(self):
|
|
"""Test that None is returned when there are no events."""
|
|
processor = interactions_processor.InteractionsRequestProcessor()
|
|
invocation_context = MagicMock()
|
|
invocation_context.session.events = []
|
|
invocation_context.branch = None
|
|
invocation_context.agent.name = "test_agent"
|
|
|
|
result = processor._find_previous_interaction_id(invocation_context)
|
|
assert result is None
|
|
|
|
def test_find_previous_interaction_id_user_only_events(self):
|
|
"""Test that None is returned when only user events exist."""
|
|
processor = interactions_processor.InteractionsRequestProcessor()
|
|
events = [
|
|
Event(
|
|
invocation_id="inv1",
|
|
author="user",
|
|
content=types.UserContent("Hello"),
|
|
),
|
|
Event(
|
|
invocation_id="inv2",
|
|
author="user",
|
|
content=types.UserContent("World"),
|
|
),
|
|
]
|
|
invocation_context = MagicMock()
|
|
invocation_context.session.events = events
|
|
invocation_context.branch = None
|
|
invocation_context.agent.name = "test_agent"
|
|
|
|
result = processor._find_previous_interaction_id(invocation_context)
|
|
assert result is None
|
|
|
|
def test_find_previous_interaction_id_no_interaction_id(self):
|
|
"""Test that None is returned when model events have no interaction_id."""
|
|
processor = interactions_processor.InteractionsRequestProcessor()
|
|
events = [
|
|
Event(
|
|
invocation_id="inv1",
|
|
author="user",
|
|
content=types.UserContent("Hello"),
|
|
),
|
|
Event(
|
|
invocation_id="inv2",
|
|
author="test_agent",
|
|
content=types.ModelContent("Response without interaction_id"),
|
|
),
|
|
]
|
|
invocation_context = MagicMock()
|
|
invocation_context.session.events = events
|
|
invocation_context.branch = None
|
|
invocation_context.agent.name = "test_agent"
|
|
|
|
result = processor._find_previous_interaction_id(invocation_context)
|
|
assert result is None
|
|
|
|
def test_find_previous_interaction_id_from_model_event(self):
|
|
"""Test that interaction_id is returned from model event."""
|
|
processor = interactions_processor.InteractionsRequestProcessor()
|
|
events = [
|
|
Event(
|
|
invocation_id="inv1",
|
|
author="user",
|
|
content=types.UserContent("Hello"),
|
|
),
|
|
Event(
|
|
invocation_id="inv2",
|
|
author="test_agent",
|
|
content=types.ModelContent("Response"),
|
|
interaction_id="interaction_123",
|
|
),
|
|
]
|
|
invocation_context = MagicMock()
|
|
invocation_context.session.events = events
|
|
invocation_context.branch = None
|
|
invocation_context.agent.name = "test_agent"
|
|
|
|
result = processor._find_previous_interaction_id(invocation_context)
|
|
assert result == "interaction_123"
|
|
|
|
def test_find_previous_interaction_id_returns_most_recent(self):
|
|
"""Test that the most recent interaction_id is returned."""
|
|
processor = interactions_processor.InteractionsRequestProcessor()
|
|
events = [
|
|
Event(
|
|
invocation_id="inv1",
|
|
author="user",
|
|
content=types.UserContent("Hello"),
|
|
),
|
|
Event(
|
|
invocation_id="inv2",
|
|
author="test_agent",
|
|
content=types.ModelContent("First response"),
|
|
interaction_id="interaction_first",
|
|
),
|
|
Event(
|
|
invocation_id="inv3",
|
|
author="user",
|
|
content=types.UserContent("Second message"),
|
|
),
|
|
Event(
|
|
invocation_id="inv4",
|
|
author="test_agent",
|
|
content=types.ModelContent("Second response"),
|
|
interaction_id="interaction_second",
|
|
),
|
|
]
|
|
invocation_context = MagicMock()
|
|
invocation_context.session.events = events
|
|
invocation_context.branch = None
|
|
invocation_context.agent.name = "test_agent"
|
|
|
|
result = processor._find_previous_interaction_id(invocation_context)
|
|
assert result == "interaction_second"
|
|
|
|
def test_find_previous_interaction_id_skips_user_events(self):
|
|
"""Test that user events with interaction_id are skipped."""
|
|
processor = interactions_processor.InteractionsRequestProcessor()
|
|
events = [
|
|
Event(
|
|
invocation_id="inv1",
|
|
author="test_agent",
|
|
content=types.ModelContent("Model response"),
|
|
interaction_id="interaction_model",
|
|
),
|
|
Event(
|
|
invocation_id="inv2",
|
|
author="user",
|
|
content=types.UserContent("User message"),
|
|
interaction_id="interaction_user", # This should be skipped
|
|
),
|
|
]
|
|
invocation_context = MagicMock()
|
|
invocation_context.session.events = events
|
|
invocation_context.branch = None
|
|
invocation_context.agent.name = "test_agent"
|
|
|
|
result = processor._find_previous_interaction_id(invocation_context)
|
|
assert result == "interaction_model"
|
|
|
|
def test_is_event_in_branch_no_branch(self):
|
|
"""Test branch filtering with no current branch."""
|
|
# Event without branch should be included when no current branch
|
|
event = Event(
|
|
invocation_id="inv1",
|
|
author="test",
|
|
content=types.ModelContent("test"),
|
|
)
|
|
assert interactions_processor._is_event_in_branch(None, event) is True
|
|
|
|
# Event with branch should be excluded when no current branch
|
|
event_with_branch = Event(
|
|
invocation_id="inv2",
|
|
author="test",
|
|
content=types.ModelContent("test"),
|
|
branch="some_branch",
|
|
)
|
|
assert (
|
|
interactions_processor._is_event_in_branch(None, event_with_branch)
|
|
is False
|
|
)
|
|
|
|
def test_is_event_in_branch_same_branch(self):
|
|
"""Test that events in the same branch are included."""
|
|
event = Event(
|
|
invocation_id="inv1",
|
|
author="test",
|
|
content=types.ModelContent("test"),
|
|
branch="root.child",
|
|
)
|
|
assert (
|
|
interactions_processor._is_event_in_branch("root.child", event) is True
|
|
)
|
|
|
|
def test_is_event_in_branch_different_branch(self):
|
|
"""Test that events in different branches are excluded."""
|
|
event = Event(
|
|
invocation_id="inv1",
|
|
author="test",
|
|
content=types.ModelContent("test"),
|
|
branch="root.other",
|
|
)
|
|
assert (
|
|
interactions_processor._is_event_in_branch("root.child", event) is False
|
|
)
|
|
|
|
def test_is_event_in_branch_root_events_included(self):
|
|
"""Test that root events (no branch) are included in child branches."""
|
|
event = Event(
|
|
invocation_id="inv1",
|
|
author="test",
|
|
content=types.ModelContent("test"),
|
|
)
|
|
assert (
|
|
interactions_processor._is_event_in_branch("root.child", event) is True
|
|
)
|
|
|
|
|
|
def _evt(author: str, interaction_id: str | None, branch: str | None) -> Event:
|
|
return Event(author=author, interaction_id=interaction_id, branch=branch)
|
|
|
|
|
|
def test_find_previous_interaction_id_returns_latest_for_agent():
|
|
events = [
|
|
_evt("my_agent", "int_1", None),
|
|
_evt("user", None, None),
|
|
_evt("my_agent", "int_2", None),
|
|
_evt("other_agent", "int_3", None),
|
|
]
|
|
|
|
result = interactions_processor._find_previous_interaction_state(
|
|
events, agent_name="my_agent", current_branch=None
|
|
)
|
|
|
|
assert result[0] == "int_2"
|
|
|
|
|
|
def test_find_previous_interaction_id_respects_branch():
|
|
events = [
|
|
_evt("my_agent", "int_main", None),
|
|
_evt("my_agent", "int_other_branch", "branch_b"),
|
|
]
|
|
|
|
result = interactions_processor._find_previous_interaction_state(
|
|
events, agent_name="my_agent", current_branch="branch_a"
|
|
)
|
|
|
|
assert result[0] == "int_main"
|
|
|
|
|
|
def test_find_previous_interaction_id_none_when_absent():
|
|
events = [_evt("user", None, None)]
|
|
|
|
result = interactions_processor._find_previous_interaction_state(
|
|
events, agent_name="my_agent", current_branch=None
|
|
)
|
|
|
|
assert result[0] is None
|
|
|
|
|
|
def test_find_previous_interaction_state_returns_both_ids():
|
|
events = [
|
|
Event(author="my_agent", interaction_id="int_1", environment_id="env_1"),
|
|
Event(author="user"),
|
|
Event(author="my_agent", interaction_id="int_2", environment_id="env_2"),
|
|
]
|
|
|
|
state = interactions_processor._find_previous_interaction_state(
|
|
events, agent_name="my_agent", current_branch=None
|
|
)
|
|
|
|
assert state == ("int_2", "env_2")
|