milvus/pkg/common/key_data_pairs_test.go
congqixia 41af0a98fa
Use go-api/v2 for milvus-proto (#24770)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2023-06-09 01:28:37 +08:00

41 lines
713 B
Go

package common
import (
"testing"
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
"github.com/stretchr/testify/assert"
)
func TestCloneKeyDataPairs(t *testing.T) {
type args struct {
pairs KeyDataPairs
}
tests := []struct {
name string
args args
}{
{
args: args{
pairs: nil,
},
},
{
args: args{
pairs: []*commonpb.KeyDataPair{
{Key: "k1", Data: []byte("v1")},
{Key: "k2", Data: []byte("v2")},
{Key: "k3", Data: []byte("v3")},
{Key: "k4", Data: []byte("v4")},
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
clone := CloneKeyDataPairs(tt.args.pairs)
assert.True(t, clone.Equal(tt.args.pairs))
})
}
}