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
141 lines
4.5 KiB
Go
141 lines
4.5 KiB
Go
package mcp
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
mcplib "github.com/mark3labs/mcp-go/mcp"
|
|
"github.com/zzet/gortex/internal/graph"
|
|
)
|
|
|
|
func callAnalyzeOrphanTables(t *testing.T, srv *Server, args map[string]any) map[string]any {
|
|
t.Helper()
|
|
args["kind"] = "orphan_tables"
|
|
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
|
|
}
|
|
|
|
// addTable + addQuery + addMigration are tiny helpers that mirror the
|
|
// shape the indexer produces. Kept inside the test so it doesn't grow
|
|
// production-side scaffolding.
|
|
func addTable(g graph.Store, id, table, dialect string) {
|
|
g.AddNode(&graph.Node{
|
|
ID: id,
|
|
Kind: graph.KindTable,
|
|
Name: table,
|
|
Meta: map[string]any{
|
|
"table": table,
|
|
"dialect": dialect,
|
|
},
|
|
})
|
|
}
|
|
|
|
func addQueryEdge(g graph.Store, fromID, toID string) {
|
|
g.AddEdge(&graph.Edge{
|
|
From: fromID,
|
|
To: toID,
|
|
Kind: graph.EdgeQueries,
|
|
})
|
|
}
|
|
|
|
func addMigrationEdge(g graph.Store, fromID, toID string) {
|
|
g.AddEdge(&graph.Edge{
|
|
From: fromID,
|
|
To: toID,
|
|
Kind: graph.EdgeProvides,
|
|
})
|
|
}
|
|
|
|
func TestAnalyzeOrphanTables_TablesQueriedButNotProvided(t *testing.T) {
|
|
srv, _ := setupTestServer(t)
|
|
// users — has both a migration and queries → not orphan.
|
|
addTable(srv.graph, "db::generic::users", "users", "generic")
|
|
addMigrationEdge(srv.graph, "migration::db/init.sql", "db::generic::users")
|
|
addQueryEdge(srv.graph, "pkg/users.go::List", "db::generic::users")
|
|
|
|
// sessions — queried but no migration → orphan.
|
|
addTable(srv.graph, "db::generic::sessions", "sessions", "generic")
|
|
addQueryEdge(srv.graph, "pkg/auth.go::Get", "db::generic::sessions")
|
|
addQueryEdge(srv.graph, "pkg/auth.go::Set", "db::generic::sessions")
|
|
|
|
// audit_log — declared by migration, no queries → not orphan
|
|
// (different problem; this analyzer doesn't surface it).
|
|
addTable(srv.graph, "db::generic::audit_log", "audit_log", "generic")
|
|
addMigrationEdge(srv.graph, "migration::db/init.sql", "db::generic::audit_log")
|
|
|
|
out := callAnalyzeOrphanTables(t, srv, map[string]any{})
|
|
rows, _ := out["orphans"].([]any)
|
|
if len(rows) != 1 {
|
|
t.Fatalf("expected 1 orphan (sessions), got %d: %+v", len(rows), rows)
|
|
}
|
|
row := rows[0].(map[string]any)
|
|
if row["table"] != "sessions" {
|
|
t.Errorf("expected sessions, got %v", row["table"])
|
|
}
|
|
if got, _ := row["query_count"].(float64); got != 2 {
|
|
t.Errorf("query_count = %v, want 2", got)
|
|
}
|
|
}
|
|
|
|
func TestAnalyzeOrphanTables_SortedByQueryCount(t *testing.T) {
|
|
srv, _ := setupTestServer(t)
|
|
addTable(srv.graph, "db::generic::low", "low", "generic")
|
|
addQueryEdge(srv.graph, "f.go::A", "db::generic::low")
|
|
addTable(srv.graph, "db::generic::high", "high", "generic")
|
|
addQueryEdge(srv.graph, "f.go::A", "db::generic::high")
|
|
addQueryEdge(srv.graph, "f.go::B", "db::generic::high")
|
|
addQueryEdge(srv.graph, "f.go::C", "db::generic::high")
|
|
|
|
out := callAnalyzeOrphanTables(t, srv, map[string]any{})
|
|
rows, _ := out["orphans"].([]any)
|
|
if len(rows) != 2 {
|
|
t.Fatalf("expected 2 orphans, got %d", len(rows))
|
|
}
|
|
first := rows[0].(map[string]any)
|
|
if first["table"] != "high" {
|
|
t.Errorf("expected high (3 queries) first, got %v", first["table"])
|
|
}
|
|
}
|
|
|
|
func TestAnalyzeOrphanTables_NoOrphansEmpty(t *testing.T) {
|
|
srv, _ := setupTestServer(t)
|
|
addTable(srv.graph, "db::generic::users", "users", "generic")
|
|
addMigrationEdge(srv.graph, "migration::a.sql", "db::generic::users")
|
|
addQueryEdge(srv.graph, "f.go::Q", "db::generic::users")
|
|
|
|
out := callAnalyzeOrphanTables(t, srv, map[string]any{})
|
|
if got, _ := out["total"].(float64); got != 0 {
|
|
t.Errorf("expected zero orphans, got total=%v", got)
|
|
}
|
|
}
|
|
|
|
func TestAnalyzeOrphanTables_TableWithoutQueriesIsNotOrphan(t *testing.T) {
|
|
// A table emitted by a migration but never queried is a
|
|
// different problem (orphan migration). This analyzer doesn't
|
|
// surface it — we want "queried but not declared", not "declared
|
|
// but not queried".
|
|
srv, _ := setupTestServer(t)
|
|
addTable(srv.graph, "db::generic::unused", "unused", "generic")
|
|
addMigrationEdge(srv.graph, "migration::a.sql", "db::generic::unused")
|
|
|
|
out := callAnalyzeOrphanTables(t, srv, map[string]any{})
|
|
if got, _ := out["total"].(float64); got != 0 {
|
|
t.Errorf("declared-but-unused table must not appear as orphan, got %v", got)
|
|
}
|
|
}
|