mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 10:59:32 +08:00
41af0a98fa
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
80 lines
1.3 KiB
Go
80 lines
1.3 KiB
Go
package indexparamcheck
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_binaryVectorBaseChecker_CheckValidDataType(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
dType schemapb.DataType
|
|
errIsNil bool
|
|
}{
|
|
{
|
|
dType: schemapb.DataType_Bool,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_Int8,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_Int16,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_Int32,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_Int64,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_Float,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_Double,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_String,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_VarChar,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_Array,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_JSON,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_FloatVector,
|
|
errIsNil: false,
|
|
},
|
|
{
|
|
dType: schemapb.DataType_BinaryVector,
|
|
errIsNil: true,
|
|
},
|
|
}
|
|
|
|
c := newBinaryVectorBaseChecker()
|
|
for _, test := range cases {
|
|
err := c.CheckValidDataType(test.dType)
|
|
if test.errIsNil {
|
|
assert.NoError(t, err)
|
|
} else {
|
|
assert.Error(t, err)
|
|
}
|
|
}
|
|
}
|