mirror of https://github.com/milvus-io/milvus.git
95 lines
2.8 KiB
Go
95 lines
2.8 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package entity
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
)
|
|
|
|
func TestCL_CommonCL(t *testing.T) {
|
|
cls := []ConsistencyLevel{
|
|
ClStrong,
|
|
ClBounded,
|
|
ClSession,
|
|
ClEventually,
|
|
}
|
|
for _, cl := range cls {
|
|
assert.EqualValues(t, commonpb.ConsistencyLevel(cl), cl.CommonConsistencyLevel())
|
|
}
|
|
}
|
|
|
|
type SchemaSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (s *SchemaSuite) TestBasic() {
|
|
cases := []struct {
|
|
tag string
|
|
input *Schema
|
|
pkName string
|
|
}{
|
|
{
|
|
"test_collection",
|
|
NewSchema().WithName("test_collection_1").WithDescription("test_collection_1 desc").WithAutoID(false).
|
|
WithField(NewField().WithName("ID").WithDataType(FieldTypeInt64).WithIsPrimaryKey(true)).
|
|
WithField(NewField().WithName("vector").WithDataType(FieldTypeFloatVector).WithDim(128)).
|
|
WithFunction(NewFunction()),
|
|
"ID",
|
|
},
|
|
{
|
|
"dynamic_schema",
|
|
NewSchema().WithName("dynamic_schema").WithDescription("dynamic_schema desc").WithAutoID(true).WithDynamicFieldEnabled(true).
|
|
WithField(NewField().WithName("ID").WithDataType(FieldTypeVarChar).WithMaxLength(256)).
|
|
WithField(NewField().WithName("$meta").WithIsDynamic(true)),
|
|
"",
|
|
},
|
|
}
|
|
|
|
for _, c := range cases {
|
|
s.Run(c.tag, func() {
|
|
sch := c.input
|
|
p := sch.ProtoMessage()
|
|
s.Equal(sch.CollectionName, p.GetName())
|
|
s.Equal(sch.AutoID, p.GetAutoID())
|
|
s.Equal(sch.Description, p.GetDescription())
|
|
s.Equal(sch.EnableDynamicField, p.GetEnableDynamicField())
|
|
s.Equal(len(sch.Fields), len(p.GetFields()))
|
|
s.Equal(len(sch.Functions), len(p.GetFunctions()))
|
|
|
|
nsch := &Schema{}
|
|
nsch = nsch.ReadProto(p)
|
|
|
|
s.Equal(sch.CollectionName, nsch.CollectionName)
|
|
s.Equal(sch.Description, nsch.Description)
|
|
s.Equal(sch.EnableDynamicField, nsch.EnableDynamicField)
|
|
s.Equal(len(sch.Fields), len(nsch.Fields))
|
|
s.Equal(len(sch.Functions), len(nsch.Functions))
|
|
s.Equal(c.pkName, sch.PKFieldName())
|
|
s.Equal(c.pkName, nsch.PKFieldName())
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSchema(t *testing.T) {
|
|
suite.Run(t, new(SchemaSuite))
|
|
}
|