// 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 client import ( "context" "fmt" "testing" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/suite" "github.com/milvus-io/milvus-proto/go-api/v2/commonpb" "github.com/milvus-io/milvus-proto/go-api/v2/milvuspb" "github.com/milvus-io/milvus/pkg/util/merr" ) type PartitionSuite struct { MockSuiteBase } func (s *PartitionSuite) TestListPartitions() { ctx, cancel := context.WithCancel(context.Background()) defer cancel() s.Run("success", func() { collectionName := fmt.Sprintf("coll_%s", s.randString(6)) s.mock.EXPECT().ShowPartitions(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, spr *milvuspb.ShowPartitionsRequest) (*milvuspb.ShowPartitionsResponse, error) { s.Equal(collectionName, spr.GetCollectionName()) return &milvuspb.ShowPartitionsResponse{ Status: merr.Success(), PartitionNames: []string{"_default", "part_1"}, PartitionIDs: []int64{100, 101}, }, nil }).Once() names, err := s.client.ListPartitions(ctx, NewListPartitionOption(collectionName)) s.NoError(err) s.ElementsMatch([]string{"_default", "part_1"}, names) }) s.Run("failure", func() { collectionName := fmt.Sprintf("coll_%s", s.randString(6)) s.mock.EXPECT().ShowPartitions(mock.Anything, mock.Anything).Return(nil, merr.WrapErrServiceInternal("mocked")).Once() _, err := s.client.ListPartitions(ctx, NewListPartitionOption(collectionName)) s.Error(err) }) } func (s *PartitionSuite) TestCreatePartition() { ctx, cancel := context.WithCancel(context.Background()) defer cancel() s.Run("success", func() { collectionName := fmt.Sprintf("coll_%s", s.randString(6)) partitionName := fmt.Sprintf("part_%s", s.randString(6)) s.mock.EXPECT().CreatePartition(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, cpr *milvuspb.CreatePartitionRequest) (*commonpb.Status, error) { s.Equal(collectionName, cpr.GetCollectionName()) s.Equal(partitionName, cpr.GetPartitionName()) return merr.Success(), nil }).Once() err := s.client.CreatePartition(ctx, NewCreatePartitionOption(collectionName, partitionName)) s.NoError(err) }) s.Run("success", func() { collectionName := fmt.Sprintf("coll_%s", s.randString(6)) partitionName := fmt.Sprintf("part_%s", s.randString(6)) s.mock.EXPECT().CreatePartition(mock.Anything, mock.Anything).Return(nil, merr.WrapErrServiceInternal("mocked")).Once() err := s.client.CreatePartition(ctx, NewCreatePartitionOption(collectionName, partitionName)) s.Error(err) }) } func (s *PartitionSuite) TestHasPartition() { ctx, cancel := context.WithCancel(context.Background()) defer cancel() s.Run("success", func() { collectionName := fmt.Sprintf("coll_%s", s.randString(6)) partitionName := fmt.Sprintf("part_%s", s.randString(6)) s.mock.EXPECT().HasPartition(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, hpr *milvuspb.HasPartitionRequest) (*milvuspb.BoolResponse, error) { s.Equal(collectionName, hpr.GetCollectionName()) s.Equal(partitionName, hpr.GetPartitionName()) return &milvuspb.BoolResponse{Status: merr.Success()}, nil }).Once() has, err := s.client.HasPartition(ctx, NewHasPartitionOption(collectionName, partitionName)) s.NoError(err) s.False(has) s.mock.EXPECT().HasPartition(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, hpr *milvuspb.HasPartitionRequest) (*milvuspb.BoolResponse, error) { s.Equal(collectionName, hpr.GetCollectionName()) s.Equal(partitionName, hpr.GetPartitionName()) return &milvuspb.BoolResponse{ Status: merr.Success(), Value: true, }, nil }).Once() has, err = s.client.HasPartition(ctx, NewHasPartitionOption(collectionName, partitionName)) s.NoError(err) s.True(has) }) s.Run("failure", func() { collectionName := fmt.Sprintf("coll_%s", s.randString(6)) partitionName := fmt.Sprintf("part_%s", s.randString(6)) s.mock.EXPECT().HasPartition(mock.Anything, mock.Anything).Return(nil, merr.WrapErrServiceInternal("mocked")).Once() _, err := s.client.HasPartition(ctx, NewHasPartitionOption(collectionName, partitionName)) s.Error(err) }) } func (s *PartitionSuite) TestDropPartition() { ctx, cancel := context.WithCancel(context.Background()) defer cancel() s.Run("success", func() { collectionName := fmt.Sprintf("coll_%s", s.randString(6)) partitionName := fmt.Sprintf("part_%s", s.randString(6)) s.mock.EXPECT().DropPartition(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, dpr *milvuspb.DropPartitionRequest) (*commonpb.Status, error) { s.Equal(collectionName, dpr.GetCollectionName()) s.Equal(partitionName, dpr.GetPartitionName()) return merr.Success(), nil }).Once() err := s.client.DropPartition(ctx, NewDropPartitionOption(collectionName, partitionName)) s.NoError(err) }) s.Run("failure", func() { collectionName := fmt.Sprintf("coll_%s", s.randString(6)) partitionName := fmt.Sprintf("part_%s", s.randString(6)) s.mock.EXPECT().DropPartition(mock.Anything, mock.Anything).Return(nil, merr.WrapErrServiceInternal("mocked")).Once() err := s.client.DropPartition(ctx, NewDropPartitionOption(collectionName, partitionName)) s.Error(err) }) } func TestPartition(t *testing.T) { suite.Run(t, new(PartitionSuite)) }