mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
0be96ab610
Signed-off-by: longjiquan <jiquan.long@zilliz.com>
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package proxy
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/schemapb"
|
|
)
|
|
|
|
func TestGetMaxLength(t *testing.T) {
|
|
t.Run("not string type", func(t *testing.T) {
|
|
f := &schemapb.FieldSchema{
|
|
DataType: schemapb.DataType_Bool,
|
|
}
|
|
_, err := GetMaxLength(f)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("max length not found", func(t *testing.T) {
|
|
f := &schemapb.FieldSchema{
|
|
DataType: schemapb.DataType_VarChar,
|
|
}
|
|
_, err := GetMaxLength(f)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("max length not int", func(t *testing.T) {
|
|
f := &schemapb.FieldSchema{
|
|
DataType: schemapb.DataType_VarChar,
|
|
TypeParams: []*commonpb.KeyValuePair{
|
|
{
|
|
Key: "max_length",
|
|
Value: "not_int_aha",
|
|
},
|
|
},
|
|
}
|
|
_, err := GetMaxLength(f)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("normal case", func(t *testing.T) {
|
|
f := &schemapb.FieldSchema{
|
|
DataType: schemapb.DataType_VarChar,
|
|
TypeParams: []*commonpb.KeyValuePair{
|
|
{
|
|
Key: "max_length",
|
|
Value: "100",
|
|
},
|
|
},
|
|
}
|
|
maxLength, err := GetMaxLength(f)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, int64(100), maxLength)
|
|
})
|
|
}
|