Files
genai-toolbox/internal/tools/elasticsearch/elasticsearchesql/elasticsearchesql_test.go
Yuan Teoh df2f6a9f0b refactor: move source implementation in Invoke() function to Source (#2234)
Move source-related queries from `Invoke()` function into Source.

The following sources are updated in this PR:
* couchbase
* dgraph
* elasticsearch
* firebird

This is an effort to generalizing tools to work with any Source that
implements a specific interface. This will provide a better segregation
of the roles for Tools vs Source.

Tool's role will be limited to the following:
* Resolve any pre-implementation steps or parameters (e.g. template
parameters)
* Retrieving Source
* Calling the source's implementation
2025-12-30 22:45:48 +00:00

108 lines
2.9 KiB
Go

// Copyright 2025 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package elasticsearchesql
import (
"testing"
"github.com/goccy/go-yaml"
"github.com/google/go-cmp/cmp"
"github.com/googleapis/genai-toolbox/internal/server"
"github.com/googleapis/genai-toolbox/internal/testutils"
"github.com/googleapis/genai-toolbox/internal/util/parameters"
)
func TestParseFromYamlElasticsearchEsql(t *testing.T) {
ctx, err := testutils.ContextWithNewLogger()
if err != nil {
t.Fatalf("unexpected error: %s", err)
}
tcs := []struct {
desc string
in string
want server.ToolConfigs
}{
{
desc: "basic search example",
in: `
tools:
example_tool:
kind: elasticsearch-esql
source: my-elasticsearch-instance
description: Elasticsearch ES|QL tool
query: |
FROM my-index
| KEEP first_name, last_name
`,
want: server.ToolConfigs{
"example_tool": Config{
Name: "example_tool",
Kind: "elasticsearch-esql",
Source: "my-elasticsearch-instance",
Description: "Elasticsearch ES|QL tool",
AuthRequired: []string{},
Query: "FROM my-index\n| KEEP first_name, last_name\n",
},
},
},
{
desc: "search with customizable limit parameter",
in: `
tools:
example_tool:
kind: elasticsearch-esql
source: my-elasticsearch-instance
description: Elasticsearch ES|QL tool with customizable limit
parameters:
- name: limit
type: integer
description: Limit the number of results
query: |
FROM my-index
| LIMIT ?limit
`,
want: server.ToolConfigs{
"example_tool": Config{
Name: "example_tool",
Kind: "elasticsearch-esql",
Source: "my-elasticsearch-instance",
Description: "Elasticsearch ES|QL tool with customizable limit",
AuthRequired: []string{},
Parameters: parameters.Parameters{
parameters.NewIntParameter("limit", "Limit the number of results"),
},
Query: "FROM my-index\n| LIMIT ?limit\n",
},
},
},
}
for _, tc := range tcs {
t.Run(tc.desc, func(t *testing.T) {
got := struct {
Tools server.ToolConfigs `yaml:"tools"`
}{}
// Parse contents
err := yaml.UnmarshalContext(ctx, testutils.FormatYaml(tc.in), &got)
if err != nil {
t.Fatalf("unable to unmarshal: %s", err)
}
if diff := cmp.Diff(tc.want, got.Tools); diff != "" {
t.Fatalf("incorrect parse: diff %v", diff)
}
})
}
}