8f11340b38
Per post_module_taxonomy_de_cruft_20260627 Phase 2 (FR7). Each
'from src.models import X' for a moved class is rewritten to
'from src.<destination> import X':
Ticket, Track, WorkerContext, TrackState, TrackMetadata,
ThinkingSegment, EMPTY_TRACK_STATE -> src.mma
ProjectContext, ProjectMeta, ProjectOutput, ProjectFiles,
ProjectScreenshots, ProjectDiscussion, EMPTY_PROJECT_CONTEXT -> src.project
FileItem, Preset, ContextPreset, ContextFileEntry,
NamedViewPreset -> src.project_files
Tool, ToolPreset -> src.tool_presets
BiasProfile -> src.tool_bias
TextEditorConfig, ExternalEditorConfig,
EMPTY_TEXT_EDITOR_CONFIG -> src.external_editor
Persona -> src.personas
WorkspaceProfile -> src.workspace_manager
MCPServerConfig, MCPConfiguration, VectorStoreConfig,
RAGConfig, load_mcp_config -> src.mcp_client
NOT touched (kept on src.models; Phase 3 or Phase 4 will move them):
GenerateRequest, ConfirmRequest, DEFAULT_TOOL_CATEGORIES, Metadata, PROVIDERS
Migration was performed by the one-time script
scripts/tier2/artifacts/post_module_taxonomy_de_cruft_20260627/migrate_imports.py
which uses a class-to-module map and re.sub() to rewrite each
'from src.models import X' line.
Total: 85 import lines rewritten across 71 files.
Note: this commit depends on the v2 SHIPPED work
(origin/tier2/module_taxonomy_refactor_20260627) being merged into
this branch NEXT. On master (without the v2 SHIPPED commits), the
destination modules do not exist and these imports would fail.
49 lines
1.8 KiB
Python
49 lines
1.8 KiB
Python
import pytest
|
|
from src import ai_client
|
|
from src.tool_bias import BiasProfile
|
|
from src.tool_presets import ToolPreset, Tool
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
def test_system_prompt_biasing():
|
|
# Setup
|
|
preset = ToolPreset(name="TestPreset", categories={
|
|
"General": [Tool(name="read_file", weight=5)]
|
|
})
|
|
bias = BiasProfile(name="TestBias", category_multipliers={"General": 1.5})
|
|
|
|
with patch("src.ai_client._active_tool_preset", preset):
|
|
with patch("src.ai_client._active_bias_profile", bias):
|
|
prompt = ai_client._get_combined_system_prompt()
|
|
|
|
assert "Tooling Strategy" in prompt
|
|
assert "read_file" in prompt
|
|
assert "General" in prompt
|
|
|
|
def test_tool_declaration_biasing_anthropic():
|
|
preset = ToolPreset(name="TestPreset", categories={
|
|
"General": [Tool(name="read_file", weight=5)]
|
|
})
|
|
|
|
with patch("src.ai_client._active_tool_preset", preset):
|
|
with patch("src.ai_client._agent_tools", {"read_file": True}):
|
|
# _get_anthropic_tools calls _build_anthropic_tools which should now use the bias engine
|
|
with patch("src.ai_client._CACHED_ANTHROPIC_TOOLS", None):
|
|
tools = ai_client._get_anthropic_tools()
|
|
|
|
read_file_tool = next(t for t in tools if t["name"] == "read_file")
|
|
assert "[HIGH PRIORITY]" in read_file_tool["description"]
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_set_tool_preset_with_objects():
|
|
# This tests that set_tool_preset correctly handles the new Tool objects
|
|
preset = ToolPreset(name="ObjTest", categories={
|
|
"General": [Tool(name="read_file", approval="auto")]
|
|
})
|
|
|
|
with patch("src.tool_presets.ToolPresetManager.load_all", return_value={"ObjTest": preset}):
|
|
ai_client.set_tool_preset("ObjTest")
|
|
|
|
assert ai_client._agent_tools["read_file"] is True
|
|
assert ai_client._tool_approval_modes["read_file"] == "auto"
|
|
assert ai_client._active_tool_preset == preset
|