2023-02-22 11:37:45 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-09-05 13:29:11 +08:00
|
|
|
package rootcoord
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
2023-02-26 11:31:49 +08:00
|
|
|
"github.com/cockroachdb/errors"
|
|
|
|
|
2023-01-12 09:55:42 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
2022-10-10 20:31:22 +08:00
|
|
|
|
2023-06-09 01:28:37 +08:00
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/milvuspb"
|
2023-01-12 09:55:42 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/metastore/model"
|
|
|
|
"github.com/milvus-io/milvus/internal/mocks"
|
|
|
|
"github.com/milvus-io/milvus/internal/proto/indexpb"
|
2023-06-25 17:20:43 +08:00
|
|
|
mockrootcoord "github.com/milvus-io/milvus/internal/rootcoord/mocks"
|
|
|
|
|
2022-09-05 13:29:11 +08:00
|
|
|
"github.com/stretchr/testify/assert"
|
2023-01-12 09:55:42 +08:00
|
|
|
"github.com/stretchr/testify/mock"
|
2022-09-05 13:29:11 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestServerBroker_ReleaseCollection(t *testing.T) {
|
|
|
|
t.Run("failed to execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withInvalidQueryCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.ReleaseCollection(ctx, 1)
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success error code on execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withFailedQueryCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.ReleaseCollection(ctx, 1)
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
|
|
c := newTestCore(withValidQueryCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.ReleaseCollection(ctx, 1)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestServerBroker_GetSegmentInfo(t *testing.T) {
|
|
|
|
t.Run("failed to execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withInvalidQueryCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
_, err := b.GetQuerySegmentInfo(ctx, 1, []int64{1, 2})
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success error code on execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withFailedQueryCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
resp, err := b.GetQuerySegmentInfo(ctx, 1, []int64{1, 2})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, commonpb.ErrorCode_UnexpectedError, resp.GetStatus().GetErrorCode())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
|
|
c := newTestCore(withValidQueryCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
resp, err := b.GetQuerySegmentInfo(ctx, 1, []int64{1, 2})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestServerBroker_WatchChannels(t *testing.T) {
|
|
|
|
t.Run("failed to execute", func(t *testing.T) {
|
|
|
|
defer cleanTestEnv()
|
|
|
|
|
|
|
|
c := newTestCore(withInvalidDataCoord(), withRocksMqTtSynchronizer())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.WatchChannels(ctx, &watchInfo{})
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success error code on execute", func(t *testing.T) {
|
|
|
|
defer cleanTestEnv()
|
|
|
|
|
|
|
|
c := newTestCore(withFailedDataCoord(), withRocksMqTtSynchronizer())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.WatchChannels(ctx, &watchInfo{})
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
|
|
defer cleanTestEnv()
|
|
|
|
|
|
|
|
c := newTestCore(withValidDataCoord(), withRocksMqTtSynchronizer())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.WatchChannels(ctx, &watchInfo{})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestServerBroker_UnwatchChannels(t *testing.T) {
|
|
|
|
// TODO: implement
|
|
|
|
b := newServerBroker(newTestCore())
|
|
|
|
ctx := context.Background()
|
|
|
|
b.UnwatchChannels(ctx, &watchInfo{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestServerBroker_Flush(t *testing.T) {
|
|
|
|
t.Run("failed to execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withInvalidDataCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.Flush(ctx, 1, []int64{1, 2})
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success error code on execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withFailedDataCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.Flush(ctx, 1, []int64{1, 2})
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
|
|
c := newTestCore(withValidDataCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.Flush(ctx, 1, []int64{1, 2})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestServerBroker_Import(t *testing.T) {
|
|
|
|
t.Run("failed to execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withInvalidDataCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
resp, err := b.Import(ctx, &datapb.ImportTaskRequest{})
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.Nil(t, resp)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success error code on execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withFailedDataCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
resp, err := b.Import(ctx, &datapb.ImportTaskRequest{})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, commonpb.ErrorCode_UnexpectedError, resp.GetStatus().GetErrorCode())
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
|
|
c := newTestCore(withValidDataCoord())
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
resp, err := b.Import(ctx, &datapb.ImportTaskRequest{})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestServerBroker_DropCollectionIndex(t *testing.T) {
|
|
|
|
t.Run("failed to execute", func(t *testing.T) {
|
2023-01-04 19:37:36 +08:00
|
|
|
c := newTestCore(withInvalidDataCoord())
|
2022-09-05 13:29:11 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
2022-09-23 09:36:51 +08:00
|
|
|
err := b.DropCollectionIndex(ctx, 1, nil)
|
2022-09-05 13:29:11 +08:00
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success error code on execute", func(t *testing.T) {
|
2023-01-04 19:37:36 +08:00
|
|
|
c := newTestCore(withFailedDataCoord())
|
2022-09-05 13:29:11 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
2022-09-23 09:36:51 +08:00
|
|
|
err := b.DropCollectionIndex(ctx, 1, nil)
|
2022-09-05 13:29:11 +08:00
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("success", func(t *testing.T) {
|
2023-01-04 19:37:36 +08:00
|
|
|
c := newTestCore(withValidDataCoord())
|
2022-09-05 13:29:11 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
2022-09-23 09:36:51 +08:00
|
|
|
err := b.DropCollectionIndex(ctx, 1, nil)
|
2022-09-05 13:29:11 +08:00
|
|
|
assert.NoError(t, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestServerBroker_GetSegmentIndexState(t *testing.T) {
|
|
|
|
t.Run("failed to execute", func(t *testing.T) {
|
2023-01-04 19:37:36 +08:00
|
|
|
c := newTestCore(withInvalidDataCoord())
|
2022-09-05 13:29:11 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
_, err := b.GetSegmentIndexState(ctx, 1, "index_name", []UniqueID{1, 2})
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success error code on execute", func(t *testing.T) {
|
2023-01-04 19:37:36 +08:00
|
|
|
c := newTestCore(withFailedDataCoord())
|
2022-09-05 13:29:11 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
_, err := b.GetSegmentIndexState(ctx, 1, "index_name", []UniqueID{1, 2})
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("success", func(t *testing.T) {
|
2023-01-04 19:37:36 +08:00
|
|
|
c := newTestCore(withValidDataCoord())
|
2023-01-11 14:35:40 +08:00
|
|
|
c.dataCoord.(*mockDataCoord).GetSegmentIndexStateFunc = func(ctx context.Context, req *indexpb.GetSegmentIndexStateRequest) (*indexpb.GetSegmentIndexStateResponse, error) {
|
|
|
|
return &indexpb.GetSegmentIndexStateResponse{
|
2022-09-05 13:29:11 +08:00
|
|
|
Status: succStatus(),
|
2023-01-11 14:35:40 +08:00
|
|
|
States: []*indexpb.SegmentIndexState{
|
2022-09-05 13:29:11 +08:00
|
|
|
{
|
|
|
|
SegmentID: 1,
|
|
|
|
State: commonpb.IndexState_Finished,
|
|
|
|
FailReason: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
states, err := b.GetSegmentIndexState(ctx, 1, "index_name", []UniqueID{1})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, 1, len(states))
|
|
|
|
assert.Equal(t, commonpb.IndexState_Finished, states[0].GetState())
|
|
|
|
})
|
|
|
|
}
|
2022-10-10 20:31:22 +08:00
|
|
|
|
2022-10-11 21:07:23 +08:00
|
|
|
func TestServerBroker_BroadcastAlteredCollection(t *testing.T) {
|
2022-11-21 10:09:10 +08:00
|
|
|
collMeta := &model.Collection{
|
|
|
|
CollectionID: 1,
|
|
|
|
StartPositions: []*commonpb.KeyDataPair{
|
|
|
|
{
|
|
|
|
Key: "0",
|
|
|
|
Data: []byte("0"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Partitions: []*model.Partition{
|
|
|
|
{
|
|
|
|
PartitionID: 2,
|
|
|
|
PartitionName: "test_partition_name_1",
|
|
|
|
PartitionCreatedTimestamp: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("get meta fail", func(t *testing.T) {
|
|
|
|
c := newTestCore(withInvalidDataCoord())
|
2023-06-25 17:20:43 +08:00
|
|
|
meta := mockrootcoord.NewIMetaTable(t)
|
|
|
|
meta.On("GetCollectionByID",
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
).Return(nil, errors.New("err"))
|
|
|
|
c.meta = meta
|
2022-11-21 10:09:10 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
|
|
|
err := b.BroadcastAlteredCollection(ctx, &milvuspb.AlterCollectionRequest{})
|
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
2022-10-10 20:31:22 +08:00
|
|
|
t.Run("failed to execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withInvalidDataCoord())
|
2023-06-25 17:20:43 +08:00
|
|
|
meta := mockrootcoord.NewIMetaTable(t)
|
|
|
|
meta.On("GetCollectionByID",
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
).Return(collMeta, nil)
|
|
|
|
c.meta = meta
|
2022-10-10 20:31:22 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
2022-10-11 21:07:23 +08:00
|
|
|
err := b.BroadcastAlteredCollection(ctx, &milvuspb.AlterCollectionRequest{})
|
2022-10-10 20:31:22 +08:00
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success error code on execute", func(t *testing.T) {
|
|
|
|
c := newTestCore(withFailedDataCoord())
|
2023-06-25 17:20:43 +08:00
|
|
|
meta := mockrootcoord.NewIMetaTable(t)
|
|
|
|
meta.On("GetCollectionByID",
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
).Return(collMeta, nil)
|
|
|
|
c.meta = meta
|
2022-10-10 20:31:22 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
2022-10-11 21:07:23 +08:00
|
|
|
err := b.BroadcastAlteredCollection(ctx, &milvuspb.AlterCollectionRequest{})
|
2022-10-10 20:31:22 +08:00
|
|
|
assert.Error(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
|
|
c := newTestCore(withValidDataCoord())
|
2023-06-25 17:20:43 +08:00
|
|
|
meta := mockrootcoord.NewIMetaTable(t)
|
|
|
|
meta.On("GetCollectionByID",
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
mock.Anything,
|
|
|
|
).Return(collMeta, nil)
|
|
|
|
c.meta = meta
|
2022-10-10 20:31:22 +08:00
|
|
|
b := newServerBroker(c)
|
|
|
|
ctx := context.Background()
|
2022-11-21 10:09:10 +08:00
|
|
|
|
|
|
|
req := &milvuspb.AlterCollectionRequest{
|
|
|
|
CollectionID: 1,
|
|
|
|
}
|
|
|
|
err := b.BroadcastAlteredCollection(ctx, req)
|
2022-10-10 20:31:22 +08:00
|
|
|
assert.NoError(t, err)
|
|
|
|
})
|
|
|
|
}
|
2023-01-12 09:55:42 +08:00
|
|
|
|
|
|
|
func TestServerBroker_GcConfirm(t *testing.T) {
|
|
|
|
t.Run("invalid datacoord", func(t *testing.T) {
|
2023-07-14 10:12:31 +08:00
|
|
|
dc := mocks.NewMockDataCoord(t)
|
2023-01-12 09:55:42 +08:00
|
|
|
dc.On("GcConfirm",
|
|
|
|
mock.Anything, // context.Context
|
|
|
|
mock.Anything, // *datapb.GcConfirmRequest
|
|
|
|
).Return(nil, errors.New("error mock GcConfirm"))
|
|
|
|
c := newTestCore(withDataCoord(dc))
|
|
|
|
broker := newServerBroker(c)
|
|
|
|
assert.False(t, broker.GcConfirm(context.Background(), 100, 10000))
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non success", func(t *testing.T) {
|
2023-07-14 10:12:31 +08:00
|
|
|
dc := mocks.NewMockDataCoord(t)
|
2023-01-12 09:55:42 +08:00
|
|
|
dc.On("GcConfirm",
|
|
|
|
mock.Anything, // context.Context
|
|
|
|
mock.Anything, // *datapb.GcConfirmRequest
|
|
|
|
).Return(
|
|
|
|
&datapb.GcConfirmResponse{Status: failStatus(commonpb.ErrorCode_UnexpectedError, "error mock GcConfirm")},
|
|
|
|
nil)
|
|
|
|
c := newTestCore(withDataCoord(dc))
|
|
|
|
broker := newServerBroker(c)
|
|
|
|
assert.False(t, broker.GcConfirm(context.Background(), 100, 10000))
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("normal case", func(t *testing.T) {
|
2023-07-14 10:12:31 +08:00
|
|
|
dc := mocks.NewMockDataCoord(t)
|
2023-01-12 09:55:42 +08:00
|
|
|
dc.On("GcConfirm",
|
|
|
|
mock.Anything, // context.Context
|
|
|
|
mock.Anything, // *datapb.GcConfirmRequest
|
|
|
|
).Return(
|
|
|
|
&datapb.GcConfirmResponse{Status: succStatus(), GcFinished: true},
|
|
|
|
nil)
|
|
|
|
c := newTestCore(withDataCoord(dc))
|
|
|
|
broker := newServerBroker(c)
|
|
|
|
assert.True(t, broker.GcConfirm(context.Background(), 100, 10000))
|
|
|
|
})
|
|
|
|
}
|