a06f331eb8
CI / benchmark (push) Has been skipped
install-script / posix-syntax (push) Successful in 6m1s
CI / build-onnx (push) Failing after 6m43s
init-smoke / dry-run (push) Failing after 15m57s
security / govulncheck (push) Has been cancelled
security / trivy-fs (push) Has been cancelled
CI / test (1.26, ubuntu-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
CI / test (1.26, macos-latest) (push) Has been cancelled
CI / build-windows (push) Has been cancelled
CI / lint (push) Has been cancelled
install-script / powershell-syntax (push) Has been cancelled
install-script / install (macos-14) (push) Has been cancelled
install-script / install (ubuntu-latest) (push) Has been cancelled
110 lines
3.5 KiB
Go
110 lines
3.5 KiB
Go
package mcp
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
mcplib "github.com/mark3labs/mcp-go/mcp"
|
|
"github.com/zzet/gortex/internal/graph"
|
|
)
|
|
|
|
func callAnalyzeAnnotationUsers(t *testing.T, srv *Server, args map[string]any) map[string]any {
|
|
t.Helper()
|
|
args["kind"] = "annotation_users"
|
|
req := mcplib.CallToolRequest{}
|
|
req.Params.Name = "analyze"
|
|
req.Params.Arguments = args
|
|
res, err := srv.handleAnalyze(context.Background(), req)
|
|
if err != nil {
|
|
t.Fatalf("handleAnalyze: %v", err)
|
|
}
|
|
if res.IsError {
|
|
t.Fatalf("error: %+v", res.Content)
|
|
}
|
|
textBlock := res.Content[0].(mcplib.TextContent)
|
|
var out map[string]any
|
|
if err := json.Unmarshal([]byte(textBlock.Text), &out); err != nil {
|
|
t.Fatalf("json: %v\n%s", err, textBlock.Text)
|
|
}
|
|
return out
|
|
}
|
|
|
|
func addAnnotationNode(g graph.Store, id, name string) {
|
|
g.AddNode(&graph.Node{
|
|
ID: id,
|
|
Kind: graph.KindType,
|
|
Name: name,
|
|
Meta: map[string]any{"kind": "annotation", "synthetic": true},
|
|
})
|
|
}
|
|
|
|
func addAnnotatedEdge(g graph.Store, from, to, args string) {
|
|
e := &graph.Edge{From: from, To: to, Kind: graph.EdgeAnnotated, FilePath: "x.go", Line: 1}
|
|
if args != "" {
|
|
e.Meta = map[string]any{"args": args}
|
|
}
|
|
g.AddEdge(e)
|
|
}
|
|
|
|
func TestAnalyzeAnnotationUsers_NoIDListsAllAnnotations(t *testing.T) {
|
|
srv, _ := setupTestServer(t)
|
|
addAnnotationNode(srv.graph, "annotation::java::Deprecated", "Deprecated")
|
|
addAnnotationNode(srv.graph, "annotation::java::Override", "Override")
|
|
addAnnotatedEdge(srv.graph, "Foo.java::A", "annotation::java::Deprecated", "")
|
|
addAnnotatedEdge(srv.graph, "Foo.java::B", "annotation::java::Deprecated", "")
|
|
addAnnotatedEdge(srv.graph, "Foo.java::C", "annotation::java::Override", "")
|
|
|
|
out := callAnalyzeAnnotationUsers(t, srv, map[string]any{})
|
|
rows, _ := out["annotations"].([]any)
|
|
if len(rows) != 2 {
|
|
t.Fatalf("expected 2 annotations grouped, got %d", len(rows))
|
|
}
|
|
first := rows[0].(map[string]any)
|
|
if first["name"] != "Deprecated" {
|
|
t.Errorf("expected Deprecated first (more users), got %v", first["name"])
|
|
}
|
|
}
|
|
|
|
func TestAnalyzeAnnotationUsers_ScopedToOneAnnotationByID(t *testing.T) {
|
|
srv, _ := setupTestServer(t)
|
|
addAnnotationNode(srv.graph, "annotation::java::Deprecated", "Deprecated")
|
|
addAnnotatedEdge(srv.graph, "Foo.java::A", "annotation::java::Deprecated", "since=1.4")
|
|
addAnnotatedEdge(srv.graph, "Foo.java::B", "annotation::java::Deprecated", "")
|
|
|
|
out := callAnalyzeAnnotationUsers(t, srv, map[string]any{
|
|
"id": "annotation::java::Deprecated",
|
|
})
|
|
users, _ := out["users"].([]any)
|
|
if len(users) != 2 {
|
|
t.Fatalf("expected 2 users, got %d", len(users))
|
|
}
|
|
// At least one row should carry the args meta so callers can
|
|
// distinguish parameterised from bare annotations.
|
|
hasArgs := false
|
|
for _, raw := range users {
|
|
row := raw.(map[string]any)
|
|
if a, _ := row["args"].(string); a == "since=1.4" {
|
|
hasArgs = true
|
|
}
|
|
}
|
|
if !hasArgs {
|
|
t.Fatalf("expected args meta to surface on at least one user row, got %+v", users)
|
|
}
|
|
}
|
|
|
|
func TestAnalyzeAnnotationUsers_NameFilter(t *testing.T) {
|
|
srv, _ := setupTestServer(t)
|
|
addAnnotationNode(srv.graph, "annotation::java::Deprecated", "Deprecated")
|
|
addAnnotationNode(srv.graph, "annotation::java::Override", "Override")
|
|
addAnnotatedEdge(srv.graph, "Foo.java::A", "annotation::java::Deprecated", "")
|
|
addAnnotatedEdge(srv.graph, "Foo.java::B", "annotation::java::Override", "")
|
|
|
|
out := callAnalyzeAnnotationUsers(t, srv, map[string]any{
|
|
"name": "deprecated", // case-insensitive
|
|
})
|
|
if got, _ := out["total"].(float64); got != 1 {
|
|
t.Errorf("expected 1 annotation matched by name, got %v", got)
|
|
}
|
|
}
|