Files
ai-agent/internal/ai/runtime/tools/helper_test.go
T
mlogclub 5d7c10aeab refactor: rename agent widget references to AI agent for consistency
- Updated runtime configuration to use __CS_AI_AGENT_WIDGET_CONFIG__ instead of __CS_AGENT_WIDGET_CONFIG__.
- Changed message types in support host bridge from "cs-agent" to "cs-ai-agent".
- Minified SDK script updated to reflect new AI agent naming conventions.
- Adjusted scrollbar styles in main.scss to use .cs-ai-agent-scrollbar instead of .cs-agent-scrollbar.
2026-05-30 21:19:36 +08:00

33 lines
798 B
Go

package tools
import (
"testing"
"cs-ai-agent/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")
}
}