mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 11:29:48 +08:00
1e51255c15
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
127 lines
3.1 KiB
Go
127 lines
3.1 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 metacache
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/msgpb"
|
|
)
|
|
|
|
type SegmentFilterSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (s *SegmentFilterSuite) TestFilters() {
|
|
info := &SegmentInfo{}
|
|
|
|
partitionID := int64(1001)
|
|
filter := WithPartitionID(partitionID)
|
|
info.partitionID = partitionID + 1
|
|
s.False(filter(info))
|
|
info.partitionID = partitionID
|
|
s.True(filter(info))
|
|
|
|
segmentID := int64(10001)
|
|
filter = WithSegmentID(segmentID)
|
|
info.segmentID = segmentID + 1
|
|
s.False(filter(info))
|
|
info.segmentID = segmentID
|
|
s.True(filter(info))
|
|
|
|
state := commonpb.SegmentState_Growing
|
|
filter = WithSegmentState(state)
|
|
info.state = commonpb.SegmentState_Flushed
|
|
s.False(filter(info))
|
|
info.state = state
|
|
s.True(filter(info))
|
|
|
|
filter = WithStartPosNotRecorded()
|
|
info.startPosRecorded = true
|
|
s.False(filter(info))
|
|
info.startPosRecorded = false
|
|
s.True(filter(info))
|
|
}
|
|
|
|
func TestFilters(t *testing.T) {
|
|
suite.Run(t, new(SegmentFilterSuite))
|
|
}
|
|
|
|
type SegmentActionSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func (s *SegmentActionSuite) TestActions() {
|
|
info := &SegmentInfo{}
|
|
|
|
state := commonpb.SegmentState_Flushed
|
|
action := UpdateState(state)
|
|
action(info)
|
|
s.Equal(state, info.State())
|
|
|
|
cp := &msgpb.MsgPosition{
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
ChannelName: "channel_1",
|
|
Timestamp: 20000,
|
|
}
|
|
action = UpdateCheckpoint(cp)
|
|
action(info)
|
|
s.Equal(cp, info.Checkpoint())
|
|
|
|
numOfRows := int64(2048)
|
|
action = UpdateNumOfRows(numOfRows)
|
|
action(info)
|
|
s.Equal(numOfRows, info.NumOfRows())
|
|
|
|
compactTo := int64(1002)
|
|
action = CompactTo(compactTo)
|
|
action(info)
|
|
s.Equal(compactTo, info.CompactTo())
|
|
}
|
|
|
|
func (s *SegmentActionSuite) TestMergeActions() {
|
|
info := &SegmentInfo{}
|
|
|
|
var actions []SegmentAction
|
|
state := commonpb.SegmentState_Flushed
|
|
actions = append(actions, UpdateState(state))
|
|
|
|
cp := &msgpb.MsgPosition{
|
|
MsgID: []byte{1, 2, 3, 4},
|
|
ChannelName: "channel_1",
|
|
Timestamp: 20000,
|
|
}
|
|
actions = append(actions, UpdateCheckpoint(cp))
|
|
|
|
numOfRows := int64(2048)
|
|
actions = append(actions, UpdateNumOfRows(numOfRows))
|
|
|
|
action := MergeSegmentAction(actions...)
|
|
action(info)
|
|
|
|
s.Equal(state, info.State())
|
|
s.Equal(numOfRows, info.NumOfRows())
|
|
s.Equal(cp, info.Checkpoint())
|
|
}
|
|
|
|
func TestActions(t *testing.T) {
|
|
suite.Run(t, new(SegmentActionSuite))
|
|
}
|