Spaces:
Running
Running
File size: 19,761 Bytes
719d94f | 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 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 | """Tests for BackgroundToolManager."""
from __future__ import annotations
import asyncio
from typing import Any
from unittest.mock import AsyncMock, MagicMock
import pytest
from hello_world.tools.tool_constants import ToolState
from hello_world.tools.background_tool_manager import (
ToolProgress,
BackgroundTool,
ToolCallRoutine,
ToolNotification,
BackgroundToolManager,
)
# ---------------------------------------------------------------------------
# Helpers
# ---------------------------------------------------------------------------
def _make_routine(
tool_name: str = "test_tool",
result: dict[str, Any] | None = None,
error: Exception | None = None,
delay: float = 0.0,
) -> ToolCallRoutine:
"""Create a mock ToolCallRoutine that returns *result* or raises *error*.
If *delay* > 0, the routine will sleep for that many seconds before
returning / raising so we can test cancellation and progress.
Mirrors the contract of ``_dispatch_tool_call`` in core_tools: exceptions
(including ``CancelledError``) are caught and returned as
``{"error": "..."}`` dicts so that ``_run_tool`` never sees a raw raise.
"""
routine = MagicMock(spec=ToolCallRoutine)
routine.tool_name = tool_name
routine.args_json_str = "{}"
async def _call(manager: BackgroundToolManager) -> dict[str, Any]:
try:
if delay:
await asyncio.sleep(delay)
if error is not None:
raise error
return result or {"ok": True}
except asyncio.CancelledError:
return {"error": "Tool cancelled"}
except Exception as e:
return {"error": f"{type(e).__name__}: {e}"}
routine.__call__ = _call # type: ignore[method-assign]
routine.side_effect = _call
return routine
# ---------------------------------------------------------------------------
# Model / data-class sanity checks
# ---------------------------------------------------------------------------
class TestToolProgress:
"""Validate ToolProgress construction and bounds."""
def test_valid_progress(self) -> None:
"""Accept valid progress values and messages."""
p = ToolProgress(progress=0.5, message="halfway")
assert p.progress == 0.5
assert p.message == "halfway"
def test_bounds(self) -> None:
"""Allow 0.0 and 1.0 as boundary values."""
assert ToolProgress(progress=0.0).progress == 0.0
assert ToolProgress(progress=1.0).progress == 1.0
def test_out_of_bounds_raises(self) -> None:
"""Reject progress values outside [0, 1]."""
with pytest.raises(Exception):
ToolProgress(progress=-0.1)
with pytest.raises(Exception):
ToolProgress(progress=1.1)
class TestToolNotification:
"""Validate ToolNotification construction."""
def test_creation(self) -> None:
"""Create a notification and verify its fields."""
n = ToolNotification(
id="abc",
tool_name="my_tool",
is_idle_tool_call=False,
status=ToolState.COMPLETED,
result={"data": 1},
)
assert n.id == "abc"
assert n.status == ToolState.COMPLETED
assert n.result == {"data": 1}
assert n.error is None
class TestBackgroundTool:
"""Validate BackgroundTool helpers."""
def test_tool_id(self) -> None:
"""Verify the composite tool_id property includes started_at."""
t = BackgroundTool(
id="123",
tool_name="weather",
is_idle_tool_call=False,
status=ToolState.RUNNING,
)
assert t.tool_id == f"weather-123-{t.started_at}"
def test_get_notification(self) -> None:
"""Convert a BackgroundTool to a ToolNotification."""
t = BackgroundTool(
id="1",
tool_name="t",
is_idle_tool_call=True,
status=ToolState.COMPLETED,
result={"x": 1},
error=None,
)
n = t.get_notification()
assert isinstance(n, ToolNotification)
assert n.id == "1"
assert n.tool_name == "t"
assert n.is_idle_tool_call is True
assert n.status == ToolState.COMPLETED
assert n.result == {"x": 1}
# ---------------------------------------------------------------------------
# BackgroundToolManager
# ---------------------------------------------------------------------------
@pytest.fixture
def manager() -> BackgroundToolManager:
"""Return a fresh BackgroundToolManager for each test."""
return BackgroundToolManager()
class TestSetLoop:
"""Verify event-loop assignment via set_loop."""
@pytest.mark.asyncio
async def test_set_loop_uses_running_loop(self, manager: BackgroundToolManager) -> None:
"""Default to the current running loop."""
manager.set_loop()
assert manager._loop is asyncio.get_running_loop()
def test_set_loop_explicit(self, manager: BackgroundToolManager) -> None:
"""Accept an explicitly provided loop."""
loop = asyncio.new_event_loop()
try:
manager.set_loop(loop)
assert manager._loop is loop
finally:
loop.close()
def test_set_loop_creates_new_when_no_running(self, manager: BackgroundToolManager) -> None:
"""When called outside an async context it falls back to a new loop."""
manager.set_loop()
assert manager._loop is not None
class TestStartTool:
"""Verify tool registration via start_tool."""
@pytest.mark.asyncio
async def test_start_registers_tool(self, manager: BackgroundToolManager) -> None:
"""Register a tool and verify its initial state."""
routine = _make_routine("greet")
bg = await manager.start_tool(
call_id="c1",
tool_call_routine=routine,
is_idle_tool_call=False,
)
assert bg.tool_name == "greet"
assert bg.id == "c1"
assert bg.status == ToolState.RUNNING
assert manager.get_tool(bg.tool_id) is bg
# Let the task finish
await asyncio.sleep(0.05)
@pytest.mark.asyncio
async def test_start_with_progress(self, manager: BackgroundToolManager) -> None:
"""Initialize progress tracking when requested."""
routine = _make_routine("slow", delay=0.1)
bg = await manager.start_tool(
call_id="c2",
tool_call_routine=routine,
is_idle_tool_call=True,
with_progress=True,
)
assert bg.progress is not None
assert bg.progress.progress == 0.0
await asyncio.sleep(0.15)
class TestRunToolLifecycle:
"""Test _run_tool via start_tool (the public entry point)."""
@pytest.mark.asyncio
async def test_successful_completion(self, manager: BackgroundToolManager) -> None:
"""Complete a tool and verify result, status, and notification."""
routine = _make_routine("ok_tool", result={"answer": 42})
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False)
# Wait for the task to finish
await asyncio.sleep(0.05)
assert bg.status == ToolState.COMPLETED
assert bg.result == {"answer": 42}
assert bg.completed_at is not None
assert bg.error is None
# Notification should be queued
notification = manager._notification_queue.get_nowait()
assert notification.status == ToolState.COMPLETED
@pytest.mark.asyncio
async def test_tool_failure(self, manager: BackgroundToolManager) -> None:
"""Mark a tool as FAILED when it raises an exception."""
routine = _make_routine("bad_tool", error=ValueError("boom"))
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False)
await asyncio.sleep(0.05)
assert bg.status == ToolState.FAILED
assert "ValueError: boom" in (bg.error or "")
assert bg.completed_at is not None
notification = manager._notification_queue.get_nowait()
assert notification.status == ToolState.FAILED
@pytest.mark.asyncio
async def test_tool_cancellation(self, manager: BackgroundToolManager) -> None:
"""Cancel a running tool and verify CANCELLED status."""
routine = _make_routine("long_tool", delay=10.0)
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False)
# Give the task a moment to start, then cancel
await asyncio.sleep(0.02)
cancelled = await manager.cancel_tool(bg.tool_id)
assert cancelled is True
# Let cancellation propagate
await asyncio.sleep(0.05)
assert bg.status == ToolState.CANCELLED
assert bg.error == "Tool cancelled"
assert bg.completed_at is not None
class TestUpdateProgress:
"""Verify progress updates on running tools."""
@pytest.mark.asyncio
async def test_update_progress_success(self, manager: BackgroundToolManager) -> None:
"""Update progress value and message on a tracked tool."""
routine = _make_routine("prog", delay=0.5)
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False, with_progress=True)
ok = await manager.update_progress(bg.tool_id, 0.5, "half done")
assert ok is True
assert bg.progress is not None
assert bg.progress.progress == 0.5
assert bg.progress.message == "half done"
# Cancel to clean up
await manager.cancel_tool(bg.tool_id)
await asyncio.sleep(0.05)
@pytest.mark.asyncio
async def test_update_progress_clamps(self, manager: BackgroundToolManager) -> None:
"""Clamp out-of-range progress values to [0, 1]."""
routine = _make_routine("prog", delay=0.5)
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False, with_progress=True)
await manager.update_progress(bg.tool_id, 1.5)
assert bg.progress is not None
assert bg.progress.progress == 1.0
await manager.update_progress(bg.tool_id, -0.5)
assert bg.progress.progress == 0.0
await manager.cancel_tool(bg.tool_id)
await asyncio.sleep(0.05)
@pytest.mark.asyncio
async def test_update_progress_unknown_tool(self, manager: BackgroundToolManager) -> None:
"""Return False for an unknown tool_id."""
ok = await manager.update_progress("nonexistent", 0.5)
assert ok is False
@pytest.mark.asyncio
async def test_update_progress_no_tracking(self, manager: BackgroundToolManager) -> None:
"""Return False when progress tracking is disabled."""
routine = _make_routine("fast", delay=0.5)
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False, with_progress=False)
ok = await manager.update_progress(bg.tool_id, 0.5)
assert ok is False
await manager.cancel_tool(bg.tool_id)
await asyncio.sleep(0.05)
class TestCancelTool:
"""Verify tool cancellation behaviour."""
@pytest.mark.asyncio
async def test_cancel_nonexistent(self, manager: BackgroundToolManager) -> None:
"""Return False when the tool_id does not exist."""
result = await manager.cancel_tool("does-not-exist")
assert result is False
@pytest.mark.asyncio
async def test_cancel_already_completed(self, manager: BackgroundToolManager) -> None:
"""Return True when cancelling an already-completed tool."""
routine = _make_routine("done")
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False)
await asyncio.sleep(0.05) # let it finish
assert bg.status == ToolState.COMPLETED
# Cancelling a completed tool should return True (not running, no-op)
result = await manager.cancel_tool(bg.tool_id)
assert result is True
class TestTimeoutTools:
"""Verify automatic timeout of long-running tools."""
@pytest.mark.asyncio
async def test_timeout_cancels_old_tools(self, manager: BackgroundToolManager) -> None:
"""Cancel tools exceeding max duration."""
# Use a very short max duration
manager._max_tool_duration_seconds = 0.01
routine = _make_routine("slow", delay=10.0)
await manager.start_tool("c1", routine, is_idle_tool_call=False)
# Wait longer than the timeout
await asyncio.sleep(0.05)
count = await manager.timeout_tools()
assert count == 1
await asyncio.sleep(0.05)
@pytest.mark.asyncio
async def test_timeout_ignores_recent_tools(self, manager: BackgroundToolManager) -> None:
"""Leave recent tools untouched."""
manager._max_tool_duration_seconds = 9999
routine = _make_routine("fast", delay=10.0)
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False)
count = await manager.timeout_tools()
assert count == 0
await manager.cancel_tool(bg.tool_id)
await asyncio.sleep(0.05)
class TestCleanupTools:
"""Verify cleanup of completed tools from memory."""
@pytest.mark.asyncio
async def test_cleanup_removes_old_completed(self, manager: BackgroundToolManager) -> None:
"""Remove completed tools past the retention window."""
manager._max_tool_memory_seconds = 0.01
routine = _make_routine("old")
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False)
await asyncio.sleep(0.05)
assert bg.status == ToolState.COMPLETED
# Wait for the memory retention to expire
await asyncio.sleep(0.05)
removed = await manager.cleanup_tools()
assert removed == 1
assert manager.get_tool(bg.tool_id) is None
@pytest.mark.asyncio
async def test_cleanup_keeps_recent_completed(self, manager: BackgroundToolManager) -> None:
"""Keep recently completed tools."""
manager._max_tool_memory_seconds = 9999
routine = _make_routine("recent")
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False)
await asyncio.sleep(0.05)
removed = await manager.cleanup_tools()
assert removed == 0
assert manager.get_tool(bg.tool_id) is not None
@pytest.mark.asyncio
async def test_cleanup_ignores_running(self, manager: BackgroundToolManager) -> None:
"""Never remove still-running tools."""
manager._max_tool_memory_seconds = 0.0 # immediate expiry
routine = _make_routine("still_going", delay=10.0)
bg = await manager.start_tool("c1", routine, is_idle_tool_call=False)
removed = await manager.cleanup_tools()
assert removed == 0
await manager.cancel_tool(bg.tool_id)
await asyncio.sleep(0.05)
class TestGetters:
"""Verify tool retrieval helpers."""
@pytest.mark.asyncio
async def test_get_tool(self, manager: BackgroundToolManager) -> None:
"""Return None for missing tools and the instance for known ones."""
assert manager.get_tool("nope") is None
routine = _make_routine("x")
bg = await manager.start_tool("1", routine, is_idle_tool_call=False)
assert manager.get_tool(bg.tool_id) is bg
await asyncio.sleep(0.05)
@pytest.mark.asyncio
async def test_get_running_tools(self, manager: BackgroundToolManager) -> None:
"""Return only tools that are still running."""
r1 = _make_routine("a", delay=10.0)
r2 = _make_routine("b", delay=10.0)
r3 = _make_routine("c") # finishes immediately
bg1 = await manager.start_tool("1", r1, is_idle_tool_call=False)
bg2 = await manager.start_tool("2", r2, is_idle_tool_call=False)
await manager.start_tool("3", r3, is_idle_tool_call=False)
await asyncio.sleep(0.05) # let r3 finish
running = manager.get_running_tools()
assert len(running) == 2
names = {t.tool_name for t in running}
assert names == {"a", "b"}
# Clean up
await manager.cancel_tool(bg1.tool_id)
await manager.cancel_tool(bg2.tool_id)
await asyncio.sleep(0.05)
@pytest.mark.asyncio
async def test_get_all_tools_sorted(self, manager: BackgroundToolManager) -> None:
"""Tools are returned most-recent-first."""
r1 = _make_routine("first")
r2 = _make_routine("second")
await manager.start_tool("1", r1, is_idle_tool_call=False)
await asyncio.sleep(0.02) # ensure different started_at
await manager.start_tool("2", r2, is_idle_tool_call=False)
await asyncio.sleep(0.05)
all_tools = manager.get_all_tools()
assert len(all_tools) == 2
assert all_tools[0].tool_name == "second"
assert all_tools[1].tool_name == "first"
@pytest.mark.asyncio
async def test_get_all_tools_limit(self, manager: BackgroundToolManager) -> None:
"""Respect the limit parameter on get_all_tools."""
for i in range(5):
r = _make_routine(f"t{i}")
await manager.start_tool(str(i), r, is_idle_tool_call=False)
await asyncio.sleep(0.05)
limited = manager.get_all_tools(limit=3)
assert len(limited) == 3
class TestStartUp:
"""Verify start_up bootstraps background tasks."""
@pytest.mark.asyncio
async def test_startup_creates_tasks(self, manager: BackgroundToolManager) -> None:
"""start_up should create the listener and cleanup background tasks."""
callback = AsyncMock()
manager.start_up(tool_callbacks=[callback])
# Start a tool and let it complete — the listener should invoke the callback
routine = _make_routine("ping")
await manager.start_tool("c1", routine, is_idle_tool_call=False)
await asyncio.sleep(0.1)
assert callback.call_count == 1
notification = callback.call_args[0][0]
assert isinstance(notification, ToolNotification)
assert notification.status == ToolState.COMPLETED
@pytest.mark.asyncio
async def test_startup_multiple_callbacks(self, manager: BackgroundToolManager) -> None:
"""Invoke all registered callbacks on completion."""
cb1 = AsyncMock()
cb2 = AsyncMock()
manager.start_up(tool_callbacks=[cb1, cb2])
routine = _make_routine("multi")
await manager.start_tool("c1", routine, is_idle_tool_call=False)
await asyncio.sleep(0.1)
assert cb1.call_count == 1
assert cb2.call_count == 1
class TestNotificationQueue:
"""Verify notifications are enqueued on tool completion or failure."""
@pytest.mark.asyncio
async def test_notifications_queued_on_completion(self, manager: BackgroundToolManager) -> None:
"""Queue a COMPLETED notification with the tool result."""
routine = _make_routine("notif", result={"v": 1})
await manager.start_tool("c1", routine, is_idle_tool_call=False)
await asyncio.sleep(0.05)
n = manager._notification_queue.get_nowait()
assert n.tool_name == "notif"
assert n.status == ToolState.COMPLETED
assert n.result == {"v": 1}
@pytest.mark.asyncio
async def test_notifications_queued_on_failure(self, manager: BackgroundToolManager) -> None:
"""Queue a FAILED notification with the error message."""
routine = _make_routine("fail", error=RuntimeError("oops"))
await manager.start_tool("c1", routine, is_idle_tool_call=False)
await asyncio.sleep(0.05)
n = manager._notification_queue.get_nowait()
assert n.status == ToolState.FAILED
assert "RuntimeError: oops" in (n.error or "")
|