mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
26f06dd732
Signed-off-by: SimFG <bang.fu@zilliz.com>
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package model
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
"github.com/milvus-io/milvus/internal/proto/indexpb"
|
|
)
|
|
|
|
var (
|
|
indexID int64 = 1
|
|
indexName = "idx"
|
|
indexParams = []*commonpb.KeyValuePair{
|
|
{
|
|
Key: "field110-i1",
|
|
Value: "field110-v1",
|
|
},
|
|
}
|
|
|
|
indexModel = &Index{
|
|
IndexID: indexID,
|
|
IndexName: indexName,
|
|
IndexParams: indexParams,
|
|
IsDeleted: true,
|
|
CreateTime: 1,
|
|
}
|
|
|
|
indexPb = &indexpb.FieldIndex{
|
|
IndexInfo: &indexpb.IndexInfo{
|
|
CollectionID: colID,
|
|
FieldID: fieldID,
|
|
IndexName: indexName,
|
|
IndexID: indexID,
|
|
TypeParams: typeParams,
|
|
IndexParams: indexParams,
|
|
},
|
|
Deleted: true,
|
|
CreateTime: 1,
|
|
}
|
|
)
|
|
|
|
func TestMarshalIndexModel(t *testing.T) {
|
|
ret := MarshalIndexModel(indexModel)
|
|
assert.Equal(t, indexPb.IndexInfo.IndexID, ret.IndexInfo.IndexID)
|
|
assert.Nil(t, MarshalIndexModel(nil))
|
|
}
|
|
|
|
func TestUnmarshalIndexModel(t *testing.T) {
|
|
ret := UnmarshalIndexModel(indexPb)
|
|
assert.Equal(t, indexModel.IndexID, ret.IndexID)
|
|
assert.Nil(t, UnmarshalIndexModel(nil))
|
|
}
|