Resolves https://linear.app/arcadedev/issue/TOO-590/add-resources-support-to-server-framework <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Medium Risk** > Adds new resource registration/reading semantics (including URI templates and duplicate/multiple-match policies) and changes JSON Schema generation for tool I/O, which may affect MCP client compatibility and runtime behavior across servers. > > **Overview** > **Adds first-class MCP Resources support across `arcade-mcp-server`.** `MCPApp` can now register resources at build time via `add_resource`/`@resource` plus convenience `add_text_resource` and `add_file_resource`, and passes these through to `MCPServer` for startup loading (including `ResourceTemplate` URIs with `{param}` and `{param*}` matching). > > **Extends `ResourceManager` behavior.** Resource reads now coerce handler return types (including raw `bytes` to base64 `BlobResourceContents`), support template matching with overlap/multiple-match detection, and introduce configurable duplicate handling policies. > > **Improves tool schema + MCP Apps linking.** Tool input/output JSON Schema generation is refactored to recursively expand nested `json` schemas and ensure `outputSchema` is always an object (wrapping non-object returns in a `result` property); `MCPApp` also supports attaching arbitrary tool `_meta` extensions (e.g., `ui.resourceUri`) applied at server start. > > Adds two new example servers (`resources`, `tools_with_output_schema`) and broad test coverage for resource templates, static/file resources, meta extensions, and schema wrapping/recursion. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit e785bee79d74110727519b00b81dcad6e9b74212. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
662 lines
23 KiB
Python
662 lines
23 KiB
Python
"""Tests for MCP content conversion utilities."""
|
|
|
|
import base64
|
|
import json
|
|
from typing import Annotated
|
|
|
|
import pytest
|
|
from arcade_core.catalog import MaterializedTool, ToolMeta, create_func_models
|
|
from arcade_core.schema import (
|
|
InputParameter,
|
|
ToolDefinition,
|
|
ToolInput,
|
|
ToolkitDefinition,
|
|
ToolOutput,
|
|
ToolRequirements,
|
|
ValueSchema,
|
|
)
|
|
from arcade_mcp_server import tool
|
|
from arcade_mcp_server.convert import (
|
|
convert_content_to_structured_content,
|
|
convert_to_mcp_content,
|
|
create_mcp_tool,
|
|
)
|
|
|
|
# Small PNG header (1x1 transparent pixel) used for byte-image param tests
|
|
PNG_BYTES = b"\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x01\x00\x00\x00\x01\x08\x02\x00\x00\x00\x90wS\xde"
|
|
|
|
|
|
class TestConvertToMCPContent:
|
|
"""Test convert_to_mcp_content function."""
|
|
|
|
@pytest.mark.parametrize(
|
|
"value, expect_empty, decode_b64, expect_text",
|
|
[
|
|
("Hello, world!", False, False, "Hello, world!"),
|
|
(42, False, False, "42"),
|
|
(3.14159, False, False, "3.14159"),
|
|
(1234567890, False, False, "1234567890"),
|
|
(True, False, False, "True"),
|
|
(False, False, False, "False"),
|
|
("single", False, False, None), # covers list wrapping behavior
|
|
("Hello\nWorld\t🌍", False, False, "Hello\nWorld\t🌍"),
|
|
("", False, False, ""),
|
|
(b"Hello, binary world!", False, True, None),
|
|
(PNG_BYTES, False, True, None),
|
|
(None, True, False, None),
|
|
({}, False, False, "{}"),
|
|
([], False, False, "[]"),
|
|
],
|
|
)
|
|
def test_convert_primitives_and_bytes(self, value, expect_empty, decode_b64, expect_text):
|
|
"""Parameterize primitives/bytes/empties/special cases."""
|
|
result = convert_to_mcp_content(value)
|
|
|
|
if expect_empty:
|
|
assert result == []
|
|
return
|
|
|
|
assert isinstance(result, list)
|
|
assert len(result) == 1
|
|
assert result[0].type == "text"
|
|
text = result[0].text
|
|
|
|
if decode_b64:
|
|
decoded = base64.b64decode(text)
|
|
assert decoded == value
|
|
|
|
if expect_text is not None:
|
|
assert text == expect_text
|
|
|
|
@pytest.mark.parametrize(
|
|
"data",
|
|
[
|
|
{"name": "Alice", "age": 30, "active": True},
|
|
[1, 2, "three", {"four": 4}],
|
|
{
|
|
"users": [
|
|
{"id": 1, "name": "Alice", "tags": ["admin", "user"]},
|
|
{"id": 2, "name": "Bob", "tags": ["user"]},
|
|
],
|
|
"metadata": {"version": "1.0", "count": 2},
|
|
},
|
|
],
|
|
)
|
|
def test_convert_json_roundtrip(self, data):
|
|
"""Parameterize JSON-serializable structures and assert round-trip equality."""
|
|
result = convert_to_mcp_content(data)
|
|
assert len(result) == 1
|
|
assert result[0].type == "text"
|
|
|
|
parsed = json.loads(result[0].text)
|
|
assert parsed == data
|
|
|
|
def test_convert_circular_reference(self):
|
|
"""Test handling circular references in objects."""
|
|
# Create circular reference
|
|
obj = {"a": 1}
|
|
obj["self"] = obj
|
|
|
|
# Should handle gracefully (implementation dependent)
|
|
# Most JSON encoders will raise an error
|
|
with pytest.raises(Exception):
|
|
convert_to_mcp_content(obj)
|
|
|
|
def test_convert_custom_objects(self):
|
|
"""Test converting custom objects."""
|
|
|
|
class CustomObject:
|
|
def __str__(self):
|
|
return "CustomObject instance"
|
|
|
|
def __repr__(self):
|
|
return "<CustomObject>"
|
|
|
|
obj = CustomObject()
|
|
result = convert_to_mcp_content(obj)
|
|
|
|
# Should use string representation
|
|
assert "CustomObject" in result[0].text
|
|
|
|
|
|
class TestCreateMCPTool:
|
|
"""Test create_mcp_tool function."""
|
|
|
|
@pytest.fixture
|
|
def sample_tool_def(self):
|
|
"""Create a sample tool definition."""
|
|
return ToolDefinition(
|
|
name="calculate",
|
|
fully_qualified_name="MathToolkit.calculate",
|
|
description="Perform a calculation",
|
|
toolkit=ToolkitDefinition(
|
|
name="MathToolkit",
|
|
description="Math tools",
|
|
version="1.0.0",
|
|
),
|
|
input=ToolInput(
|
|
parameters=[
|
|
InputParameter(
|
|
name="expression",
|
|
required=True,
|
|
description="Math expression to evaluate",
|
|
value_schema=ValueSchema(val_type="string"),
|
|
),
|
|
InputParameter(
|
|
name="precision",
|
|
required=False,
|
|
description="Decimal precision",
|
|
value_schema=ValueSchema(val_type="integer"),
|
|
),
|
|
]
|
|
),
|
|
output=ToolOutput(
|
|
description="Calculation result",
|
|
value_schema=ValueSchema(val_type="number"),
|
|
),
|
|
requirements=ToolRequirements(),
|
|
)
|
|
|
|
@pytest.fixture
|
|
def materialized_tool(self, sample_tool_def):
|
|
"""Create a materialized tool."""
|
|
|
|
@tool
|
|
def calculate(
|
|
expression: Annotated[str, "Math expression"] = "1 + 1",
|
|
precision: Annotated[int, "Decimal precision"] = 2,
|
|
) -> Annotated[float, "Calculation result"]:
|
|
"""Perform a calculation."""
|
|
return round(eval(expression), precision) # noqa: S307
|
|
|
|
input_model, output_model = create_func_models(calculate)
|
|
meta = ToolMeta(module=calculate.__module__, toolkit=sample_tool_def.toolkit.name)
|
|
return MaterializedTool(
|
|
tool=calculate,
|
|
definition=sample_tool_def,
|
|
meta=meta,
|
|
input_model=input_model,
|
|
output_model=output_model,
|
|
)
|
|
|
|
def test_create_basic_tool(self, materialized_tool):
|
|
"""Test creating basic MCP tool."""
|
|
mcp_tool = create_mcp_tool(materialized_tool)
|
|
|
|
assert mcp_tool.name == "MathToolkit_calculate"
|
|
# ensure input schema present
|
|
assert isinstance(mcp_tool.inputSchema, dict)
|
|
|
|
def test_tool_input_schema(self, materialized_tool):
|
|
"""Test tool input schema generation."""
|
|
mcp_tool = create_mcp_tool(materialized_tool)
|
|
schema = mcp_tool.inputSchema
|
|
|
|
assert schema["type"] == "object"
|
|
assert "properties" in schema
|
|
assert "expression" in schema["properties"]
|
|
assert "precision" in schema["properties"]
|
|
|
|
# Required may or may not be present depending on defaults
|
|
if "required" in schema:
|
|
assert "expression" in schema["required"]
|
|
|
|
def _create_tool_def_with_type(self, param_type: str) -> ToolDefinition:
|
|
return ToolDefinition(
|
|
name="test",
|
|
fully_qualified_name="Test.test",
|
|
description="Test",
|
|
toolkit=ToolkitDefinition(name="Test"),
|
|
input=ToolInput(
|
|
parameters=[
|
|
InputParameter(
|
|
name="param",
|
|
required=True,
|
|
description="Test param",
|
|
value_schema=ValueSchema(val_type=param_type),
|
|
)
|
|
]
|
|
),
|
|
output=ToolOutput(),
|
|
requirements=ToolRequirements(),
|
|
)
|
|
|
|
@pytest.mark.parametrize(
|
|
"arcade_type,json_type",
|
|
[
|
|
("string", "string"),
|
|
("integer", "integer"),
|
|
("number", "number"),
|
|
("boolean", "boolean"),
|
|
("array", "array"),
|
|
("json", "object"),
|
|
],
|
|
)
|
|
def test_parameter_types(self, arcade_type, json_type):
|
|
"""Test different parameter type conversions (parameterized)."""
|
|
tool_def = self._create_tool_def_with_type(arcade_type)
|
|
|
|
@tool
|
|
def f(param: Annotated[str, "Test param"]):
|
|
return param
|
|
|
|
input_model, output_model = create_func_models(f)
|
|
meta = ToolMeta(module=f.__module__, toolkit=tool_def.toolkit.name)
|
|
mat_tool = MaterializedTool(
|
|
tool=f,
|
|
definition=tool_def,
|
|
meta=meta,
|
|
input_model=input_model,
|
|
output_model=output_model,
|
|
)
|
|
|
|
mcp_tool = create_mcp_tool(mat_tool)
|
|
param_schema = mcp_tool.inputSchema["properties"]["param"]
|
|
assert param_schema["type"] == json_type
|
|
|
|
def test_array_parameter(self):
|
|
"""Test array parameter with inner type."""
|
|
tool_def = ToolDefinition(
|
|
name="test",
|
|
fully_qualified_name="Test.test",
|
|
description="Test",
|
|
toolkit=ToolkitDefinition(name="Test"),
|
|
input=ToolInput(
|
|
parameters=[
|
|
InputParameter(
|
|
name="items",
|
|
required=True,
|
|
description="List of items",
|
|
value_schema=ValueSchema(
|
|
val_type="array",
|
|
inner_val_type="string",
|
|
),
|
|
)
|
|
]
|
|
),
|
|
output=ToolOutput(),
|
|
requirements=ToolRequirements(),
|
|
)
|
|
|
|
@tool
|
|
def f(items: Annotated[list[str], "List of items"]):
|
|
return items
|
|
|
|
input_model, output_model = create_func_models(f)
|
|
meta = ToolMeta(module=f.__module__, toolkit=tool_def.toolkit.name)
|
|
mat_tool = MaterializedTool(
|
|
tool=f,
|
|
definition=tool_def,
|
|
meta=meta,
|
|
input_model=input_model,
|
|
output_model=output_model,
|
|
)
|
|
|
|
mcp_tool = create_mcp_tool(mat_tool)
|
|
param_schema = mcp_tool.inputSchema["properties"]["items"]
|
|
|
|
assert param_schema["type"] == "array"
|
|
assert param_schema["items"]["type"] == "string"
|
|
|
|
def test_enum_parameter(self):
|
|
"""Test enum parameter values."""
|
|
tool_def = ToolDefinition(
|
|
name="test",
|
|
fully_qualified_name="Test.test",
|
|
description="Test",
|
|
toolkit=ToolkitDefinition(name="Test"),
|
|
input=ToolInput(
|
|
parameters=[
|
|
InputParameter(
|
|
name="color",
|
|
required=True,
|
|
description="Color choice",
|
|
value_schema=ValueSchema(
|
|
val_type="string",
|
|
enum=["red", "green", "blue"],
|
|
),
|
|
)
|
|
]
|
|
),
|
|
output=ToolOutput(),
|
|
requirements=ToolRequirements(),
|
|
)
|
|
|
|
@tool
|
|
def f(color: Annotated[str, "Color choice"]):
|
|
return color
|
|
|
|
input_model, output_model = create_func_models(f)
|
|
meta = ToolMeta(module=f.__module__, toolkit=tool_def.toolkit.name)
|
|
mat_tool = MaterializedTool(
|
|
tool=f,
|
|
definition=tool_def,
|
|
meta=meta,
|
|
input_model=input_model,
|
|
output_model=output_model,
|
|
)
|
|
|
|
mcp_tool = create_mcp_tool(mat_tool)
|
|
param_schema = mcp_tool.inputSchema["properties"]["color"]
|
|
|
|
assert param_schema["type"] == "string"
|
|
assert param_schema["enum"] == ["red", "green", "blue"]
|
|
|
|
def test_enum_on_json_object_parameter(self):
|
|
"""Test that enum is preserved on json/object type parameters."""
|
|
tool_def = ToolDefinition(
|
|
name="test",
|
|
fully_qualified_name="Test.test",
|
|
description="Test",
|
|
toolkit=ToolkitDefinition(name="Test"),
|
|
input=ToolInput(
|
|
parameters=[
|
|
InputParameter(
|
|
name="config",
|
|
required=True,
|
|
description="Config choice",
|
|
value_schema=ValueSchema(
|
|
val_type="json",
|
|
enum=["preset_a", "preset_b"],
|
|
),
|
|
)
|
|
]
|
|
),
|
|
output=ToolOutput(),
|
|
requirements=ToolRequirements(),
|
|
)
|
|
|
|
@tool
|
|
def f(config: Annotated[str, "Config choice"]):
|
|
return config
|
|
|
|
input_model, output_model = create_func_models(f)
|
|
meta = ToolMeta(module=f.__module__, toolkit=tool_def.toolkit.name)
|
|
mat_tool = MaterializedTool(
|
|
tool=f,
|
|
definition=tool_def,
|
|
meta=meta,
|
|
input_model=input_model,
|
|
output_model=output_model,
|
|
)
|
|
|
|
mcp_tool = create_mcp_tool(mat_tool)
|
|
param_schema = mcp_tool.inputSchema["properties"]["config"]
|
|
|
|
assert param_schema["type"] == "object"
|
|
assert param_schema["enum"] == ["preset_a", "preset_b"]
|
|
|
|
def test_no_parameters(self):
|
|
"""Test tool with no parameters."""
|
|
tool_def = ToolDefinition(
|
|
name="test",
|
|
fully_qualified_name="Test.test",
|
|
description="Test",
|
|
toolkit=ToolkitDefinition(name="Test"),
|
|
input=ToolInput(parameters=[]),
|
|
output=ToolOutput(),
|
|
requirements=ToolRequirements(),
|
|
)
|
|
|
|
@tool
|
|
def f() -> Annotated[str, "result"]:
|
|
return "result"
|
|
|
|
input_model, output_model = create_func_models(f)
|
|
meta = ToolMeta(module=f.__module__, toolkit=tool_def.toolkit.name)
|
|
mat_tool = MaterializedTool(
|
|
tool=f,
|
|
definition=tool_def,
|
|
meta=meta,
|
|
input_model=input_model,
|
|
output_model=output_model,
|
|
)
|
|
|
|
mcp_tool = create_mcp_tool(mat_tool)
|
|
schema = mcp_tool.inputSchema
|
|
|
|
assert schema["type"] == "object"
|
|
assert schema["properties"] == {}
|
|
assert schema.get("required", []) in ([], None)
|
|
|
|
def test_output_schema_included(self, materialized_tool):
|
|
"""Test that output schema is included when definition has one."""
|
|
mcp_tool = create_mcp_tool(materialized_tool)
|
|
|
|
# The fixture's output has value_schema=ValueSchema(val_type="number").
|
|
# Per MCP spec, outputSchema.type must be "object"; non-object return
|
|
# types are wrapped in {"result": <inner>}.
|
|
assert mcp_tool.outputSchema is not None
|
|
assert mcp_tool.outputSchema["type"] == "object"
|
|
assert mcp_tool.outputSchema["properties"]["result"]["type"] == "number"
|
|
|
|
def _make_tool_with_output(self, value_schema: ValueSchema):
|
|
"""Helper to create a materialized tool with a given output ValueSchema."""
|
|
tool_def = ToolDefinition(
|
|
name="test",
|
|
fully_qualified_name="Test.test",
|
|
description="Test",
|
|
toolkit=ToolkitDefinition(name="Test"),
|
|
input=ToolInput(parameters=[]),
|
|
output=ToolOutput(
|
|
description="Test output",
|
|
value_schema=value_schema,
|
|
),
|
|
requirements=ToolRequirements(),
|
|
)
|
|
|
|
@tool
|
|
def f() -> Annotated[str, "result"]:
|
|
return "result"
|
|
|
|
input_model, output_model = create_func_models(f)
|
|
meta = ToolMeta(module=f.__module__, toolkit=tool_def.toolkit.name)
|
|
mat_tool = MaterializedTool(
|
|
tool=f,
|
|
definition=tool_def,
|
|
meta=meta,
|
|
input_model=input_model,
|
|
output_model=output_model,
|
|
)
|
|
return create_mcp_tool(mat_tool)
|
|
|
|
@pytest.mark.parametrize(
|
|
"val_type",
|
|
["string", "integer", "number", "boolean"],
|
|
)
|
|
def test_output_schema_primitive_types_wrapped_as_object(self, val_type):
|
|
"""Primitive output types must be wrapped so outputSchema.type == 'object'."""
|
|
mcp_tool = self._make_tool_with_output(ValueSchema(val_type=val_type))
|
|
schema = mcp_tool.outputSchema
|
|
|
|
assert schema is not None
|
|
assert schema["type"] == "object"
|
|
expected_json_type = {
|
|
"string": "string",
|
|
"integer": "integer",
|
|
"number": "number",
|
|
"boolean": "boolean",
|
|
}[val_type]
|
|
assert schema["properties"]["result"]["type"] == expected_json_type
|
|
|
|
def test_output_schema_array_type_wrapped_as_object(self):
|
|
"""Array output type must be wrapped so outputSchema.type == 'object'."""
|
|
mcp_tool = self._make_tool_with_output(
|
|
ValueSchema(val_type="array", inner_val_type="string")
|
|
)
|
|
schema = mcp_tool.outputSchema
|
|
|
|
assert schema is not None
|
|
assert schema["type"] == "object"
|
|
result_prop = schema["properties"]["result"]
|
|
assert result_prop["type"] == "array"
|
|
assert result_prop["items"]["type"] == "string"
|
|
|
|
def test_output_schema_enum_preserved_in_wrapper(self):
|
|
"""Enum values must be preserved inside the wrapped result property."""
|
|
mcp_tool = self._make_tool_with_output(
|
|
ValueSchema(val_type="string", enum=["a", "b", "c"])
|
|
)
|
|
schema = mcp_tool.outputSchema
|
|
|
|
assert schema is not None
|
|
assert schema["type"] == "object"
|
|
assert schema["properties"]["result"]["enum"] == ["a", "b", "c"]
|
|
|
|
def test_output_schema_json_type_not_wrapped(self):
|
|
"""Object (json) output types are already type 'object', not wrapped."""
|
|
mcp_tool = self._make_tool_with_output(
|
|
ValueSchema(
|
|
val_type="json",
|
|
properties={
|
|
"name": ValueSchema(val_type="string", description="A name"),
|
|
"count": ValueSchema(val_type="integer"),
|
|
},
|
|
)
|
|
)
|
|
schema = mcp_tool.outputSchema
|
|
|
|
assert schema is not None
|
|
assert schema["type"] == "object"
|
|
assert "result" not in schema.get("properties", {})
|
|
assert schema["properties"]["name"]["type"] == "string"
|
|
assert schema["properties"]["name"]["description"] == "A name"
|
|
assert schema["properties"]["count"]["type"] == "integer"
|
|
|
|
def test_output_schema_json_type_without_properties(self):
|
|
"""Object (json) output type with no properties is a bare object schema."""
|
|
mcp_tool = self._make_tool_with_output(ValueSchema(val_type="json"))
|
|
schema = mcp_tool.outputSchema
|
|
|
|
assert schema is not None
|
|
assert schema["type"] == "object"
|
|
assert "properties" not in schema
|
|
|
|
def test_output_schema_nested_object(self):
|
|
"""Test that nested object properties are recursively expanded in outputSchema."""
|
|
nested_props = {
|
|
"id": ValueSchema(val_type="integer"),
|
|
"name": ValueSchema(val_type="string"),
|
|
}
|
|
outer_props = {
|
|
"data": ValueSchema(val_type="json", properties=nested_props),
|
|
"status": ValueSchema(val_type="string"),
|
|
}
|
|
mcp_tool = self._make_tool_with_output(
|
|
ValueSchema(val_type="json", properties=outer_props)
|
|
)
|
|
output_schema = mcp_tool.outputSchema
|
|
|
|
assert output_schema is not None
|
|
assert output_schema["type"] == "object"
|
|
assert "data" in output_schema["properties"]
|
|
data_schema = output_schema["properties"]["data"]
|
|
assert data_schema["type"] == "object"
|
|
assert "properties" in data_schema
|
|
assert data_schema["properties"]["id"]["type"] == "integer"
|
|
assert data_schema["properties"]["name"]["type"] == "string"
|
|
assert output_schema["properties"]["status"]["type"] == "string"
|
|
|
|
def test_input_schema_nested_object(self):
|
|
"""Test that nested object properties are recursively expanded in inputSchema."""
|
|
# Two levels deep: payload.info.count — requires recursion
|
|
deeply_nested_props = {
|
|
"count": ValueSchema(val_type="integer"),
|
|
}
|
|
nested_props = {
|
|
"id": ValueSchema(val_type="integer"),
|
|
"info": ValueSchema(val_type="json", properties=deeply_nested_props),
|
|
}
|
|
tool_def = ToolDefinition(
|
|
name="test",
|
|
fully_qualified_name="Test.test",
|
|
description="Test",
|
|
toolkit=ToolkitDefinition(name="Test"),
|
|
input=ToolInput(
|
|
parameters=[
|
|
InputParameter(
|
|
name="payload",
|
|
required=True,
|
|
description="Nested payload",
|
|
value_schema=ValueSchema(val_type="json", properties=nested_props),
|
|
)
|
|
]
|
|
),
|
|
output=ToolOutput(),
|
|
requirements=ToolRequirements(),
|
|
)
|
|
|
|
@tool
|
|
def f(payload: Annotated[str, "Nested payload"]):
|
|
return payload
|
|
|
|
input_model, output_model = create_func_models(f)
|
|
meta = ToolMeta(module=f.__module__, toolkit=tool_def.toolkit.name)
|
|
mat_tool = MaterializedTool(
|
|
tool=f,
|
|
definition=tool_def,
|
|
meta=meta,
|
|
input_model=input_model,
|
|
output_model=output_model,
|
|
)
|
|
|
|
mcp_tool = create_mcp_tool(mat_tool)
|
|
payload_schema = mcp_tool.inputSchema["properties"]["payload"]
|
|
|
|
assert payload_schema["type"] == "object"
|
|
assert "properties" in payload_schema
|
|
assert payload_schema["properties"]["id"]["type"] == "integer"
|
|
info_schema = payload_schema["properties"]["info"]
|
|
assert info_schema["type"] == "object"
|
|
assert "properties" in info_schema
|
|
assert info_schema["properties"]["count"]["type"] == "integer"
|
|
|
|
def test_output_schema_non_object_wrapped_in_object(self):
|
|
"""Non-object output types get wrapped in {type: object, properties: {result: ...}}."""
|
|
mcp_tool = self._make_tool_with_output(ValueSchema(val_type="string"))
|
|
output_schema = mcp_tool.outputSchema
|
|
|
|
assert output_schema is not None
|
|
assert output_schema["type"] == "object"
|
|
assert "result" in output_schema["properties"]
|
|
assert output_schema["properties"]["result"]["type"] == "string"
|
|
|
|
def test_output_schema_array_wrapped_in_object(self):
|
|
"""Array output types get wrapped in an object with a 'result' property."""
|
|
mcp_tool = self._make_tool_with_output(
|
|
ValueSchema(val_type="array", inner_val_type="string")
|
|
)
|
|
output_schema = mcp_tool.outputSchema
|
|
|
|
assert output_schema is not None
|
|
assert output_schema["type"] == "object"
|
|
assert output_schema["properties"]["result"]["type"] == "array"
|
|
assert output_schema["properties"]["result"]["items"]["type"] == "string"
|
|
|
|
|
|
class TestConvertContentToStructuredContent:
|
|
"""Test convert_content_to_structured_content function."""
|
|
|
|
def test_none_returns_none(self):
|
|
assert convert_content_to_structured_content(None) is None
|
|
|
|
def test_dict_returned_as_is(self):
|
|
d = {"key": "value"}
|
|
assert convert_content_to_structured_content(d) is d
|
|
|
|
def test_list_wrapped_in_result(self):
|
|
result = convert_content_to_structured_content([1, 2, 3])
|
|
assert result == {"result": [1, 2, 3]}
|
|
|
|
@pytest.mark.parametrize("value", ["hello", 42, 3.14, True])
|
|
def test_primitives_wrapped_in_result(self, value):
|
|
result = convert_content_to_structured_content(value)
|
|
assert result == {"result": value}
|
|
|
|
def test_arbitrary_object_str_wrapped(self):
|
|
class Custom:
|
|
def __str__(self):
|
|
return "custom-str"
|
|
|
|
result = convert_content_to_structured_content(Custom())
|
|
assert result == {"result": "custom-str"}
|