2024-10-17 04:11:31 +00:00
// Code generated by mockery v2.46.0. DO NOT EDIT.
2023-03-26 16:42:00 +00:00
package segments
import (
context "context"
2023-06-08 17:28:37 +00:00
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
2023-03-26 16:42:00 +00:00
2025-01-10 02:53:01 +00:00
datapb "github.com/milvus-io/milvus/pkg/proto/datapb"
2023-03-26 16:42:00 +00:00
mock "github.com/stretchr/testify/mock"
pkoracle "github.com/milvus-io/milvus/internal/querynodev2/pkoracle"
2025-01-10 02:53:01 +00:00
querypb "github.com/milvus-io/milvus/pkg/proto/querypb"
2024-10-11 02:23:20 +00:00
storage "github.com/milvus-io/milvus/internal/storage"
typeutil "github.com/milvus-io/milvus/pkg/util/typeutil"
2023-03-26 16:42:00 +00:00
)
// MockLoader is an autogenerated mock type for the Loader type
type MockLoader struct {
mock . Mock
}
type MockLoader_Expecter struct {
mock * mock . Mock
}
func ( _m * MockLoader ) EXPECT ( ) * MockLoader_Expecter {
return & MockLoader_Expecter { mock : & _m . Mock }
}
2023-06-25 09:20:43 +00:00
// Load provides a mock function with given fields: ctx, collectionID, segmentType, version, segments
func ( _m * MockLoader ) Load ( ctx context . Context , collectionID int64 , segmentType commonpb . SegmentState , version int64 , segments ... * querypb . SegmentLoadInfo ) ( [ ] Segment , error ) {
_va := make ( [ ] interface { } , len ( segments ) )
for _i := range segments {
_va [ _i ] = segments [ _i ]
2023-03-26 16:42:00 +00:00
}
var _ca [ ] interface { }
_ca = append ( _ca , ctx , collectionID , segmentType , version )
_ca = append ( _ca , _va ... )
ret := _m . Called ( _ca ... )
2024-10-17 04:11:31 +00:00
if len ( ret ) == 0 {
panic ( "no return value specified for Load" )
}
2023-03-26 16:42:00 +00:00
var r0 [ ] Segment
2023-08-11 03:21:32 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , commonpb . SegmentState , int64 , ... * querypb . SegmentLoadInfo ) ( [ ] Segment , error ) ) ; ok {
return rf ( ctx , collectionID , segmentType , version , segments ... )
}
2023-03-26 16:42:00 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , commonpb . SegmentState , int64 , ... * querypb . SegmentLoadInfo ) [ ] Segment ) ; ok {
2023-06-25 09:20:43 +00:00
r0 = rf ( ctx , collectionID , segmentType , version , segments ... )
2023-03-26 16:42:00 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( [ ] Segment )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , int64 , commonpb . SegmentState , int64 , ... * querypb . SegmentLoadInfo ) error ) ; ok {
2023-06-25 09:20:43 +00:00
r1 = rf ( ctx , collectionID , segmentType , version , segments ... )
2023-03-26 16:42:00 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockLoader_Load_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Load'
type MockLoader_Load_Call struct {
* mock . Call
}
// Load is a helper method to define mock.On call
2023-08-11 03:21:32 +00:00
// - ctx context.Context
// - collectionID int64
// - segmentType commonpb.SegmentState
// - version int64
// - segments ...*querypb.SegmentLoadInfo
2023-07-18 02:51:19 +00:00
func ( _e * MockLoader_Expecter ) Load ( ctx interface { } , collectionID interface { } , segmentType interface { } , version interface { } , segments ... interface { } ) * MockLoader_Load_Call {
2023-03-26 16:42:00 +00:00
return & MockLoader_Load_Call { Call : _e . mock . On ( "Load" ,
2023-07-18 02:51:19 +00:00
append ( [ ] interface { } { ctx , collectionID , segmentType , version } , segments ... ) ... ) }
2023-03-26 16:42:00 +00:00
}
2023-06-25 09:20:43 +00:00
func ( _c * MockLoader_Load_Call ) Run ( run func ( ctx context . Context , collectionID int64 , segmentType commonpb . SegmentState , version int64 , segments ... * querypb . SegmentLoadInfo ) ) * MockLoader_Load_Call {
2023-03-26 16:42:00 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
variadicArgs := make ( [ ] * querypb . SegmentLoadInfo , len ( args ) - 4 )
for i , a := range args [ 4 : ] {
if a != nil {
variadicArgs [ i ] = a . ( * querypb . SegmentLoadInfo )
}
}
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( int64 ) , args [ 2 ] . ( commonpb . SegmentState ) , args [ 3 ] . ( int64 ) , variadicArgs ... )
} )
return _c
}
func ( _c * MockLoader_Load_Call ) Return ( _a0 [ ] Segment , _a1 error ) * MockLoader_Load_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-08-11 03:21:32 +00:00
func ( _c * MockLoader_Load_Call ) RunAndReturn ( run func ( context . Context , int64 , commonpb . SegmentState , int64 , ... * querypb . SegmentLoadInfo ) ( [ ] Segment , error ) ) * MockLoader_Load_Call {
_c . Call . Return ( run )
return _c
}
2024-10-11 02:23:20 +00:00
// LoadBM25Stats provides a mock function with given fields: ctx, collectionID, infos
func ( _m * MockLoader ) LoadBM25Stats ( ctx context . Context , collectionID int64 , infos ... * querypb . SegmentLoadInfo ) ( * typeutil . ConcurrentMap [ int64 , map [ int64 ] * storage . BM25Stats ] , error ) {
_va := make ( [ ] interface { } , len ( infos ) )
for _i := range infos {
_va [ _i ] = infos [ _i ]
}
var _ca [ ] interface { }
_ca = append ( _ca , ctx , collectionID )
_ca = append ( _ca , _va ... )
ret := _m . Called ( _ca ... )
2024-10-17 04:11:31 +00:00
if len ( ret ) == 0 {
panic ( "no return value specified for LoadBM25Stats" )
}
2024-10-11 02:23:20 +00:00
var r0 * typeutil . ConcurrentMap [ int64 , map [ int64 ] * storage . BM25Stats ]
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , ... * querypb . SegmentLoadInfo ) ( * typeutil . ConcurrentMap [ int64 , map [ int64 ] * storage . BM25Stats ] , error ) ) ; ok {
return rf ( ctx , collectionID , infos ... )
}
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , ... * querypb . SegmentLoadInfo ) * typeutil . ConcurrentMap [ int64 , map [ int64 ] * storage . BM25Stats ] ) ; ok {
r0 = rf ( ctx , collectionID , infos ... )
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * typeutil . ConcurrentMap [ int64 , map [ int64 ] * storage . BM25Stats ] )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , int64 , ... * querypb . SegmentLoadInfo ) error ) ; ok {
r1 = rf ( ctx , collectionID , infos ... )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockLoader_LoadBM25Stats_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadBM25Stats'
type MockLoader_LoadBM25Stats_Call struct {
* mock . Call
}
// LoadBM25Stats is a helper method to define mock.On call
// - ctx context.Context
// - collectionID int64
// - infos ...*querypb.SegmentLoadInfo
func ( _e * MockLoader_Expecter ) LoadBM25Stats ( ctx interface { } , collectionID interface { } , infos ... interface { } ) * MockLoader_LoadBM25Stats_Call {
return & MockLoader_LoadBM25Stats_Call { Call : _e . mock . On ( "LoadBM25Stats" ,
append ( [ ] interface { } { ctx , collectionID } , infos ... ) ... ) }
}
func ( _c * MockLoader_LoadBM25Stats_Call ) Run ( run func ( ctx context . Context , collectionID int64 , infos ... * querypb . SegmentLoadInfo ) ) * MockLoader_LoadBM25Stats_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
variadicArgs := make ( [ ] * querypb . SegmentLoadInfo , len ( args ) - 2 )
for i , a := range args [ 2 : ] {
if a != nil {
variadicArgs [ i ] = a . ( * querypb . SegmentLoadInfo )
}
}
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( int64 ) , variadicArgs ... )
} )
return _c
}
func ( _c * MockLoader_LoadBM25Stats_Call ) Return ( _a0 * typeutil . ConcurrentMap [ int64 , map [ int64 ] * storage . BM25Stats ] , _a1 error ) * MockLoader_LoadBM25Stats_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
func ( _c * MockLoader_LoadBM25Stats_Call ) RunAndReturn ( run func ( context . Context , int64 , ... * querypb . SegmentLoadInfo ) ( * typeutil . ConcurrentMap [ int64 , map [ int64 ] * storage . BM25Stats ] , error ) ) * MockLoader_LoadBM25Stats_Call {
_c . Call . Return ( run )
return _c
}
2023-03-26 16:42:00 +00:00
// LoadBloomFilterSet provides a mock function with given fields: ctx, collectionID, version, infos
func ( _m * MockLoader ) LoadBloomFilterSet ( ctx context . Context , collectionID int64 , version int64 , infos ... * querypb . SegmentLoadInfo ) ( [ ] * pkoracle . BloomFilterSet , error ) {
_va := make ( [ ] interface { } , len ( infos ) )
for _i := range infos {
_va [ _i ] = infos [ _i ]
}
var _ca [ ] interface { }
_ca = append ( _ca , ctx , collectionID , version )
_ca = append ( _ca , _va ... )
ret := _m . Called ( _ca ... )
2024-10-17 04:11:31 +00:00
if len ( ret ) == 0 {
panic ( "no return value specified for LoadBloomFilterSet" )
}
2023-03-26 16:42:00 +00:00
var r0 [ ] * pkoracle . BloomFilterSet
2023-08-11 03:21:32 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , int64 , ... * querypb . SegmentLoadInfo ) ( [ ] * pkoracle . BloomFilterSet , error ) ) ; ok {
return rf ( ctx , collectionID , version , infos ... )
}
2023-03-26 16:42:00 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , int64 , int64 , ... * querypb . SegmentLoadInfo ) [ ] * pkoracle . BloomFilterSet ) ; ok {
r0 = rf ( ctx , collectionID , version , infos ... )
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( [ ] * pkoracle . BloomFilterSet )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , int64 , int64 , ... * querypb . SegmentLoadInfo ) error ) ; ok {
r1 = rf ( ctx , collectionID , version , infos ... )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockLoader_LoadBloomFilterSet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadBloomFilterSet'
type MockLoader_LoadBloomFilterSet_Call struct {
* mock . Call
}
// LoadBloomFilterSet is a helper method to define mock.On call
2023-08-11 03:21:32 +00:00
// - ctx context.Context
// - collectionID int64
// - version int64
// - infos ...*querypb.SegmentLoadInfo
2023-03-26 16:42:00 +00:00
func ( _e * MockLoader_Expecter ) LoadBloomFilterSet ( ctx interface { } , collectionID interface { } , version interface { } , infos ... interface { } ) * MockLoader_LoadBloomFilterSet_Call {
return & MockLoader_LoadBloomFilterSet_Call { Call : _e . mock . On ( "LoadBloomFilterSet" ,
append ( [ ] interface { } { ctx , collectionID , version } , infos ... ) ... ) }
}
func ( _c * MockLoader_LoadBloomFilterSet_Call ) Run ( run func ( ctx context . Context , collectionID int64 , version int64 , infos ... * querypb . SegmentLoadInfo ) ) * MockLoader_LoadBloomFilterSet_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
variadicArgs := make ( [ ] * querypb . SegmentLoadInfo , len ( args ) - 3 )
for i , a := range args [ 3 : ] {
if a != nil {
variadicArgs [ i ] = a . ( * querypb . SegmentLoadInfo )
}
}
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( int64 ) , args [ 2 ] . ( int64 ) , variadicArgs ... )
} )
return _c
}
func ( _c * MockLoader_LoadBloomFilterSet_Call ) Return ( _a0 [ ] * pkoracle . BloomFilterSet , _a1 error ) * MockLoader_LoadBloomFilterSet_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-08-11 03:21:32 +00:00
func ( _c * MockLoader_LoadBloomFilterSet_Call ) RunAndReturn ( run func ( context . Context , int64 , int64 , ... * querypb . SegmentLoadInfo ) ( [ ] * pkoracle . BloomFilterSet , error ) ) * MockLoader_LoadBloomFilterSet_Call {
_c . Call . Return ( run )
return _c
}
2023-03-26 16:42:00 +00:00
// LoadDeltaLogs provides a mock function with given fields: ctx, segment, deltaLogs
2023-11-06 17:44:18 +00:00
func ( _m * MockLoader ) LoadDeltaLogs ( ctx context . Context , segment Segment , deltaLogs [ ] * datapb . FieldBinlog ) error {
2023-03-26 16:42:00 +00:00
ret := _m . Called ( ctx , segment , deltaLogs )
2024-10-17 04:11:31 +00:00
if len ( ret ) == 0 {
panic ( "no return value specified for LoadDeltaLogs" )
}
2023-03-26 16:42:00 +00:00
var r0 error
2023-11-06 17:44:18 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , Segment , [ ] * datapb . FieldBinlog ) error ) ; ok {
2023-03-26 16:42:00 +00:00
r0 = rf ( ctx , segment , deltaLogs )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockLoader_LoadDeltaLogs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadDeltaLogs'
type MockLoader_LoadDeltaLogs_Call struct {
* mock . Call
}
// LoadDeltaLogs is a helper method to define mock.On call
2023-08-11 03:21:32 +00:00
// - ctx context.Context
2023-11-06 17:44:18 +00:00
// - segment Segment
2023-08-11 03:21:32 +00:00
// - deltaLogs []*datapb.FieldBinlog
2023-03-26 16:42:00 +00:00
func ( _e * MockLoader_Expecter ) LoadDeltaLogs ( ctx interface { } , segment interface { } , deltaLogs interface { } ) * MockLoader_LoadDeltaLogs_Call {
return & MockLoader_LoadDeltaLogs_Call { Call : _e . mock . On ( "LoadDeltaLogs" , ctx , segment , deltaLogs ) }
}
2023-11-06 17:44:18 +00:00
func ( _c * MockLoader_LoadDeltaLogs_Call ) Run ( run func ( ctx context . Context , segment Segment , deltaLogs [ ] * datapb . FieldBinlog ) ) * MockLoader_LoadDeltaLogs_Call {
2023-03-26 16:42:00 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2023-11-06 17:44:18 +00:00
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( Segment ) , args [ 2 ] . ( [ ] * datapb . FieldBinlog ) )
2023-03-26 16:42:00 +00:00
} )
return _c
}
func ( _c * MockLoader_LoadDeltaLogs_Call ) Return ( _a0 error ) * MockLoader_LoadDeltaLogs_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-11-06 17:44:18 +00:00
func ( _c * MockLoader_LoadDeltaLogs_Call ) RunAndReturn ( run func ( context . Context , Segment , [ ] * datapb . FieldBinlog ) error ) * MockLoader_LoadDeltaLogs_Call {
2023-08-11 03:21:32 +00:00
_c . Call . Return ( run )
return _c
}
// LoadIndex provides a mock function with given fields: ctx, segment, info, version
2024-07-10 02:18:12 +00:00
func ( _m * MockLoader ) LoadIndex ( ctx context . Context , segment Segment , info * querypb . SegmentLoadInfo , version int64 ) error {
2023-08-11 03:21:32 +00:00
ret := _m . Called ( ctx , segment , info , version )
2023-07-18 02:51:19 +00:00
2024-10-17 04:11:31 +00:00
if len ( ret ) == 0 {
panic ( "no return value specified for LoadIndex" )
}
2023-07-18 02:51:19 +00:00
var r0 error
2024-07-10 02:18:12 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , Segment , * querypb . SegmentLoadInfo , int64 ) error ) ; ok {
2023-08-11 03:21:32 +00:00
r0 = rf ( ctx , segment , info , version )
2023-07-18 02:51:19 +00:00
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockLoader_LoadIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadIndex'
type MockLoader_LoadIndex_Call struct {
* mock . Call
}
// LoadIndex is a helper method to define mock.On call
2023-08-11 03:21:32 +00:00
// - ctx context.Context
2024-07-10 02:18:12 +00:00
// - segment Segment
2023-08-11 03:21:32 +00:00
// - info *querypb.SegmentLoadInfo
// - version int64
func ( _e * MockLoader_Expecter ) LoadIndex ( ctx interface { } , segment interface { } , info interface { } , version interface { } ) * MockLoader_LoadIndex_Call {
return & MockLoader_LoadIndex_Call { Call : _e . mock . On ( "LoadIndex" , ctx , segment , info , version ) }
2023-07-18 02:51:19 +00:00
}
2024-07-10 02:18:12 +00:00
func ( _c * MockLoader_LoadIndex_Call ) Run ( run func ( ctx context . Context , segment Segment , info * querypb . SegmentLoadInfo , version int64 ) ) * MockLoader_LoadIndex_Call {
2023-07-18 02:51:19 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2024-07-10 02:18:12 +00:00
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( Segment ) , args [ 2 ] . ( * querypb . SegmentLoadInfo ) , args [ 3 ] . ( int64 ) )
2023-07-18 02:51:19 +00:00
} )
return _c
}
func ( _c * MockLoader_LoadIndex_Call ) Return ( _a0 error ) * MockLoader_LoadIndex_Call {
_c . Call . Return ( _a0 )
return _c
}
2024-07-10 02:18:12 +00:00
func ( _c * MockLoader_LoadIndex_Call ) RunAndReturn ( run func ( context . Context , Segment , * querypb . SegmentLoadInfo , int64 ) error ) * MockLoader_LoadIndex_Call {
2023-08-11 03:21:32 +00:00
_c . Call . Return ( run )
return _c
}
2025-02-16 12:12:15 +00:00
// LoadJSONIndex provides a mock function with given fields: ctx, segment, info
func ( _m * MockLoader ) LoadJSONIndex ( ctx context . Context , segment Segment , info * querypb . SegmentLoadInfo ) error {
ret := _m . Called ( ctx , segment , info )
if len ( ret ) == 0 {
panic ( "no return value specified for LoadJSONIndex" )
}
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , Segment , * querypb . SegmentLoadInfo ) error ) ; ok {
r0 = rf ( ctx , segment , info )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockLoader_LoadJSONIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadJSONIndex'
type MockLoader_LoadJSONIndex_Call struct {
* mock . Call
}
// LoadJSONIndex is a helper method to define mock.On call
// - ctx context.Context
// - segment Segment
// - info *querypb.SegmentLoadInfo
func ( _e * MockLoader_Expecter ) LoadJSONIndex ( ctx interface { } , segment interface { } , info interface { } ) * MockLoader_LoadJSONIndex_Call {
return & MockLoader_LoadJSONIndex_Call { Call : _e . mock . On ( "LoadJSONIndex" , ctx , segment , info ) }
}
func ( _c * MockLoader_LoadJSONIndex_Call ) Run ( run func ( ctx context . Context , segment Segment , info * querypb . SegmentLoadInfo ) ) * MockLoader_LoadJSONIndex_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( Segment ) , args [ 2 ] . ( * querypb . SegmentLoadInfo ) )
} )
return _c
}
func ( _c * MockLoader_LoadJSONIndex_Call ) Return ( _a0 error ) * MockLoader_LoadJSONIndex_Call {
_c . Call . Return ( _a0 )
return _c
}
func ( _c * MockLoader_LoadJSONIndex_Call ) RunAndReturn ( run func ( context . Context , Segment , * querypb . SegmentLoadInfo ) error ) * MockLoader_LoadJSONIndex_Call {
_c . Call . Return ( run )
return _c
}
2024-05-06 12:29:30 +00:00
// LoadLazySegment provides a mock function with given fields: ctx, segment, loadInfo
2024-07-10 02:18:12 +00:00
func ( _m * MockLoader ) LoadLazySegment ( ctx context . Context , segment Segment , loadInfo * querypb . SegmentLoadInfo ) error {
2024-05-06 12:29:30 +00:00
ret := _m . Called ( ctx , segment , loadInfo )
2024-03-25 07:43:07 +00:00
2024-10-17 04:11:31 +00:00
if len ( ret ) == 0 {
panic ( "no return value specified for LoadLazySegment" )
}
2024-03-25 07:43:07 +00:00
var r0 error
2024-07-10 02:18:12 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , Segment , * querypb . SegmentLoadInfo ) error ) ; ok {
2024-05-06 12:29:30 +00:00
r0 = rf ( ctx , segment , loadInfo )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockLoader_LoadLazySegment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadLazySegment'
type MockLoader_LoadLazySegment_Call struct {
* mock . Call
}
// LoadLazySegment is a helper method to define mock.On call
// - ctx context.Context
2024-07-10 02:18:12 +00:00
// - segment Segment
2024-05-06 12:29:30 +00:00
// - loadInfo *querypb.SegmentLoadInfo
func ( _e * MockLoader_Expecter ) LoadLazySegment ( ctx interface { } , segment interface { } , loadInfo interface { } ) * MockLoader_LoadLazySegment_Call {
return & MockLoader_LoadLazySegment_Call { Call : _e . mock . On ( "LoadLazySegment" , ctx , segment , loadInfo ) }
}
2024-07-10 02:18:12 +00:00
func ( _c * MockLoader_LoadLazySegment_Call ) Run ( run func ( ctx context . Context , segment Segment , loadInfo * querypb . SegmentLoadInfo ) ) * MockLoader_LoadLazySegment_Call {
2024-05-06 12:29:30 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2024-07-10 02:18:12 +00:00
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( Segment ) , args [ 2 ] . ( * querypb . SegmentLoadInfo ) )
2024-05-06 12:29:30 +00:00
} )
return _c
}
func ( _c * MockLoader_LoadLazySegment_Call ) Return ( _a0 error ) * MockLoader_LoadLazySegment_Call {
_c . Call . Return ( _a0 )
return _c
}
2024-07-10 02:18:12 +00:00
func ( _c * MockLoader_LoadLazySegment_Call ) RunAndReturn ( run func ( context . Context , Segment , * querypb . SegmentLoadInfo ) error ) * MockLoader_LoadLazySegment_Call {
2024-03-25 07:43:07 +00:00
_c . Call . Return ( run )
return _c
}
2023-09-04 13:19:48 +00:00
// NewMockLoader creates a new instance of MockLoader. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewMockLoader ( t interface {
2023-03-26 16:42:00 +00:00
mock . TestingT
Cleanup ( func ( ) )
2023-09-04 13:19:48 +00:00
} ) * MockLoader {
2023-03-26 16:42:00 +00:00
mock := & MockLoader { }
mock . Mock . Test ( t )
t . Cleanup ( func ( ) { mock . AssertExpectations ( t ) } )
return mock
}