mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-20 12:34:17 +02:00
Convert code-mode to the CodeMode plugin (#4002)
This commit is contained in:
parent
3c0d248526
commit
19fa2fc33e
12 changed files with 1019 additions and 645 deletions
197
tests/server/plugins/test_code_mode_serialization.py
Normal file
197
tests/server/plugins/test_code_mode_serialization.py
Normal file
|
|
@ -0,0 +1,197 @@
|
|||
from typing import Any
|
||||
|
||||
import pytest
|
||||
|
||||
from fastmcp import FastMCP
|
||||
from fastmcp.server.plugins.tool_search.base import (
|
||||
_schema_section,
|
||||
_schema_type,
|
||||
serialize_tools_for_output_markdown,
|
||||
)
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# _schema_type unit tests
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"schema,expected",
|
||||
[
|
||||
({"type": "string"}, "string"),
|
||||
({"type": "integer"}, "integer"),
|
||||
({"type": "boolean"}, "boolean"),
|
||||
({"type": "null"}, "null"),
|
||||
({"type": "array", "items": {"type": "string"}}, "string[]"),
|
||||
({"type": "array", "items": {"type": "integer"}}, "integer[]"),
|
||||
({"type": "array"}, "any[]"),
|
||||
({"$ref": "#/$defs/Foo"}, "object"),
|
||||
({"properties": {"x": {"type": "int"}}}, "object"),
|
||||
({}, "any"),
|
||||
(None, "any"),
|
||||
("not a dict", "any"),
|
||||
],
|
||||
)
|
||||
def test_schema_type_basic(schema: Any, expected: str) -> None:
|
||||
assert _schema_type(schema) == expected
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"schema,expected",
|
||||
[
|
||||
({"anyOf": [{"type": "string"}, {"type": "null"}]}, "string?"),
|
||||
({"anyOf": [{"type": "string"}, {"type": "integer"}]}, "string | integer"),
|
||||
(
|
||||
{"anyOf": [{"type": "string"}, {"type": "integer"}, {"type": "null"}]},
|
||||
"string | integer?",
|
||||
),
|
||||
({"anyOf": [{"type": "null"}]}, "null"),
|
||||
({"anyOf": []}, "any"),
|
||||
({"oneOf": [{"type": "string"}, {"type": "null"}]}, "string?"),
|
||||
({"oneOf": [{"type": "string"}, {"type": "integer"}]}, "string | integer"),
|
||||
({"allOf": [{"type": "object"}]}, "object"),
|
||||
({"allOf": [{"$ref": "#/$defs/Foo"}, {"$ref": "#/$defs/Bar"}]}, "object"),
|
||||
],
|
||||
)
|
||||
def test_schema_type_unions(schema: Any, expected: str) -> None:
|
||||
assert _schema_type(schema) == expected
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# _schema_section unit tests
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"schema,expected_lines",
|
||||
[
|
||||
(None, ["**Parameters**", "- `value` (any)"]),
|
||||
("string", ["**Parameters**", "- `value` (any)"]),
|
||||
({"type": "string"}, ["**Parameters**", "- `value` (string)"]),
|
||||
(
|
||||
{"type": "object", "properties": {}},
|
||||
["**Parameters**", "*(no parameters)*"],
|
||||
),
|
||||
],
|
||||
)
|
||||
def test_schema_section_fallbacks(schema: Any, expected_lines: list[str]) -> None:
|
||||
assert _schema_section(schema, "Parameters") == expected_lines
|
||||
|
||||
|
||||
def test_schema_section_lists_fields_with_required_marker() -> None:
|
||||
schema = {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {"type": "string"},
|
||||
"age": {"type": "integer"},
|
||||
},
|
||||
"required": ["name"],
|
||||
}
|
||||
lines = _schema_section(schema, "Parameters")
|
||||
assert lines[0] == "**Parameters**"
|
||||
assert "- `name` (string, required)" in lines
|
||||
assert "- `age` (integer)" in lines
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# serialize_tools_for_output_markdown unit tests
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
def test_serialize_tools_for_output_markdown_empty_list() -> None:
|
||||
assert serialize_tools_for_output_markdown([]) == "No tools matched the query."
|
||||
|
||||
|
||||
async def test_serialize_tools_for_output_markdown_basic_tool() -> None:
|
||||
mcp = FastMCP("MD Basic")
|
||||
|
||||
@mcp.tool
|
||||
def square(x: int) -> int:
|
||||
"""Compute the square of a number."""
|
||||
return x * x
|
||||
|
||||
tools = await mcp.list_tools()
|
||||
result = serialize_tools_for_output_markdown(tools)
|
||||
|
||||
assert "### square" in result
|
||||
assert "Compute the square of a number." in result
|
||||
assert "**Parameters**" in result
|
||||
assert "`x` (integer, required)" in result
|
||||
|
||||
|
||||
async def test_serialize_tools_for_output_markdown_omits_output_section_when_no_schema() -> (
|
||||
None
|
||||
):
|
||||
mcp = FastMCP("MD No Output")
|
||||
|
||||
@mcp.tool
|
||||
def ping() -> None:
|
||||
pass
|
||||
|
||||
tools = await mcp.list_tools()
|
||||
result = serialize_tools_for_output_markdown(tools)
|
||||
|
||||
assert "**Returns**" not in result
|
||||
|
||||
|
||||
async def test_serialize_tools_for_output_markdown_includes_output_section_when_schema_present() -> (
|
||||
None
|
||||
):
|
||||
mcp = FastMCP("MD With Output")
|
||||
|
||||
@mcp.tool
|
||||
def double(x: int) -> int:
|
||||
return x * 2
|
||||
|
||||
tools = await mcp.list_tools()
|
||||
result = serialize_tools_for_output_markdown(tools)
|
||||
|
||||
assert "**Returns**" in result
|
||||
|
||||
|
||||
async def test_serialize_tools_for_output_markdown_omits_description_when_absent() -> (
|
||||
None
|
||||
):
|
||||
mcp = FastMCP("MD No Desc")
|
||||
|
||||
@mcp.tool
|
||||
def ping() -> None:
|
||||
pass
|
||||
|
||||
tools = await mcp.list_tools()
|
||||
result = serialize_tools_for_output_markdown(tools)
|
||||
|
||||
assert "### ping" in result
|
||||
|
||||
|
||||
async def test_serialize_tools_for_output_markdown_optional_field_uses_question_mark() -> (
|
||||
None
|
||||
):
|
||||
mcp = FastMCP("MD Optional")
|
||||
|
||||
@mcp.tool
|
||||
def greet(name: str, greeting: str | None = None) -> str:
|
||||
return f"{greeting or 'Hello'}, {name}!"
|
||||
|
||||
tools = await mcp.list_tools()
|
||||
result = serialize_tools_for_output_markdown(tools)
|
||||
|
||||
assert "`greeting` (string?)" in result
|
||||
|
||||
|
||||
async def test_serialize_tools_for_output_markdown_multiple_tools_separated() -> None:
|
||||
mcp = FastMCP("MD Multi")
|
||||
|
||||
@mcp.tool
|
||||
def add(a: int, b: int) -> int:
|
||||
return a + b
|
||||
|
||||
@mcp.tool
|
||||
def subtract(a: int, b: int) -> int:
|
||||
return a - b
|
||||
|
||||
tools = await mcp.list_tools()
|
||||
result = serialize_tools_for_output_markdown(tools)
|
||||
|
||||
assert "### add" in result
|
||||
assert "### subtract" in result
|
||||
assert "\n\n" in result
|
||||
Loading…
Add table
Add a link
Reference in a new issue