mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 17:22:51 +08:00
54 lines
1.2 KiB
Go
54 lines
1.2 KiB
Go
package search_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/blevesearch/bleve/v2/document"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/grafana/grafana/pkg/apimachinery/utils"
|
|
"github.com/grafana/grafana/pkg/storage/unified/resource"
|
|
"github.com/grafana/grafana/pkg/storage/unified/search"
|
|
)
|
|
|
|
func TestDocumentMapping(t *testing.T) {
|
|
mappings, err := search.GetBleveMappings(nil)
|
|
require.NoError(t, err)
|
|
data := resource.IndexableDocument{
|
|
Title: "title",
|
|
Description: "descr",
|
|
Tags: []string{"a", "b"},
|
|
Created: 12345,
|
|
Folder: "xyz",
|
|
CreatedBy: "user:ryan",
|
|
Labels: map[string]string{
|
|
"a": "b",
|
|
"x": "y",
|
|
},
|
|
RV: 1234,
|
|
Manager: &utils.ManagerProperties{
|
|
Kind: utils.ManagerKindRepo,
|
|
Identity: "rrr",
|
|
},
|
|
Source: &utils.SourceProperties{
|
|
Path: "ppp",
|
|
Checksum: "ooo",
|
|
TimestampMillis: 1234,
|
|
},
|
|
}
|
|
data.UpdateCopyFields()
|
|
|
|
doc := document.NewDocument("id")
|
|
err = mappings.MapDocument(doc, data)
|
|
require.NoError(t, err)
|
|
|
|
for _, f := range doc.Fields {
|
|
fmt.Printf("%s = %+v\n", f.Name(), f.Value())
|
|
}
|
|
|
|
fmt.Printf("DOC: fields %d\n", len(doc.Fields))
|
|
fmt.Printf("DOC: size %d\n", doc.Size())
|
|
require.Equal(t, 17, len(doc.Fields))
|
|
}
|