169 lines
5.5 KiB
Go
169 lines
5.5 KiB
Go
package tool
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"testing"
|
|
)
|
|
|
|
// stubTool is a minimal Tool for registry tests.
|
|
type stubTool struct {
|
|
name string
|
|
schema json.RawMessage
|
|
}
|
|
|
|
func (s stubTool) Name() string { return s.name }
|
|
func (s stubTool) Description() string { return s.name + " desc" }
|
|
func (s stubTool) Schema() json.RawMessage {
|
|
if len(s.schema) > 0 {
|
|
return s.schema
|
|
}
|
|
return json.RawMessage(`{"type":"object"}`)
|
|
}
|
|
func (s stubTool) Execute(context.Context, json.RawMessage) (string, error) { return "", nil }
|
|
func (s stubTool) ReadOnly() bool { return true }
|
|
|
|
// TestRegistryRemovePrefix proves an MCP server's namespaced tools are dropped as
|
|
// a group on disconnect, leaving built-ins and other servers' tools — and their
|
|
// insertion order — intact.
|
|
func TestRegistryRemovePrefix(t *testing.T) {
|
|
r := NewRegistry()
|
|
r.Add(stubTool{name: "bash"})
|
|
r.Add(stubTool{name: "mcp__fs__read"})
|
|
r.Add(stubTool{name: "mcp__fs__write"})
|
|
r.Add(stubTool{name: "mcp__stripe__charge"})
|
|
|
|
if got := r.RemovePrefix("mcp__fs__"); got != 2 {
|
|
t.Fatalf("RemovePrefix returned %d, want 2", got)
|
|
}
|
|
if r.Len() != 2 {
|
|
t.Fatalf("registry has %d tools after removal, want 2", r.Len())
|
|
}
|
|
if _, ok := r.Get("mcp__fs__read"); ok {
|
|
t.Errorf("mcp__fs__read should be gone")
|
|
}
|
|
if _, ok := r.Get("mcp__stripe__charge"); !ok {
|
|
t.Errorf("another server's tool should survive")
|
|
}
|
|
want := []string{"bash", "mcp__stripe__charge"}
|
|
got := r.Names()
|
|
if len(got) != len(want) {
|
|
t.Fatalf("names = %v, want %v", got, want)
|
|
}
|
|
for i := range want {
|
|
if got[i] != want[i] {
|
|
t.Fatalf("names = %v, want %v (order preserved)", got, want)
|
|
}
|
|
}
|
|
|
|
// Removing a prefix that matches nothing is a no-op.
|
|
if got := r.RemovePrefix("mcp__nope__"); got != 0 {
|
|
t.Errorf("RemovePrefix on absent prefix returned %d, want 0", got)
|
|
}
|
|
}
|
|
|
|
func TestRegistrySuspendPrefixBlocksLateAddsUntilResume(t *testing.T) {
|
|
r := NewRegistry()
|
|
r.Add(stubTool{name: "bash"})
|
|
r.Add(stubTool{name: "mcp__fs__connect"})
|
|
|
|
if got := r.SuspendPrefix("mcp__fs__"); got != 1 {
|
|
t.Fatalf("SuspendPrefix returned %d, want 1", got)
|
|
}
|
|
r.Add(stubTool{name: "mcp__fs__read"})
|
|
if _, ok := r.Get("mcp__fs__read"); ok {
|
|
t.Fatalf("suspended prefix accepted a late tool add; names=%v", r.Names())
|
|
}
|
|
if _, ok := r.Get("bash"); !ok {
|
|
t.Fatal("suspending an MCP prefix removed unrelated tools")
|
|
}
|
|
|
|
r.ResumePrefix("mcp__fs__")
|
|
r.Add(stubTool{name: "mcp__fs__read"})
|
|
if _, ok := r.Get("mcp__fs__read"); !ok {
|
|
t.Fatalf("resumed prefix did not accept tool add; names=%v", r.Names())
|
|
}
|
|
}
|
|
|
|
// TestRegistrySchemasSorted proves Schemas() emits tool definitions in
|
|
// deterministic alphabetical order regardless of insertion order, so a logically
|
|
// identical tool set produces a stable provider-facing request prefix (prompt
|
|
// cache reuse). Names() must stay in insertion order — only the provider export
|
|
// is sorted.
|
|
func TestRegistrySchemasSorted(t *testing.T) {
|
|
r := NewRegistry()
|
|
// Add deliberately out of alphabetical order.
|
|
insertion := []string{"write", "bash", "read", "apply_patch"}
|
|
for _, n := range insertion {
|
|
r.Add(stubTool{name: n})
|
|
}
|
|
|
|
var got []string
|
|
for _, s := range r.Schemas() {
|
|
got = append(got, s.Name)
|
|
}
|
|
want := []string{"apply_patch", "bash", "read", "write"}
|
|
if len(got) != len(want) {
|
|
t.Fatalf("Schemas() names = %v, want %v", got, want)
|
|
}
|
|
for i := range want {
|
|
if got[i] != want[i] {
|
|
t.Fatalf("Schemas() names = %v, want %v (alphabetical)", got, want)
|
|
}
|
|
}
|
|
|
|
// The sort must not leak into Names(): display order stays insertion order.
|
|
gotNames := r.Names()
|
|
for i := range insertion {
|
|
if gotNames[i] != insertion[i] {
|
|
t.Fatalf("Names() = %v, want %v (insertion order)", gotNames, insertion)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestRegistrySchemasStableAndCanonical(t *testing.T) {
|
|
r := NewRegistry()
|
|
r.Add(stubTool{
|
|
name: "zeta",
|
|
schema: json.RawMessage(`{"type":"object","required":["b","a"],"properties":{"b":{"type":"string"},"a":{"type":"string"}}}`),
|
|
})
|
|
r.Add(stubTool{
|
|
name: "alpha",
|
|
schema: json.RawMessage(`{"required":["y","x"],"type":"object"}`),
|
|
})
|
|
|
|
schemas := r.Schemas()
|
|
if len(schemas) != 2 {
|
|
t.Fatalf("Schemas returned %d entries, want 2", len(schemas))
|
|
}
|
|
if schemas[0].Name != "alpha" || schemas[1].Name != "zeta" {
|
|
t.Fatalf("Schemas order = %q, %q; want alpha, zeta", schemas[0].Name, schemas[1].Name)
|
|
}
|
|
if got, want := string(schemas[0].Parameters), `{"properties":{},"required":["x","y"],"type":"object"}`; got != want {
|
|
t.Fatalf("alpha schema = %s, want %s", got, want)
|
|
}
|
|
if got, want := string(schemas[1].Parameters), `{"properties":{"a":{"type":"string"},"b":{"type":"string"}},"required":["a","b"],"type":"object"}`; got != want {
|
|
t.Fatalf("zeta schema = %s, want %s", got, want)
|
|
}
|
|
}
|
|
|
|
func TestRegistrySchemasCanonicalizesEquivalentOrdering(t *testing.T) {
|
|
first := NewRegistry()
|
|
first.Add(stubTool{
|
|
name: "same",
|
|
schema: json.RawMessage(`{"type":"object","required":["b","a"],"properties":{"b":{"description":"bee","type":"string"},"a":{"type":"integer"}}}`),
|
|
})
|
|
|
|
second := NewRegistry()
|
|
second.Add(stubTool{
|
|
name: "same",
|
|
schema: json.RawMessage(`{"properties":{"a":{"type":"integer"},"b":{"type":"string","description":"bee"}},"required":["a","b"],"type":"object"}`),
|
|
})
|
|
|
|
firstSchemas := first.Schemas()
|
|
secondSchemas := second.Schemas()
|
|
if got, want := string(firstSchemas[0].Parameters), string(secondSchemas[0].Parameters); got != want {
|
|
t.Fatalf("equivalent schemas canonicalized differently:\n first: %s\n second: %s", got, want)
|
|
}
|
|
}
|