yihao.dai 51f69f32d0
feat: Add CDC support (#44124)
This PR implements a new CDC service for Milvus 2.6, providing log-based
cross-cluster replication.

issue: https://github.com/milvus-io/milvus/issues/44123

---------

Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
Signed-off-by: chyezh <chyezh@outlook.com>
Co-authored-by: chyezh <chyezh@outlook.com>
2025-09-16 16:32:01 +08:00

358 lines
8.9 KiB
Go

// Code generated by mockery v2.53.3. DO NOT EDIT.
package mock_message
import (
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
message "github.com/milvus-io/milvus/pkg/v2/streaming/util/message"
mock "github.com/stretchr/testify/mock"
)
// MockMessageID is an autogenerated mock type for the MessageID type
type MockMessageID struct {
mock.Mock
}
type MockMessageID_Expecter struct {
mock *mock.Mock
}
func (_m *MockMessageID) EXPECT() *MockMessageID_Expecter {
return &MockMessageID_Expecter{mock: &_m.Mock}
}
// EQ provides a mock function with given fields: _a0
func (_m *MockMessageID) EQ(_a0 message.MessageID) bool {
ret := _m.Called(_a0)
if len(ret) == 0 {
panic("no return value specified for EQ")
}
var r0 bool
if rf, ok := ret.Get(0).(func(message.MessageID) bool); ok {
r0 = rf(_a0)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// MockMessageID_EQ_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'EQ'
type MockMessageID_EQ_Call struct {
*mock.Call
}
// EQ is a helper method to define mock.On call
// - _a0 message.MessageID
func (_e *MockMessageID_Expecter) EQ(_a0 interface{}) *MockMessageID_EQ_Call {
return &MockMessageID_EQ_Call{Call: _e.mock.On("EQ", _a0)}
}
func (_c *MockMessageID_EQ_Call) Run(run func(_a0 message.MessageID)) *MockMessageID_EQ_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(message.MessageID))
})
return _c
}
func (_c *MockMessageID_EQ_Call) Return(_a0 bool) *MockMessageID_EQ_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockMessageID_EQ_Call) RunAndReturn(run func(message.MessageID) bool) *MockMessageID_EQ_Call {
_c.Call.Return(run)
return _c
}
// IntoProto provides a mock function with no fields
func (_m *MockMessageID) IntoProto() *commonpb.MessageID {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for IntoProto")
}
var r0 *commonpb.MessageID
if rf, ok := ret.Get(0).(func() *commonpb.MessageID); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*commonpb.MessageID)
}
}
return r0
}
// MockMessageID_IntoProto_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'IntoProto'
type MockMessageID_IntoProto_Call struct {
*mock.Call
}
// IntoProto is a helper method to define mock.On call
func (_e *MockMessageID_Expecter) IntoProto() *MockMessageID_IntoProto_Call {
return &MockMessageID_IntoProto_Call{Call: _e.mock.On("IntoProto")}
}
func (_c *MockMessageID_IntoProto_Call) Run(run func()) *MockMessageID_IntoProto_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockMessageID_IntoProto_Call) Return(_a0 *commonpb.MessageID) *MockMessageID_IntoProto_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockMessageID_IntoProto_Call) RunAndReturn(run func() *commonpb.MessageID) *MockMessageID_IntoProto_Call {
_c.Call.Return(run)
return _c
}
// LT provides a mock function with given fields: _a0
func (_m *MockMessageID) LT(_a0 message.MessageID) bool {
ret := _m.Called(_a0)
if len(ret) == 0 {
panic("no return value specified for LT")
}
var r0 bool
if rf, ok := ret.Get(0).(func(message.MessageID) bool); ok {
r0 = rf(_a0)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// MockMessageID_LT_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LT'
type MockMessageID_LT_Call struct {
*mock.Call
}
// LT is a helper method to define mock.On call
// - _a0 message.MessageID
func (_e *MockMessageID_Expecter) LT(_a0 interface{}) *MockMessageID_LT_Call {
return &MockMessageID_LT_Call{Call: _e.mock.On("LT", _a0)}
}
func (_c *MockMessageID_LT_Call) Run(run func(_a0 message.MessageID)) *MockMessageID_LT_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(message.MessageID))
})
return _c
}
func (_c *MockMessageID_LT_Call) Return(_a0 bool) *MockMessageID_LT_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockMessageID_LT_Call) RunAndReturn(run func(message.MessageID) bool) *MockMessageID_LT_Call {
_c.Call.Return(run)
return _c
}
// LTE provides a mock function with given fields: _a0
func (_m *MockMessageID) LTE(_a0 message.MessageID) bool {
ret := _m.Called(_a0)
if len(ret) == 0 {
panic("no return value specified for LTE")
}
var r0 bool
if rf, ok := ret.Get(0).(func(message.MessageID) bool); ok {
r0 = rf(_a0)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// MockMessageID_LTE_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LTE'
type MockMessageID_LTE_Call struct {
*mock.Call
}
// LTE is a helper method to define mock.On call
// - _a0 message.MessageID
func (_e *MockMessageID_Expecter) LTE(_a0 interface{}) *MockMessageID_LTE_Call {
return &MockMessageID_LTE_Call{Call: _e.mock.On("LTE", _a0)}
}
func (_c *MockMessageID_LTE_Call) Run(run func(_a0 message.MessageID)) *MockMessageID_LTE_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(message.MessageID))
})
return _c
}
func (_c *MockMessageID_LTE_Call) Return(_a0 bool) *MockMessageID_LTE_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockMessageID_LTE_Call) RunAndReturn(run func(message.MessageID) bool) *MockMessageID_LTE_Call {
_c.Call.Return(run)
return _c
}
// Marshal provides a mock function with no fields
func (_m *MockMessageID) Marshal() string {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for Marshal")
}
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// MockMessageID_Marshal_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Marshal'
type MockMessageID_Marshal_Call struct {
*mock.Call
}
// Marshal is a helper method to define mock.On call
func (_e *MockMessageID_Expecter) Marshal() *MockMessageID_Marshal_Call {
return &MockMessageID_Marshal_Call{Call: _e.mock.On("Marshal")}
}
func (_c *MockMessageID_Marshal_Call) Run(run func()) *MockMessageID_Marshal_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockMessageID_Marshal_Call) Return(_a0 string) *MockMessageID_Marshal_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockMessageID_Marshal_Call) RunAndReturn(run func() string) *MockMessageID_Marshal_Call {
_c.Call.Return(run)
return _c
}
// String provides a mock function with no fields
func (_m *MockMessageID) String() string {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for String")
}
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// MockMessageID_String_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'String'
type MockMessageID_String_Call struct {
*mock.Call
}
// String is a helper method to define mock.On call
func (_e *MockMessageID_Expecter) String() *MockMessageID_String_Call {
return &MockMessageID_String_Call{Call: _e.mock.On("String")}
}
func (_c *MockMessageID_String_Call) Run(run func()) *MockMessageID_String_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockMessageID_String_Call) Return(_a0 string) *MockMessageID_String_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockMessageID_String_Call) RunAndReturn(run func() string) *MockMessageID_String_Call {
_c.Call.Return(run)
return _c
}
// WALName provides a mock function with no fields
func (_m *MockMessageID) WALName() message.WALName {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for WALName")
}
var r0 message.WALName
if rf, ok := ret.Get(0).(func() message.WALName); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(message.WALName)
}
return r0
}
// MockMessageID_WALName_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WALName'
type MockMessageID_WALName_Call struct {
*mock.Call
}
// WALName is a helper method to define mock.On call
func (_e *MockMessageID_Expecter) WALName() *MockMessageID_WALName_Call {
return &MockMessageID_WALName_Call{Call: _e.mock.On("WALName")}
}
func (_c *MockMessageID_WALName_Call) Run(run func()) *MockMessageID_WALName_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockMessageID_WALName_Call) Return(_a0 message.WALName) *MockMessageID_WALName_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockMessageID_WALName_Call) RunAndReturn(run func() message.WALName) *MockMessageID_WALName_Call {
_c.Call.Return(run)
return _c
}
// NewMockMessageID creates a new instance of MockMessageID. 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 NewMockMessageID(t interface {
mock.TestingT
Cleanup(func())
}) *MockMessageID {
mock := &MockMessageID{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}