mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
package providers
|
|
|
|
import "testing"
|
|
|
|
func TestBuildRequestUsesFunctionFieldsWhenToolCallNameMissing(t *testing.T) {
|
|
p := &AntigravityProvider{}
|
|
|
|
messages := []Message{
|
|
{
|
|
Role: "assistant",
|
|
ToolCalls: []ToolCall{{
|
|
ID: "call_read_file_123",
|
|
Function: &FunctionCall{
|
|
Name: "read_file",
|
|
Arguments: `{"path":"README.md"}`,
|
|
},
|
|
}},
|
|
},
|
|
{
|
|
Role: "tool",
|
|
ToolCallID: "call_read_file_123",
|
|
Content: "ok",
|
|
},
|
|
}
|
|
|
|
req := p.buildRequest(messages, nil, "", nil)
|
|
if len(req.Contents) != 2 {
|
|
t.Fatalf("expected 2 contents, got %d", len(req.Contents))
|
|
}
|
|
|
|
modelPart := req.Contents[0].Parts[0]
|
|
if modelPart.FunctionCall == nil {
|
|
t.Fatal("expected functionCall in assistant message")
|
|
}
|
|
if modelPart.FunctionCall.Name != "read_file" {
|
|
t.Fatalf("expected functionCall name read_file, got %q", modelPart.FunctionCall.Name)
|
|
}
|
|
if got := modelPart.FunctionCall.Args["path"]; got != "README.md" {
|
|
t.Fatalf("expected functionCall args[path] to be README.md, got %v", got)
|
|
}
|
|
|
|
toolPart := req.Contents[1].Parts[0]
|
|
if toolPart.FunctionResponse == nil {
|
|
t.Fatal("expected functionResponse in tool message")
|
|
}
|
|
if toolPart.FunctionResponse.Name != "read_file" {
|
|
t.Fatalf("expected functionResponse name read_file, got %q", toolPart.FunctionResponse.Name)
|
|
}
|
|
}
|
|
|
|
func TestResolveToolResponseNameInfersNameFromGeneratedCallID(t *testing.T) {
|
|
got := resolveToolResponseName("call_search_docs_999", map[string]string{})
|
|
if got != "search_docs" {
|
|
t.Fatalf("expected inferred tool name search_docs, got %q", got)
|
|
}
|
|
}
|