Files
turnstone/tests/test_providers.py
T
Patrick Buckley 6cc1b3a5bd feat: add vision/image support to read_file tool (#33)
* feat: add vision/image support to read_file tool

read_file now detects image files (PNG, JPEG, GIF, WebP, BMP, TIFF, ICO)
and returns base64-encoded content parts for vision-capable models.
Non-vision models receive a text description instead. A new
supports_vision flag on ModelCapabilities gates the feature, with
config.toml [models.*.capabilities] overrides for local models
(vLLM, llama.cpp, NIM).

* fix: address PR review feedback

- Discard _read_files on no-vision OSError path, include exception detail
- Discard _read_files on oversized image error (not a successful read)
- Validate capabilities type from config.toml (reject non-dict)
- Clarify tool description re: vision behavior and offset/limit scope
- Remove unused os import in tests, fix import sort order
- Handle list content (image tool results) in eval.py tool result loop
2026-03-08 23:43:42 -07:00

2187 lines
84 KiB
Python

"""Tests for turnstone.core.providers — protocol, OpenAI provider, Anthropic provider."""
from __future__ import annotations
import json
from typing import Any
from unittest.mock import MagicMock, PropertyMock, patch
import pytest
from turnstone.core.providers._openai import OpenAIProvider
from turnstone.core.providers._protocol import (
CompletionResult,
LLMProvider,
StreamChunk,
ToolCallDelta,
UsageInfo,
)
# ---------------------------------------------------------------------------
# Helpers
# ---------------------------------------------------------------------------
def _openai_stream_chunk(
*,
content: str | None = None,
reasoning: str | None = None,
reasoning_content: str | None = None,
tool_calls: list[MagicMock] | None = None,
finish_reason: str | None = None,
usage: MagicMock | None = None,
empty_choices: bool = False,
) -> MagicMock:
"""Build a mock OpenAI streaming chunk."""
chunk = MagicMock()
if empty_choices:
chunk.choices = []
chunk.usage = usage
return chunk
delta = MagicMock()
delta.content = content
delta.tool_calls = tool_calls
# Reasoning attributes accessed via getattr
type(delta).reasoning = PropertyMock(return_value=reasoning)
type(delta).reasoning_content = PropertyMock(return_value=reasoning_content)
choice = MagicMock()
choice.delta = delta
choice.finish_reason = finish_reason
chunk.choices = [choice]
chunk.usage = usage
return chunk
def _openai_tool_call_delta(
*,
index: int = 0,
tc_id: str | None = None,
name: str | None = None,
arguments: str | None = None,
) -> MagicMock:
"""Build a mock OpenAI tool call delta within a streaming chunk."""
tcd = MagicMock()
tcd.index = index
tcd.id = tc_id
tcd.function = MagicMock()
tcd.function.name = name
tcd.function.arguments = arguments
return tcd
def _anthropic_event(
event_type: str,
**kwargs: Any,
) -> MagicMock:
"""Build a mock Anthropic streaming event."""
event = MagicMock()
event.type = event_type
if event_type == "content_block_start":
block = MagicMock()
block.type = kwargs.get("block_type", "text")
block.id = kwargs.get("block_id", "")
block.name = kwargs.get("block_name", "")
event.content_block = block
event.index = kwargs.get("index", 0)
elif event_type == "content_block_delta":
delta = MagicMock()
delta.type = kwargs.get("delta_type", "text_delta")
delta.text = kwargs.get("text", "")
delta.thinking = kwargs.get("thinking", "")
delta.partial_json = kwargs.get("partial_json", "")
event.delta = delta
event.index = kwargs.get("index", 0)
elif event_type == "message_delta":
if "usage_output_tokens" in kwargs:
usage = MagicMock()
usage.input_tokens = kwargs.get("usage_input_tokens", 0)
usage.output_tokens = kwargs.get("usage_output_tokens", 0)
event.usage = usage
else:
event.usage = None
stop_delta = MagicMock()
stop_delta.stop_reason = kwargs.get("stop_reason")
event.delta = stop_delta
elif event_type == "content_block_stop":
event.index = kwargs.get("index", 0)
elif event_type == "message_start":
msg = MagicMock()
if "usage_input_tokens" in kwargs:
msg_usage = MagicMock()
msg_usage.input_tokens = kwargs.get("usage_input_tokens", 0)
msg.usage = msg_usage
else:
msg.usage = None
event.message = msg
return event
# ===========================================================================
# TestOpenAIProvider
# ===========================================================================
class TestOpenAIProvider:
"""Tests for the OpenAI-compatible provider adapter."""
def setup_method(self) -> None:
self.provider = OpenAIProvider()
def test_provider_name(self) -> None:
assert self.provider.provider_name == "openai"
def test_convert_tools_passthrough(self) -> None:
tools = [
{
"type": "function",
"function": {
"name": "read_file",
"description": "Read a file",
"parameters": {"type": "object", "properties": {"path": {"type": "string"}}},
},
}
]
assert self.provider.convert_tools(tools) is tools
def test_streaming_content(self) -> None:
chunks = [
_openai_stream_chunk(content="Hello"),
_openai_stream_chunk(content=" world"),
]
client = MagicMock()
client.chat.completions.create.return_value = iter(chunks)
results = list(
self.provider.create_streaming(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "hi"}],
)
)
assert len(results) == 2
assert results[0].content_delta == "Hello"
assert results[1].content_delta == " world"
def test_streaming_reasoning(self) -> None:
chunks = [
_openai_stream_chunk(reasoning_content="thinking..."),
_openai_stream_chunk(reasoning_content="more thought"),
]
client = MagicMock()
client.chat.completions.create.return_value = iter(chunks)
results = list(
self.provider.create_streaming(
client=client,
model="qwen3-32b",
messages=[{"role": "user", "content": "hi"}],
)
)
assert len(results) == 2
assert results[0].reasoning_delta == "thinking..."
assert results[1].reasoning_delta == "more thought"
def test_streaming_tool_calls(self) -> None:
tc1 = _openai_tool_call_delta(index=0, tc_id="call_1", name="read_file")
tc2 = _openai_tool_call_delta(index=0, arguments='{"path":')
tc3 = _openai_tool_call_delta(index=0, arguments='"foo.py"}')
chunks = [
_openai_stream_chunk(tool_calls=[tc1]),
_openai_stream_chunk(tool_calls=[tc2]),
_openai_stream_chunk(tool_calls=[tc3]),
]
client = MagicMock()
client.chat.completions.create.return_value = iter(chunks)
results = list(
self.provider.create_streaming(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "read a file"}],
)
)
assert len(results) == 3
assert results[0].tool_call_deltas[0].id == "call_1"
assert results[0].tool_call_deltas[0].name == "read_file"
assert results[1].tool_call_deltas[0].arguments_delta == '{"path":'
assert results[2].tool_call_deltas[0].arguments_delta == '"foo.py"}'
def test_streaming_usage(self) -> None:
usage = MagicMock()
usage.prompt_tokens = 10
usage.completion_tokens = 20
usage.total_tokens = 30
chunks = [
_openai_stream_chunk(content="Hi"),
_openai_stream_chunk(empty_choices=True, usage=usage),
]
client = MagicMock()
client.chat.completions.create.return_value = iter(chunks)
results = list(
self.provider.create_streaming(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "hi"}],
)
)
# Last yielded chunk should carry usage
usage_chunk = [r for r in results if r.usage is not None]
assert len(usage_chunk) == 1
assert usage_chunk[0].usage is not None
assert usage_chunk[0].usage.prompt_tokens == 10
assert usage_chunk[0].usage.completion_tokens == 20
assert usage_chunk[0].usage.total_tokens == 30
def test_streaming_finish_reason(self) -> None:
chunks = [
_openai_stream_chunk(content="done"),
_openai_stream_chunk(finish_reason="stop"),
]
client = MagicMock()
client.chat.completions.create.return_value = iter(chunks)
results = list(
self.provider.create_streaming(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "hi"}],
)
)
finish_chunks = [r for r in results if r.finish_reason is not None]
assert len(finish_chunks) == 1
assert finish_chunks[0].finish_reason == "stop"
def test_streaming_finish_reason_tool_calls(self) -> None:
tc = _openai_tool_call_delta(index=0, tc_id="call_1", name="fn")
chunks = [
_openai_stream_chunk(tool_calls=[tc]),
_openai_stream_chunk(finish_reason="tool_calls"),
]
client = MagicMock()
client.chat.completions.create.return_value = iter(chunks)
results = list(
self.provider.create_streaming(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "hi"}],
)
)
finish_chunks = [r for r in results if r.finish_reason is not None]
assert finish_chunks[0].finish_reason == "tool_calls"
def test_streaming_is_first(self) -> None:
chunks = [
_openai_stream_chunk(content="A"),
_openai_stream_chunk(content="B"),
_openai_stream_chunk(content="C"),
]
client = MagicMock()
client.chat.completions.create.return_value = iter(chunks)
results = list(
self.provider.create_streaming(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "hi"}],
)
)
assert results[0].is_first is True
assert results[1].is_first is False
assert results[2].is_first is False
def test_completion_basic(self) -> None:
response = MagicMock()
response.choices = [MagicMock()]
response.choices[0].message.content = "Hello world"
response.choices[0].message.tool_calls = None
response.choices[0].finish_reason = "stop"
response.usage.prompt_tokens = 10
response.usage.completion_tokens = 5
response.usage.total_tokens = 15
client = MagicMock()
client.chat.completions.create.return_value = response
result = self.provider.create_completion(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "hi"}],
)
assert isinstance(result, CompletionResult)
assert result.content == "Hello world"
assert result.tool_calls is None
assert result.finish_reason == "stop"
def test_completion_with_tools(self) -> None:
tc = MagicMock()
tc.id = "call_abc"
tc.function.name = "read_file"
tc.function.arguments = '{"path": "foo.py"}'
response = MagicMock()
response.choices = [MagicMock()]
response.choices[0].message.content = None
response.choices[0].message.tool_calls = [tc]
response.choices[0].finish_reason = "tool_calls"
response.usage.prompt_tokens = 8
response.usage.completion_tokens = 12
response.usage.total_tokens = 20
client = MagicMock()
client.chat.completions.create.return_value = response
result = self.provider.create_completion(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "read"}],
)
assert result.content == ""
assert result.tool_calls is not None
assert len(result.tool_calls) == 1
assert result.tool_calls[0]["id"] == "call_abc"
assert result.tool_calls[0]["type"] == "function"
assert result.tool_calls[0]["function"]["name"] == "read_file"
assert result.tool_calls[0]["function"]["arguments"] == '{"path": "foo.py"}'
assert result.finish_reason == "tool_calls"
def test_completion_usage(self) -> None:
response = MagicMock()
response.choices = [MagicMock()]
response.choices[0].message.content = "ok"
response.choices[0].message.tool_calls = None
response.choices[0].finish_reason = "stop"
response.usage.prompt_tokens = 100
response.usage.completion_tokens = 50
response.usage.total_tokens = 150
client = MagicMock()
client.chat.completions.create.return_value = response
result = self.provider.create_completion(
client=client,
model="gpt-4o",
messages=[{"role": "user", "content": "hi"}],
)
assert result.usage is not None
assert result.usage.prompt_tokens == 100
assert result.usage.completion_tokens == 50
assert result.usage.total_tokens == 150
def test_retryable_errors(self) -> None:
errors = self.provider.retryable_error_names
assert isinstance(errors, frozenset)
assert "APIError" in errors
assert "APIConnectionError" in errors
assert "RateLimitError" in errors
assert "Timeout" in errors
assert "APITimeoutError" in errors
# ===========================================================================
# TestAnthropicProvider
# ===========================================================================
class TestAnthropicProvider:
"""Tests for the Anthropic native provider adapter."""
def setup_method(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
self.provider = AnthropicProvider()
def test_provider_name(self) -> None:
assert self.provider.provider_name == "anthropic"
def test_convert_tools(self) -> None:
openai_tools = [
{
"type": "function",
"function": {
"name": "read_file",
"description": "Read a file from disk",
"parameters": {
"type": "object",
"properties": {"path": {"type": "string"}},
"required": ["path"],
},
},
},
{
"type": "function",
"function": {
"name": "write_file",
"description": "Write a file",
"parameters": {
"type": "object",
"properties": {
"path": {"type": "string"},
"content": {"type": "string"},
},
},
},
},
]
result = self.provider.convert_tools(openai_tools)
assert len(result) == 2
assert result[0]["name"] == "read_file"
assert result[0]["description"] == "Read a file from disk"
assert result[0]["input_schema"]["type"] == "object"
assert "path" in result[0]["input_schema"]["properties"]
# No "type": "function" wrapper
assert "function" not in result[0]
assert "type" not in result[0]
assert result[1]["name"] == "write_file"
def test_message_conversion_basic(self) -> None:
messages = [
{"role": "system", "content": "You are helpful."},
{"role": "user", "content": "Hello"},
{"role": "assistant", "content": "Hi there!"},
{"role": "user", "content": "How are you?"},
]
system, converted = self.provider._convert_messages(messages)
assert system == "You are helpful."
assert len(converted) == 3
assert converted[0]["role"] == "user"
assert converted[0]["content"] == "Hello"
assert converted[1]["role"] == "assistant"
assert converted[1]["content"] == [{"type": "text", "text": "Hi there!"}]
assert converted[2]["role"] == "user"
assert converted[2]["content"] == "How are you?"
def test_message_conversion_tool_calls(self) -> None:
messages = [
{
"role": "assistant",
"content": "Let me check that.",
"tool_calls": [
{
"id": "call_1",
"function": {
"name": "read_file",
"arguments": '{"path": "foo.py"}',
},
}
],
}
]
_, converted = self.provider._convert_messages(messages)
assert len(converted) == 1
blocks = converted[0]["content"]
assert len(blocks) == 2
assert blocks[0] == {"type": "text", "text": "Let me check that."}
assert blocks[1]["type"] == "tool_use"
assert blocks[1]["id"] == "call_1"
assert blocks[1]["name"] == "read_file"
assert blocks[1]["input"] == {"path": "foo.py"}
def test_message_conversion_tool_results(self) -> None:
messages = [
{"role": "tool", "tool_call_id": "call_1", "content": "file contents here"},
{"role": "tool", "tool_call_id": "call_2", "content": "another result"},
]
_, converted = self.provider._convert_messages(messages)
assert len(converted) == 1
assert converted[0]["role"] == "user"
blocks = converted[0]["content"]
assert len(blocks) == 2
assert blocks[0]["type"] == "tool_result"
assert blocks[0]["tool_use_id"] == "call_1"
assert blocks[0]["content"] == "file contents here"
assert blocks[1]["type"] == "tool_result"
assert blocks[1]["tool_use_id"] == "call_2"
assert blocks[1]["content"] == "another result"
def test_message_conversion_alternating_merge(self) -> None:
messages = [
{"role": "user", "content": "Hello"},
{"role": "user", "content": "Are you there?"},
{"role": "assistant", "content": "Yes"},
{"role": "assistant", "content": "I am here"},
]
_, converted = self.provider._convert_messages(messages)
assert len(converted) == 2
# First merged user message
assert converted[0]["role"] == "user"
assert converted[0]["content"] == [
{"type": "text", "text": "Hello"},
{"type": "text", "text": "Are you there?"},
]
# Second merged assistant message
assert converted[1]["role"] == "assistant"
assert converted[1]["content"] == [
{"type": "text", "text": "Yes"},
{"type": "text", "text": "I am here"},
]
def test_message_conversion_developer_role_as_system(self) -> None:
messages = [
{"role": "developer", "content": "System prompt via developer role."},
{"role": "user", "content": "Hi"},
]
system, converted = self.provider._convert_messages(messages)
assert system == "System prompt via developer role."
assert len(converted) == 1
assert converted[0]["role"] == "user"
def test_message_conversion_multiple_system(self) -> None:
messages = [
{"role": "system", "content": "Part 1."},
{"role": "system", "content": "Part 2."},
{"role": "user", "content": "Go."},
]
system, _ = self.provider._convert_messages(messages)
assert system == "Part 1.\n\nPart 2."
def test_reasoning_params_mapping(self) -> None:
assert self.provider._reasoning_params("low", None, max_tokens=32768) == {
"thinking": {"type": "enabled", "budget_tokens": 1024}
}
assert self.provider._reasoning_params("medium", None, max_tokens=32768) == {
"thinking": {"type": "enabled", "budget_tokens": 4096}
}
assert self.provider._reasoning_params("high", None, max_tokens=32768) == {
"thinking": {"type": "enabled", "budget_tokens": 16384}
}
def test_reasoning_params_override(self) -> None:
result = self.provider._reasoning_params(
"low", {"thinking_budget_tokens": 8192}, max_tokens=32768
)
assert result == {"thinking": {"type": "enabled", "budget_tokens": 8192}}
def test_reasoning_params_unknown_effort(self) -> None:
# Unknown effort falls back to 4096
result = self.provider._reasoning_params("turbo", None, max_tokens=32768)
assert result == {"thinking": {"type": "enabled", "budget_tokens": 4096}}
def test_reasoning_params_budget_clamped(self) -> None:
# Budget >= max_tokens gets clamped to leave room for response
result = self.provider._reasoning_params("high", None, max_tokens=4096)
assert result == {"thinking": {"type": "enabled", "budget_tokens": 3072}}
def test_finish_reason_normalization(self) -> None:
from turnstone.core.providers._anthropic import _normalize_finish_reason
assert _normalize_finish_reason("end_turn") == "stop"
assert _normalize_finish_reason("tool_use") == "tool_calls"
assert _normalize_finish_reason("max_tokens") == "length"
assert _normalize_finish_reason("other_reason") == "other_reason"
@patch("turnstone.core.providers._anthropic._ensure_anthropic")
def test_completion_basic(self, mock_ensure: MagicMock) -> None:
text_block = MagicMock()
text_block.type = "text"
text_block.text = "Hello world"
response = MagicMock()
response.content = [text_block]
response.stop_reason = "end_turn"
response.usage = MagicMock()
response.usage.input_tokens = 10
response.usage.output_tokens = 5
client = MagicMock()
client.messages.create.return_value = response
result = self.provider.create_completion(
client=client,
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "hi"}],
)
assert isinstance(result, CompletionResult)
assert result.content == "Hello world"
assert result.tool_calls is None
assert result.finish_reason == "stop"
@patch("turnstone.core.providers._anthropic._ensure_anthropic")
def test_completion_with_tool_use(self, mock_ensure: MagicMock) -> None:
text_block = MagicMock()
text_block.type = "text"
text_block.text = "Let me read that."
tool_block = MagicMock()
tool_block.type = "tool_use"
tool_block.id = "toolu_abc"
tool_block.name = "read_file"
tool_block.input = {"path": "foo.py"}
response = MagicMock()
response.content = [text_block, tool_block]
response.stop_reason = "tool_use"
response.usage = MagicMock()
response.usage.input_tokens = 15
response.usage.output_tokens = 20
client = MagicMock()
client.messages.create.return_value = response
result = self.provider.create_completion(
client=client,
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "read foo.py"}],
)
assert result.content == "Let me read that."
assert result.finish_reason == "tool_calls"
assert result.tool_calls is not None
assert len(result.tool_calls) == 1
tc = result.tool_calls[0]
assert tc["id"] == "toolu_abc"
assert tc["type"] == "function"
assert tc["function"]["name"] == "read_file"
assert json.loads(tc["function"]["arguments"]) == {"path": "foo.py"}
@patch("turnstone.core.providers._anthropic._ensure_anthropic")
def test_completion_usage(self, mock_ensure: MagicMock) -> None:
text_block = MagicMock()
text_block.type = "text"
text_block.text = "ok"
response = MagicMock()
response.content = [text_block]
response.stop_reason = "end_turn"
response.usage = MagicMock()
response.usage.input_tokens = 100
response.usage.output_tokens = 50
client = MagicMock()
client.messages.create.return_value = response
result = self.provider.create_completion(
client=client,
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "hi"}],
)
assert result.usage is not None
assert result.usage.prompt_tokens == 100
assert result.usage.completion_tokens == 50
assert result.usage.total_tokens == 150
@patch("turnstone.core.providers._anthropic._ensure_anthropic")
def test_streaming_text_delta(self, mock_ensure: MagicMock) -> None:
events = [
_anthropic_event("content_block_delta", delta_type="text_delta", text="Hello"),
_anthropic_event("content_block_delta", delta_type="text_delta", text=" world"),
]
stream_ctx = MagicMock()
stream_ctx.__enter__ = MagicMock(return_value=iter(events))
stream_ctx.__exit__ = MagicMock(return_value=False)
client = MagicMock()
client.messages.stream.return_value = stream_ctx
results = list(
self.provider.create_streaming(
client=client,
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "hi"}],
)
)
assert len(results) == 2
assert results[0].content_delta == "Hello"
assert results[0].is_first is True
assert results[1].content_delta == " world"
assert results[1].is_first is False
@patch("turnstone.core.providers._anthropic._ensure_anthropic")
def test_streaming_thinking_delta(self, mock_ensure: MagicMock) -> None:
events = [
_anthropic_event(
"content_block_delta",
delta_type="thinking_delta",
thinking="reasoning step 1",
),
_anthropic_event(
"content_block_delta",
delta_type="thinking_delta",
thinking="reasoning step 2",
),
]
stream_ctx = MagicMock()
stream_ctx.__enter__ = MagicMock(return_value=iter(events))
stream_ctx.__exit__ = MagicMock(return_value=False)
client = MagicMock()
client.messages.stream.return_value = stream_ctx
results = list(
self.provider.create_streaming(
client=client,
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "think"}],
)
)
assert len(results) == 2
assert results[0].reasoning_delta == "reasoning step 1"
assert results[1].reasoning_delta == "reasoning step 2"
@patch("turnstone.core.providers._anthropic._ensure_anthropic")
def test_streaming_tool_use(self, mock_ensure: MagicMock) -> None:
events = [
_anthropic_event(
"content_block_start",
block_type="tool_use",
block_id="toolu_123",
block_name="read_file",
index=0,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='{"path":',
index=0,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='"foo.py"}',
index=0,
),
]
stream_ctx = MagicMock()
stream_ctx.__enter__ = MagicMock(return_value=iter(events))
stream_ctx.__exit__ = MagicMock(return_value=False)
client = MagicMock()
client.messages.stream.return_value = stream_ctx
results = list(
self.provider.create_streaming(
client=client,
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "read a file"}],
)
)
assert len(results) == 3
# First chunk: content_block_start with tool id and name
assert results[0].tool_call_deltas[0].id == "toolu_123"
assert results[0].tool_call_deltas[0].name == "read_file"
assert results[0].tool_call_deltas[0].index == 0
# Subsequent chunks: argument fragments
assert results[1].tool_call_deltas[0].arguments_delta == '{"path":'
assert results[2].tool_call_deltas[0].arguments_delta == '"foo.py"}'
@patch("turnstone.core.providers._anthropic._ensure_anthropic")
def test_streaming_message_delta_usage(self, mock_ensure: MagicMock) -> None:
events = [
_anthropic_event("content_block_delta", delta_type="text_delta", text="Hi"),
_anthropic_event(
"message_delta",
stop_reason="end_turn",
usage_input_tokens=0,
usage_output_tokens=12,
),
]
stream_ctx = MagicMock()
stream_ctx.__enter__ = MagicMock(return_value=iter(events))
stream_ctx.__exit__ = MagicMock(return_value=False)
client = MagicMock()
client.messages.stream.return_value = stream_ctx
results = list(
self.provider.create_streaming(
client=client,
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "hi"}],
)
)
# The message_delta event should carry usage and finish_reason
delta_chunks = [r for r in results if r.finish_reason is not None]
assert len(delta_chunks) == 1
assert delta_chunks[0].finish_reason == "stop"
assert delta_chunks[0].usage is not None
assert delta_chunks[0].usage.completion_tokens == 12
@patch("turnstone.core.providers._anthropic._ensure_anthropic")
def test_streaming_message_start_usage(self, mock_ensure: MagicMock) -> None:
events = [
_anthropic_event("message_start", usage_input_tokens=42),
_anthropic_event("content_block_delta", delta_type="text_delta", text="Hi"),
]
stream_ctx = MagicMock()
stream_ctx.__enter__ = MagicMock(return_value=iter(events))
stream_ctx.__exit__ = MagicMock(return_value=False)
client = MagicMock()
client.messages.stream.return_value = stream_ctx
results = list(
self.provider.create_streaming(
client=client,
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "hi"}],
)
)
# message_start with usage should be yielded
start_chunks = [r for r in results if r.usage is not None and r.usage.prompt_tokens == 42]
assert len(start_chunks) == 1
assert start_chunks[0].usage is not None
assert start_chunks[0].usage.prompt_tokens == 42
def test_retryable_errors(self) -> None:
errors = self.provider.retryable_error_names
assert isinstance(errors, frozenset)
assert "RateLimitError" in errors
assert "APITimeoutError" in errors
assert "APIConnectionError" in errors
assert "InternalServerError" in errors
assert "APIError" in errors
assert "OverloadedError" in errors
# ===========================================================================
# TestAnthropicHelpers
# ===========================================================================
class TestAnthropicHelpers:
"""Tests for Anthropic module-level helper functions."""
def test_merge_consecutive(self) -> None:
from turnstone.core.providers._anthropic import _merge_consecutive
messages = [
{"role": "user", "content": "A"},
{"role": "user", "content": "B"},
{"role": "assistant", "content": "C"},
{"role": "user", "content": "D"},
]
merged = _merge_consecutive(messages)
assert len(merged) == 3
assert merged[0]["role"] == "user"
assert merged[0]["content"] == [
{"type": "text", "text": "A"},
{"type": "text", "text": "B"},
]
assert merged[1]["role"] == "assistant"
assert merged[2]["role"] == "user"
def test_merge_consecutive_empty(self) -> None:
from turnstone.core.providers._anthropic import _merge_consecutive
assert _merge_consecutive([]) == []
def test_merge_consecutive_no_duplicates(self) -> None:
from turnstone.core.providers._anthropic import _merge_consecutive
messages = [
{"role": "user", "content": "A"},
{"role": "assistant", "content": "B"},
{"role": "user", "content": "C"},
]
merged = _merge_consecutive(messages)
assert len(merged) == 3
def test_to_blocks_string(self) -> None:
from turnstone.core.providers._anthropic import _to_blocks
result = _to_blocks("hello")
assert result == [{"type": "text", "text": "hello"}]
def test_to_blocks_list(self) -> None:
from turnstone.core.providers._anthropic import _to_blocks
blocks = [{"type": "text", "text": "already a block"}]
result = _to_blocks(blocks)
assert result == blocks
def test_to_blocks_other(self) -> None:
from turnstone.core.providers._anthropic import _to_blocks
result = _to_blocks(42)
assert result == [{"type": "text", "text": "42"}]
def test_capabilities_lookup_exact(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
provider = AnthropicProvider()
caps = provider.get_capabilities("claude-opus-4-6")
assert caps.context_window == 200000
assert caps.max_output_tokens == 128000
assert caps.thinking_mode == "adaptive"
assert caps.supports_effort is True
def test_capabilities_lookup_prefix(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
provider = AnthropicProvider()
# Prefix match: "claude-sonnet-4" matches dated variants
caps = provider.get_capabilities("claude-sonnet-4-20260101")
assert caps.context_window == 200000
assert caps.token_param == "max_tokens"
assert caps.thinking_mode == "manual"
def test_capabilities_lookup_unknown(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
provider = AnthropicProvider()
caps = provider.get_capabilities("unknown-model-xyz")
# Falls back to default
assert caps.context_window == 200000
assert caps.thinking_mode == "manual"
assert caps.token_param == "max_tokens"
# ===========================================================================
# TestProviderFactory
# ===========================================================================
class TestProviderFactory:
"""Tests for create_provider and create_client factory functions."""
def test_create_provider_openai(self) -> None:
from turnstone.core.providers import create_provider
provider = create_provider("openai")
assert isinstance(provider, OpenAIProvider)
assert provider.provider_name == "openai"
def test_create_provider_anthropic(self) -> None:
from turnstone.core.providers import create_provider
provider = create_provider("anthropic")
assert provider.provider_name == "anthropic"
def test_create_provider_unknown(self) -> None:
from turnstone.core.providers import create_provider
with pytest.raises(ValueError, match="Unknown provider"):
create_provider("gemini")
@patch("openai.OpenAI")
def test_create_client_openai(self, mock_openai_cls: MagicMock) -> None:
from turnstone.core.providers import create_client
mock_openai_cls.return_value = MagicMock()
client = create_client("openai", base_url="http://localhost:8000/v1", api_key="test-key")
mock_openai_cls.assert_called_once_with(
base_url="http://localhost:8000/v1", api_key="test-key"
)
assert client is mock_openai_cls.return_value
def test_create_client_unknown(self) -> None:
from turnstone.core.providers import create_client
with pytest.raises(ValueError, match="Unknown provider"):
create_client("gemini", base_url="http://x", api_key="k")
def test_is_llm_provider(self) -> None:
"""Verify runtime_checkable protocol works with isinstance."""
provider = OpenAIProvider()
assert isinstance(provider, LLMProvider)
def test_non_provider_not_instance(self) -> None:
"""A plain object should not satisfy LLMProvider protocol check."""
class NotAProvider:
pass
assert not isinstance(NotAProvider(), LLMProvider)
def test_create_provider_returns_singleton(self) -> None:
from turnstone.core.providers import create_provider
p1 = create_provider("openai")
p2 = create_provider("openai")
assert p1 is p2
# ===========================================================================
# TestDataclasses
# ===========================================================================
class TestDataclasses:
"""Tests for protocol dataclass construction and defaults."""
def test_stream_chunk_defaults(self) -> None:
sc = StreamChunk()
assert sc.content_delta == ""
assert sc.reasoning_delta == ""
assert sc.tool_call_deltas == []
assert sc.usage is None
assert sc.finish_reason is None
assert sc.is_first is False
def test_tool_call_delta_defaults(self) -> None:
tcd = ToolCallDelta(index=0)
assert tcd.index == 0
assert tcd.id == ""
assert tcd.name == ""
assert tcd.arguments_delta == ""
def test_usage_info(self) -> None:
u = UsageInfo(prompt_tokens=10, completion_tokens=5, total_tokens=15)
assert u.prompt_tokens == 10
assert u.completion_tokens == 5
assert u.total_tokens == 15
def test_completion_result_defaults(self) -> None:
cr = CompletionResult(content="hello")
assert cr.content == "hello"
assert cr.tool_calls is None
assert cr.finish_reason == "stop"
assert cr.usage is None
def test_stream_chunk_info_delta_default(self) -> None:
sc = StreamChunk()
assert sc.info_delta == ""
def test_model_capabilities_web_search_default(self) -> None:
from turnstone.core.providers._protocol import ModelCapabilities
caps = ModelCapabilities()
assert caps.supports_web_search is False
# ===========================================================================
# TestParameterGating — model capability parameter gating
# ===========================================================================
class TestOpenAIParameterGating:
"""Verify _apply_model_params gates temperature and reasoning_effort correctly."""
def setup_method(self) -> None:
self.provider = OpenAIProvider()
def test_unknown_model_no_reasoning_effort(self) -> None:
"""Unknown/local models should NOT receive top-level reasoning_effort."""
caps = self.provider.get_capabilities("my-local-model")
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="medium")
assert "reasoning_effort" not in kwargs
assert kwargs["temperature"] == 0.7
def test_gpt5_no_temperature_has_reasoning_effort(self) -> None:
"""GPT-5 base: no temperature, reasoning_effort sent."""
caps = self.provider.get_capabilities("gpt-5")
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="high")
assert "temperature" not in kwargs
assert kwargs["reasoning_effort"] == "high"
def test_gpt51_temperature_when_effort_none(self) -> None:
"""GPT-5.1: temperature only when reasoning_effort='none'."""
caps = self.provider.get_capabilities("gpt-5.1")
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="none")
assert kwargs["temperature"] == 0.7
assert "reasoning_effort" not in kwargs # "none" is skipped
def test_gpt51_no_temperature_when_reasoning_active(self) -> None:
"""GPT-5.1: no temperature when reasoning is active."""
caps = self.provider.get_capabilities("gpt-5.1")
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="high")
assert "temperature" not in kwargs
assert kwargs["reasoning_effort"] == "high"
def test_o_series_no_temperature_no_reasoning_effort(self) -> None:
"""O-series: no temperature, no reasoning_effort."""
caps = self.provider.get_capabilities("o3")
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="medium")
assert "temperature" not in kwargs
assert "reasoning_effort" not in kwargs
def test_gpt5_pro_unsupported_effort_falls_back(self) -> None:
"""GPT-5 pro only supports 'high'; unsupported values fall back to default."""
caps = self.provider.get_capabilities("gpt-5-pro")
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="medium")
assert "temperature" not in kwargs
assert kwargs["reasoning_effort"] == "high" # fell back to default
def test_gpt5_pro_supported_effort_passes_through(self) -> None:
"""GPT-5 pro accepts 'high' directly."""
caps = self.provider.get_capabilities("gpt-5-pro")
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="high")
assert kwargs["reasoning_effort"] == "high"
def test_gpt54_1m_context_and_effort(self) -> None:
"""GPT-5.4: 1M context, temperature when effort=none, xhigh supported."""
caps = self.provider.get_capabilities("gpt-5.4")
assert caps.context_window == 1050000
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="none")
assert kwargs["temperature"] == 0.7
assert "reasoning_effort" not in kwargs
kwargs2: dict[str, Any] = {}
self.provider._apply_model_params(kwargs2, caps, temperature=0.7, reasoning_effort="xhigh")
assert "temperature" not in kwargs2
assert kwargs2["reasoning_effort"] == "xhigh"
def test_gpt54_pro_no_temperature_always_reasoning(self) -> None:
"""GPT-5.4 pro: no temperature, medium/high/xhigh only."""
caps = self.provider.get_capabilities("gpt-5.4-pro")
assert caps.context_window == 1050000
kwargs: dict[str, Any] = {}
self.provider._apply_model_params(kwargs, caps, temperature=0.7, reasoning_effort="low")
assert "temperature" not in kwargs
assert kwargs["reasoning_effort"] == "medium" # fell back from unsupported "low"
class TestAnthropicReasoningNone:
"""Verify 'none' effort disables thinking for manual-thinking models."""
def setup_method(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
self.provider = AnthropicProvider()
def test_none_effort_disables_thinking(self) -> None:
result = self.provider._reasoning_params("none", None, max_tokens=4096)
assert result == {}
def test_empty_effort_disables_thinking(self) -> None:
result = self.provider._reasoning_params("", None, max_tokens=4096)
assert result == {}
def test_low_effort_enables_thinking(self) -> None:
result = self.provider._reasoning_params("low", None, max_tokens=4096)
assert "thinking" in result
assert result["thinking"]["budget_tokens"] == 1024
# ===========================================================================
# TestWebSearch — provider-native web search
# ===========================================================================
class TestAnthropicWebSearch:
"""Tests for Anthropic native web search tool injection and streaming."""
def setup_method(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
self.provider = AnthropicProvider()
def test_web_search_capability_flag(self) -> None:
"""All Anthropic models should support native web search."""
caps = self.provider.get_capabilities("claude-opus-4-6")
assert caps.supports_web_search is True
caps = self.provider.get_capabilities("claude-sonnet-4")
assert caps.supports_web_search is True
# Unknown models use default which also has web search
caps = self.provider.get_capabilities("claude-unknown-99")
assert caps.supports_web_search is True
def test_inject_web_search_replaces_function_tool(self) -> None:
"""web_search function tool should be replaced with native server-side tool."""
caps = self.provider.get_capabilities("claude-opus-4-6")
tools = [
{"name": "bash", "description": "Run bash", "input_schema": {"type": "object"}},
{"name": "web_search", "description": "Search web", "input_schema": {"type": "object"}},
]
result = self.provider._inject_web_search(tools, caps)
names = [t.get("name") for t in result]
assert "bash" in names
assert "web_search" in names
# The web_search entry should be the native tool, not the function tool
ws_tool = next(t for t in result if t.get("name") == "web_search")
from turnstone.core.providers._anthropic import _WEB_SEARCH_TOOL_TYPE
assert ws_tool["type"] == _WEB_SEARCH_TOOL_TYPE
assert "input_schema" not in ws_tool
def test_inject_web_search_no_op_without_tool(self) -> None:
"""If no web_search tool in list, no injection happens."""
caps = self.provider.get_capabilities("claude-opus-4-6")
tools = [
{"name": "bash", "description": "Run bash", "input_schema": {"type": "object"}},
]
result = self.provider._inject_web_search(tools, caps)
assert result is tools # Unchanged
def test_streaming_server_tool_use_emits_search_info(self) -> None:
"""server_tool_use block should emit info_delta with search query."""
events = [
_anthropic_event(
"content_block_start",
block_type="server_tool_use",
block_id="srvtoolu_123",
block_name="web_search",
index=0,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='{"query": "python web frameworks"}',
index=0,
),
_anthropic_event("content_block_stop", index=0),
]
chunks = list(self.provider._iter_anthropic_stream(events))
info_chunks = [c for c in chunks if c.info_delta]
assert len(info_chunks) == 1
assert "python web frameworks" in info_chunks[0].info_delta
assert "Searching" in info_chunks[0].info_delta
def test_streaming_web_search_result_emits_count(self) -> None:
"""web_search_tool_result block should emit result count info."""
# Build mock search results
result1 = MagicMock()
result1.type = "web_search_result"
result2 = MagicMock()
result2.type = "web_search_result"
events = [
_anthropic_event(
"content_block_start",
block_type="web_search_tool_result",
index=1,
),
]
# Set up the content attribute with search results
events[0].content_block.content = [result1, result2]
chunks = list(self.provider._iter_anthropic_stream(events))
info_chunks = [c for c in chunks if c.info_delta]
assert len(info_chunks) == 1
assert "Found 2 results" in info_chunks[0].info_delta
def test_streaming_web_search_error_emits_info(self) -> None:
"""web_search_tool_result with error should emit error info."""
error_content = MagicMock()
error_content.type = "web_search_tool_result_error"
error_content.error_code = "too_many_requests"
events = [
_anthropic_event(
"content_block_start",
block_type="web_search_tool_result",
index=1,
),
]
events[0].content_block.content = error_content
chunks = list(self.provider._iter_anthropic_stream(events))
info_chunks = [c for c in chunks if c.info_delta]
assert len(info_chunks) == 1
assert "too_many_requests" in info_chunks[0].info_delta
def test_streaming_server_tool_use_not_emitted_as_tool_call(self) -> None:
"""server_tool_use should NOT produce tool_call_deltas (it's server-side)."""
events = [
_anthropic_event(
"content_block_start",
block_type="server_tool_use",
block_id="srvtoolu_123",
block_name="web_search",
index=0,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='{"query": "test"}',
index=0,
),
]
chunks = list(self.provider._iter_anthropic_stream(events))
tool_chunks = [c for c in chunks if c.tool_call_deltas]
assert len(tool_chunks) == 0
def test_streaming_mixed_text_and_search(self) -> None:
"""Full sequence: text + server search + results + more text."""
events = [
# Initial text
_anthropic_event(
"content_block_start",
block_type="text",
index=0,
),
_anthropic_event(
"content_block_delta",
delta_type="text_delta",
text="Let me search.",
index=0,
),
# Server tool use
_anthropic_event(
"content_block_start",
block_type="server_tool_use",
block_id="srvtoolu_1",
block_name="web_search",
index=1,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='{"query": "test query"}',
index=1,
),
_anthropic_event("content_block_stop", index=1),
# Response text
_anthropic_event(
"content_block_start",
block_type="text",
index=3,
),
_anthropic_event(
"content_block_delta",
delta_type="text_delta",
text="Based on the results...",
index=3,
),
# Finish
_anthropic_event("message_delta", stop_reason="end_turn"),
]
chunks = list(self.provider._iter_anthropic_stream(events))
text_chunks = [c for c in chunks if c.content_delta]
info_chunks = [c for c in chunks if c.info_delta]
assert len(text_chunks) == 2
assert text_chunks[0].content_delta == "Let me search."
assert text_chunks[1].content_delta == "Based on the results..."
assert len(info_chunks) == 1
assert "test query" in info_chunks[0].info_delta
def test_pause_turn_normalized_to_stop(self) -> None:
"""pause_turn stop reason should normalize to 'stop'."""
from turnstone.core.providers._anthropic import _normalize_finish_reason
assert _normalize_finish_reason("pause_turn") == "stop"
def test_completion_skips_server_blocks(self) -> None:
"""create_completion should skip server_tool_use and web_search_tool_result."""
# Build mock response with mixed block types
text_block = MagicMock()
text_block.type = "text"
text_block.text = "Here are the results."
server_tu_block = MagicMock()
server_tu_block.type = "server_tool_use"
search_result_block = MagicMock()
search_result_block.type = "web_search_tool_result"
response = MagicMock()
response.content = [server_tu_block, search_result_block, text_block]
response.stop_reason = "end_turn"
response.usage.input_tokens = 100
response.usage.output_tokens = 50
client = MagicMock()
client.messages.create.return_value = response
with patch("turnstone.core.providers._anthropic._ensure_anthropic"):
result = self.provider.create_completion(
client=client,
model="claude-opus-4-6",
messages=[{"role": "user", "content": "search test"}],
)
assert result.content == "Here are the results."
assert result.tool_calls is None
def test_streaming_multiple_searches(self) -> None:
"""Multiple server_tool_use blocks in one response should each emit info."""
events = [
_anthropic_event(
"content_block_start",
block_type="server_tool_use",
block_id="srvtoolu_1",
block_name="web_search",
index=0,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='{"query": "first search"}',
index=0,
),
_anthropic_event("content_block_stop", index=0),
_anthropic_event(
"content_block_start",
block_type="server_tool_use",
block_id="srvtoolu_2",
block_name="web_search",
index=2,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='{"query": "second search"}',
index=2,
),
_anthropic_event("content_block_stop", index=2),
]
chunks = list(self.provider._iter_anthropic_stream(events))
info_chunks = [c for c in chunks if c.info_delta]
assert len(info_chunks) == 2
assert "first search" in info_chunks[0].info_delta
assert "second search" in info_chunks[1].info_delta
def test_streaming_interleaved_tool_use_and_server_tool_use(self) -> None:
"""Regular tool_use and server_tool_use at different indices."""
events = [
# Regular tool call at index 0
_anthropic_event(
"content_block_start",
block_type="tool_use",
block_id="toolu_1",
block_name="bash",
index=0,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='{"command": "ls"}',
index=0,
),
# Server tool at index 1
_anthropic_event(
"content_block_start",
block_type="server_tool_use",
block_id="srvtoolu_1",
block_name="web_search",
index=1,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json='{"query": "test"}',
index=1,
),
_anthropic_event("content_block_stop", index=1),
]
chunks = list(self.provider._iter_anthropic_stream(events))
tool_chunks = [c for c in chunks if c.tool_call_deltas]
info_chunks = [c for c in chunks if c.info_delta]
# Regular tool_use should produce tool_call_deltas
assert len(tool_chunks) == 2 # start + delta
assert tool_chunks[0].tool_call_deltas[0].name == "bash"
# Server tool_use should produce info_delta only
assert len(info_chunks) == 1
assert "test" in info_chunks[0].info_delta
def test_streaming_malformed_server_tool_json(self) -> None:
"""Malformed JSON in server tool input should emit fallback info."""
events = [
_anthropic_event(
"content_block_start",
block_type="server_tool_use",
block_id="srvtoolu_1",
block_name="web_search",
index=0,
),
_anthropic_event(
"content_block_delta",
delta_type="input_json_delta",
partial_json="{bad json",
index=0,
),
_anthropic_event("content_block_stop", index=0),
]
chunks = list(self.provider._iter_anthropic_stream(events))
info_chunks = [c for c in chunks if c.info_delta]
assert len(info_chunks) == 1
assert info_chunks[0].info_delta == "[Searching...]"
def test_web_search_result_empty_list(self) -> None:
"""Empty search results list should report 0 results."""
events = [
_anthropic_event(
"content_block_start",
block_type="web_search_tool_result",
index=0,
),
]
events[0].content_block.content = []
chunks = list(self.provider._iter_anthropic_stream(events))
info_chunks = [c for c in chunks if c.info_delta]
assert len(info_chunks) == 1
assert "Found 0 results" in info_chunks[0].info_delta
def test_content_block_stop_for_text_block_no_spurious_info(self) -> None:
"""content_block_stop for a text block should not emit info_delta."""
events = [
_anthropic_event("content_block_start", block_type="text", index=0),
_anthropic_event(
"content_block_delta",
delta_type="text_delta",
text="hello",
index=0,
),
_anthropic_event("content_block_stop", index=0),
]
chunks = list(self.provider._iter_anthropic_stream(events))
info_chunks = [c for c in chunks if c.info_delta]
assert len(info_chunks) == 0
class TestOpenAIWebSearch:
"""Tests for OpenAI native web search with search models."""
def setup_method(self) -> None:
self.provider = OpenAIProvider()
def test_search_model_capability(self) -> None:
"""Search models should have supports_web_search=True."""
caps = self.provider.get_capabilities("gpt-5-search-api")
assert caps.supports_web_search is True
def test_non_search_model_no_web_search(self) -> None:
"""Regular models should not have supports_web_search."""
caps = self.provider.get_capabilities("gpt-5")
assert caps.supports_web_search is False
caps = self.provider.get_capabilities("gpt-5.2")
assert caps.supports_web_search is False
def test_apply_web_search_injects_options(self) -> None:
"""For search models, web_search_options should be added to kwargs."""
caps = self.provider.get_capabilities("gpt-5-search-api")
kwargs: dict[str, Any] = {"model": "gpt-5-search-api"}
tools: list[dict[str, Any]] = [
{"type": "function", "function": {"name": "bash", "description": "Run bash"}},
{"type": "function", "function": {"name": "web_search", "description": "Search"}},
]
result = self.provider._apply_web_search(kwargs, caps, tools)
# web_search_options should be in kwargs
assert "web_search_options" in kwargs
# web_search tool should be removed
assert result is not None
names = [t["function"]["name"] for t in result]
assert "web_search" not in names
assert "bash" in names
def test_apply_web_search_no_op_for_regular_models(self) -> None:
"""For non-search models, no web_search_options, tools unchanged."""
caps = self.provider.get_capabilities("gpt-5")
kwargs: dict[str, Any] = {"model": "gpt-5"}
tools: list[dict[str, Any]] = [
{"type": "function", "function": {"name": "web_search", "description": "Search"}},
]
result = self.provider._apply_web_search(kwargs, caps, tools)
assert "web_search_options" not in kwargs
assert result is tools # Unchanged
def test_apply_web_search_returns_none_when_only_web_search(self) -> None:
"""If web_search was the only tool, return None after removing it."""
caps = self.provider.get_capabilities("gpt-5-search-api")
kwargs: dict[str, Any] = {}
tools: list[dict[str, Any]] = [
{"type": "function", "function": {"name": "web_search", "description": "Search"}},
]
result = self.provider._apply_web_search(kwargs, caps, tools)
assert result is None
def test_format_citations_appends_sources(self) -> None:
"""url_citation annotations should be formatted as footnote sources."""
ann = MagicMock()
ann.type = "url_citation"
citation = MagicMock()
citation.title = "Example Page"
citation.url = "https://example.com"
ann.url_citation = citation
content = "Some search result text."
result = OpenAIProvider._format_citations(content, [ann])
assert "Sources:" in result
assert "[Example Page](https://example.com)" in result
def test_format_citations_deduplicates(self) -> None:
"""Duplicate URLs should not appear twice in sources."""
ann1 = MagicMock()
ann1.type = "url_citation"
ann1.url_citation = MagicMock(title="Page", url="https://example.com")
ann2 = MagicMock()
ann2.type = "url_citation"
ann2.url_citation = MagicMock(title="Page Again", url="https://example.com")
content = "Text."
result = OpenAIProvider._format_citations(content, [ann1, ann2])
assert result.count("example.com") == 1
def test_format_citations_skips_non_url_citation(self) -> None:
"""Non-url_citation annotations should be ignored."""
ann = MagicMock()
ann.type = "something_else"
content = "Text."
result = OpenAIProvider._format_citations(content, [ann])
assert "Sources:" not in result
def test_format_citations_empty_title(self) -> None:
"""Citation with empty title should show plain URL."""
ann = MagicMock()
ann.type = "url_citation"
ann.url_citation = MagicMock(title="", url="https://example.com")
result = OpenAIProvider._format_citations("Text.", [ann])
assert "https://example.com" in result
# Should not have markdown link format when title is empty
assert "[](https://example.com)" not in result
def test_format_citations_none_citation(self) -> None:
"""Citation with None url_citation should be skipped."""
ann = MagicMock()
ann.type = "url_citation"
ann.url_citation = None
result = OpenAIProvider._format_citations("Text.", [ann])
assert "Sources:" not in result
def test_apply_web_search_with_no_tools(self) -> None:
"""Search model with tools=None should still inject web_search_options."""
caps = self.provider.get_capabilities("gpt-5-search-api")
kwargs: dict[str, Any] = {}
result = self.provider._apply_web_search(kwargs, caps, None)
assert "web_search_options" in kwargs
assert result is None
def test_streaming_creates_with_web_search_options(self) -> None:
"""Streaming with a search model should pass web_search_options."""
client = MagicMock()
client.chat.completions.create.return_value = iter(
[
_openai_stream_chunk(content="Result text"),
]
)
list(
self.provider.create_streaming(
client=client,
model="gpt-5-search-api",
messages=[{"role": "user", "content": "search something"}],
tools=[
{
"type": "function",
"function": {"name": "web_search", "description": "Search"},
},
],
)
)
call_kwargs = client.chat.completions.create.call_args[1]
assert "web_search_options" in call_kwargs
# web_search tool should not be in the tools
assert "tools" not in call_kwargs or not any(
t.get("function", {}).get("name") == "web_search" for t in call_kwargs.get("tools", [])
)
def test_completion_with_annotations(self) -> None:
"""Non-streaming completion with search model should format citations."""
ann = MagicMock()
ann.type = "url_citation"
ann.url_citation = MagicMock(title="Test", url="https://test.com")
msg = MagicMock()
msg.content = "Found information."
msg.annotations = [ann]
msg.tool_calls = None
choice = MagicMock()
choice.message = msg
choice.finish_reason = "stop"
response = MagicMock()
response.choices = [choice]
response.usage.prompt_tokens = 50
response.usage.completion_tokens = 20
response.usage.total_tokens = 70
client = MagicMock()
client.chat.completions.create.return_value = response
result = self.provider.create_completion(
client=client,
model="gpt-5-search-api",
messages=[{"role": "user", "content": "search test"}],
)
assert "Found information." in result.content
assert "Sources:" in result.content
assert "[Test](https://test.com)" in result.content
def test_streaming_emits_citations_as_info_delta(self) -> None:
"""Streaming with search model should emit citations as final info_delta."""
ann = MagicMock()
ann.type = "url_citation"
ann.url_citation = MagicMock(title="Result", url="https://example.com")
# Content chunk, then a chunk with annotation, then finish
content_chunk = _openai_stream_chunk(content="Search result text.")
content_chunk.choices[0].delta.annotations = None
ann_chunk = _openai_stream_chunk(content=None)
ann_chunk.choices[0].delta.annotations = [ann]
finish_chunk = _openai_stream_chunk(finish_reason="stop")
finish_chunk.choices[0].delta.annotations = None
client = MagicMock()
client.chat.completions.create.return_value = iter([content_chunk, ann_chunk, finish_chunk])
chunks = list(
self.provider.create_streaming(
client=client,
model="gpt-5-search-api",
messages=[{"role": "user", "content": "search test"}],
)
)
info_chunks = [c for c in chunks if c.info_delta]
assert len(info_chunks) == 1
assert "Sources:" in info_chunks[0].info_delta
assert "[Result](https://example.com)" in info_chunks[0].info_delta
class TestTavilyFallback:
"""Tests for Tavily fallback when providers don't support native search."""
def test_local_model_no_web_search(self) -> None:
"""Local/vLLM models should not have supports_web_search."""
provider = OpenAIProvider()
caps = provider.get_capabilities("my-local-model")
assert caps.supports_web_search is False
def test_web_search_tool_preserved_for_local_models(self) -> None:
"""For local models, web_search function tool stays in the tools list."""
provider = OpenAIProvider()
caps = provider.get_capabilities("llama-3-70b")
kwargs: dict[str, Any] = {}
tools = [
{"type": "function", "function": {"name": "web_search", "description": "Search"}},
]
result = provider._apply_web_search(kwargs, caps, tools)
assert result is tools
assert "web_search_options" not in kwargs
# ===========================================================================
# Anthropic provider_blocks / _provider_content round-trip tests
# ===========================================================================
class TestAnthropicProviderBlocks:
"""Tests for multi-turn web search content preservation."""
def setup_method(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
self.provider = AnthropicProvider()
def test_convert_messages_uses_provider_content(self) -> None:
"""Assistant message with _provider_content passes through verbatim."""
provider_content = [
{"type": "text", "text": "Here is what I found."},
{
"type": "server_tool_use",
"id": "stu_123",
"name": "web_search",
"input": {"query": "turnstone bird"},
},
{
"type": "web_search_tool_result",
"tool_use_id": "stu_123",
"content": [{"type": "web_search_result", "url": "https://example.com"}],
"encrypted_content": "abc123encrypted",
"encrypted_index": "idx456encrypted",
},
]
messages = [
{"role": "user", "content": "Search for turnstone bird"},
{
"role": "assistant",
"content": "Here is what I found.",
"_provider_content": provider_content,
},
{"role": "user", "content": "Tell me more"},
]
_, converted = self.provider._convert_messages(messages)
# The assistant message should use provider_content verbatim
assistant_msg = converted[1]
assert assistant_msg["role"] == "assistant"
assert assistant_msg["content"] is provider_content
assert assistant_msg["content"][2]["encrypted_content"] == "abc123encrypted"
def test_convert_messages_without_provider_content_unchanged(self) -> None:
"""Assistant message without _provider_content uses normal reconstruction."""
messages = [
{"role": "user", "content": "Hello"},
{"role": "assistant", "content": "Hi there"},
]
_, converted = self.provider._convert_messages(messages)
assistant_msg = converted[1]
assert assistant_msg["role"] == "assistant"
assert assistant_msg["content"] == [{"type": "text", "text": "Hi there"}]
def test_block_to_dict_with_model_dump(self) -> None:
"""_block_to_dict uses model_dump(exclude_none=True) when available."""
from turnstone.core.providers._anthropic import _block_to_dict
class FakeBlock:
def model_dump(self, **kwargs: Any) -> dict[str, Any]:
d = {"type": "text", "text": "hello", "extra": True, "nullable": None}
if kwargs.get("exclude_none"):
return {k: v for k, v in d.items() if v is not None}
return d
result = _block_to_dict(FakeBlock())
assert result == {"type": "text", "text": "hello", "extra": True}
assert "nullable" not in result
def test_block_to_dict_fallback(self) -> None:
"""_block_to_dict extracts known attributes as fallback."""
from turnstone.core.providers._anthropic import _block_to_dict
class FakeBlock:
type = "web_search_tool_result"
content = [{"type": "web_search_result"}]
encrypted_content = "enc123"
encrypted_index = "idx456"
result = _block_to_dict(FakeBlock())
assert result["type"] == "web_search_tool_result"
assert result["encrypted_content"] == "enc123"
assert result["encrypted_index"] == "idx456"
def test_streaming_captures_provider_blocks(self) -> None:
"""Streaming events produce provider_blocks on the final chunk."""
from turnstone.core.providers._anthropic import AnthropicProvider
provider = AnthropicProvider()
# Build mock stream events
events = []
# Text block
text_block = MagicMock()
text_block.type = "text"
text_block.text = ""
text_block.model_dump.return_value = {"type": "text", "text": ""}
events.append(MagicMock(type="content_block_start", index=0, content_block=text_block))
events.append(
MagicMock(
type="content_block_delta",
index=0,
delta=MagicMock(type="text_delta", text="Hello"),
)
)
events.append(MagicMock(type="content_block_stop", index=0))
# Server tool use block
stu_block = MagicMock()
stu_block.type = "server_tool_use"
stu_block.name = "web_search"
stu_block.model_dump.return_value = {
"type": "server_tool_use",
"id": "stu_1",
"name": "web_search",
"input": {},
}
events.append(MagicMock(type="content_block_start", index=1, content_block=stu_block))
events.append(
MagicMock(
type="content_block_delta",
index=1,
delta=MagicMock(type="input_json_delta", partial_json='{"query":"test"}'),
)
)
events.append(MagicMock(type="content_block_stop", index=1))
# Web search tool result block
wsr_block = MagicMock()
wsr_block.type = "web_search_tool_result"
wsr_block.model_dump.return_value = {
"type": "web_search_tool_result",
"tool_use_id": "stu_1",
"content": [{"type": "web_search_result", "url": "https://example.com"}],
"encrypted_content": "enc_data",
"encrypted_index": "idx_data",
}
# Make content iterable for count
fake_result = MagicMock()
fake_result.type = "web_search_result"
wsr_block.content = [fake_result]
events.append(MagicMock(type="content_block_start", index=2, content_block=wsr_block))
events.append(MagicMock(type="content_block_stop", index=2))
# Message delta with stop
msg_delta = MagicMock(type="message_delta")
msg_delta.delta = MagicMock(stop_reason="end_turn")
msg_delta.usage = MagicMock(input_tokens=100, output_tokens=50)
events.append(msg_delta)
chunks = list(provider._iter_anthropic_stream(iter(events)))
# Find the final chunk with provider_blocks
final_chunks = [c for c in chunks if c.provider_blocks]
assert len(final_chunks) == 1
blocks = final_chunks[0].provider_blocks
assert len(blocks) == 3
assert blocks[0]["type"] == "text"
assert blocks[1]["type"] == "server_tool_use"
assert blocks[1]["input"] == {"query": "test"} # parsed from accumulated JSON
assert blocks[2]["type"] == "web_search_tool_result"
assert blocks[2]["encrypted_content"] == "enc_data"
# ---------------------------------------------------------------------------
# Tool search tests
# ---------------------------------------------------------------------------
class TestAnthropicToolSearch:
"""Test Anthropic provider tool search injection."""
@pytest.fixture()
def provider(self):
from turnstone.core.providers._anthropic import AnthropicProvider
return AnthropicProvider()
def test_tool_search_capability_flag(self, provider):
caps = provider.get_capabilities("claude-opus-4-6-20260101")
assert caps.supports_tool_search is True
def test_tool_search_not_supported_on_haiku(self, provider):
caps = provider.get_capabilities("claude-haiku-4-5-20251001")
assert caps.supports_tool_search is False
def test_inject_tool_search_marks_deferred(self, provider):
caps = provider.get_capabilities("claude-opus-4-6-20260101")
tools = [
{"name": "bash", "description": "Run commands", "input_schema": {}},
{
"name": "mcp__github__create_issue",
"description": "Create issue",
"input_schema": {},
},
]
deferred = frozenset(["mcp__github__create_issue"])
result = provider._inject_tool_search(tools, caps, deferred)
# bash should not be deferred
assert result[0].get("defer_loading") is None or result[0].get("defer_loading") is False
# MCP tool should be deferred
assert result[1]["defer_loading"] is True
# Search tool should be appended
assert result[-1]["type"] == "tool_search_tool_bm25_20251119"
assert result[-1]["name"] == "tool_search"
def test_inject_tool_search_no_op_without_deferred(self, provider):
caps = provider.get_capabilities("claude-opus-4-6-20260101")
tools = [{"name": "bash", "description": "Run commands", "input_schema": {}}]
result = provider._inject_tool_search(tools, caps, None)
assert result == tools
def test_inject_tool_search_no_op_on_unsupported_model(self, provider):
caps = provider.get_capabilities("claude-haiku-4-5-20251001")
tools = [{"name": "bash", "description": "Run commands", "input_schema": {}}]
deferred = frozenset(["some_tool"])
result = provider._inject_tool_search(tools, caps, deferred)
assert result == tools
class TestOpenAIToolSearch:
"""Test OpenAI provider tool search injection."""
@pytest.fixture()
def provider(self):
return OpenAIProvider()
def test_tool_search_capability_on_gpt54(self, provider):
caps = provider.get_capabilities("gpt-5.4")
assert caps.supports_tool_search is True
def test_tool_search_not_supported_on_gpt5(self, provider):
caps = provider.get_capabilities("gpt-5")
assert caps.supports_tool_search is False
def test_apply_tool_search_marks_deferred(self, provider):
caps = provider.get_capabilities("gpt-5.4")
tools = [
{"type": "function", "function": {"name": "bash", "description": "Run commands"}},
{
"type": "function",
"function": {"name": "mcp__slack__send", "description": "Send message"},
},
]
deferred = frozenset(["mcp__slack__send"])
result = provider._apply_tool_search(caps, tools, deferred)
assert result is not None
# bash not deferred
assert result[0].get("defer_loading") is None or result[0].get("defer_loading") is False
# slack tool deferred
assert result[1]["defer_loading"] is True
def test_apply_tool_search_no_op_without_deferred(self, provider):
caps = provider.get_capabilities("gpt-5.4")
tools = [
{"type": "function", "function": {"name": "bash", "description": "Run commands"}},
]
result = provider._apply_tool_search(caps, tools, None)
assert result == tools
def test_apply_tool_search_no_op_on_unsupported_model(self, provider):
caps = provider.get_capabilities("gpt-5")
tools = [
{"type": "function", "function": {"name": "bash", "description": "Run commands"}},
]
deferred = frozenset(["some_tool"])
result = provider._apply_tool_search(caps, tools, deferred)
assert result == tools
class TestModelCapabilitiesToolSearch:
"""Test supports_tool_search defaults and values."""
def test_default_is_false(self):
from turnstone.core.providers._protocol import ModelCapabilities
caps = ModelCapabilities()
assert caps.supports_tool_search is False
# ---------------------------------------------------------------------------
# Vision support
# ---------------------------------------------------------------------------
class TestVisionCapabilities:
"""Test supports_vision flag across providers."""
def test_default_is_false(self) -> None:
from turnstone.core.providers._protocol import ModelCapabilities
caps = ModelCapabilities()
assert caps.supports_vision is False
def test_openai_commercial_supports_vision(self) -> None:
provider = OpenAIProvider()
for model in ("gpt-5", "gpt-5-mini", "gpt-5.4", "o3", "o4-mini"):
caps = provider.get_capabilities(model)
assert caps.supports_vision is True, f"{model} should support vision"
def test_openai_default_no_vision(self) -> None:
"""Unknown models (local servers) default to no vision."""
provider = OpenAIProvider()
caps = provider.get_capabilities("some-local-model")
assert caps.supports_vision is False
def test_anthropic_supports_vision(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
provider = AnthropicProvider()
for model in ("claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5"):
caps = provider.get_capabilities(model)
assert caps.supports_vision is True, f"{model} should support vision"
def test_anthropic_default_supports_vision(self) -> None:
"""Anthropic default (unknown Claude model) supports vision."""
from turnstone.core.providers._anthropic import AnthropicProvider
provider = AnthropicProvider()
caps = provider.get_capabilities("claude-unknown-9")
assert caps.supports_vision is True
class TestAnthropicVisionConversion:
"""Test image content conversion in _convert_messages."""
def setup_method(self) -> None:
from turnstone.core.providers._anthropic import AnthropicProvider
self.provider = AnthropicProvider()
def test_tool_result_with_image_content(self) -> None:
"""Tool result with list content converts image_url to Anthropic image."""
messages = [
{"role": "user", "content": "Read this image"},
{
"role": "assistant",
"content": "",
"tool_calls": [
{
"id": "call_1",
"function": {"name": "read_file", "arguments": '{"path": "img.png"}'},
}
],
},
{
"role": "tool",
"tool_call_id": "call_1",
"content": [
{"type": "text", "text": "Image file: img.png (1024 bytes)"},
{
"type": "image_url",
"image_url": {"url": "data:image/png;base64,iVBORw0KGgo="},
},
],
},
]
_, converted = self.provider._convert_messages(messages)
# Tool result should be in a user message
tool_user_msg = converted[2]
assert tool_user_msg["role"] == "user"
tool_result = tool_user_msg["content"][0]
assert tool_result["type"] == "tool_result"
assert tool_result["tool_use_id"] == "call_1"
# Content should be a list with converted image block
content = tool_result["content"]
assert isinstance(content, list)
assert content[0] == {"type": "text", "text": "Image file: img.png (1024 bytes)"}
assert content[1]["type"] == "image"
assert content[1]["source"]["type"] == "base64"
assert content[1]["source"]["media_type"] == "image/png"
assert content[1]["source"]["data"] == "iVBORw0KGgo="
def test_tool_result_with_string_content_unchanged(self) -> None:
"""Tool result with plain string content is unchanged."""
messages = [
{"role": "user", "content": "Read file"},
{
"role": "assistant",
"content": "",
"tool_calls": [
{
"id": "call_2",
"function": {"name": "read_file", "arguments": '{"path": "f.py"}'},
}
],
},
{
"role": "tool",
"tool_call_id": "call_2",
"content": " 1\tprint('hello')",
},
]
_, converted = self.provider._convert_messages(messages)
tool_result = converted[2]["content"][0]
assert tool_result["content"] == " 1\tprint('hello')"
def test_convert_content_parts_static_method(self) -> None:
"""_convert_content_parts handles both image_url and text."""
from turnstone.core.providers._anthropic import AnthropicProvider
parts = [
{"type": "text", "text": "description"},
{
"type": "image_url",
"image_url": {"url": "data:image/jpeg;base64,/9j/4AAQ"},
},
]
result = AnthropicProvider._convert_content_parts(parts)
assert result[0] == {"type": "text", "text": "description"}
assert result[1]["type"] == "image"
assert result[1]["source"]["media_type"] == "image/jpeg"
assert result[1]["source"]["data"] == "/9j/4AAQ"