mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
081572d31c
Signed-off-by: yah01 <yang.cen@zilliz.com> Co-authored-by: Congqi Xia <congqi.xia@zilliz.com> Co-authored-by: aoiasd <zhicheng.yue@zilliz.com>
109 lines
2.4 KiB
Go
109 lines
2.4 KiB
Go
package segments
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/schemapb"
|
|
"github.com/milvus-io/milvus/internal/proto/querypb"
|
|
"github.com/milvus-io/milvus/internal/util/paramtable"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type ManagerSuite struct {
|
|
suite.Suite
|
|
|
|
// Data
|
|
segmentIDs []int64
|
|
collectionIDs []int64
|
|
partitionIDs []int64
|
|
channels []string
|
|
types []SegmentType
|
|
segments []*LocalSegment
|
|
|
|
mgr *segmentManager
|
|
}
|
|
|
|
func (s *ManagerSuite) SetupSuite() {
|
|
paramtable.Init()
|
|
s.segmentIDs = []int64{1, 2, 3}
|
|
s.collectionIDs = []int64{100, 200, 300}
|
|
s.partitionIDs = []int64{10, 11, 12}
|
|
s.channels = []string{"dml1", "dml2", "dml3"}
|
|
s.types = []SegmentType{SegmentTypeSealed, SegmentTypeGrowing, SegmentTypeSealed}
|
|
}
|
|
|
|
func (s *ManagerSuite) SetupTest() {
|
|
s.mgr = NewSegmentManager()
|
|
|
|
for i, id := range s.segmentIDs {
|
|
segment, err := NewSegment(
|
|
NewCollection(s.collectionIDs[i], GenTestCollectionSchema("manager-suite", schemapb.DataType_Int64), querypb.LoadType_LoadCollection),
|
|
id,
|
|
s.partitionIDs[i],
|
|
s.collectionIDs[i],
|
|
s.channels[i],
|
|
s.types[i],
|
|
0,
|
|
nil,
|
|
nil,
|
|
)
|
|
s.Require().NoError(err)
|
|
s.segments = append(s.segments, segment)
|
|
|
|
s.mgr.Put(s.types[i], segment)
|
|
}
|
|
}
|
|
|
|
func (s *ManagerSuite) TestGetBy() {
|
|
for i, partitionID := range s.partitionIDs {
|
|
segments := s.mgr.GetBy(WithPartition(partitionID))
|
|
s.Contains(segments, s.segments[i])
|
|
}
|
|
|
|
for i, channel := range s.channels {
|
|
segments := s.mgr.GetBy(WithChannel(channel))
|
|
s.Contains(segments, s.segments[i])
|
|
}
|
|
|
|
for i, typ := range s.types {
|
|
segments := s.mgr.GetBy(WithType(typ))
|
|
s.Contains(segments, s.segments[i])
|
|
}
|
|
}
|
|
|
|
func (s *ManagerSuite) TestRemoveGrowing() {
|
|
for i, id := range s.segmentIDs {
|
|
isGrowing := s.types[i] == SegmentTypeGrowing
|
|
|
|
s.mgr.Remove(id, querypb.DataScope_Streaming)
|
|
s.Equal(s.mgr.Get(id) == nil, isGrowing)
|
|
}
|
|
}
|
|
|
|
func (s *ManagerSuite) TestRemoveSealed() {
|
|
for i, id := range s.segmentIDs {
|
|
isSealed := s.types[i] == SegmentTypeSealed
|
|
|
|
s.mgr.Remove(id, querypb.DataScope_Historical)
|
|
s.Equal(s.mgr.Get(id) == nil, isSealed)
|
|
}
|
|
}
|
|
|
|
func (s *ManagerSuite) TestRemoveAll() {
|
|
for _, id := range s.segmentIDs {
|
|
s.mgr.Remove(id, querypb.DataScope_All)
|
|
s.Nil(s.mgr.Get(id))
|
|
}
|
|
}
|
|
|
|
func (s *ManagerSuite) TestRemoveBy() {
|
|
for _, id := range s.segmentIDs {
|
|
s.mgr.RemoveBy(WithID(id))
|
|
s.Nil(s.mgr.Get(id))
|
|
}
|
|
}
|
|
|
|
func TestManager(t *testing.T) {
|
|
suite.Run(t, new(ManagerSuite))
|
|
}
|