Files
ai-agent/internal/ai/runtime/tools/helper_test.go
T
mlogclub 101577f163 Refactor internal services to use agent-desk package structure
- Updated import paths in multiple service files to reflect the new agent-desk module.
- Added a new configuration file for agent-desk in the Docker setup.
2026-05-31 18:43:48 +08:00

33 lines
797 B
Go

package tools
import (
"testing"
"agent-desk/internal/pkg/toolx"
)
func TestNewRuntimeStaticTool(t *testing.T) {
items := []string{
toolx.GraphTriageServiceRequest.Code,
toolx.GraphAnalyzeConversation.Code,
toolx.GraphPrepareTicketDraft.Code,
toolx.GraphCreateTicketConfirm.Code,
toolx.GraphHandoffConversation.Code,
}
for _, item := range items {
tool := NewRuntimeStaticTool(item)
if tool == nil {
t.Fatalf("expected runtime static tool for %s", item)
}
if tool.Spec().Code != item {
t.Fatalf("unexpected tool code for %s: %s", item, tool.Spec().Code)
}
}
}
func TestNewRuntimeStaticToolReturnsNilForUnknownTool(t *testing.T) {
if tool := NewRuntimeStaticTool("builtin/unknown_tool"); tool != nil {
t.Fatalf("expected nil tool for unknown tool code")
}
}