test: add booter decoupling and profile-aware tool tests

This commit is contained in:
zenfun
2026-03-11 02:44:29 +08:00
parent e85eef05b8
commit 3440dcd14b
6 changed files with 1077 additions and 80 deletions
+412
View File
@@ -0,0 +1,412 @@
"""TDD tests for booter decoupling refactoring.
Tests written BEFORE implementation — all should initially FAIL (red).
After each implementation step, the corresponding tests should turn green.
"""
from __future__ import annotations
from types import SimpleNamespace
from unittest.mock import patch
import pytest
# ═══════════════════════ Step 1: 常量 ═══════════════════════
class TestBooterConstants:
def test_constants_exist(self):
from astrbot.core.computer.booters.constants import (
BOOTER_BOXLITE,
BOOTER_SHIPYARD,
BOOTER_SHIPYARD_NEO,
)
assert BOOTER_SHIPYARD == "shipyard"
assert BOOTER_SHIPYARD_NEO == "shipyard_neo"
assert BOOTER_BOXLITE == "boxlite"
# ═══════════════════════ Step 2: Prompt 常量 ═══════════════════════
class TestNeoPromptConstants:
def test_neo_file_path_prompt_exists(self):
from astrbot.core.computer.prompts import NEO_FILE_PATH_PROMPT
assert "relative" in NEO_FILE_PATH_PROMPT.lower()
assert "workspace" in NEO_FILE_PATH_PROMPT.lower()
def test_neo_skill_lifecycle_prompt_exists(self):
from astrbot.core.computer.prompts import NEO_SKILL_LIFECYCLE_PROMPT
assert "astrbot_create_skill_payload" in NEO_SKILL_LIFECYCLE_PROMPT
assert "astrbot_promote_skill_candidate" in NEO_SKILL_LIFECYCLE_PROMPT
# ═══════════════════════ Step 3: 基类接口 ═══════════════════════
class TestComputerBooterBaseInterface:
def test_get_default_tools_returns_empty(self):
from astrbot.core.computer.booters.base import ComputerBooter
assert ComputerBooter.get_default_tools() == []
def test_get_tools_delegates_to_class(self):
from astrbot.core.computer.booters.base import ComputerBooter
booter = ComputerBooter()
assert booter.get_tools() == []
def test_get_system_prompt_parts_returns_empty(self):
from astrbot.core.computer.booters.base import ComputerBooter
assert ComputerBooter.get_system_prompt_parts() == []
# ═══════════════════════ Step 4: Booter 子类工具声明 ═══════════════════════
class TestShipyardBooterTools:
def test_get_default_tools_returns_4(self):
from astrbot.core.computer.booters.shipyard import ShipyardBooter
tools = ShipyardBooter.get_default_tools()
assert len(tools) == 4
names = {t.name for t in tools}
assert "astrbot_execute_shell" in names
assert "astrbot_execute_ipython" in names
assert "astrbot_upload_file" in names
assert "astrbot_download_file" in names
def test_get_system_prompt_parts_empty(self):
from astrbot.core.computer.booters.shipyard import ShipyardBooter
assert ShipyardBooter.get_system_prompt_parts() == []
class TestShipyardNeoBooterTools:
def _make_booter(self, caps=None):
from astrbot.core.computer.booters.shipyard_neo import ShipyardNeoBooter
booter = ShipyardNeoBooter(
endpoint_url="http://localhost:8114",
access_token="sk-bay-test",
)
if caps is not None:
booter._sandbox = SimpleNamespace(capabilities=caps)
return booter
def test_get_default_tools_returns_18(self):
from astrbot.core.computer.booters.shipyard_neo import ShipyardNeoBooter
tools = ShipyardNeoBooter.get_default_tools()
assert len(tools) == 18 # 4 base + 11 Neo + 3 browser
names = {t.name for t in tools}
assert "astrbot_execute_browser" in names
assert "astrbot_create_skill_candidate" in names
assert "astrbot_execute_shell" in names
def test_get_tools_no_boot_returns_default(self):
booter = self._make_booter()
tools = booter.get_tools()
assert len(tools) == 18
def test_get_tools_with_browser(self):
booter = self._make_booter(caps=["python", "shell", "filesystem", "browser"])
tools = booter.get_tools()
assert len(tools) == 18
names = {t.name for t in tools}
assert "astrbot_execute_browser" in names
def test_get_tools_without_browser(self):
booter = self._make_booter(caps=["python", "shell", "filesystem"])
tools = booter.get_tools()
assert len(tools) == 15 # no browser
names = {t.name for t in tools}
assert "astrbot_execute_browser" not in names
assert "astrbot_create_skill_candidate" in names
def test_get_system_prompt_parts_has_neo_prompts(self):
from astrbot.core.computer.booters.shipyard_neo import ShipyardNeoBooter
parts = ShipyardNeoBooter.get_system_prompt_parts()
assert len(parts) == 2
combined = "".join(parts)
assert "relative" in combined.lower()
assert "astrbot_create_skill_payload" in combined
class TestBoxliteBooterTools:
def test_get_default_tools_returns_4(self):
pytest.importorskip("boxlite")
from astrbot.core.computer.booters.boxlite import BoxliteBooter
tools = BoxliteBooter.get_default_tools()
assert len(tools) == 4
names = {t.name for t in tools}
assert "astrbot_execute_shell" in names
def test_get_system_prompt_parts_empty(self):
pytest.importorskip("boxlite")
from astrbot.core.computer.booters.boxlite import BoxliteBooter
assert BoxliteBooter.get_system_prompt_parts() == []
# ═══════════════════════ Step 5: computer_client API ═══════════════════════
class TestComputerClientAPI:
def test_get_sandbox_tools_unknown_session(self):
from astrbot.core.computer.computer_client import get_sandbox_tools
with patch("astrbot.core.computer.computer_client.session_booter", {}):
assert get_sandbox_tools("unknown") == []
def test_get_sandbox_tools_with_booted_session(self):
from astrbot.core.computer.computer_client import get_sandbox_tools
fake_booter = SimpleNamespace(
get_tools=lambda: ["tool1", "tool2"],
)
with patch(
"astrbot.core.computer.computer_client.session_booter",
{"s1": fake_booter},
):
assert get_sandbox_tools("s1") == ["tool1", "tool2"]
def test_get_default_sandbox_tools_neo(self):
from astrbot.core.computer.computer_client import get_default_sandbox_tools
tools = get_default_sandbox_tools({"booter": "shipyard_neo"})
assert len(tools) == 18
def test_get_default_sandbox_tools_shipyard(self):
from astrbot.core.computer.computer_client import get_default_sandbox_tools
tools = get_default_sandbox_tools({"booter": "shipyard"})
assert len(tools) == 4
def test_get_default_sandbox_tools_boxlite(self):
pytest.importorskip("boxlite")
from astrbot.core.computer.computer_client import get_default_sandbox_tools
tools = get_default_sandbox_tools({"booter": "boxlite"})
assert len(tools) == 4
def test_get_default_sandbox_tools_unknown_type(self):
from astrbot.core.computer.computer_client import get_default_sandbox_tools
tools = get_default_sandbox_tools({"booter": "nonexistent"})
assert tools == []
def test_get_sandbox_prompt_parts_neo(self):
from astrbot.core.computer.computer_client import get_sandbox_prompt_parts
parts = get_sandbox_prompt_parts({"booter": "shipyard_neo"})
assert len(parts) == 2
def test_get_sandbox_prompt_parts_shipyard(self):
from astrbot.core.computer.computer_client import get_sandbox_prompt_parts
parts = get_sandbox_prompt_parts({"booter": "shipyard"})
assert parts == []
# ═══════════════════════ Step 6+7: 集成测试 ═══════════════════════
class TestApplySandboxToolsRefactored:
"""After refactoring, _apply_sandbox_tools uses unified API."""
def _tool_names(self, req) -> set[str]:
if req.func_tool is None:
return set()
return {t.name for t in req.func_tool.tools}
def _neo_default_tools(self):
from astrbot.core.computer.booters.shipyard_neo import ShipyardNeoBooter
return ShipyardNeoBooter.get_default_tools()
def _shipyard_default_tools(self):
from astrbot.core.computer.booters.shipyard import ShipyardBooter
return ShipyardBooter.get_default_tools()
def test_neo_tools_registered_via_unified_api(self):
try:
from astrbot.core.astr_main_agent import _apply_sandbox_tools
except ImportError:
pytest.skip("circular import")
config = SimpleNamespace(sandbox_cfg={"booter": "shipyard_neo"})
req = SimpleNamespace(func_tool=None, system_prompt="")
with (
patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_default_sandbox_tools",
return_value=self._neo_default_tools(),
),
patch(
"astrbot.core.computer.computer_client.get_sandbox_prompt_parts",
return_value=[],
),
):
_apply_sandbox_tools(config, req, "session-1")
names = self._tool_names(req)
assert "astrbot_create_skill_candidate" in names
assert "astrbot_execute_browser" in names
assert len(names) == 18
def test_neo_prompt_injected(self):
try:
from astrbot.core.astr_main_agent import _apply_sandbox_tools
except ImportError:
pytest.skip("circular import")
config = SimpleNamespace(sandbox_cfg={"booter": "shipyard_neo"})
req = SimpleNamespace(func_tool=None, system_prompt="")
with (
patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_default_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_sandbox_prompt_parts",
return_value=[
"\n[Shipyard Neo File Path Rule]\nrelative workspace path\n",
"\n[Neo Skill Lifecycle Workflow]\nastrbot_create_skill_payload\n",
],
),
):
_apply_sandbox_tools(config, req, "session-1")
assert "relative" in req.system_prompt.lower()
assert "astrbot_create_skill_payload" in req.system_prompt
def test_shipyard_no_neo_prompt(self):
try:
from astrbot.core.astr_main_agent import _apply_sandbox_tools
except ImportError:
pytest.skip("circular import")
config = SimpleNamespace(sandbox_cfg={"booter": "shipyard"})
req = SimpleNamespace(func_tool=None, system_prompt="")
with (
patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_default_sandbox_tools",
return_value=self._shipyard_default_tools(),
),
patch(
"astrbot.core.computer.computer_client.get_sandbox_prompt_parts",
return_value=[],
),
):
_apply_sandbox_tools(config, req, "session-1")
names = self._tool_names(req)
assert len(names) == 4
assert "Neo Skill Lifecycle" not in req.system_prompt
def test_booted_session_without_browser(self):
"""Booted session without browser capability → no browser tools."""
try:
from astrbot.core.astr_main_agent import _apply_sandbox_tools
except ImportError:
pytest.skip("circular import")
from astrbot.core.computer.booters.shipyard_neo import ShipyardNeoBooter
fake_booter = ShipyardNeoBooter(
endpoint_url="http://localhost:8114",
access_token="sk-bay-test",
)
fake_booter._sandbox = SimpleNamespace(
capabilities=["python", "shell", "filesystem"]
)
config = SimpleNamespace(sandbox_cfg={"booter": "shipyard_neo"})
req = SimpleNamespace(func_tool=None, system_prompt="")
with (
patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=fake_booter.get_tools(),
),
patch(
"astrbot.core.computer.computer_client.get_default_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_sandbox_prompt_parts",
return_value=[],
),
):
_apply_sandbox_tools(config, req, "session-1")
names = self._tool_names(req)
assert "astrbot_execute_browser" not in names
assert "astrbot_create_skill_candidate" in names
assert len(names) == 15
class TestSubagentHandoffTools:
"""Subagent should get same tools as main agent."""
def test_sandbox_runtime_gets_neo_tools(self):
try:
from astrbot.core.astr_agent_tool_exec import FunctionToolExecutor
except ImportError:
pytest.skip("circular import")
with patch("astrbot.core.computer.computer_client.session_booter", {}):
tools = FunctionToolExecutor._get_runtime_computer_tools(
"sandbox",
session_id=None,
sandbox_cfg={"booter": "shipyard_neo"},
)
assert "astrbot_create_skill_candidate" in tools
assert len(tools) == 18
def test_sandbox_runtime_shipyard_only_4(self):
try:
from astrbot.core.astr_agent_tool_exec import FunctionToolExecutor
except ImportError:
pytest.skip("circular import")
with patch("astrbot.core.computer.computer_client.session_booter", {}):
tools = FunctionToolExecutor._get_runtime_computer_tools(
"sandbox",
session_id=None,
sandbox_cfg={"booter": "shipyard"},
)
assert len(tools) == 4
assert "astrbot_create_skill_candidate" not in tools
def test_sandbox_runtime_empty_config_still_gets_default_tools(self):
try:
from astrbot.core.astr_agent_tool_exec import FunctionToolExecutor
except ImportError:
pytest.skip("circular import")
tools = FunctionToolExecutor._get_runtime_computer_tools(
"sandbox",
session_id=None,
sandbox_cfg={},
)
assert "astrbot_create_skill_candidate" in tools
assert len(tools) == 18
def test_local_runtime_unchanged(self):
try:
from astrbot.core.astr_agent_tool_exec import FunctionToolExecutor
except ImportError:
pytest.skip("circular import")
tools = FunctionToolExecutor._get_runtime_computer_tools(
"local",
session_id=None,
sandbox_cfg={},
)
assert len(tools) == 2
+21 -22
View File
@@ -1,20 +1,18 @@
"""Tests for _discover_bay_credentials() auto-discovery and _log_computer_config_changes()."""
"""Tests for discover_bay_credentials() auto-discovery and config logging."""
from __future__ import annotations
import json
import logging
from pathlib import Path
from unittest.mock import patch
import pytest
from astrbot.core.computer.computer_client import _discover_bay_credentials
from astrbot.core.computer.computer_client import discover_bay_credentials
from astrbot.dashboard.routes.config import _log_computer_config_changes
# ═══════════════════════════════════════════════════════════════
# _discover_bay_credentials
# discover_bay_credentials
# ═══════════════════════════════════════════════════════════════
@@ -48,7 +46,7 @@ class TestDiscoverBayCredentials:
self._write_creds(cred_file, api_key="sk-bay-from-env-dir")
monkeypatch.setenv("BAY_DATA_DIR", str(data_dir))
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == "sk-bay-from-env-dir"
def test_discover_from_cwd(
@@ -60,7 +58,7 @@ class TestDiscoverBayCredentials:
monkeypatch.chdir(tmp_path)
monkeypatch.delenv("BAY_DATA_DIR", raising=False)
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == "sk-bay-from-cwd"
def test_returns_empty_when_no_credentials_found(
@@ -70,7 +68,7 @@ class TestDiscoverBayCredentials:
monkeypatch.chdir(tmp_path)
monkeypatch.delenv("BAY_DATA_DIR", raising=False)
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == ""
def test_skips_empty_api_key(
@@ -82,7 +80,7 @@ class TestDiscoverBayCredentials:
monkeypatch.chdir(tmp_path)
monkeypatch.delenv("BAY_DATA_DIR", raising=False)
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == ""
def test_skips_malformed_json(
@@ -95,7 +93,7 @@ class TestDiscoverBayCredentials:
monkeypatch.chdir(tmp_path)
monkeypatch.delenv("BAY_DATA_DIR", raising=False)
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == ""
@patch("astrbot.core.computer.computer_client.logger")
@@ -110,7 +108,7 @@ class TestDiscoverBayCredentials:
)
monkeypatch.setenv("BAY_DATA_DIR", str(data_dir))
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == "sk-bay-mismatch"
mock_logger.warning.assert_called_once()
@@ -129,7 +127,7 @@ class TestDiscoverBayCredentials:
monkeypatch.setenv("BAY_DATA_DIR", str(data_dir))
with patch("astrbot.core.computer.computer_client.logger") as mock_logger:
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == "sk-bay-match"
mock_logger.warning.assert_not_called()
@@ -145,7 +143,7 @@ class TestDiscoverBayCredentials:
monkeypatch.setenv("BAY_DATA_DIR", str(env_dir))
monkeypatch.chdir(cwd_dir)
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == "sk-bay-env-wins"
def test_trailing_slash_normalization(
@@ -160,7 +158,7 @@ class TestDiscoverBayCredentials:
monkeypatch.setenv("BAY_DATA_DIR", str(data_dir))
with patch("astrbot.core.computer.computer_client.logger") as mock_logger:
result = _discover_bay_credentials("http://127.0.0.1:8114")
result = discover_bay_credentials("http://127.0.0.1:8114")
assert result == "sk-bay-slash"
mock_logger.warning.assert_not_called()
@@ -184,7 +182,10 @@ class TestLogComputerConfigChanges:
mock_logger.info.assert_called()
call_args = [str(c) for c in mock_logger.info.call_args_list]
assert any("computer_use_runtime" in c and "none" in c and "sandbox" in c for c in call_args)
assert any(
"computer_use_runtime" in c and "none" in c and "sandbox" in c
for c in call_args
)
@patch("astrbot.dashboard.routes.config.logger")
def test_no_log_when_runtime_unchanged(self, mock_logger) -> None:
@@ -214,7 +215,9 @@ class TestLogComputerConfigChanges:
assert args[3] == "shipyard_neo"
found = True
break
assert found, f"Expected booter change in log calls: {mock_logger.info.call_args_list}"
assert found, (
f"Expected booter change in log calls: {mock_logger.info.call_args_list}"
)
@patch("astrbot.dashboard.routes.config.logger")
def test_masks_token_values(self, mock_logger) -> None:
@@ -237,9 +240,7 @@ class TestLogComputerConfigChanges:
def test_masks_empty_token_as_empty_label(self, mock_logger) -> None:
"""Empty token values show as '(empty)' not '***'."""
old = {
"provider_settings": {
"sandbox": {"shipyard_neo_access_token": "old-key"}
}
"provider_settings": {"sandbox": {"shipyard_neo_access_token": "old-key"}}
}
new = {"provider_settings": {"sandbox": {"shipyard_neo_access_token": ""}}}
@@ -313,9 +314,7 @@ class TestLogComputerConfigChanges:
def test_secret_key_masked(self, mock_logger) -> None:
"""Any key containing 'secret' is also masked."""
old = {"provider_settings": {"sandbox": {"my_secret_key": ""}}}
new = {
"provider_settings": {"sandbox": {"my_secret_key": "very-secret-value"}}
}
new = {"provider_settings": {"sandbox": {"my_secret_key": "very-secret-value"}}}
_log_computer_config_changes(old, new)
+67 -18
View File
@@ -7,7 +7,6 @@ from unittest.mock import patch
import pytest
# ═══════════════════════════════════════════════════════════════
# ShipyardNeoBooter.capabilities
# ═══════════════════════════════════════════════════════════════
@@ -93,8 +92,19 @@ class TestApplySandboxToolsConditional:
config = _make_config("shipyard_neo")
req = _make_req()
with patch(
"astrbot.core.computer.computer_client.session_booter", {}
with (
patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_default_sandbox_tools",
return_value=self._make_neo_booter().get_default_tools(),
),
patch(
"astrbot.core.computer.computer_client.get_sandbox_prompt_parts",
return_value=[],
),
):
fn(config, req, "session-1")
@@ -103,18 +113,39 @@ class TestApplySandboxToolsConditional:
assert "astrbot_execute_browser_batch" in names
assert "astrbot_run_browser_skill" in names
def _make_neo_booter(self, caps=None):
from astrbot.core.computer.booters.shipyard_neo import ShipyardNeoBooter
booter = ShipyardNeoBooter(
endpoint_url="http://localhost:8114",
access_token="sk-bay-test",
)
if caps is not None:
booter._sandbox = SimpleNamespace(capabilities=caps)
return booter
def test_with_browser_capability(self):
"""Booted session with browser capability → browser tools registered."""
fn = _import_apply_sandbox_tools()
config = _make_config("shipyard_neo")
req = _make_req()
fake_booter = SimpleNamespace(
capabilities=["python", "shell", "filesystem", "browser"]
fake_booter = self._make_neo_booter(
caps=["python", "shell", "filesystem", "browser"]
)
with patch(
"astrbot.core.computer.computer_client.session_booter",
{"session-1": fake_booter},
with (
patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=fake_booter.get_tools(),
),
patch(
"astrbot.core.computer.computer_client.get_default_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_sandbox_prompt_parts",
return_value=[],
),
):
fn(config, req, "session-1")
@@ -126,13 +157,21 @@ class TestApplySandboxToolsConditional:
fn = _import_apply_sandbox_tools()
config = _make_config("shipyard_neo")
req = _make_req()
fake_booter = SimpleNamespace(
capabilities=["python", "shell", "filesystem"]
)
fake_booter = self._make_neo_booter(caps=["python", "shell", "filesystem"])
with patch(
"astrbot.core.computer.computer_client.session_booter",
{"session-1": fake_booter},
with (
patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=fake_booter.get_tools(),
),
patch(
"astrbot.core.computer.computer_client.get_default_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_sandbox_prompt_parts",
return_value=[],
),
):
fn(config, req, "session-1")
@@ -148,11 +187,21 @@ class TestApplySandboxToolsConditional:
fn = _import_apply_sandbox_tools()
config = _make_config("shipyard_neo")
req = _make_req()
fake_booter = SimpleNamespace(capabilities=["python"])
fake_booter = self._make_neo_booter(caps=["python"])
with patch(
"astrbot.core.computer.computer_client.session_booter",
{"session-1": fake_booter},
with (
patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=fake_booter.get_tools(),
),
patch(
"astrbot.core.computer.computer_client.get_default_sandbox_tools",
return_value=[],
),
patch(
"astrbot.core.computer.computer_client.get_sandbox_prompt_parts",
return_value=[],
),
):
fn(config, req, "session-1")
+16 -40
View File
@@ -1,6 +1,5 @@
"""Tests for astr_main_agent module."""
import os
from unittest.mock import AsyncMock, MagicMock, patch
import pytest
@@ -1399,8 +1398,8 @@ class TestApplySandboxTools:
assert "sandboxed environment" in req.system_prompt
def test_apply_sandbox_tools_with_shipyard_booter(self, monkeypatch):
"""Test sandbox tools with shipyard booter configuration."""
def test_apply_sandbox_tools_with_shipyard_booter(self):
"""Test sandbox tools with shipyard booter registers 4 basic tools."""
module = ama
config = module.MainAgentBuildConfig(
tool_call_timeout=60,
@@ -1413,55 +1412,32 @@ class TestApplySandboxTools:
)
req = ProviderRequest(prompt="Test", func_tool=None)
monkeypatch.delenv("SHIPYARD_ENDPOINT", raising=False)
monkeypatch.delenv("SHIPYARD_ACCESS_TOKEN", raising=False)
module._apply_sandbox_tools(config, req, "session-123")
assert os.environ.get("SHIPYARD_ENDPOINT") == "https://shipyard.example.com"
assert os.environ.get("SHIPYARD_ACCESS_TOKEN") == "test-token"
names = req.func_tool.names()
assert "astrbot_execute_shell" in names
assert len(names) == 4
def test_apply_sandbox_tools_shipyard_missing_endpoint(self):
"""Test that shipyard config is skipped when endpoint is missing."""
def test_apply_sandbox_tools_neo_booter_registers_18_tools(self):
"""Test sandbox tools with Neo booter registers all 18 tools."""
module = ama
config = module.MainAgentBuildConfig(
tool_call_timeout=60,
computer_use_runtime="sandbox",
sandbox_cfg={
"booter": "shipyard",
"shipyard_endpoint": "",
"shipyard_access_token": "test-token",
},
sandbox_cfg={"booter": "shipyard_neo"},
)
req = ProviderRequest(prompt="Test", func_tool=None)
with patch("astrbot.core.astr_main_agent.logger") as mock_logger:
with patch(
"astrbot.core.computer.computer_client.get_sandbox_tools",
return_value=[],
):
module._apply_sandbox_tools(config, req, "session-123")
mock_logger.error.assert_called_once()
assert (
"Shipyard sandbox configuration is incomplete"
in mock_logger.error.call_args[0][0]
)
def test_apply_sandbox_tools_shipyard_missing_access_token(self):
"""Test that shipyard config is skipped when access token is missing."""
module = ama
config = module.MainAgentBuildConfig(
tool_call_timeout=60,
computer_use_runtime="sandbox",
sandbox_cfg={
"booter": "shipyard",
"shipyard_endpoint": "https://shipyard.example.com",
"shipyard_access_token": "",
},
)
req = ProviderRequest(prompt="Test", func_tool=None)
with patch("astrbot.core.astr_main_agent.logger") as mock_logger:
module._apply_sandbox_tools(config, req, "session-123")
mock_logger.error.assert_called_once()
names = req.func_tool.names()
assert "astrbot_create_skill_candidate" in names
assert "astrbot_execute_browser" in names
assert len(names) == 18
def test_apply_sandbox_tools_preserves_existing_toolset(self):
"""Test that existing tools are preserved when adding sandbox tools."""