mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
pr: #41498 #41576 #41606 #39973 --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com> Signed-off-by: aoiasd <zhicheng.yue@zilliz.com> Co-authored-by: aoiasd <45024769+aoiasd@users.noreply.github.com>
67 lines
2.0 KiB
Go
67 lines
2.0 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 milvusclient
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/milvus-io/milvus/client/v2/column"
|
|
"github.com/milvus-io/milvus/client/v2/entity"
|
|
)
|
|
|
|
type ColumnBasedDataOptionSuite struct {
|
|
MockSuiteBase
|
|
}
|
|
|
|
func (s *ColumnBasedDataOptionSuite) NullableCompatible() {
|
|
intCol := column.NewColumnInt64("rbdo_field", []int64{1, 2, 3})
|
|
rbdo := NewColumnBasedInsertOption("rbdo_nullable", intCol)
|
|
|
|
coll := &entity.Collection{
|
|
Schema: entity.NewSchema().WithField(entity.NewField().WithName("rbdo_field").WithDataType(entity.FieldTypeInt64).WithNullable(true)),
|
|
}
|
|
req, err := rbdo.InsertRequest(coll)
|
|
s.NoError(err)
|
|
|
|
s.Require().Len(req.GetFieldsData(), 1)
|
|
fd := req.GetFieldsData()[0]
|
|
s.ElementsMatch([]int64{1, 2, 3}, fd.GetScalars().GetLongData())
|
|
s.ElementsMatch([]bool{true, true, true}, fd.GetValidData())
|
|
}
|
|
|
|
func TestRowBasedDataOption(t *testing.T) {
|
|
suite.Run(t, new(ColumnBasedDataOptionSuite))
|
|
}
|
|
|
|
type DeleteOptionSuite struct {
|
|
MockSuiteBase
|
|
}
|
|
|
|
func (s *DeleteOptionSuite) TestBasic() {
|
|
collectionName := fmt.Sprintf("coll_%s", s.randString(6))
|
|
opt := NewDeleteOption(collectionName)
|
|
|
|
s.Equal(collectionName, opt.Request().GetCollectionName())
|
|
}
|
|
|
|
func TestDeleteOption(t *testing.T) {
|
|
suite.Run(t, new(DeleteOptionSuite))
|
|
}
|