mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 21:09:06 +08:00
117 lines
3.6 KiB
Go
117 lines
3.6 KiB
Go
|
// Code generated by mockery v2.15.0. DO NOT EDIT.
|
||
|
|
||
|
package msgdispatcher
|
||
|
|
||
|
import (
|
||
|
"github.com/milvus-io/milvus-proto/go-api/msgpb"
|
||
|
mock "github.com/stretchr/testify/mock"
|
||
|
|
||
|
mqwrapper "github.com/milvus-io/milvus/internal/mq/msgstream/mqwrapper"
|
||
|
|
||
|
msgstream "github.com/milvus-io/milvus/internal/mq/msgstream"
|
||
|
)
|
||
|
|
||
|
// MockClient is an autogenerated mock type for the Client type
|
||
|
type MockClient struct {
|
||
|
mock.Mock
|
||
|
}
|
||
|
|
||
|
type MockClient_Expecter struct {
|
||
|
mock *mock.Mock
|
||
|
}
|
||
|
|
||
|
func (_m *MockClient) EXPECT() *MockClient_Expecter {
|
||
|
return &MockClient_Expecter{mock: &_m.Mock}
|
||
|
}
|
||
|
|
||
|
// Deregister provides a mock function with given fields: vchannel
|
||
|
func (_m *MockClient) Deregister(vchannel string) {
|
||
|
_m.Called(vchannel)
|
||
|
}
|
||
|
|
||
|
// MockClient_Deregister_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Deregister'
|
||
|
type MockClient_Deregister_Call struct {
|
||
|
*mock.Call
|
||
|
}
|
||
|
|
||
|
// Deregister is a helper method to define mock.On call
|
||
|
// - vchannel string
|
||
|
func (_e *MockClient_Expecter) Deregister(vchannel interface{}) *MockClient_Deregister_Call {
|
||
|
return &MockClient_Deregister_Call{Call: _e.mock.On("Deregister", vchannel)}
|
||
|
}
|
||
|
|
||
|
func (_c *MockClient_Deregister_Call) Run(run func(vchannel string)) *MockClient_Deregister_Call {
|
||
|
_c.Call.Run(func(args mock.Arguments) {
|
||
|
run(args[0].(string))
|
||
|
})
|
||
|
return _c
|
||
|
}
|
||
|
|
||
|
func (_c *MockClient_Deregister_Call) Return() *MockClient_Deregister_Call {
|
||
|
_c.Call.Return()
|
||
|
return _c
|
||
|
}
|
||
|
|
||
|
// Register provides a mock function with given fields: vchannel, pos, subPos
|
||
|
func (_m *MockClient) Register(vchannel string, pos *msgpb.MsgPosition, subPos mqwrapper.SubscriptionInitialPosition) (<-chan *msgstream.MsgPack, error) {
|
||
|
ret := _m.Called(vchannel, pos, subPos)
|
||
|
|
||
|
var r0 <-chan *msgstream.MsgPack
|
||
|
if rf, ok := ret.Get(0).(func(string, *msgpb.MsgPosition, mqwrapper.SubscriptionInitialPosition) <-chan *msgstream.MsgPack); ok {
|
||
|
r0 = rf(vchannel, pos, subPos)
|
||
|
} else {
|
||
|
if ret.Get(0) != nil {
|
||
|
r0 = ret.Get(0).(<-chan *msgstream.MsgPack)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var r1 error
|
||
|
if rf, ok := ret.Get(1).(func(string, *msgpb.MsgPosition, mqwrapper.SubscriptionInitialPosition) error); ok {
|
||
|
r1 = rf(vchannel, pos, subPos)
|
||
|
} else {
|
||
|
r1 = ret.Error(1)
|
||
|
}
|
||
|
|
||
|
return r0, r1
|
||
|
}
|
||
|
|
||
|
// MockClient_Register_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Register'
|
||
|
type MockClient_Register_Call struct {
|
||
|
*mock.Call
|
||
|
}
|
||
|
|
||
|
// Register is a helper method to define mock.On call
|
||
|
// - vchannel string
|
||
|
// - pos *msgpb.MsgPosition
|
||
|
// - subPos mqwrapper.SubscriptionInitialPosition
|
||
|
func (_e *MockClient_Expecter) Register(vchannel interface{}, pos interface{}, subPos interface{}) *MockClient_Register_Call {
|
||
|
return &MockClient_Register_Call{Call: _e.mock.On("Register", vchannel, pos, subPos)}
|
||
|
}
|
||
|
|
||
|
func (_c *MockClient_Register_Call) Run(run func(vchannel string, pos *msgpb.MsgPosition, subPos mqwrapper.SubscriptionInitialPosition)) *MockClient_Register_Call {
|
||
|
_c.Call.Run(func(args mock.Arguments) {
|
||
|
run(args[0].(string), args[1].(*msgpb.MsgPosition), args[2].(mqwrapper.SubscriptionInitialPosition))
|
||
|
})
|
||
|
return _c
|
||
|
}
|
||
|
|
||
|
func (_c *MockClient_Register_Call) Return(_a0 <-chan *msgstream.MsgPack, _a1 error) *MockClient_Register_Call {
|
||
|
_c.Call.Return(_a0, _a1)
|
||
|
return _c
|
||
|
}
|
||
|
|
||
|
type mockConstructorTestingTNewMockClient interface {
|
||
|
mock.TestingT
|
||
|
Cleanup(func())
|
||
|
}
|
||
|
|
||
|
// NewMockClient creates a new instance of MockClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
||
|
func NewMockClient(t mockConstructorTestingTNewMockClient) *MockClient {
|
||
|
mock := &MockClient{}
|
||
|
mock.Mock.Test(t)
|
||
|
|
||
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
||
|
|
||
|
return mock
|
||
|
}
|