2023-09-04 13:19:48 +00:00
// Code generated by mockery v2.32.4. DO NOT EDIT.
2023-02-16 07:38:34 +00:00
2023-07-14 02:12:31 +00:00
package mocks
2023-02-16 07:38:34 +00:00
import (
context "context"
2023-06-08 17:28:37 +00:00
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
2023-02-16 07:38:34 +00:00
clientv3 "go.etcd.io/etcd/client/v3"
internalpb "github.com/milvus-io/milvus/internal/proto/internalpb"
2023-06-08 17:28:37 +00:00
milvuspb "github.com/milvus-io/milvus-proto/go-api/v2/milvuspb"
2023-02-16 07:38:34 +00:00
mock "github.com/stretchr/testify/mock"
querypb "github.com/milvus-io/milvus/internal/proto/querypb"
2023-07-14 02:12:31 +00:00
2023-09-06 23:25:14 +00:00
txnkv "github.com/tikv/client-go/v2/txnkv"
2023-07-14 02:12:31 +00:00
types "github.com/milvus-io/milvus/internal/types"
2023-02-16 07:38:34 +00:00
)
// MockQueryCoord is an autogenerated mock type for the QueryCoordComponent type
type MockQueryCoord struct {
mock . Mock
}
type MockQueryCoord_Expecter struct {
mock * mock . Mock
}
func ( _m * MockQueryCoord ) EXPECT ( ) * MockQueryCoord_Expecter {
return & MockQueryCoord_Expecter { mock : & _m . Mock }
}
2023-09-26 01:57:25 +00:00
// CheckHealth provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) CheckHealth ( _a0 context . Context , _a1 * milvuspb . CheckHealthRequest ) ( * milvuspb . CheckHealthResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * milvuspb . CheckHealthResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . CheckHealthRequest ) ( * milvuspb . CheckHealthResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . CheckHealthRequest ) * milvuspb . CheckHealthResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * milvuspb . CheckHealthResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * milvuspb . CheckHealthRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_CheckHealth_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CheckHealth'
type MockQueryCoord_CheckHealth_Call struct {
* mock . Call
}
// CheckHealth is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *milvuspb.CheckHealthRequest
func ( _e * MockQueryCoord_Expecter ) CheckHealth ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_CheckHealth_Call {
return & MockQueryCoord_CheckHealth_Call { Call : _e . mock . On ( "CheckHealth" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_CheckHealth_Call ) Run ( run func ( _a0 context . Context , _a1 * milvuspb . CheckHealthRequest ) ) * MockQueryCoord_CheckHealth_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * milvuspb . CheckHealthRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_CheckHealth_Call ) Return ( _a0 * milvuspb . CheckHealthResponse , _a1 error ) * MockQueryCoord_CheckHealth_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_CheckHealth_Call ) RunAndReturn ( run func ( context . Context , * milvuspb . CheckHealthRequest ) ( * milvuspb . CheckHealthResponse , error ) ) * MockQueryCoord_CheckHealth_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// CreateResourceGroup provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) CreateResourceGroup ( _a0 context . Context , _a1 * milvuspb . CreateResourceGroupRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . CreateResourceGroupRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . CreateResourceGroupRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * milvuspb . CreateResourceGroupRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_CreateResourceGroup_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateResourceGroup'
type MockQueryCoord_CreateResourceGroup_Call struct {
* mock . Call
}
// CreateResourceGroup is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *milvuspb.CreateResourceGroupRequest
func ( _e * MockQueryCoord_Expecter ) CreateResourceGroup ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_CreateResourceGroup_Call {
return & MockQueryCoord_CreateResourceGroup_Call { Call : _e . mock . On ( "CreateResourceGroup" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_CreateResourceGroup_Call ) Run ( run func ( _a0 context . Context , _a1 * milvuspb . CreateResourceGroupRequest ) ) * MockQueryCoord_CreateResourceGroup_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * milvuspb . CreateResourceGroupRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_CreateResourceGroup_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_CreateResourceGroup_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_CreateResourceGroup_Call ) RunAndReturn ( run func ( context . Context , * milvuspb . CreateResourceGroupRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_CreateResourceGroup_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// DescribeResourceGroup provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) DescribeResourceGroup ( _a0 context . Context , _a1 * querypb . DescribeResourceGroupRequest ) ( * querypb . DescribeResourceGroupResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * querypb . DescribeResourceGroupResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . DescribeResourceGroupRequest ) ( * querypb . DescribeResourceGroupResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . DescribeResourceGroupRequest ) * querypb . DescribeResourceGroupResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * querypb . DescribeResourceGroupResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . DescribeResourceGroupRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_DescribeResourceGroup_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DescribeResourceGroup'
type MockQueryCoord_DescribeResourceGroup_Call struct {
* mock . Call
}
// DescribeResourceGroup is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.DescribeResourceGroupRequest
func ( _e * MockQueryCoord_Expecter ) DescribeResourceGroup ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_DescribeResourceGroup_Call {
return & MockQueryCoord_DescribeResourceGroup_Call { Call : _e . mock . On ( "DescribeResourceGroup" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_DescribeResourceGroup_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . DescribeResourceGroupRequest ) ) * MockQueryCoord_DescribeResourceGroup_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . DescribeResourceGroupRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_DescribeResourceGroup_Call ) Return ( _a0 * querypb . DescribeResourceGroupResponse , _a1 error ) * MockQueryCoord_DescribeResourceGroup_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_DescribeResourceGroup_Call ) RunAndReturn ( run func ( context . Context , * querypb . DescribeResourceGroupRequest ) ( * querypb . DescribeResourceGroupResponse , error ) ) * MockQueryCoord_DescribeResourceGroup_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// DropResourceGroup provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) DropResourceGroup ( _a0 context . Context , _a1 * milvuspb . DropResourceGroupRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . DropResourceGroupRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . DropResourceGroupRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * milvuspb . DropResourceGroupRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_DropResourceGroup_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DropResourceGroup'
type MockQueryCoord_DropResourceGroup_Call struct {
* mock . Call
}
// DropResourceGroup is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *milvuspb.DropResourceGroupRequest
func ( _e * MockQueryCoord_Expecter ) DropResourceGroup ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_DropResourceGroup_Call {
return & MockQueryCoord_DropResourceGroup_Call { Call : _e . mock . On ( "DropResourceGroup" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_DropResourceGroup_Call ) Run ( run func ( _a0 context . Context , _a1 * milvuspb . DropResourceGroupRequest ) ) * MockQueryCoord_DropResourceGroup_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * milvuspb . DropResourceGroupRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_DropResourceGroup_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_DropResourceGroup_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_DropResourceGroup_Call ) RunAndReturn ( run func ( context . Context , * milvuspb . DropResourceGroupRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_DropResourceGroup_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// GetComponentStates provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) GetComponentStates ( _a0 context . Context , _a1 * milvuspb . GetComponentStatesRequest ) ( * milvuspb . ComponentStates , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * milvuspb . ComponentStates
2023-07-14 02:12:31 +00:00
var r1 error
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . GetComponentStatesRequest ) ( * milvuspb . ComponentStates , error ) ) ; ok {
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . GetComponentStatesRequest ) * milvuspb . ComponentStates ) ; ok {
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * milvuspb . ComponentStates )
}
}
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * milvuspb . GetComponentStatesRequest ) error ) ; ok {
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_GetComponentStates_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetComponentStates'
type MockQueryCoord_GetComponentStates_Call struct {
* mock . Call
}
// GetComponentStates is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *milvuspb.GetComponentStatesRequest
func ( _e * MockQueryCoord_Expecter ) GetComponentStates ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_GetComponentStates_Call {
return & MockQueryCoord_GetComponentStates_Call { Call : _e . mock . On ( "GetComponentStates" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetComponentStates_Call ) Run ( run func ( _a0 context . Context , _a1 * milvuspb . GetComponentStatesRequest ) ) * MockQueryCoord_GetComponentStates_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2023-09-26 01:57:25 +00:00
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * milvuspb . GetComponentStatesRequest ) )
2023-02-16 07:38:34 +00:00
} )
return _c
}
func ( _c * MockQueryCoord_GetComponentStates_Call ) Return ( _a0 * milvuspb . ComponentStates , _a1 error ) * MockQueryCoord_GetComponentStates_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetComponentStates_Call ) RunAndReturn ( run func ( context . Context , * milvuspb . GetComponentStatesRequest ) ( * milvuspb . ComponentStates , error ) ) * MockQueryCoord_GetComponentStates_Call {
2023-07-14 02:12:31 +00:00
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// GetMetrics provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) GetMetrics ( _a0 context . Context , _a1 * milvuspb . GetMetricsRequest ) ( * milvuspb . GetMetricsResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * milvuspb . GetMetricsResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . GetMetricsRequest ) ( * milvuspb . GetMetricsResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . GetMetricsRequest ) * milvuspb . GetMetricsResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * milvuspb . GetMetricsResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * milvuspb . GetMetricsRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_GetMetrics_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetMetrics'
type MockQueryCoord_GetMetrics_Call struct {
* mock . Call
}
// GetMetrics is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *milvuspb.GetMetricsRequest
func ( _e * MockQueryCoord_Expecter ) GetMetrics ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_GetMetrics_Call {
return & MockQueryCoord_GetMetrics_Call { Call : _e . mock . On ( "GetMetrics" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetMetrics_Call ) Run ( run func ( _a0 context . Context , _a1 * milvuspb . GetMetricsRequest ) ) * MockQueryCoord_GetMetrics_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * milvuspb . GetMetricsRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_GetMetrics_Call ) Return ( _a0 * milvuspb . GetMetricsResponse , _a1 error ) * MockQueryCoord_GetMetrics_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_GetMetrics_Call ) RunAndReturn ( run func ( context . Context , * milvuspb . GetMetricsRequest ) ( * milvuspb . GetMetricsResponse , error ) ) * MockQueryCoord_GetMetrics_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// GetPartitionStates provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) GetPartitionStates ( _a0 context . Context , _a1 * querypb . GetPartitionStatesRequest ) ( * querypb . GetPartitionStatesResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * querypb . GetPartitionStatesResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . GetPartitionStatesRequest ) ( * querypb . GetPartitionStatesResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . GetPartitionStatesRequest ) * querypb . GetPartitionStatesResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * querypb . GetPartitionStatesResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . GetPartitionStatesRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_GetPartitionStates_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetPartitionStates'
type MockQueryCoord_GetPartitionStates_Call struct {
* mock . Call
}
// GetPartitionStates is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.GetPartitionStatesRequest
func ( _e * MockQueryCoord_Expecter ) GetPartitionStates ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_GetPartitionStates_Call {
return & MockQueryCoord_GetPartitionStates_Call { Call : _e . mock . On ( "GetPartitionStates" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetPartitionStates_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . GetPartitionStatesRequest ) ) * MockQueryCoord_GetPartitionStates_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . GetPartitionStatesRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_GetPartitionStates_Call ) Return ( _a0 * querypb . GetPartitionStatesResponse , _a1 error ) * MockQueryCoord_GetPartitionStates_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_GetPartitionStates_Call ) RunAndReturn ( run func ( context . Context , * querypb . GetPartitionStatesRequest ) ( * querypb . GetPartitionStatesResponse , error ) ) * MockQueryCoord_GetPartitionStates_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// GetReplicas provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) GetReplicas ( _a0 context . Context , _a1 * milvuspb . GetReplicasRequest ) ( * milvuspb . GetReplicasResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * milvuspb . GetReplicasResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . GetReplicasRequest ) ( * milvuspb . GetReplicasResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . GetReplicasRequest ) * milvuspb . GetReplicasResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * milvuspb . GetReplicasResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * milvuspb . GetReplicasRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_GetReplicas_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetReplicas'
type MockQueryCoord_GetReplicas_Call struct {
* mock . Call
}
// GetReplicas is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *milvuspb.GetReplicasRequest
func ( _e * MockQueryCoord_Expecter ) GetReplicas ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_GetReplicas_Call {
return & MockQueryCoord_GetReplicas_Call { Call : _e . mock . On ( "GetReplicas" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetReplicas_Call ) Run ( run func ( _a0 context . Context , _a1 * milvuspb . GetReplicasRequest ) ) * MockQueryCoord_GetReplicas_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * milvuspb . GetReplicasRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_GetReplicas_Call ) Return ( _a0 * milvuspb . GetReplicasResponse , _a1 error ) * MockQueryCoord_GetReplicas_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_GetReplicas_Call ) RunAndReturn ( run func ( context . Context , * milvuspb . GetReplicasRequest ) ( * milvuspb . GetReplicasResponse , error ) ) * MockQueryCoord_GetReplicas_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// GetSegmentInfo provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) GetSegmentInfo ( _a0 context . Context , _a1 * querypb . GetSegmentInfoRequest ) ( * querypb . GetSegmentInfoResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * querypb . GetSegmentInfoResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . GetSegmentInfoRequest ) ( * querypb . GetSegmentInfoResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . GetSegmentInfoRequest ) * querypb . GetSegmentInfoResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * querypb . GetSegmentInfoResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . GetSegmentInfoRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_GetSegmentInfo_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSegmentInfo'
type MockQueryCoord_GetSegmentInfo_Call struct {
* mock . Call
}
// GetSegmentInfo is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.GetSegmentInfoRequest
func ( _e * MockQueryCoord_Expecter ) GetSegmentInfo ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_GetSegmentInfo_Call {
return & MockQueryCoord_GetSegmentInfo_Call { Call : _e . mock . On ( "GetSegmentInfo" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetSegmentInfo_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . GetSegmentInfoRequest ) ) * MockQueryCoord_GetSegmentInfo_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . GetSegmentInfoRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_GetSegmentInfo_Call ) Return ( _a0 * querypb . GetSegmentInfoResponse , _a1 error ) * MockQueryCoord_GetSegmentInfo_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_GetSegmentInfo_Call ) RunAndReturn ( run func ( context . Context , * querypb . GetSegmentInfoRequest ) ( * querypb . GetSegmentInfoResponse , error ) ) * MockQueryCoord_GetSegmentInfo_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// GetShardLeaders provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) GetShardLeaders ( _a0 context . Context , _a1 * querypb . GetShardLeadersRequest ) ( * querypb . GetShardLeadersResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * querypb . GetShardLeadersResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . GetShardLeadersRequest ) ( * querypb . GetShardLeadersResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . GetShardLeadersRequest ) * querypb . GetShardLeadersResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * querypb . GetShardLeadersResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . GetShardLeadersRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_GetShardLeaders_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetShardLeaders'
type MockQueryCoord_GetShardLeaders_Call struct {
* mock . Call
}
// GetShardLeaders is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.GetShardLeadersRequest
func ( _e * MockQueryCoord_Expecter ) GetShardLeaders ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_GetShardLeaders_Call {
return & MockQueryCoord_GetShardLeaders_Call { Call : _e . mock . On ( "GetShardLeaders" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetShardLeaders_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . GetShardLeadersRequest ) ) * MockQueryCoord_GetShardLeaders_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . GetShardLeadersRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_GetShardLeaders_Call ) Return ( _a0 * querypb . GetShardLeadersResponse , _a1 error ) * MockQueryCoord_GetShardLeaders_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_GetShardLeaders_Call ) RunAndReturn ( run func ( context . Context , * querypb . GetShardLeadersRequest ) ( * querypb . GetShardLeadersResponse , error ) ) * MockQueryCoord_GetShardLeaders_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// GetStatisticsChannel provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) GetStatisticsChannel ( _a0 context . Context , _a1 * internalpb . GetStatisticsChannelRequest ) ( * milvuspb . StringResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * milvuspb . StringResponse
2023-07-14 02:12:31 +00:00
var r1 error
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * internalpb . GetStatisticsChannelRequest ) ( * milvuspb . StringResponse , error ) ) ; ok {
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * internalpb . GetStatisticsChannelRequest ) * milvuspb . StringResponse ) ; ok {
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * milvuspb . StringResponse )
}
}
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * internalpb . GetStatisticsChannelRequest ) error ) ; ok {
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_GetStatisticsChannel_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetStatisticsChannel'
type MockQueryCoord_GetStatisticsChannel_Call struct {
* mock . Call
}
// GetStatisticsChannel is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *internalpb.GetStatisticsChannelRequest
func ( _e * MockQueryCoord_Expecter ) GetStatisticsChannel ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_GetStatisticsChannel_Call {
return & MockQueryCoord_GetStatisticsChannel_Call { Call : _e . mock . On ( "GetStatisticsChannel" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetStatisticsChannel_Call ) Run ( run func ( _a0 context . Context , _a1 * internalpb . GetStatisticsChannelRequest ) ) * MockQueryCoord_GetStatisticsChannel_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2023-09-26 01:57:25 +00:00
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * internalpb . GetStatisticsChannelRequest ) )
2023-02-16 07:38:34 +00:00
} )
return _c
}
func ( _c * MockQueryCoord_GetStatisticsChannel_Call ) Return ( _a0 * milvuspb . StringResponse , _a1 error ) * MockQueryCoord_GetStatisticsChannel_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetStatisticsChannel_Call ) RunAndReturn ( run func ( context . Context , * internalpb . GetStatisticsChannelRequest ) ( * milvuspb . StringResponse , error ) ) * MockQueryCoord_GetStatisticsChannel_Call {
2023-07-14 02:12:31 +00:00
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// GetTimeTickChannel provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) GetTimeTickChannel ( _a0 context . Context , _a1 * internalpb . GetTimeTickChannelRequest ) ( * milvuspb . StringResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * milvuspb . StringResponse
2023-07-14 02:12:31 +00:00
var r1 error
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * internalpb . GetTimeTickChannelRequest ) ( * milvuspb . StringResponse , error ) ) ; ok {
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * internalpb . GetTimeTickChannelRequest ) * milvuspb . StringResponse ) ; ok {
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * milvuspb . StringResponse )
}
}
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * internalpb . GetTimeTickChannelRequest ) error ) ; ok {
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_GetTimeTickChannel_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetTimeTickChannel'
type MockQueryCoord_GetTimeTickChannel_Call struct {
* mock . Call
}
// GetTimeTickChannel is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *internalpb.GetTimeTickChannelRequest
func ( _e * MockQueryCoord_Expecter ) GetTimeTickChannel ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_GetTimeTickChannel_Call {
return & MockQueryCoord_GetTimeTickChannel_Call { Call : _e . mock . On ( "GetTimeTickChannel" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetTimeTickChannel_Call ) Run ( run func ( _a0 context . Context , _a1 * internalpb . GetTimeTickChannelRequest ) ) * MockQueryCoord_GetTimeTickChannel_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2023-09-26 01:57:25 +00:00
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * internalpb . GetTimeTickChannelRequest ) )
2023-02-16 07:38:34 +00:00
} )
return _c
}
func ( _c * MockQueryCoord_GetTimeTickChannel_Call ) Return ( _a0 * milvuspb . StringResponse , _a1 error ) * MockQueryCoord_GetTimeTickChannel_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_GetTimeTickChannel_Call ) RunAndReturn ( run func ( context . Context , * internalpb . GetTimeTickChannelRequest ) ( * milvuspb . StringResponse , error ) ) * MockQueryCoord_GetTimeTickChannel_Call {
2023-07-14 02:12:31 +00:00
_c . Call . Return ( run )
return _c
}
2023-02-16 07:38:34 +00:00
// Init provides a mock function with given fields:
func ( _m * MockQueryCoord ) Init ( ) error {
ret := _m . Called ( )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( ) error ) ; ok {
r0 = rf ( )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockQueryCoord_Init_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Init'
type MockQueryCoord_Init_Call struct {
* mock . Call
}
// Init is a helper method to define mock.On call
func ( _e * MockQueryCoord_Expecter ) Init ( ) * MockQueryCoord_Init_Call {
return & MockQueryCoord_Init_Call { Call : _e . mock . On ( "Init" ) }
}
func ( _c * MockQueryCoord_Init_Call ) Run ( run func ( ) ) * MockQueryCoord_Init_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( )
} )
return _c
}
func ( _c * MockQueryCoord_Init_Call ) Return ( _a0 error ) * MockQueryCoord_Init_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_Init_Call ) RunAndReturn ( run func ( ) error ) * MockQueryCoord_Init_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// ListResourceGroups provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) ListResourceGroups ( _a0 context . Context , _a1 * milvuspb . ListResourceGroupsRequest ) ( * milvuspb . ListResourceGroupsResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * milvuspb . ListResourceGroupsResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . ListResourceGroupsRequest ) ( * milvuspb . ListResourceGroupsResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . ListResourceGroupsRequest ) * milvuspb . ListResourceGroupsResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * milvuspb . ListResourceGroupsResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * milvuspb . ListResourceGroupsRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_ListResourceGroups_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListResourceGroups'
type MockQueryCoord_ListResourceGroups_Call struct {
* mock . Call
}
// ListResourceGroups is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *milvuspb.ListResourceGroupsRequest
func ( _e * MockQueryCoord_Expecter ) ListResourceGroups ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_ListResourceGroups_Call {
return & MockQueryCoord_ListResourceGroups_Call { Call : _e . mock . On ( "ListResourceGroups" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_ListResourceGroups_Call ) Run ( run func ( _a0 context . Context , _a1 * milvuspb . ListResourceGroupsRequest ) ) * MockQueryCoord_ListResourceGroups_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * milvuspb . ListResourceGroupsRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_ListResourceGroups_Call ) Return ( _a0 * milvuspb . ListResourceGroupsResponse , _a1 error ) * MockQueryCoord_ListResourceGroups_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_ListResourceGroups_Call ) RunAndReturn ( run func ( context . Context , * milvuspb . ListResourceGroupsRequest ) ( * milvuspb . ListResourceGroupsResponse , error ) ) * MockQueryCoord_ListResourceGroups_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// LoadBalance provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) LoadBalance ( _a0 context . Context , _a1 * querypb . LoadBalanceRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . LoadBalanceRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . LoadBalanceRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . LoadBalanceRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_LoadBalance_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadBalance'
type MockQueryCoord_LoadBalance_Call struct {
* mock . Call
}
// LoadBalance is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.LoadBalanceRequest
func ( _e * MockQueryCoord_Expecter ) LoadBalance ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_LoadBalance_Call {
return & MockQueryCoord_LoadBalance_Call { Call : _e . mock . On ( "LoadBalance" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_LoadBalance_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . LoadBalanceRequest ) ) * MockQueryCoord_LoadBalance_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . LoadBalanceRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_LoadBalance_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_LoadBalance_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_LoadBalance_Call ) RunAndReturn ( run func ( context . Context , * querypb . LoadBalanceRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_LoadBalance_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// LoadCollection provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) LoadCollection ( _a0 context . Context , _a1 * querypb . LoadCollectionRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . LoadCollectionRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . LoadCollectionRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . LoadCollectionRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_LoadCollection_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadCollection'
type MockQueryCoord_LoadCollection_Call struct {
* mock . Call
}
// LoadCollection is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.LoadCollectionRequest
func ( _e * MockQueryCoord_Expecter ) LoadCollection ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_LoadCollection_Call {
return & MockQueryCoord_LoadCollection_Call { Call : _e . mock . On ( "LoadCollection" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_LoadCollection_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . LoadCollectionRequest ) ) * MockQueryCoord_LoadCollection_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . LoadCollectionRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_LoadCollection_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_LoadCollection_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_LoadCollection_Call ) RunAndReturn ( run func ( context . Context , * querypb . LoadCollectionRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_LoadCollection_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// LoadPartitions provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) LoadPartitions ( _a0 context . Context , _a1 * querypb . LoadPartitionsRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . LoadPartitionsRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . LoadPartitionsRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . LoadPartitionsRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_LoadPartitions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadPartitions'
type MockQueryCoord_LoadPartitions_Call struct {
* mock . Call
}
// LoadPartitions is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.LoadPartitionsRequest
func ( _e * MockQueryCoord_Expecter ) LoadPartitions ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_LoadPartitions_Call {
return & MockQueryCoord_LoadPartitions_Call { Call : _e . mock . On ( "LoadPartitions" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_LoadPartitions_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . LoadPartitionsRequest ) ) * MockQueryCoord_LoadPartitions_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . LoadPartitionsRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_LoadPartitions_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_LoadPartitions_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_LoadPartitions_Call ) RunAndReturn ( run func ( context . Context , * querypb . LoadPartitionsRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_LoadPartitions_Call {
_c . Call . Return ( run )
return _c
}
2023-02-16 07:38:34 +00:00
// Register provides a mock function with given fields:
func ( _m * MockQueryCoord ) Register ( ) error {
ret := _m . Called ( )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( ) error ) ; ok {
r0 = rf ( )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockQueryCoord_Register_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Register'
type MockQueryCoord_Register_Call struct {
* mock . Call
}
// Register is a helper method to define mock.On call
func ( _e * MockQueryCoord_Expecter ) Register ( ) * MockQueryCoord_Register_Call {
return & MockQueryCoord_Register_Call { Call : _e . mock . On ( "Register" ) }
}
func ( _c * MockQueryCoord_Register_Call ) Run ( run func ( ) ) * MockQueryCoord_Register_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( )
} )
return _c
}
func ( _c * MockQueryCoord_Register_Call ) Return ( _a0 error ) * MockQueryCoord_Register_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_Register_Call ) RunAndReturn ( run func ( ) error ) * MockQueryCoord_Register_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// ReleaseCollection provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) ReleaseCollection ( _a0 context . Context , _a1 * querypb . ReleaseCollectionRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . ReleaseCollectionRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . ReleaseCollectionRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . ReleaseCollectionRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_ReleaseCollection_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReleaseCollection'
type MockQueryCoord_ReleaseCollection_Call struct {
* mock . Call
}
// ReleaseCollection is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.ReleaseCollectionRequest
func ( _e * MockQueryCoord_Expecter ) ReleaseCollection ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_ReleaseCollection_Call {
return & MockQueryCoord_ReleaseCollection_Call { Call : _e . mock . On ( "ReleaseCollection" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_ReleaseCollection_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . ReleaseCollectionRequest ) ) * MockQueryCoord_ReleaseCollection_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . ReleaseCollectionRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_ReleaseCollection_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_ReleaseCollection_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_ReleaseCollection_Call ) RunAndReturn ( run func ( context . Context , * querypb . ReleaseCollectionRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_ReleaseCollection_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// ReleasePartitions provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) ReleasePartitions ( _a0 context . Context , _a1 * querypb . ReleasePartitionsRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . ReleasePartitionsRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . ReleasePartitionsRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . ReleasePartitionsRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_ReleasePartitions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ReleasePartitions'
type MockQueryCoord_ReleasePartitions_Call struct {
* mock . Call
}
// ReleasePartitions is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.ReleasePartitionsRequest
func ( _e * MockQueryCoord_Expecter ) ReleasePartitions ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_ReleasePartitions_Call {
return & MockQueryCoord_ReleasePartitions_Call { Call : _e . mock . On ( "ReleasePartitions" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_ReleasePartitions_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . ReleasePartitionsRequest ) ) * MockQueryCoord_ReleasePartitions_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . ReleasePartitionsRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_ReleasePartitions_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_ReleasePartitions_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_ReleasePartitions_Call ) RunAndReturn ( run func ( context . Context , * querypb . ReleasePartitionsRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_ReleasePartitions_Call {
_c . Call . Return ( run )
return _c
}
2023-02-16 07:38:34 +00:00
// SetAddress provides a mock function with given fields: address
func ( _m * MockQueryCoord ) SetAddress ( address string ) {
_m . Called ( address )
}
// MockQueryCoord_SetAddress_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SetAddress'
type MockQueryCoord_SetAddress_Call struct {
* mock . Call
}
// SetAddress is a helper method to define mock.On call
2023-09-04 13:19:48 +00:00
// - address string
2023-02-16 07:38:34 +00:00
func ( _e * MockQueryCoord_Expecter ) SetAddress ( address interface { } ) * MockQueryCoord_SetAddress_Call {
return & MockQueryCoord_SetAddress_Call { Call : _e . mock . On ( "SetAddress" , address ) }
}
func ( _c * MockQueryCoord_SetAddress_Call ) Run ( run func ( address string ) ) * MockQueryCoord_SetAddress_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( string ) )
} )
return _c
}
func ( _c * MockQueryCoord_SetAddress_Call ) Return ( ) * MockQueryCoord_SetAddress_Call {
_c . Call . Return ( )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_SetAddress_Call ) RunAndReturn ( run func ( string ) ) * MockQueryCoord_SetAddress_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// SetDataCoordClient provides a mock function with given fields: dataCoord
func ( _m * MockQueryCoord ) SetDataCoordClient ( dataCoord types . DataCoordClient ) error {
2023-02-16 07:38:34 +00:00
ret := _m . Called ( dataCoord )
var r0 error
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( types . DataCoordClient ) error ) ; ok {
2023-02-16 07:38:34 +00:00
r0 = rf ( dataCoord )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
2023-09-26 01:57:25 +00:00
// MockQueryCoord_SetDataCoordClient_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SetDataCoordClient'
type MockQueryCoord_SetDataCoordClient_Call struct {
2023-02-16 07:38:34 +00:00
* mock . Call
}
2023-09-26 01:57:25 +00:00
// SetDataCoordClient is a helper method to define mock.On call
// - dataCoord types.DataCoordClient
func ( _e * MockQueryCoord_Expecter ) SetDataCoordClient ( dataCoord interface { } ) * MockQueryCoord_SetDataCoordClient_Call {
return & MockQueryCoord_SetDataCoordClient_Call { Call : _e . mock . On ( "SetDataCoordClient" , dataCoord ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SetDataCoordClient_Call ) Run ( run func ( dataCoord types . DataCoordClient ) ) * MockQueryCoord_SetDataCoordClient_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2023-09-26 01:57:25 +00:00
run ( args [ 0 ] . ( types . DataCoordClient ) )
2023-02-16 07:38:34 +00:00
} )
return _c
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SetDataCoordClient_Call ) Return ( _a0 error ) * MockQueryCoord_SetDataCoordClient_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Return ( _a0 )
return _c
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SetDataCoordClient_Call ) RunAndReturn ( run func ( types . DataCoordClient ) error ) * MockQueryCoord_SetDataCoordClient_Call {
2023-07-14 02:12:31 +00:00
_c . Call . Return ( run )
return _c
}
2023-02-16 07:38:34 +00:00
// SetEtcdClient provides a mock function with given fields: etcdClient
func ( _m * MockQueryCoord ) SetEtcdClient ( etcdClient * clientv3 . Client ) {
_m . Called ( etcdClient )
}
// MockQueryCoord_SetEtcdClient_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SetEtcdClient'
type MockQueryCoord_SetEtcdClient_Call struct {
* mock . Call
}
// SetEtcdClient is a helper method to define mock.On call
2023-09-04 13:19:48 +00:00
// - etcdClient *clientv3.Client
2023-02-16 07:38:34 +00:00
func ( _e * MockQueryCoord_Expecter ) SetEtcdClient ( etcdClient interface { } ) * MockQueryCoord_SetEtcdClient_Call {
return & MockQueryCoord_SetEtcdClient_Call { Call : _e . mock . On ( "SetEtcdClient" , etcdClient ) }
}
func ( _c * MockQueryCoord_SetEtcdClient_Call ) Run ( run func ( etcdClient * clientv3 . Client ) ) * MockQueryCoord_SetEtcdClient_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( * clientv3 . Client ) )
} )
return _c
}
func ( _c * MockQueryCoord_SetEtcdClient_Call ) Return ( ) * MockQueryCoord_SetEtcdClient_Call {
_c . Call . Return ( )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_SetEtcdClient_Call ) RunAndReturn ( run func ( * clientv3 . Client ) ) * MockQueryCoord_SetEtcdClient_Call {
_c . Call . Return ( run )
return _c
}
2023-02-16 07:38:34 +00:00
// SetQueryNodeCreator provides a mock function with given fields: _a0
2023-09-26 01:57:25 +00:00
func ( _m * MockQueryCoord ) SetQueryNodeCreator ( _a0 func ( context . Context , string , int64 ) ( types . QueryNodeClient , error ) ) {
2023-02-16 07:38:34 +00:00
_m . Called ( _a0 )
}
// MockQueryCoord_SetQueryNodeCreator_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SetQueryNodeCreator'
type MockQueryCoord_SetQueryNodeCreator_Call struct {
* mock . Call
}
// SetQueryNodeCreator is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 func(context.Context , string , int64)(types.QueryNodeClient , error)
2023-02-16 07:38:34 +00:00
func ( _e * MockQueryCoord_Expecter ) SetQueryNodeCreator ( _a0 interface { } ) * MockQueryCoord_SetQueryNodeCreator_Call {
return & MockQueryCoord_SetQueryNodeCreator_Call { Call : _e . mock . On ( "SetQueryNodeCreator" , _a0 ) }
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SetQueryNodeCreator_Call ) Run ( run func ( _a0 func ( context . Context , string , int64 ) ( types . QueryNodeClient , error ) ) ) * MockQueryCoord_SetQueryNodeCreator_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2023-09-26 01:57:25 +00:00
run ( args [ 0 ] . ( func ( context . Context , string , int64 ) ( types . QueryNodeClient , error ) ) )
2023-02-16 07:38:34 +00:00
} )
return _c
}
func ( _c * MockQueryCoord_SetQueryNodeCreator_Call ) Return ( ) * MockQueryCoord_SetQueryNodeCreator_Call {
_c . Call . Return ( )
return _c
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SetQueryNodeCreator_Call ) RunAndReturn ( run func ( func ( context . Context , string , int64 ) ( types . QueryNodeClient , error ) ) ) * MockQueryCoord_SetQueryNodeCreator_Call {
2023-07-14 02:12:31 +00:00
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// SetRootCoordClient provides a mock function with given fields: rootCoord
func ( _m * MockQueryCoord ) SetRootCoordClient ( rootCoord types . RootCoordClient ) error {
2023-02-16 07:38:34 +00:00
ret := _m . Called ( rootCoord )
var r0 error
2023-09-26 01:57:25 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( types . RootCoordClient ) error ) ; ok {
2023-02-16 07:38:34 +00:00
r0 = rf ( rootCoord )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
2023-09-26 01:57:25 +00:00
// MockQueryCoord_SetRootCoordClient_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SetRootCoordClient'
type MockQueryCoord_SetRootCoordClient_Call struct {
2023-02-16 07:38:34 +00:00
* mock . Call
}
2023-09-26 01:57:25 +00:00
// SetRootCoordClient is a helper method to define mock.On call
// - rootCoord types.RootCoordClient
func ( _e * MockQueryCoord_Expecter ) SetRootCoordClient ( rootCoord interface { } ) * MockQueryCoord_SetRootCoordClient_Call {
return & MockQueryCoord_SetRootCoordClient_Call { Call : _e . mock . On ( "SetRootCoordClient" , rootCoord ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SetRootCoordClient_Call ) Run ( run func ( rootCoord types . RootCoordClient ) ) * MockQueryCoord_SetRootCoordClient_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
2023-09-26 01:57:25 +00:00
run ( args [ 0 ] . ( types . RootCoordClient ) )
2023-02-16 07:38:34 +00:00
} )
return _c
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SetRootCoordClient_Call ) Return ( _a0 error ) * MockQueryCoord_SetRootCoordClient_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Return ( _a0 )
return _c
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SetRootCoordClient_Call ) RunAndReturn ( run func ( types . RootCoordClient ) error ) * MockQueryCoord_SetRootCoordClient_Call {
2023-07-14 02:12:31 +00:00
_c . Call . Return ( run )
return _c
}
2023-09-06 23:25:14 +00:00
// SetTiKVClient provides a mock function with given fields: client
func ( _m * MockQueryCoord ) SetTiKVClient ( client * txnkv . Client ) {
_m . Called ( client )
}
// MockQueryCoord_SetTiKVClient_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SetTiKVClient'
type MockQueryCoord_SetTiKVClient_Call struct {
* mock . Call
}
// SetTiKVClient is a helper method to define mock.On call
// - client *txnkv.Client
func ( _e * MockQueryCoord_Expecter ) SetTiKVClient ( client interface { } ) * MockQueryCoord_SetTiKVClient_Call {
return & MockQueryCoord_SetTiKVClient_Call { Call : _e . mock . On ( "SetTiKVClient" , client ) }
}
func ( _c * MockQueryCoord_SetTiKVClient_Call ) Run ( run func ( client * txnkv . Client ) ) * MockQueryCoord_SetTiKVClient_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( * txnkv . Client ) )
} )
return _c
}
func ( _c * MockQueryCoord_SetTiKVClient_Call ) Return ( ) * MockQueryCoord_SetTiKVClient_Call {
_c . Call . Return ( )
return _c
}
func ( _c * MockQueryCoord_SetTiKVClient_Call ) RunAndReturn ( run func ( * txnkv . Client ) ) * MockQueryCoord_SetTiKVClient_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// ShowCollections provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) ShowCollections ( _a0 context . Context , _a1 * querypb . ShowCollectionsRequest ) ( * querypb . ShowCollectionsResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * querypb . ShowCollectionsResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . ShowCollectionsRequest ) ( * querypb . ShowCollectionsResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . ShowCollectionsRequest ) * querypb . ShowCollectionsResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * querypb . ShowCollectionsResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . ShowCollectionsRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_ShowCollections_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ShowCollections'
type MockQueryCoord_ShowCollections_Call struct {
* mock . Call
}
// ShowCollections is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.ShowCollectionsRequest
func ( _e * MockQueryCoord_Expecter ) ShowCollections ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_ShowCollections_Call {
return & MockQueryCoord_ShowCollections_Call { Call : _e . mock . On ( "ShowCollections" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_ShowCollections_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . ShowCollectionsRequest ) ) * MockQueryCoord_ShowCollections_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . ShowCollectionsRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_ShowCollections_Call ) Return ( _a0 * querypb . ShowCollectionsResponse , _a1 error ) * MockQueryCoord_ShowCollections_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_ShowCollections_Call ) RunAndReturn ( run func ( context . Context , * querypb . ShowCollectionsRequest ) ( * querypb . ShowCollectionsResponse , error ) ) * MockQueryCoord_ShowCollections_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// ShowConfigurations provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) ShowConfigurations ( _a0 context . Context , _a1 * internalpb . ShowConfigurationsRequest ) ( * internalpb . ShowConfigurationsResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * internalpb . ShowConfigurationsResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * internalpb . ShowConfigurationsRequest ) ( * internalpb . ShowConfigurationsResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * internalpb . ShowConfigurationsRequest ) * internalpb . ShowConfigurationsResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * internalpb . ShowConfigurationsResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * internalpb . ShowConfigurationsRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_ShowConfigurations_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ShowConfigurations'
type MockQueryCoord_ShowConfigurations_Call struct {
* mock . Call
}
// ShowConfigurations is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *internalpb.ShowConfigurationsRequest
func ( _e * MockQueryCoord_Expecter ) ShowConfigurations ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_ShowConfigurations_Call {
return & MockQueryCoord_ShowConfigurations_Call { Call : _e . mock . On ( "ShowConfigurations" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_ShowConfigurations_Call ) Run ( run func ( _a0 context . Context , _a1 * internalpb . ShowConfigurationsRequest ) ) * MockQueryCoord_ShowConfigurations_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * internalpb . ShowConfigurationsRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_ShowConfigurations_Call ) Return ( _a0 * internalpb . ShowConfigurationsResponse , _a1 error ) * MockQueryCoord_ShowConfigurations_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_ShowConfigurations_Call ) RunAndReturn ( run func ( context . Context , * internalpb . ShowConfigurationsRequest ) ( * internalpb . ShowConfigurationsResponse , error ) ) * MockQueryCoord_ShowConfigurations_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// ShowPartitions provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) ShowPartitions ( _a0 context . Context , _a1 * querypb . ShowPartitionsRequest ) ( * querypb . ShowPartitionsResponse , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * querypb . ShowPartitionsResponse
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . ShowPartitionsRequest ) ( * querypb . ShowPartitionsResponse , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . ShowPartitionsRequest ) * querypb . ShowPartitionsResponse ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * querypb . ShowPartitionsResponse )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . ShowPartitionsRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_ShowPartitions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ShowPartitions'
type MockQueryCoord_ShowPartitions_Call struct {
* mock . Call
}
// ShowPartitions is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.ShowPartitionsRequest
func ( _e * MockQueryCoord_Expecter ) ShowPartitions ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_ShowPartitions_Call {
return & MockQueryCoord_ShowPartitions_Call { Call : _e . mock . On ( "ShowPartitions" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_ShowPartitions_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . ShowPartitionsRequest ) ) * MockQueryCoord_ShowPartitions_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . ShowPartitionsRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_ShowPartitions_Call ) Return ( _a0 * querypb . ShowPartitionsResponse , _a1 error ) * MockQueryCoord_ShowPartitions_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_ShowPartitions_Call ) RunAndReturn ( run func ( context . Context , * querypb . ShowPartitionsRequest ) ( * querypb . ShowPartitionsResponse , error ) ) * MockQueryCoord_ShowPartitions_Call {
_c . Call . Return ( run )
return _c
}
2023-02-16 07:38:34 +00:00
// Start provides a mock function with given fields:
func ( _m * MockQueryCoord ) Start ( ) error {
ret := _m . Called ( )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( ) error ) ; ok {
r0 = rf ( )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockQueryCoord_Start_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Start'
type MockQueryCoord_Start_Call struct {
* mock . Call
}
// Start is a helper method to define mock.On call
func ( _e * MockQueryCoord_Expecter ) Start ( ) * MockQueryCoord_Start_Call {
return & MockQueryCoord_Start_Call { Call : _e . mock . On ( "Start" ) }
}
func ( _c * MockQueryCoord_Start_Call ) Run ( run func ( ) ) * MockQueryCoord_Start_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( )
} )
return _c
}
func ( _c * MockQueryCoord_Start_Call ) Return ( _a0 error ) * MockQueryCoord_Start_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_Start_Call ) RunAndReturn ( run func ( ) error ) * MockQueryCoord_Start_Call {
_c . Call . Return ( run )
return _c
}
2023-02-16 07:38:34 +00:00
// Stop provides a mock function with given fields:
func ( _m * MockQueryCoord ) Stop ( ) error {
ret := _m . Called ( )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( ) error ) ; ok {
r0 = rf ( )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockQueryCoord_Stop_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Stop'
type MockQueryCoord_Stop_Call struct {
* mock . Call
}
// Stop is a helper method to define mock.On call
func ( _e * MockQueryCoord_Expecter ) Stop ( ) * MockQueryCoord_Stop_Call {
return & MockQueryCoord_Stop_Call { Call : _e . mock . On ( "Stop" ) }
}
func ( _c * MockQueryCoord_Stop_Call ) Run ( run func ( ) ) * MockQueryCoord_Stop_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( )
} )
return _c
}
func ( _c * MockQueryCoord_Stop_Call ) Return ( _a0 error ) * MockQueryCoord_Stop_Call {
_c . Call . Return ( _a0 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_Stop_Call ) RunAndReturn ( run func ( ) error ) * MockQueryCoord_Stop_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// SyncNewCreatedPartition provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) SyncNewCreatedPartition ( _a0 context . Context , _a1 * querypb . SyncNewCreatedPartitionRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-03-20 06:55:57 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . SyncNewCreatedPartitionRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-03-20 06:55:57 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . SyncNewCreatedPartitionRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-03-20 06:55:57 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . SyncNewCreatedPartitionRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-03-20 06:55:57 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_SyncNewCreatedPartition_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SyncNewCreatedPartition'
type MockQueryCoord_SyncNewCreatedPartition_Call struct {
* mock . Call
}
// SyncNewCreatedPartition is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.SyncNewCreatedPartitionRequest
func ( _e * MockQueryCoord_Expecter ) SyncNewCreatedPartition ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_SyncNewCreatedPartition_Call {
return & MockQueryCoord_SyncNewCreatedPartition_Call { Call : _e . mock . On ( "SyncNewCreatedPartition" , _a0 , _a1 ) }
2023-03-20 06:55:57 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_SyncNewCreatedPartition_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . SyncNewCreatedPartitionRequest ) ) * MockQueryCoord_SyncNewCreatedPartition_Call {
2023-03-20 06:55:57 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . SyncNewCreatedPartitionRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_SyncNewCreatedPartition_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_SyncNewCreatedPartition_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_SyncNewCreatedPartition_Call ) RunAndReturn ( run func ( context . Context , * querypb . SyncNewCreatedPartitionRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_SyncNewCreatedPartition_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// TransferNode provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) TransferNode ( _a0 context . Context , _a1 * milvuspb . TransferNodeRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . TransferNodeRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * milvuspb . TransferNodeRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * milvuspb . TransferNodeRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_TransferNode_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TransferNode'
type MockQueryCoord_TransferNode_Call struct {
* mock . Call
}
// TransferNode is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *milvuspb.TransferNodeRequest
func ( _e * MockQueryCoord_Expecter ) TransferNode ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_TransferNode_Call {
return & MockQueryCoord_TransferNode_Call { Call : _e . mock . On ( "TransferNode" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_TransferNode_Call ) Run ( run func ( _a0 context . Context , _a1 * milvuspb . TransferNodeRequest ) ) * MockQueryCoord_TransferNode_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * milvuspb . TransferNodeRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_TransferNode_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_TransferNode_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_TransferNode_Call ) RunAndReturn ( run func ( context . Context , * milvuspb . TransferNodeRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_TransferNode_Call {
_c . Call . Return ( run )
return _c
}
2023-09-26 01:57:25 +00:00
// TransferReplica provides a mock function with given fields: _a0, _a1
func ( _m * MockQueryCoord ) TransferReplica ( _a0 context . Context , _a1 * querypb . TransferReplicaRequest ) ( * commonpb . Status , error ) {
ret := _m . Called ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
var r0 * commonpb . Status
2023-07-14 02:12:31 +00:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . TransferReplicaRequest ) ( * commonpb . Status , error ) ) ; ok {
2023-09-26 01:57:25 +00:00
return rf ( _a0 , _a1 )
2023-07-14 02:12:31 +00:00
}
2023-02-16 07:38:34 +00:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * querypb . TransferReplicaRequest ) * commonpb . Status ) ; ok {
2023-09-26 01:57:25 +00:00
r0 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * commonpb . Status )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * querypb . TransferReplicaRequest ) error ) ; ok {
2023-09-26 01:57:25 +00:00
r1 = rf ( _a0 , _a1 )
2023-02-16 07:38:34 +00:00
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// MockQueryCoord_TransferReplica_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TransferReplica'
type MockQueryCoord_TransferReplica_Call struct {
* mock . Call
}
// TransferReplica is a helper method to define mock.On call
2023-09-26 01:57:25 +00:00
// - _a0 context.Context
// - _a1 *querypb.TransferReplicaRequest
func ( _e * MockQueryCoord_Expecter ) TransferReplica ( _a0 interface { } , _a1 interface { } ) * MockQueryCoord_TransferReplica_Call {
return & MockQueryCoord_TransferReplica_Call { Call : _e . mock . On ( "TransferReplica" , _a0 , _a1 ) }
2023-02-16 07:38:34 +00:00
}
2023-09-26 01:57:25 +00:00
func ( _c * MockQueryCoord_TransferReplica_Call ) Run ( run func ( _a0 context . Context , _a1 * querypb . TransferReplicaRequest ) ) * MockQueryCoord_TransferReplica_Call {
2023-02-16 07:38:34 +00:00
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) , args [ 1 ] . ( * querypb . TransferReplicaRequest ) )
} )
return _c
}
func ( _c * MockQueryCoord_TransferReplica_Call ) Return ( _a0 * commonpb . Status , _a1 error ) * MockQueryCoord_TransferReplica_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_TransferReplica_Call ) RunAndReturn ( run func ( context . Context , * querypb . TransferReplicaRequest ) ( * commonpb . Status , error ) ) * MockQueryCoord_TransferReplica_Call {
_c . Call . Return ( run )
return _c
}
2023-02-16 07:38:34 +00:00
// UpdateStateCode provides a mock function with given fields: stateCode
func ( _m * MockQueryCoord ) UpdateStateCode ( stateCode commonpb . StateCode ) {
_m . Called ( stateCode )
}
// MockQueryCoord_UpdateStateCode_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UpdateStateCode'
type MockQueryCoord_UpdateStateCode_Call struct {
* mock . Call
}
// UpdateStateCode is a helper method to define mock.On call
2023-09-04 13:19:48 +00:00
// - stateCode commonpb.StateCode
2023-02-16 07:38:34 +00:00
func ( _e * MockQueryCoord_Expecter ) UpdateStateCode ( stateCode interface { } ) * MockQueryCoord_UpdateStateCode_Call {
return & MockQueryCoord_UpdateStateCode_Call { Call : _e . mock . On ( "UpdateStateCode" , stateCode ) }
}
func ( _c * MockQueryCoord_UpdateStateCode_Call ) Run ( run func ( stateCode commonpb . StateCode ) ) * MockQueryCoord_UpdateStateCode_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( commonpb . StateCode ) )
} )
return _c
}
func ( _c * MockQueryCoord_UpdateStateCode_Call ) Return ( ) * MockQueryCoord_UpdateStateCode_Call {
_c . Call . Return ( )
return _c
}
2023-07-14 02:12:31 +00:00
func ( _c * MockQueryCoord_UpdateStateCode_Call ) RunAndReturn ( run func ( commonpb . StateCode ) ) * MockQueryCoord_UpdateStateCode_Call {
_c . Call . Return ( run )
return _c
2023-02-16 07:38:34 +00:00
}
// NewMockQueryCoord creates a new instance of MockQueryCoord. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
2023-07-14 02:12:31 +00:00
// The first argument is typically a *testing.T value.
func NewMockQueryCoord ( t interface {
mock . TestingT
Cleanup ( func ( ) )
} ) * MockQueryCoord {
2023-02-16 07:38:34 +00:00
mock := & MockQueryCoord { }
mock . Mock . Test ( t )
t . Cleanup ( func ( ) { mock . AssertExpectations ( t ) } )
return mock
}