Spaces:
Paused
Paused
File size: 17,013 Bytes
4b03eed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 | # -*- coding: utf-8 -*-
# pylint: disable=protected-access
"""Unit tests for AnthropicChatModel with mocked API responses.
Tests cover both non-streaming and streaming modes.
Anthropic uses event-based streaming (message_start, content_block_start,
content_block_delta, message_delta events).
"""
import json
from typing import Any
import unittest
from unittest import IsolatedAsyncioTestCase
from unittest.mock import AsyncMock, MagicMock, patch
from utils import AnyString
from agentscope.message import TextBlock, ToolCallBlock, ThinkingBlock
from agentscope.model import AnthropicChatModel
from agentscope.credential import AnthropicCredential
from agentscope.tool import ToolChoice
A = AnyString()
# ---------------------------------------------------------------------------
# Helpers
# ---------------------------------------------------------------------------
def _make_model(stream: bool = False) -> Any:
return AnthropicChatModel(
credential=AnthropicCredential(api_key="test"),
model="claude-opus-4-5",
stream=stream,
context_size=200_000,
)
def _mock_completion(
text: Any = None,
tool_calls: Any = None,
thinking: Any = None,
response_id: str = "msg-1",
) -> MagicMock:
"""Build a mock non-streaming Anthropic Message response."""
blocks = []
if thinking:
b = MagicMock()
b.type = "thinking"
b.thinking = thinking
b.signature = "sig123"
blocks.append(b)
if text:
b = MagicMock()
b.type = "text"
b.text = text
blocks.append(b)
if tool_calls:
for tc in tool_calls:
b = MagicMock()
b.type = "tool_use"
b.id = tc["id"]
b.name = tc["name"]
b.input = tc["input"]
blocks.append(b)
resp = MagicMock()
resp.id = response_id
resp.content = blocks
resp.usage = MagicMock()
resp.usage.input_tokens = 10
resp.usage.output_tokens = 5
resp.usage.cache_creation_input_tokens = 0
resp.usage.cache_read_input_tokens = 0
return resp
def _make_event(event_type: str, **kwargs: Any) -> MagicMock:
"""Build a mock Anthropic streaming event."""
event = MagicMock()
event.type = event_type
for key, val in kwargs.items():
setattr(event, key, val)
return event
class _MockAsyncEventStream:
"""Mock async iterator over Anthropic events."""
def __init__(self, events: list) -> None:
self._events = events
self._index = 0
def __aiter__(self) -> "_MockAsyncEventStream":
return self
async def __anext__(self) -> Any:
if self._index >= len(self._events):
raise StopAsyncIteration
event = self._events[self._index]
self._index += 1
return event
# ---------------------------------------------------------------------------
# Non-streaming tests
# ---------------------------------------------------------------------------
class TestAnthropicNonStream(IsolatedAsyncioTestCase):
"""Tests for AnthropicChatModel in non-streaming mode."""
def setUp(self) -> None:
self.model = _make_model(stream=False)
@patch("anthropic.AsyncAnthropic")
async def test_text_response(self, mock_client_cls: MagicMock) -> None:
"""Non-stream text response returns a single ChatResponse."""
mock_create = AsyncMock(
return_value=_mock_completion(text="Hello!"),
)
mock_client_cls.return_value.messages.create = mock_create
result = await self.model([])
self.assertEqual(
(result.is_last, result.content),
(True, [TextBlock.model_construct(id=A, text="Hello!")]),
)
self.assertEqual(result.id, "msg-1")
@patch("anthropic.AsyncAnthropic")
async def test_tool_call_response(
self,
mock_client_cls: MagicMock,
) -> None:
"""Non-stream tool call response creates ToolCallBlocks."""
mock_create = AsyncMock(
return_value=_mock_completion(
tool_calls=[
{
"id": "toolu_1",
"name": "get_weather",
"input": {"city": "Beijing"},
},
],
),
)
mock_client_cls.return_value.messages.create = mock_create
result = await self.model([])
self.assertEqual(
(result.is_last, result.content),
(
True,
[
ToolCallBlock(
id="toolu_1",
name="get_weather",
input=json.dumps({"city": "Beijing"}),
),
],
),
)
@patch("anthropic.AsyncAnthropic")
async def test_thinking_response(
self,
mock_client_cls: MagicMock,
) -> None:
"""Non-stream response with reasoning creates ThinkingBlock."""
mock_create = AsyncMock(
return_value=_mock_completion(
thinking="Deep thought...",
text="Answer",
),
)
mock_client_cls.return_value.messages.create = mock_create
result = await self.model([])
self.assertEqual(
(result.is_last, result.content),
(
True,
[
ThinkingBlock.model_construct(
id=A,
thinking="Deep thought...",
signature="sig123",
),
TextBlock.model_construct(id=A, text="Answer"),
],
),
)
# ---------------------------------------------------------------------------
# Streaming tests
# ---------------------------------------------------------------------------
class TestAnthropicStream(IsolatedAsyncioTestCase):
"""Tests for AnthropicChatModel in streaming mode."""
def setUp(self) -> None:
self.model = _make_model(stream=True)
@patch("anthropic.AsyncAnthropic")
async def test_stream_text(self, mock_client_cls: MagicMock) -> None:
"""Stream text yields n deltas + 1 final with full content."""
msg_usage = MagicMock()
msg_usage.input_tokens = 10
msg_usage.output_tokens = 0
msg_usage.cache_creation_input_tokens = 0
msg_usage.cache_read_input_tokens = 0
message = MagicMock()
message.id = "msg-1"
message.usage = msg_usage
delta1 = MagicMock()
delta1.type = "text_delta"
delta1.text = "Hello"
delta2 = MagicMock()
delta2.type = "text_delta"
delta2.text = " world"
msg_delta_usage = MagicMock()
msg_delta_usage.output_tokens = 5
events = [
_make_event("message_start", message=message),
_make_event("content_block_delta", index=0, delta=delta1),
_make_event("content_block_delta", index=0, delta=delta2),
_make_event(
"message_delta",
usage=msg_delta_usage,
),
]
mock_create = AsyncMock(
return_value=_MockAsyncEventStream(events),
)
mock_client_cls.return_value.messages.create = mock_create
gen = await self.model([])
responses = [r async for r in gen]
self.assertListEqual(
[(r.is_last, r.content) for r in responses],
[
(False, [TextBlock.model_construct(id=A, text="Hello")]),
(False, [TextBlock.model_construct(id=A, text=" world")]),
(True, [TextBlock.model_construct(id=A, text="Hello world")]),
],
)
self.assertEqual(responses[-1].id, "msg-1")
@patch("anthropic.AsyncAnthropic")
async def test_stream_thinking_and_text(
self,
mock_client_cls: MagicMock,
) -> None:
"""Stream thinking + text yields deltas then final with signature."""
msg_usage = MagicMock()
msg_usage.input_tokens = 10
msg_usage.output_tokens = 0
msg_usage.cache_creation_input_tokens = 0
msg_usage.cache_read_input_tokens = 0
message = MagicMock()
message.id = "msg-2"
message.usage = msg_usage
thinking_delta = MagicMock()
thinking_delta.type = "thinking_delta"
thinking_delta.thinking = "Let me think"
sig_delta = MagicMock()
sig_delta.type = "signature_delta"
sig_delta.signature = "sig_abc"
text_delta = MagicMock()
text_delta.type = "text_delta"
text_delta.text = "Result"
events = [
_make_event("message_start", message=message),
_make_event("content_block_delta", index=0, delta=thinking_delta),
_make_event("content_block_delta", index=0, delta=sig_delta),
_make_event("content_block_delta", index=1, delta=text_delta),
]
mock_create = AsyncMock(
return_value=_MockAsyncEventStream(events),
)
mock_client_cls.return_value.messages.create = mock_create
gen = await self.model([])
responses = [r async for r in gen]
self.assertListEqual(
[(r.is_last, r.content) for r in responses],
[
(
False,
[
ThinkingBlock.model_construct(
id=A,
thinking="Let me think",
),
],
),
(False, [TextBlock.model_construct(id=A, text="Result")]),
(
True,
[
ThinkingBlock.model_construct(
id=A,
thinking="Let me think",
signature="sig_abc",
),
TextBlock.model_construct(id=A, text="Result"),
],
),
],
)
@patch("anthropic.AsyncAnthropic")
async def test_stream_tool_call(
self,
mock_client_cls: MagicMock,
) -> None:
"""Stream tool call yields partial deltas then full accumulated
input."""
msg_usage = MagicMock()
msg_usage.input_tokens = 10
msg_usage.output_tokens = 0
msg_usage.cache_creation_input_tokens = 0
msg_usage.cache_read_input_tokens = 0
message = MagicMock()
message.id = "msg-3"
message.usage = msg_usage
tool_block = MagicMock()
tool_block.type = "tool_use"
tool_block.id = "toolu_1"
tool_block.name = "get_weather"
json_delta1 = MagicMock()
json_delta1.type = "input_json_delta"
json_delta1.partial_json = '{"city":'
json_delta2 = MagicMock()
json_delta2.type = "input_json_delta"
json_delta2.partial_json = '"BJ"}'
events = [
_make_event("message_start", message=message),
_make_event(
"content_block_start",
index=0,
content_block=tool_block,
),
_make_event("content_block_delta", index=0, delta=json_delta1),
_make_event("content_block_delta", index=0, delta=json_delta2),
]
mock_create = AsyncMock(
return_value=_MockAsyncEventStream(events),
)
mock_client_cls.return_value.messages.create = mock_create
gen = await self.model([])
responses = [r async for r in gen]
self.assertListEqual(
[(r.is_last, r.content) for r in responses],
[
(
False,
[
ToolCallBlock(
id="toolu_1",
name="get_weather",
input='{"city":',
),
],
),
(
False,
[
ToolCallBlock(
id="toolu_1",
name="get_weather",
input='"BJ"}',
),
],
),
(
True,
[
ToolCallBlock(
id="toolu_1",
name="get_weather",
input='{"city":"BJ"}',
),
],
),
],
)
# ---------------------------------------------------------------------------
# _format_tools tests
# ---------------------------------------------------------------------------
_FT_TOOLS = [
{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get the weather",
"parameters": {
"type": "object",
"properties": {"city": {"type": "string"}},
"required": ["city"],
},
},
},
{
"type": "function",
"function": {
"name": "get_time",
"description": "Get the time",
"parameters": {
"type": "object",
"properties": {"timezone": {"type": "string"}},
"required": ["timezone"],
},
},
},
]
_FT_TOOLS_ANTHROPIC = [
{
"name": "get_weather",
"description": "Get the weather",
"input_schema": {
"type": "object",
"properties": {"city": {"type": "string"}},
"required": ["city"],
},
},
{
"name": "get_time",
"description": "Get the time",
"input_schema": {
"type": "object",
"properties": {"timezone": {"type": "string"}},
"required": ["timezone"],
},
},
]
class TestAnthropicFormatTools(unittest.TestCase):
"""Tests for AnthropicChatModel._format_tools."""
def setUp(self) -> None:
"""Set up model instance."""
self.model = _make_model()
def test_auto_mode(self) -> None:
"""Auto mode returns converted tools and type=auto."""
fmt_tools, fmt_choice = self.model._format_tools(
_FT_TOOLS,
ToolChoice(mode="auto"),
)
self.assertEqual(fmt_tools, _FT_TOOLS_ANTHROPIC)
self.assertEqual(fmt_choice, {"type": "auto"})
def test_none_mode(self) -> None:
"""None mode returns converted tools and type=none."""
fmt_tools, fmt_choice = self.model._format_tools(
_FT_TOOLS,
ToolChoice(mode="none"),
)
self.assertEqual(fmt_tools, _FT_TOOLS_ANTHROPIC)
self.assertEqual(fmt_choice, {"type": "none"})
def test_required_mode(self) -> None:
"""Required mode maps to type=any."""
fmt_tools, fmt_choice = self.model._format_tools(
_FT_TOOLS,
ToolChoice(mode="required"),
)
self.assertEqual(fmt_tools, _FT_TOOLS_ANTHROPIC)
self.assertEqual(fmt_choice, {"type": "any"})
def test_str_mode_force_call(self) -> None:
"""A specific tool name forces that tool call."""
fmt_tools, fmt_choice = self.model._format_tools(
_FT_TOOLS,
ToolChoice(mode="get_weather"),
)
self.assertEqual(fmt_tools, _FT_TOOLS_ANTHROPIC)
self.assertEqual(fmt_choice, {"type": "tool", "name": "get_weather"})
def test_tools_filtered(self) -> None:
"""When tool_choice.tools is set, only those tools are included."""
fmt_tools, fmt_choice = self.model._format_tools(
_FT_TOOLS,
ToolChoice(mode="auto", tools=["get_weather"]),
)
self.assertEqual(len(fmt_tools), 1)
self.assertEqual(fmt_tools[0]["name"], "get_weather")
self.assertEqual(fmt_choice, {"type": "auto"})
def test_no_tool_choice(self) -> None:
"""Without tool_choice, returns converted tools and None."""
fmt_tools, fmt_choice = self.model._format_tools(_FT_TOOLS, None)
self.assertEqual(fmt_tools, _FT_TOOLS_ANTHROPIC)
self.assertIsNone(fmt_choice)
|