2023-03-09 14:13:52 +08:00
// Code generated by mockery v2.15.0. DO NOT EDIT.
2023-01-12 09:55:42 +08:00
package mocks
import (
context "context"
2023-03-04 23:21:50 +08:00
"github.com/milvus-io/milvus-proto/go-api/msgpb"
2023-01-12 09:55:42 +08:00
datapb "github.com/milvus-io/milvus/internal/proto/datapb"
mock "github.com/stretchr/testify/mock"
model "github.com/milvus-io/milvus/internal/metastore/model"
)
// DataCoordCatalog is an autogenerated mock type for the DataCoordCatalog type
type DataCoordCatalog struct {
mock . Mock
}
type DataCoordCatalog_Expecter struct {
mock * mock . Mock
}
func ( _m * DataCoordCatalog ) EXPECT ( ) * DataCoordCatalog_Expecter {
return & DataCoordCatalog_Expecter { mock : & _m . Mock }
}
// AddSegment provides a mock function with given fields: ctx, segment
func ( _m * DataCoordCatalog ) AddSegment ( ctx context . Context , segment * datapb . SegmentInfo ) error {
ret := _m . Called ( ctx , segment )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * datapb . SegmentInfo ) error ) ; ok {
r0 = rf ( ctx , segment )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_AddSegment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AddSegment'
type DataCoordCatalog_AddSegment_Call struct {
* mock . Call
}
// AddSegment is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - segment *datapb.SegmentInfo
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) AddSegment ( ctx interface { } , segment interface { } ) * DataCoordCatalog_AddSegment_Call {
return & DataCoordCatalog_AddSegment_Call { Call : _e . mock . On ( "AddSegment" , ctx , segment ) }
}
func ( _c * DataCoordCatalog_AddSegment_Call ) Run ( run func ( ctx context . Context , segment * datapb . SegmentInfo ) ) * DataCoordCatalog_AddSegment_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * datapb . SegmentInfo ) )
} )
return _c
}
func ( _c * DataCoordCatalog_AddSegment_Call ) Return ( _a0 error ) * DataCoordCatalog_AddSegment_Call {
_c . Call . Return ( _a0 )
return _c
}
// AlterIndex provides a mock function with given fields: ctx, newIndex
func ( _m * DataCoordCatalog ) AlterIndex ( ctx context . Context , newIndex * model . Index ) error {
ret := _m . Called ( ctx , newIndex )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * model . Index ) error ) ; ok {
r0 = rf ( ctx , newIndex )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_AlterIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlterIndex'
type DataCoordCatalog_AlterIndex_Call struct {
* mock . Call
}
// AlterIndex is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - newIndex *model.Index
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) AlterIndex ( ctx interface { } , newIndex interface { } ) * DataCoordCatalog_AlterIndex_Call {
return & DataCoordCatalog_AlterIndex_Call { Call : _e . mock . On ( "AlterIndex" , ctx , newIndex ) }
}
func ( _c * DataCoordCatalog_AlterIndex_Call ) Run ( run func ( ctx context . Context , newIndex * model . Index ) ) * DataCoordCatalog_AlterIndex_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * model . Index ) )
} )
return _c
}
func ( _c * DataCoordCatalog_AlterIndex_Call ) Return ( _a0 error ) * DataCoordCatalog_AlterIndex_Call {
_c . Call . Return ( _a0 )
return _c
}
// AlterIndexes provides a mock function with given fields: ctx, newIndexes
func ( _m * DataCoordCatalog ) AlterIndexes ( ctx context . Context , newIndexes [ ] * model . Index ) error {
ret := _m . Called ( ctx , newIndexes )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , [ ] * model . Index ) error ) ; ok {
r0 = rf ( ctx , newIndexes )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_AlterIndexes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlterIndexes'
type DataCoordCatalog_AlterIndexes_Call struct {
* mock . Call
}
// AlterIndexes is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - newIndexes []*model.Index
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) AlterIndexes ( ctx interface { } , newIndexes interface { } ) * DataCoordCatalog_AlterIndexes_Call {
return & DataCoordCatalog_AlterIndexes_Call { Call : _e . mock . On ( "AlterIndexes" , ctx , newIndexes ) }
}
func ( _c * DataCoordCatalog_AlterIndexes_Call ) Run ( run func ( ctx context . Context , newIndexes [ ] * model . Index ) ) * DataCoordCatalog_AlterIndexes_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( [ ] * model . Index ) )
} )
return _c
}
func ( _c * DataCoordCatalog_AlterIndexes_Call ) Return ( _a0 error ) * DataCoordCatalog_AlterIndexes_Call {
_c . Call . Return ( _a0 )
return _c
}
// AlterSegment provides a mock function with given fields: ctx, newSegment, oldSegment
func ( _m * DataCoordCatalog ) AlterSegment ( ctx context . Context , newSegment * datapb . SegmentInfo , oldSegment * datapb . SegmentInfo ) error {
ret := _m . Called ( ctx , newSegment , oldSegment )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * datapb . SegmentInfo , * datapb . SegmentInfo ) error ) ; ok {
r0 = rf ( ctx , newSegment , oldSegment )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_AlterSegment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlterSegment'
type DataCoordCatalog_AlterSegment_Call struct {
* mock . Call
}
// AlterSegment is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - newSegment *datapb.SegmentInfo
// - oldSegment *datapb.SegmentInfo
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) AlterSegment ( ctx interface { } , newSegment interface { } , oldSegment interface { } ) * DataCoordCatalog_AlterSegment_Call {
return & DataCoordCatalog_AlterSegment_Call { Call : _e . mock . On ( "AlterSegment" , ctx , newSegment , oldSegment ) }
}
func ( _c * DataCoordCatalog_AlterSegment_Call ) Run ( run func ( ctx context . Context , newSegment * datapb . SegmentInfo , oldSegment * datapb . SegmentInfo ) ) * DataCoordCatalog_AlterSegment_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * datapb . SegmentInfo ) , args [ 2 ] . ( * datapb . SegmentInfo ) )
} )
return _c
}
func ( _c * DataCoordCatalog_AlterSegment_Call ) Return ( _a0 error ) * DataCoordCatalog_AlterSegment_Call {
_c . Call . Return ( _a0 )
return _c
}
// AlterSegmentIndex provides a mock function with given fields: ctx, newSegIndex
func ( _m * DataCoordCatalog ) AlterSegmentIndex ( ctx context . Context , newSegIndex * model . SegmentIndex ) error {
ret := _m . Called ( ctx , newSegIndex )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * model . SegmentIndex ) error ) ; ok {
r0 = rf ( ctx , newSegIndex )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_AlterSegmentIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlterSegmentIndex'
type DataCoordCatalog_AlterSegmentIndex_Call struct {
* mock . Call
}
// AlterSegmentIndex is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - newSegIndex *model.SegmentIndex
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) AlterSegmentIndex ( ctx interface { } , newSegIndex interface { } ) * DataCoordCatalog_AlterSegmentIndex_Call {
return & DataCoordCatalog_AlterSegmentIndex_Call { Call : _e . mock . On ( "AlterSegmentIndex" , ctx , newSegIndex ) }
}
func ( _c * DataCoordCatalog_AlterSegmentIndex_Call ) Run ( run func ( ctx context . Context , newSegIndex * model . SegmentIndex ) ) * DataCoordCatalog_AlterSegmentIndex_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * model . SegmentIndex ) )
} )
return _c
}
func ( _c * DataCoordCatalog_AlterSegmentIndex_Call ) Return ( _a0 error ) * DataCoordCatalog_AlterSegmentIndex_Call {
_c . Call . Return ( _a0 )
return _c
}
// AlterSegmentIndexes provides a mock function with given fields: ctx, newSegIdxes
func ( _m * DataCoordCatalog ) AlterSegmentIndexes ( ctx context . Context , newSegIdxes [ ] * model . SegmentIndex ) error {
ret := _m . Called ( ctx , newSegIdxes )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , [ ] * model . SegmentIndex ) error ) ; ok {
r0 = rf ( ctx , newSegIdxes )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_AlterSegmentIndexes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlterSegmentIndexes'
type DataCoordCatalog_AlterSegmentIndexes_Call struct {
* mock . Call
}
// AlterSegmentIndexes is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - newSegIdxes []*model.SegmentIndex
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) AlterSegmentIndexes ( ctx interface { } , newSegIdxes interface { } ) * DataCoordCatalog_AlterSegmentIndexes_Call {
return & DataCoordCatalog_AlterSegmentIndexes_Call { Call : _e . mock . On ( "AlterSegmentIndexes" , ctx , newSegIdxes ) }
}
func ( _c * DataCoordCatalog_AlterSegmentIndexes_Call ) Run ( run func ( ctx context . Context , newSegIdxes [ ] * model . SegmentIndex ) ) * DataCoordCatalog_AlterSegmentIndexes_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( [ ] * model . SegmentIndex ) )
} )
return _c
}
func ( _c * DataCoordCatalog_AlterSegmentIndexes_Call ) Return ( _a0 error ) * DataCoordCatalog_AlterSegmentIndexes_Call {
_c . Call . Return ( _a0 )
return _c
}
// AlterSegments provides a mock function with given fields: ctx, newSegments
func ( _m * DataCoordCatalog ) AlterSegments ( ctx context . Context , newSegments [ ] * datapb . SegmentInfo ) error {
ret := _m . Called ( ctx , newSegments )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , [ ] * datapb . SegmentInfo ) error ) ; ok {
r0 = rf ( ctx , newSegments )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_AlterSegments_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlterSegments'
type DataCoordCatalog_AlterSegments_Call struct {
* mock . Call
}
// AlterSegments is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - newSegments []*datapb.SegmentInfo
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) AlterSegments ( ctx interface { } , newSegments interface { } ) * DataCoordCatalog_AlterSegments_Call {
return & DataCoordCatalog_AlterSegments_Call { Call : _e . mock . On ( "AlterSegments" , ctx , newSegments ) }
}
func ( _c * DataCoordCatalog_AlterSegments_Call ) Run ( run func ( ctx context . Context , newSegments [ ] * datapb . SegmentInfo ) ) * DataCoordCatalog_AlterSegments_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( [ ] * datapb . SegmentInfo ) )
} )
return _c
}
func ( _c * DataCoordCatalog_AlterSegments_Call ) Return ( _a0 error ) * DataCoordCatalog_AlterSegments_Call {
_c . Call . Return ( _a0 )
return _c
}
// AlterSegmentsAndAddNewSegment provides a mock function with given fields: ctx, segments, newSegment
func ( _m * DataCoordCatalog ) AlterSegmentsAndAddNewSegment ( ctx context . Context , segments [ ] * datapb . SegmentInfo , newSegment * datapb . SegmentInfo ) error {
ret := _m . Called ( ctx , segments , newSegment )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , [ ] * datapb . SegmentInfo , * datapb . SegmentInfo ) error ) ; ok {
r0 = rf ( ctx , segments , newSegment )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_AlterSegmentsAndAddNewSegment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlterSegmentsAndAddNewSegment'
type DataCoordCatalog_AlterSegmentsAndAddNewSegment_Call struct {
* mock . Call
}
// AlterSegmentsAndAddNewSegment is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - segments []*datapb.SegmentInfo
// - newSegment *datapb.SegmentInfo
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) AlterSegmentsAndAddNewSegment ( ctx interface { } , segments interface { } , newSegment interface { } ) * DataCoordCatalog_AlterSegmentsAndAddNewSegment_Call {
return & DataCoordCatalog_AlterSegmentsAndAddNewSegment_Call { Call : _e . mock . On ( "AlterSegmentsAndAddNewSegment" , ctx , segments , newSegment ) }
}
func ( _c * DataCoordCatalog_AlterSegmentsAndAddNewSegment_Call ) Run ( run func ( ctx context . Context , segments [ ] * datapb . SegmentInfo , newSegment * datapb . SegmentInfo ) ) * DataCoordCatalog_AlterSegmentsAndAddNewSegment_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( [ ] * datapb . SegmentInfo ) , args [ 2 ] . ( * datapb . SegmentInfo ) )
} )
return _c
}
func ( _c * DataCoordCatalog_AlterSegmentsAndAddNewSegment_Call ) Return ( _a0 error ) * DataCoordCatalog_AlterSegmentsAndAddNewSegment_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-03-09 14:13:52 +08:00
// ChannelExists provides a mock function with given fields: ctx, channel
func ( _m * DataCoordCatalog ) ChannelExists ( ctx context . Context , channel string ) bool {
ret := _m . Called ( ctx , channel )
var r0 bool
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , string ) bool ) ; ok {
r0 = rf ( ctx , channel )
} else {
r0 = ret . Get ( 0 ) . ( bool )
}
return r0
}
// DataCoordCatalog_ChannelExists_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ChannelExists'
type DataCoordCatalog_ChannelExists_Call struct {
* mock . Call
}
// ChannelExists is a helper method to define mock.On call
// - ctx context.Context
// - channel string
func ( _e * DataCoordCatalog_Expecter ) ChannelExists ( ctx interface { } , channel interface { } ) * DataCoordCatalog_ChannelExists_Call {
return & DataCoordCatalog_ChannelExists_Call { Call : _e . mock . On ( "ChannelExists" , ctx , channel ) }
}
func ( _c * DataCoordCatalog_ChannelExists_Call ) Run ( run func ( ctx context . Context , channel string ) ) * DataCoordCatalog_ChannelExists_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( string ) )
} )
return _c
}
func ( _c * DataCoordCatalog_ChannelExists_Call ) Return ( _a0 bool ) * DataCoordCatalog_ChannelExists_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-01-12 09:55:42 +08:00
// CreateIndex provides a mock function with given fields: ctx, index
func ( _m * DataCoordCatalog ) CreateIndex ( ctx context . Context , index * model . Index ) error {
ret := _m . Called ( ctx , index )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * model . Index ) error ) ; ok {
r0 = rf ( ctx , index )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_CreateIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateIndex'
type DataCoordCatalog_CreateIndex_Call struct {
* mock . Call
}
// CreateIndex is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - index *model.Index
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) CreateIndex ( ctx interface { } , index interface { } ) * DataCoordCatalog_CreateIndex_Call {
return & DataCoordCatalog_CreateIndex_Call { Call : _e . mock . On ( "CreateIndex" , ctx , index ) }
}
func ( _c * DataCoordCatalog_CreateIndex_Call ) Run ( run func ( ctx context . Context , index * model . Index ) ) * DataCoordCatalog_CreateIndex_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * model . Index ) )
} )
return _c
}
func ( _c * DataCoordCatalog_CreateIndex_Call ) Return ( _a0 error ) * DataCoordCatalog_CreateIndex_Call {
_c . Call . Return ( _a0 )
return _c
}
// CreateSegmentIndex provides a mock function with given fields: ctx, segIdx
func ( _m * DataCoordCatalog ) CreateSegmentIndex ( ctx context . Context , segIdx * model . SegmentIndex ) error {
ret := _m . Called ( ctx , segIdx )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * model . SegmentIndex ) error ) ; ok {
r0 = rf ( ctx , segIdx )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_CreateSegmentIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateSegmentIndex'
type DataCoordCatalog_CreateSegmentIndex_Call struct {
* mock . Call
}
// CreateSegmentIndex is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - segIdx *model.SegmentIndex
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) CreateSegmentIndex ( ctx interface { } , segIdx interface { } ) * DataCoordCatalog_CreateSegmentIndex_Call {
return & DataCoordCatalog_CreateSegmentIndex_Call { Call : _e . mock . On ( "CreateSegmentIndex" , ctx , segIdx ) }
}
func ( _c * DataCoordCatalog_CreateSegmentIndex_Call ) Run ( run func ( ctx context . Context , segIdx * model . SegmentIndex ) ) * DataCoordCatalog_CreateSegmentIndex_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * model . SegmentIndex ) )
} )
return _c
}
func ( _c * DataCoordCatalog_CreateSegmentIndex_Call ) Return ( _a0 error ) * DataCoordCatalog_CreateSegmentIndex_Call {
_c . Call . Return ( _a0 )
return _c
}
// DropChannel provides a mock function with given fields: ctx, channel
func ( _m * DataCoordCatalog ) DropChannel ( ctx context . Context , channel string ) error {
ret := _m . Called ( ctx , channel )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , string ) error ) ; ok {
r0 = rf ( ctx , channel )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_DropChannel_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DropChannel'
type DataCoordCatalog_DropChannel_Call struct {
* mock . Call
}
// DropChannel is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - channel string
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) DropChannel ( ctx interface { } , channel interface { } ) * DataCoordCatalog_DropChannel_Call {
return & DataCoordCatalog_DropChannel_Call { Call : _e . mock . On ( "DropChannel" , ctx , channel ) }
}
func ( _c * DataCoordCatalog_DropChannel_Call ) Run ( run func ( ctx context . Context , channel string ) ) * DataCoordCatalog_DropChannel_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( string ) )
} )
return _c
}
func ( _c * DataCoordCatalog_DropChannel_Call ) Return ( _a0 error ) * DataCoordCatalog_DropChannel_Call {
_c . Call . Return ( _a0 )
return _c
}
// DropChannelCheckpoint provides a mock function with given fields: ctx, vChannel
func ( _m * DataCoordCatalog ) DropChannelCheckpoint ( ctx context . Context , vChannel string ) error {
ret := _m . Called ( ctx , vChannel )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , string ) error ) ; ok {
r0 = rf ( ctx , vChannel )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_DropChannelCheckpoint_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DropChannelCheckpoint'
type DataCoordCatalog_DropChannelCheckpoint_Call struct {
* mock . Call
}
// DropChannelCheckpoint is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - vChannel string
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) DropChannelCheckpoint ( ctx interface { } , vChannel interface { } ) * DataCoordCatalog_DropChannelCheckpoint_Call {
return & DataCoordCatalog_DropChannelCheckpoint_Call { Call : _e . mock . On ( "DropChannelCheckpoint" , ctx , vChannel ) }
}
func ( _c * DataCoordCatalog_DropChannelCheckpoint_Call ) Run ( run func ( ctx context . Context , vChannel string ) ) * DataCoordCatalog_DropChannelCheckpoint_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( string ) )
} )
return _c
}
func ( _c * DataCoordCatalog_DropChannelCheckpoint_Call ) Return ( _a0 error ) * DataCoordCatalog_DropChannelCheckpoint_Call {
_c . Call . Return ( _a0 )
return _c
}
// DropIndex provides a mock function with given fields: ctx, collID, dropIdxID
func ( _m * DataCoordCatalog ) DropIndex ( ctx context . Context , collID int64 , dropIdxID int64 ) error {
ret := _m . Called ( ctx , collID , dropIdxID )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , int64 ) error ) ; ok {
r0 = rf ( ctx , collID , dropIdxID )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_DropIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DropIndex'
type DataCoordCatalog_DropIndex_Call struct {
* mock . Call
}
// DropIndex is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - collID int64
// - dropIdxID int64
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) DropIndex ( ctx interface { } , collID interface { } , dropIdxID interface { } ) * DataCoordCatalog_DropIndex_Call {
return & DataCoordCatalog_DropIndex_Call { Call : _e . mock . On ( "DropIndex" , ctx , collID , dropIdxID ) }
}
func ( _c * DataCoordCatalog_DropIndex_Call ) Run ( run func ( ctx context . Context , collID int64 , dropIdxID int64 ) ) * DataCoordCatalog_DropIndex_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( int64 ) , args [ 2 ] . ( int64 ) )
} )
return _c
}
func ( _c * DataCoordCatalog_DropIndex_Call ) Return ( _a0 error ) * DataCoordCatalog_DropIndex_Call {
_c . Call . Return ( _a0 )
return _c
}
// DropSegment provides a mock function with given fields: ctx, segment
func ( _m * DataCoordCatalog ) DropSegment ( ctx context . Context , segment * datapb . SegmentInfo ) error {
ret := _m . Called ( ctx , segment )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * datapb . SegmentInfo ) error ) ; ok {
r0 = rf ( ctx , segment )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_DropSegment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DropSegment'
type DataCoordCatalog_DropSegment_Call struct {
* mock . Call
}
// DropSegment is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - segment *datapb.SegmentInfo
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) DropSegment ( ctx interface { } , segment interface { } ) * DataCoordCatalog_DropSegment_Call {
return & DataCoordCatalog_DropSegment_Call { Call : _e . mock . On ( "DropSegment" , ctx , segment ) }
}
func ( _c * DataCoordCatalog_DropSegment_Call ) Run ( run func ( ctx context . Context , segment * datapb . SegmentInfo ) ) * DataCoordCatalog_DropSegment_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * datapb . SegmentInfo ) )
} )
return _c
}
func ( _c * DataCoordCatalog_DropSegment_Call ) Return ( _a0 error ) * DataCoordCatalog_DropSegment_Call {
_c . Call . Return ( _a0 )
return _c
}
// DropSegmentIndex provides a mock function with given fields: ctx, collID, partID, segID, buildID
func ( _m * DataCoordCatalog ) DropSegmentIndex ( ctx context . Context , collID int64 , partID int64 , segID int64 , buildID int64 ) error {
ret := _m . Called ( ctx , collID , partID , segID , buildID )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , int64 , int64 , int64 ) error ) ; ok {
r0 = rf ( ctx , collID , partID , segID , buildID )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_DropSegmentIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DropSegmentIndex'
type DataCoordCatalog_DropSegmentIndex_Call struct {
* mock . Call
}
// DropSegmentIndex is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - collID int64
// - partID int64
// - segID int64
// - buildID int64
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) DropSegmentIndex ( ctx interface { } , collID interface { } , partID interface { } , segID interface { } , buildID interface { } ) * DataCoordCatalog_DropSegmentIndex_Call {
return & DataCoordCatalog_DropSegmentIndex_Call { Call : _e . mock . On ( "DropSegmentIndex" , ctx , collID , partID , segID , buildID ) }
}
func ( _c * DataCoordCatalog_DropSegmentIndex_Call ) Run ( run func ( ctx context . Context , collID int64 , partID int64 , segID int64 , buildID int64 ) ) * DataCoordCatalog_DropSegmentIndex_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( int64 ) , args [ 2 ] . ( int64 ) , args [ 3 ] . ( int64 ) , args [ 4 ] . ( int64 ) )
} )
return _c
}
func ( _c * DataCoordCatalog_DropSegmentIndex_Call ) Return ( _a0 error ) * DataCoordCatalog_DropSegmentIndex_Call {
_c . Call . Return ( _a0 )
return _c
}
// GcConfirm provides a mock function with given fields: ctx, collectionID, partitionID
func ( _m * DataCoordCatalog ) GcConfirm ( ctx context . Context , collectionID int64 , partitionID int64 ) bool {
ret := _m . Called ( ctx , collectionID , partitionID )
var r0 bool
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , int64 ) bool ) ; ok {
r0 = rf ( ctx , collectionID , partitionID )
} else {
r0 = ret . Get ( 0 ) . ( bool )
}
return r0
}
// DataCoordCatalog_GcConfirm_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GcConfirm'
type DataCoordCatalog_GcConfirm_Call struct {
* mock . Call
}
// GcConfirm is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - collectionID int64
// - partitionID int64
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) GcConfirm ( ctx interface { } , collectionID interface { } , partitionID interface { } ) * DataCoordCatalog_GcConfirm_Call {
return & DataCoordCatalog_GcConfirm_Call { Call : _e . mock . On ( "GcConfirm" , ctx , collectionID , partitionID ) }
}
func ( _c * DataCoordCatalog_GcConfirm_Call ) Run ( run func ( ctx context . Context , collectionID int64 , partitionID int64 ) ) * DataCoordCatalog_GcConfirm_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( int64 ) , args [ 2 ] . ( int64 ) )
} )
return _c
}
func ( _c * DataCoordCatalog_GcConfirm_Call ) Return ( _a0 bool ) * DataCoordCatalog_GcConfirm_Call {
_c . Call . Return ( _a0 )
return _c
}
// ListChannelCheckpoint provides a mock function with given fields: ctx
2023-03-04 23:21:50 +08:00
func ( _m * DataCoordCatalog ) ListChannelCheckpoint ( ctx context . Context ) ( map [ string ] * msgpb . MsgPosition , error ) {
2023-01-12 09:55:42 +08:00
ret := _m . Called ( ctx )
2023-03-04 23:21:50 +08:00
var r0 map [ string ] * msgpb . MsgPosition
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context ) map [ string ] * msgpb . MsgPosition ) ; ok {
2023-01-12 09:55:42 +08:00
r0 = rf ( ctx )
} else {
if ret . Get ( 0 ) != nil {
2023-03-04 23:21:50 +08:00
r0 = ret . Get ( 0 ) . ( map [ string ] * msgpb . MsgPosition )
2023-01-12 09:55:42 +08:00
}
}
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context ) error ) ; ok {
r1 = rf ( ctx )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// DataCoordCatalog_ListChannelCheckpoint_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListChannelCheckpoint'
type DataCoordCatalog_ListChannelCheckpoint_Call struct {
* mock . Call
}
// ListChannelCheckpoint is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) ListChannelCheckpoint ( ctx interface { } ) * DataCoordCatalog_ListChannelCheckpoint_Call {
return & DataCoordCatalog_ListChannelCheckpoint_Call { Call : _e . mock . On ( "ListChannelCheckpoint" , ctx ) }
}
func ( _c * DataCoordCatalog_ListChannelCheckpoint_Call ) Run ( run func ( ctx context . Context ) ) * DataCoordCatalog_ListChannelCheckpoint_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) )
} )
return _c
}
2023-03-04 23:21:50 +08:00
func ( _c * DataCoordCatalog_ListChannelCheckpoint_Call ) Return ( _a0 map [ string ] * msgpb . MsgPosition , _a1 error ) * DataCoordCatalog_ListChannelCheckpoint_Call {
2023-01-12 09:55:42 +08:00
_c . Call . Return ( _a0 , _a1 )
return _c
}
// ListIndexes provides a mock function with given fields: ctx
func ( _m * DataCoordCatalog ) ListIndexes ( ctx context . Context ) ( [ ] * model . Index , error ) {
ret := _m . Called ( ctx )
var r0 [ ] * model . Index
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context ) [ ] * model . Index ) ; ok {
r0 = rf ( ctx )
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( [ ] * model . Index )
}
}
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context ) error ) ; ok {
r1 = rf ( ctx )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// DataCoordCatalog_ListIndexes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListIndexes'
type DataCoordCatalog_ListIndexes_Call struct {
* mock . Call
}
// ListIndexes is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) ListIndexes ( ctx interface { } ) * DataCoordCatalog_ListIndexes_Call {
return & DataCoordCatalog_ListIndexes_Call { Call : _e . mock . On ( "ListIndexes" , ctx ) }
}
func ( _c * DataCoordCatalog_ListIndexes_Call ) Run ( run func ( ctx context . Context ) ) * DataCoordCatalog_ListIndexes_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) )
} )
return _c
}
func ( _c * DataCoordCatalog_ListIndexes_Call ) Return ( _a0 [ ] * model . Index , _a1 error ) * DataCoordCatalog_ListIndexes_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
// ListSegmentIndexes provides a mock function with given fields: ctx
func ( _m * DataCoordCatalog ) ListSegmentIndexes ( ctx context . Context ) ( [ ] * model . SegmentIndex , error ) {
ret := _m . Called ( ctx )
var r0 [ ] * model . SegmentIndex
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context ) [ ] * model . SegmentIndex ) ; ok {
r0 = rf ( ctx )
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( [ ] * model . SegmentIndex )
}
}
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context ) error ) ; ok {
r1 = rf ( ctx )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// DataCoordCatalog_ListSegmentIndexes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListSegmentIndexes'
type DataCoordCatalog_ListSegmentIndexes_Call struct {
* mock . Call
}
// ListSegmentIndexes is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) ListSegmentIndexes ( ctx interface { } ) * DataCoordCatalog_ListSegmentIndexes_Call {
return & DataCoordCatalog_ListSegmentIndexes_Call { Call : _e . mock . On ( "ListSegmentIndexes" , ctx ) }
}
func ( _c * DataCoordCatalog_ListSegmentIndexes_Call ) Run ( run func ( ctx context . Context ) ) * DataCoordCatalog_ListSegmentIndexes_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) )
} )
return _c
}
func ( _c * DataCoordCatalog_ListSegmentIndexes_Call ) Return ( _a0 [ ] * model . SegmentIndex , _a1 error ) * DataCoordCatalog_ListSegmentIndexes_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
// ListSegments provides a mock function with given fields: ctx
func ( _m * DataCoordCatalog ) ListSegments ( ctx context . Context ) ( [ ] * datapb . SegmentInfo , error ) {
ret := _m . Called ( ctx )
var r0 [ ] * datapb . SegmentInfo
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context ) [ ] * datapb . SegmentInfo ) ; ok {
r0 = rf ( ctx )
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( [ ] * datapb . SegmentInfo )
}
}
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context ) error ) ; ok {
r1 = rf ( ctx )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// DataCoordCatalog_ListSegments_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListSegments'
type DataCoordCatalog_ListSegments_Call struct {
* mock . Call
}
// ListSegments is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) ListSegments ( ctx interface { } ) * DataCoordCatalog_ListSegments_Call {
return & DataCoordCatalog_ListSegments_Call { Call : _e . mock . On ( "ListSegments" , ctx ) }
}
func ( _c * DataCoordCatalog_ListSegments_Call ) Run ( run func ( ctx context . Context ) ) * DataCoordCatalog_ListSegments_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) )
} )
return _c
}
func ( _c * DataCoordCatalog_ListSegments_Call ) Return ( _a0 [ ] * datapb . SegmentInfo , _a1 error ) * DataCoordCatalog_ListSegments_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-03-09 14:13:52 +08:00
// MarkChannelAdded provides a mock function with given fields: ctx, channel
func ( _m * DataCoordCatalog ) MarkChannelAdded ( ctx context . Context , channel string ) error {
ret := _m . Called ( ctx , channel )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , string ) error ) ; ok {
r0 = rf ( ctx , channel )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_MarkChannelAdded_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MarkChannelAdded'
type DataCoordCatalog_MarkChannelAdded_Call struct {
* mock . Call
}
// MarkChannelAdded is a helper method to define mock.On call
// - ctx context.Context
// - channel string
func ( _e * DataCoordCatalog_Expecter ) MarkChannelAdded ( ctx interface { } , channel interface { } ) * DataCoordCatalog_MarkChannelAdded_Call {
return & DataCoordCatalog_MarkChannelAdded_Call { Call : _e . mock . On ( "MarkChannelAdded" , ctx , channel ) }
}
func ( _c * DataCoordCatalog_MarkChannelAdded_Call ) Run ( run func ( ctx context . Context , channel string ) ) * DataCoordCatalog_MarkChannelAdded_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( string ) )
} )
return _c
}
func ( _c * DataCoordCatalog_MarkChannelAdded_Call ) Return ( _a0 error ) * DataCoordCatalog_MarkChannelAdded_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-01-12 09:55:42 +08:00
// MarkChannelDeleted provides a mock function with given fields: ctx, channel
func ( _m * DataCoordCatalog ) MarkChannelDeleted ( ctx context . Context , channel string ) error {
ret := _m . Called ( ctx , channel )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , string ) error ) ; ok {
r0 = rf ( ctx , channel )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_MarkChannelDeleted_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MarkChannelDeleted'
type DataCoordCatalog_MarkChannelDeleted_Call struct {
* mock . Call
}
// MarkChannelDeleted is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - channel string
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) MarkChannelDeleted ( ctx interface { } , channel interface { } ) * DataCoordCatalog_MarkChannelDeleted_Call {
return & DataCoordCatalog_MarkChannelDeleted_Call { Call : _e . mock . On ( "MarkChannelDeleted" , ctx , channel ) }
}
func ( _c * DataCoordCatalog_MarkChannelDeleted_Call ) Run ( run func ( ctx context . Context , channel string ) ) * DataCoordCatalog_MarkChannelDeleted_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( string ) )
} )
return _c
}
func ( _c * DataCoordCatalog_MarkChannelDeleted_Call ) Return ( _a0 error ) * DataCoordCatalog_MarkChannelDeleted_Call {
_c . Call . Return ( _a0 )
return _c
}
// RevertAlterSegmentsAndAddNewSegment provides a mock function with given fields: ctx, segments, removalSegment
func ( _m * DataCoordCatalog ) RevertAlterSegmentsAndAddNewSegment ( ctx context . Context , segments [ ] * datapb . SegmentInfo , removalSegment * datapb . SegmentInfo ) error {
ret := _m . Called ( ctx , segments , removalSegment )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , [ ] * datapb . SegmentInfo , * datapb . SegmentInfo ) error ) ; ok {
r0 = rf ( ctx , segments , removalSegment )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_RevertAlterSegmentsAndAddNewSegment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'RevertAlterSegmentsAndAddNewSegment'
type DataCoordCatalog_RevertAlterSegmentsAndAddNewSegment_Call struct {
* mock . Call
}
// RevertAlterSegmentsAndAddNewSegment is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - segments []*datapb.SegmentInfo
// - removalSegment *datapb.SegmentInfo
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) RevertAlterSegmentsAndAddNewSegment ( ctx interface { } , segments interface { } , removalSegment interface { } ) * DataCoordCatalog_RevertAlterSegmentsAndAddNewSegment_Call {
return & DataCoordCatalog_RevertAlterSegmentsAndAddNewSegment_Call { Call : _e . mock . On ( "RevertAlterSegmentsAndAddNewSegment" , ctx , segments , removalSegment ) }
}
func ( _c * DataCoordCatalog_RevertAlterSegmentsAndAddNewSegment_Call ) Run ( run func ( ctx context . Context , segments [ ] * datapb . SegmentInfo , removalSegment * datapb . SegmentInfo ) ) * DataCoordCatalog_RevertAlterSegmentsAndAddNewSegment_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( [ ] * datapb . SegmentInfo ) , args [ 2 ] . ( * datapb . SegmentInfo ) )
} )
return _c
}
func ( _c * DataCoordCatalog_RevertAlterSegmentsAndAddNewSegment_Call ) Return ( _a0 error ) * DataCoordCatalog_RevertAlterSegmentsAndAddNewSegment_Call {
_c . Call . Return ( _a0 )
return _c
}
// SaveChannelCheckpoint provides a mock function with given fields: ctx, vChannel, pos
2023-03-04 23:21:50 +08:00
func ( _m * DataCoordCatalog ) SaveChannelCheckpoint ( ctx context . Context , vChannel string , pos * msgpb . MsgPosition ) error {
2023-01-12 09:55:42 +08:00
ret := _m . Called ( ctx , vChannel , pos )
var r0 error
2023-03-04 23:21:50 +08:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , string , * msgpb . MsgPosition ) error ) ; ok {
2023-01-12 09:55:42 +08:00
r0 = rf ( ctx , vChannel , pos )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_SaveChannelCheckpoint_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SaveChannelCheckpoint'
type DataCoordCatalog_SaveChannelCheckpoint_Call struct {
* mock . Call
}
// SaveChannelCheckpoint is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - vChannel string
2023-03-04 23:21:50 +08:00
// - pos *msgpb.MsgPosition
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) SaveChannelCheckpoint ( ctx interface { } , vChannel interface { } , pos interface { } ) * DataCoordCatalog_SaveChannelCheckpoint_Call {
return & DataCoordCatalog_SaveChannelCheckpoint_Call { Call : _e . mock . On ( "SaveChannelCheckpoint" , ctx , vChannel , pos ) }
}
2023-03-04 23:21:50 +08:00
func ( _c * DataCoordCatalog_SaveChannelCheckpoint_Call ) Run ( run func ( ctx context . Context , vChannel string , pos * msgpb . MsgPosition ) ) * DataCoordCatalog_SaveChannelCheckpoint_Call {
2023-01-12 09:55:42 +08:00
_c . Call . Run ( func ( args mock . Arguments ) {
2023-03-04 23:21:50 +08:00
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( string ) , args [ 2 ] . ( * msgpb . MsgPosition ) )
2023-01-12 09:55:42 +08:00
} )
return _c
}
func ( _c * DataCoordCatalog_SaveChannelCheckpoint_Call ) Return ( _a0 error ) * DataCoordCatalog_SaveChannelCheckpoint_Call {
_c . Call . Return ( _a0 )
return _c
}
// SaveDroppedSegmentsInBatch provides a mock function with given fields: ctx, segments
func ( _m * DataCoordCatalog ) SaveDroppedSegmentsInBatch ( ctx context . Context , segments [ ] * datapb . SegmentInfo ) error {
ret := _m . Called ( ctx , segments )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , [ ] * datapb . SegmentInfo ) error ) ; ok {
r0 = rf ( ctx , segments )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// DataCoordCatalog_SaveDroppedSegmentsInBatch_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SaveDroppedSegmentsInBatch'
type DataCoordCatalog_SaveDroppedSegmentsInBatch_Call struct {
* mock . Call
}
// SaveDroppedSegmentsInBatch is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - ctx context.Context
// - segments []*datapb.SegmentInfo
2023-01-12 09:55:42 +08:00
func ( _e * DataCoordCatalog_Expecter ) SaveDroppedSegmentsInBatch ( ctx interface { } , segments interface { } ) * DataCoordCatalog_SaveDroppedSegmentsInBatch_Call {
return & DataCoordCatalog_SaveDroppedSegmentsInBatch_Call { Call : _e . mock . On ( "SaveDroppedSegmentsInBatch" , ctx , segments ) }
}
func ( _c * DataCoordCatalog_SaveDroppedSegmentsInBatch_Call ) Run ( run func ( ctx context . Context , segments [ ] * datapb . SegmentInfo ) ) * DataCoordCatalog_SaveDroppedSegmentsInBatch_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( [ ] * datapb . SegmentInfo ) )
} )
return _c
}
func ( _c * DataCoordCatalog_SaveDroppedSegmentsInBatch_Call ) Return ( _a0 error ) * DataCoordCatalog_SaveDroppedSegmentsInBatch_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-03-09 14:13:52 +08:00
// ShouldDropChannel provides a mock function with given fields: ctx, channel
func ( _m * DataCoordCatalog ) ShouldDropChannel ( ctx context . Context , channel string ) bool {
ret := _m . Called ( ctx , channel )
var r0 bool
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , string ) bool ) ; ok {
r0 = rf ( ctx , channel )
} else {
r0 = ret . Get ( 0 ) . ( bool )
}
return r0
}
// DataCoordCatalog_ShouldDropChannel_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ShouldDropChannel'
type DataCoordCatalog_ShouldDropChannel_Call struct {
* mock . Call
}
// ShouldDropChannel is a helper method to define mock.On call
// - ctx context.Context
// - channel string
func ( _e * DataCoordCatalog_Expecter ) ShouldDropChannel ( ctx interface { } , channel interface { } ) * DataCoordCatalog_ShouldDropChannel_Call {
return & DataCoordCatalog_ShouldDropChannel_Call { Call : _e . mock . On ( "ShouldDropChannel" , ctx , channel ) }
}
func ( _c * DataCoordCatalog_ShouldDropChannel_Call ) Run ( run func ( ctx context . Context , channel string ) ) * DataCoordCatalog_ShouldDropChannel_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( string ) )
} )
return _c
}
func ( _c * DataCoordCatalog_ShouldDropChannel_Call ) Return ( _a0 bool ) * DataCoordCatalog_ShouldDropChannel_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-01-12 09:55:42 +08:00
type mockConstructorTestingTNewDataCoordCatalog interface {
mock . TestingT
Cleanup ( func ( ) )
}
// NewDataCoordCatalog creates a new instance of DataCoordCatalog. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewDataCoordCatalog ( t mockConstructorTestingTNewDataCoordCatalog ) * DataCoordCatalog {
mock := & DataCoordCatalog { }
mock . Mock . Test ( t )
t . Cleanup ( func ( ) { mock . AssertExpectations ( t ) } )
return mock
}