mirror of https://github.com/milvus-io/milvus.git
850 lines
24 KiB
Go
850 lines
24 KiB
Go
// Code generated by mockery v2.30.1. DO NOT EDIT.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
clientv3 "go.etcd.io/etcd/client/v3"
|
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// WatchKV is an autogenerated mock type for the WatchKV type
|
|
type WatchKV struct {
|
|
mock.Mock
|
|
}
|
|
|
|
type WatchKV_Expecter struct {
|
|
mock *mock.Mock
|
|
}
|
|
|
|
func (_m *WatchKV) EXPECT() *WatchKV_Expecter {
|
|
return &WatchKV_Expecter{mock: &_m.Mock}
|
|
}
|
|
|
|
// Close provides a mock function with given fields:
|
|
func (_m *WatchKV) Close() {
|
|
_m.Called()
|
|
}
|
|
|
|
// WatchKV_Close_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Close'
|
|
type WatchKV_Close_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Close is a helper method to define mock.On call
|
|
func (_e *WatchKV_Expecter) Close() *WatchKV_Close_Call {
|
|
return &WatchKV_Close_Call{Call: _e.mock.On("Close")}
|
|
}
|
|
|
|
func (_c *WatchKV_Close_Call) Run(run func()) *WatchKV_Close_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run()
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Close_Call) Return() *WatchKV_Close_Call {
|
|
_c.Call.Return()
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Close_Call) RunAndReturn(run func()) *WatchKV_Close_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// CompareVersionAndSwap provides a mock function with given fields: key, version, target
|
|
func (_m *WatchKV) CompareVersionAndSwap(key string, version int64, target string) (bool, error) {
|
|
ret := _m.Called(key, version, target)
|
|
|
|
var r0 bool
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(string, int64, string) (bool, error)); ok {
|
|
return rf(key, version, target)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, int64, string) bool); ok {
|
|
r0 = rf(key, version, target)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, int64, string) error); ok {
|
|
r1 = rf(key, version, target)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// WatchKV_CompareVersionAndSwap_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CompareVersionAndSwap'
|
|
type WatchKV_CompareVersionAndSwap_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// CompareVersionAndSwap is a helper method to define mock.On call
|
|
// - key string
|
|
// - version int64
|
|
// - target string
|
|
func (_e *WatchKV_Expecter) CompareVersionAndSwap(key interface{}, version interface{}, target interface{}) *WatchKV_CompareVersionAndSwap_Call {
|
|
return &WatchKV_CompareVersionAndSwap_Call{Call: _e.mock.On("CompareVersionAndSwap", key, version, target)}
|
|
}
|
|
|
|
func (_c *WatchKV_CompareVersionAndSwap_Call) Run(run func(key string, version int64, target string)) *WatchKV_CompareVersionAndSwap_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string), args[1].(int64), args[2].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_CompareVersionAndSwap_Call) Return(_a0 bool, _a1 error) *WatchKV_CompareVersionAndSwap_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_CompareVersionAndSwap_Call) RunAndReturn(run func(string, int64, string) (bool, error)) *WatchKV_CompareVersionAndSwap_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// GetPath provides a mock function with given fields: key
|
|
func (_m *WatchKV) GetPath(key string) string {
|
|
ret := _m.Called(key)
|
|
|
|
var r0 string
|
|
if rf, ok := ret.Get(0).(func(string) string); ok {
|
|
r0 = rf(key)
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_GetPath_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetPath'
|
|
type WatchKV_GetPath_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetPath is a helper method to define mock.On call
|
|
// - key string
|
|
func (_e *WatchKV_Expecter) GetPath(key interface{}) *WatchKV_GetPath_Call {
|
|
return &WatchKV_GetPath_Call{Call: _e.mock.On("GetPath", key)}
|
|
}
|
|
|
|
func (_c *WatchKV_GetPath_Call) Run(run func(key string)) *WatchKV_GetPath_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_GetPath_Call) Return(_a0 string) *WatchKV_GetPath_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_GetPath_Call) RunAndReturn(run func(string) string) *WatchKV_GetPath_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// Load provides a mock function with given fields: key
|
|
func (_m *WatchKV) Load(key string) (string, error) {
|
|
ret := _m.Called(key)
|
|
|
|
var r0 string
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(string) (string, error)); ok {
|
|
return rf(key)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string) string); ok {
|
|
r0 = rf(key)
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string) error); ok {
|
|
r1 = rf(key)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// WatchKV_Load_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Load'
|
|
type WatchKV_Load_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Load is a helper method to define mock.On call
|
|
// - key string
|
|
func (_e *WatchKV_Expecter) Load(key interface{}) *WatchKV_Load_Call {
|
|
return &WatchKV_Load_Call{Call: _e.mock.On("Load", key)}
|
|
}
|
|
|
|
func (_c *WatchKV_Load_Call) Run(run func(key string)) *WatchKV_Load_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Load_Call) Return(_a0 string, _a1 error) *WatchKV_Load_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Load_Call) RunAndReturn(run func(string) (string, error)) *WatchKV_Load_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// LoadWithPrefix provides a mock function with given fields: key
|
|
func (_m *WatchKV) LoadWithPrefix(key string) ([]string, []string, error) {
|
|
ret := _m.Called(key)
|
|
|
|
var r0 []string
|
|
var r1 []string
|
|
var r2 error
|
|
if rf, ok := ret.Get(0).(func(string) ([]string, []string, error)); ok {
|
|
return rf(key)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string) []string); ok {
|
|
r0 = rf(key)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]string)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string) []string); ok {
|
|
r1 = rf(key)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).([]string)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(2).(func(string) error); ok {
|
|
r2 = rf(key)
|
|
} else {
|
|
r2 = ret.Error(2)
|
|
}
|
|
|
|
return r0, r1, r2
|
|
}
|
|
|
|
// WatchKV_LoadWithPrefix_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'LoadWithPrefix'
|
|
type WatchKV_LoadWithPrefix_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// LoadWithPrefix is a helper method to define mock.On call
|
|
// - key string
|
|
func (_e *WatchKV_Expecter) LoadWithPrefix(key interface{}) *WatchKV_LoadWithPrefix_Call {
|
|
return &WatchKV_LoadWithPrefix_Call{Call: _e.mock.On("LoadWithPrefix", key)}
|
|
}
|
|
|
|
func (_c *WatchKV_LoadWithPrefix_Call) Run(run func(key string)) *WatchKV_LoadWithPrefix_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_LoadWithPrefix_Call) Return(_a0 []string, _a1 []string, _a2 error) *WatchKV_LoadWithPrefix_Call {
|
|
_c.Call.Return(_a0, _a1, _a2)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_LoadWithPrefix_Call) RunAndReturn(run func(string) ([]string, []string, error)) *WatchKV_LoadWithPrefix_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// MultiLoad provides a mock function with given fields: keys
|
|
func (_m *WatchKV) MultiLoad(keys []string) ([]string, error) {
|
|
ret := _m.Called(keys)
|
|
|
|
var r0 []string
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func([]string) ([]string, error)); ok {
|
|
return rf(keys)
|
|
}
|
|
if rf, ok := ret.Get(0).(func([]string) []string); ok {
|
|
r0 = rf(keys)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]string)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func([]string) error); ok {
|
|
r1 = rf(keys)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// WatchKV_MultiLoad_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MultiLoad'
|
|
type WatchKV_MultiLoad_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// MultiLoad is a helper method to define mock.On call
|
|
// - keys []string
|
|
func (_e *WatchKV_Expecter) MultiLoad(keys interface{}) *WatchKV_MultiLoad_Call {
|
|
return &WatchKV_MultiLoad_Call{Call: _e.mock.On("MultiLoad", keys)}
|
|
}
|
|
|
|
func (_c *WatchKV_MultiLoad_Call) Run(run func(keys []string)) *WatchKV_MultiLoad_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].([]string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiLoad_Call) Return(_a0 []string, _a1 error) *WatchKV_MultiLoad_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiLoad_Call) RunAndReturn(run func([]string) ([]string, error)) *WatchKV_MultiLoad_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// MultiRemove provides a mock function with given fields: keys
|
|
func (_m *WatchKV) MultiRemove(keys []string) error {
|
|
ret := _m.Called(keys)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func([]string) error); ok {
|
|
r0 = rf(keys)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_MultiRemove_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MultiRemove'
|
|
type WatchKV_MultiRemove_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// MultiRemove is a helper method to define mock.On call
|
|
// - keys []string
|
|
func (_e *WatchKV_Expecter) MultiRemove(keys interface{}) *WatchKV_MultiRemove_Call {
|
|
return &WatchKV_MultiRemove_Call{Call: _e.mock.On("MultiRemove", keys)}
|
|
}
|
|
|
|
func (_c *WatchKV_MultiRemove_Call) Run(run func(keys []string)) *WatchKV_MultiRemove_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].([]string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiRemove_Call) Return(_a0 error) *WatchKV_MultiRemove_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiRemove_Call) RunAndReturn(run func([]string) error) *WatchKV_MultiRemove_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// MultiRemoveWithPrefix provides a mock function with given fields: keys
|
|
func (_m *WatchKV) MultiRemoveWithPrefix(keys []string) error {
|
|
ret := _m.Called(keys)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func([]string) error); ok {
|
|
r0 = rf(keys)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_MultiRemoveWithPrefix_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MultiRemoveWithPrefix'
|
|
type WatchKV_MultiRemoveWithPrefix_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// MultiRemoveWithPrefix is a helper method to define mock.On call
|
|
// - keys []string
|
|
func (_e *WatchKV_Expecter) MultiRemoveWithPrefix(keys interface{}) *WatchKV_MultiRemoveWithPrefix_Call {
|
|
return &WatchKV_MultiRemoveWithPrefix_Call{Call: _e.mock.On("MultiRemoveWithPrefix", keys)}
|
|
}
|
|
|
|
func (_c *WatchKV_MultiRemoveWithPrefix_Call) Run(run func(keys []string)) *WatchKV_MultiRemoveWithPrefix_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].([]string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiRemoveWithPrefix_Call) Return(_a0 error) *WatchKV_MultiRemoveWithPrefix_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiRemoveWithPrefix_Call) RunAndReturn(run func([]string) error) *WatchKV_MultiRemoveWithPrefix_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// MultiSave provides a mock function with given fields: kvs
|
|
func (_m *WatchKV) MultiSave(kvs map[string]string) error {
|
|
ret := _m.Called(kvs)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(map[string]string) error); ok {
|
|
r0 = rf(kvs)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_MultiSave_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MultiSave'
|
|
type WatchKV_MultiSave_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// MultiSave is a helper method to define mock.On call
|
|
// - kvs map[string]string
|
|
func (_e *WatchKV_Expecter) MultiSave(kvs interface{}) *WatchKV_MultiSave_Call {
|
|
return &WatchKV_MultiSave_Call{Call: _e.mock.On("MultiSave", kvs)}
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSave_Call) Run(run func(kvs map[string]string)) *WatchKV_MultiSave_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(map[string]string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSave_Call) Return(_a0 error) *WatchKV_MultiSave_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSave_Call) RunAndReturn(run func(map[string]string) error) *WatchKV_MultiSave_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// MultiSaveAndRemove provides a mock function with given fields: saves, removals
|
|
func (_m *WatchKV) MultiSaveAndRemove(saves map[string]string, removals []string) error {
|
|
ret := _m.Called(saves, removals)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(map[string]string, []string) error); ok {
|
|
r0 = rf(saves, removals)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_MultiSaveAndRemove_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MultiSaveAndRemove'
|
|
type WatchKV_MultiSaveAndRemove_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// MultiSaveAndRemove is a helper method to define mock.On call
|
|
// - saves map[string]string
|
|
// - removals []string
|
|
func (_e *WatchKV_Expecter) MultiSaveAndRemove(saves interface{}, removals interface{}) *WatchKV_MultiSaveAndRemove_Call {
|
|
return &WatchKV_MultiSaveAndRemove_Call{Call: _e.mock.On("MultiSaveAndRemove", saves, removals)}
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSaveAndRemove_Call) Run(run func(saves map[string]string, removals []string)) *WatchKV_MultiSaveAndRemove_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(map[string]string), args[1].([]string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSaveAndRemove_Call) Return(_a0 error) *WatchKV_MultiSaveAndRemove_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSaveAndRemove_Call) RunAndReturn(run func(map[string]string, []string) error) *WatchKV_MultiSaveAndRemove_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// MultiSaveAndRemoveWithPrefix provides a mock function with given fields: saves, removals
|
|
func (_m *WatchKV) MultiSaveAndRemoveWithPrefix(saves map[string]string, removals []string) error {
|
|
ret := _m.Called(saves, removals)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(map[string]string, []string) error); ok {
|
|
r0 = rf(saves, removals)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_MultiSaveAndRemoveWithPrefix_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MultiSaveAndRemoveWithPrefix'
|
|
type WatchKV_MultiSaveAndRemoveWithPrefix_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// MultiSaveAndRemoveWithPrefix is a helper method to define mock.On call
|
|
// - saves map[string]string
|
|
// - removals []string
|
|
func (_e *WatchKV_Expecter) MultiSaveAndRemoveWithPrefix(saves interface{}, removals interface{}) *WatchKV_MultiSaveAndRemoveWithPrefix_Call {
|
|
return &WatchKV_MultiSaveAndRemoveWithPrefix_Call{Call: _e.mock.On("MultiSaveAndRemoveWithPrefix", saves, removals)}
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSaveAndRemoveWithPrefix_Call) Run(run func(saves map[string]string, removals []string)) *WatchKV_MultiSaveAndRemoveWithPrefix_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(map[string]string), args[1].([]string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSaveAndRemoveWithPrefix_Call) Return(_a0 error) *WatchKV_MultiSaveAndRemoveWithPrefix_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_MultiSaveAndRemoveWithPrefix_Call) RunAndReturn(run func(map[string]string, []string) error) *WatchKV_MultiSaveAndRemoveWithPrefix_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// Remove provides a mock function with given fields: key
|
|
func (_m *WatchKV) Remove(key string) error {
|
|
ret := _m.Called(key)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string) error); ok {
|
|
r0 = rf(key)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_Remove_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Remove'
|
|
type WatchKV_Remove_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Remove is a helper method to define mock.On call
|
|
// - key string
|
|
func (_e *WatchKV_Expecter) Remove(key interface{}) *WatchKV_Remove_Call {
|
|
return &WatchKV_Remove_Call{Call: _e.mock.On("Remove", key)}
|
|
}
|
|
|
|
func (_c *WatchKV_Remove_Call) Run(run func(key string)) *WatchKV_Remove_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Remove_Call) Return(_a0 error) *WatchKV_Remove_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Remove_Call) RunAndReturn(run func(string) error) *WatchKV_Remove_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// RemoveWithPrefix provides a mock function with given fields: key
|
|
func (_m *WatchKV) RemoveWithPrefix(key string) error {
|
|
ret := _m.Called(key)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string) error); ok {
|
|
r0 = rf(key)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_RemoveWithPrefix_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'RemoveWithPrefix'
|
|
type WatchKV_RemoveWithPrefix_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// RemoveWithPrefix is a helper method to define mock.On call
|
|
// - key string
|
|
func (_e *WatchKV_Expecter) RemoveWithPrefix(key interface{}) *WatchKV_RemoveWithPrefix_Call {
|
|
return &WatchKV_RemoveWithPrefix_Call{Call: _e.mock.On("RemoveWithPrefix", key)}
|
|
}
|
|
|
|
func (_c *WatchKV_RemoveWithPrefix_Call) Run(run func(key string)) *WatchKV_RemoveWithPrefix_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_RemoveWithPrefix_Call) Return(_a0 error) *WatchKV_RemoveWithPrefix_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_RemoveWithPrefix_Call) RunAndReturn(run func(string) error) *WatchKV_RemoveWithPrefix_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// Save provides a mock function with given fields: key, value
|
|
func (_m *WatchKV) Save(key string, value string) error {
|
|
ret := _m.Called(key, value)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, string) error); ok {
|
|
r0 = rf(key, value)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_Save_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Save'
|
|
type WatchKV_Save_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Save is a helper method to define mock.On call
|
|
// - key string
|
|
// - value string
|
|
func (_e *WatchKV_Expecter) Save(key interface{}, value interface{}) *WatchKV_Save_Call {
|
|
return &WatchKV_Save_Call{Call: _e.mock.On("Save", key, value)}
|
|
}
|
|
|
|
func (_c *WatchKV_Save_Call) Run(run func(key string, value string)) *WatchKV_Save_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string), args[1].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Save_Call) Return(_a0 error) *WatchKV_Save_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Save_Call) RunAndReturn(run func(string, string) error) *WatchKV_Save_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// WalkWithPrefix provides a mock function with given fields: prefix, paginationSize, fn
|
|
func (_m *WatchKV) WalkWithPrefix(prefix string, paginationSize int, fn func([]byte, []byte) error) error {
|
|
ret := _m.Called(prefix, paginationSize, fn)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, int, func([]byte, []byte) error) error); ok {
|
|
r0 = rf(prefix, paginationSize, fn)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_WalkWithPrefix_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WalkWithPrefix'
|
|
type WatchKV_WalkWithPrefix_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// WalkWithPrefix is a helper method to define mock.On call
|
|
// - prefix string
|
|
// - paginationSize int
|
|
// - fn func([]byte , []byte) error
|
|
func (_e *WatchKV_Expecter) WalkWithPrefix(prefix interface{}, paginationSize interface{}, fn interface{}) *WatchKV_WalkWithPrefix_Call {
|
|
return &WatchKV_WalkWithPrefix_Call{Call: _e.mock.On("WalkWithPrefix", prefix, paginationSize, fn)}
|
|
}
|
|
|
|
func (_c *WatchKV_WalkWithPrefix_Call) Run(run func(prefix string, paginationSize int, fn func([]byte, []byte) error)) *WatchKV_WalkWithPrefix_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string), args[1].(int), args[2].(func([]byte, []byte) error))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_WalkWithPrefix_Call) Return(_a0 error) *WatchKV_WalkWithPrefix_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_WalkWithPrefix_Call) RunAndReturn(run func(string, int, func([]byte, []byte) error) error) *WatchKV_WalkWithPrefix_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// Watch provides a mock function with given fields: key
|
|
func (_m *WatchKV) Watch(key string) clientv3.WatchChan {
|
|
ret := _m.Called(key)
|
|
|
|
var r0 clientv3.WatchChan
|
|
if rf, ok := ret.Get(0).(func(string) clientv3.WatchChan); ok {
|
|
r0 = rf(key)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(clientv3.WatchChan)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_Watch_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Watch'
|
|
type WatchKV_Watch_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Watch is a helper method to define mock.On call
|
|
// - key string
|
|
func (_e *WatchKV_Expecter) Watch(key interface{}) *WatchKV_Watch_Call {
|
|
return &WatchKV_Watch_Call{Call: _e.mock.On("Watch", key)}
|
|
}
|
|
|
|
func (_c *WatchKV_Watch_Call) Run(run func(key string)) *WatchKV_Watch_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Watch_Call) Return(_a0 clientv3.WatchChan) *WatchKV_Watch_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_Watch_Call) RunAndReturn(run func(string) clientv3.WatchChan) *WatchKV_Watch_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// WatchWithPrefix provides a mock function with given fields: key
|
|
func (_m *WatchKV) WatchWithPrefix(key string) clientv3.WatchChan {
|
|
ret := _m.Called(key)
|
|
|
|
var r0 clientv3.WatchChan
|
|
if rf, ok := ret.Get(0).(func(string) clientv3.WatchChan); ok {
|
|
r0 = rf(key)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(clientv3.WatchChan)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_WatchWithPrefix_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WatchWithPrefix'
|
|
type WatchKV_WatchWithPrefix_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// WatchWithPrefix is a helper method to define mock.On call
|
|
// - key string
|
|
func (_e *WatchKV_Expecter) WatchWithPrefix(key interface{}) *WatchKV_WatchWithPrefix_Call {
|
|
return &WatchKV_WatchWithPrefix_Call{Call: _e.mock.On("WatchWithPrefix", key)}
|
|
}
|
|
|
|
func (_c *WatchKV_WatchWithPrefix_Call) Run(run func(key string)) *WatchKV_WatchWithPrefix_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_WatchWithPrefix_Call) Return(_a0 clientv3.WatchChan) *WatchKV_WatchWithPrefix_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_WatchWithPrefix_Call) RunAndReturn(run func(string) clientv3.WatchChan) *WatchKV_WatchWithPrefix_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// WatchWithRevision provides a mock function with given fields: key, revision
|
|
func (_m *WatchKV) WatchWithRevision(key string, revision int64) clientv3.WatchChan {
|
|
ret := _m.Called(key, revision)
|
|
|
|
var r0 clientv3.WatchChan
|
|
if rf, ok := ret.Get(0).(func(string, int64) clientv3.WatchChan); ok {
|
|
r0 = rf(key, revision)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(clientv3.WatchChan)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// WatchKV_WatchWithRevision_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WatchWithRevision'
|
|
type WatchKV_WatchWithRevision_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// WatchWithRevision is a helper method to define mock.On call
|
|
// - key string
|
|
// - revision int64
|
|
func (_e *WatchKV_Expecter) WatchWithRevision(key interface{}, revision interface{}) *WatchKV_WatchWithRevision_Call {
|
|
return &WatchKV_WatchWithRevision_Call{Call: _e.mock.On("WatchWithRevision", key, revision)}
|
|
}
|
|
|
|
func (_c *WatchKV_WatchWithRevision_Call) Run(run func(key string, revision int64)) *WatchKV_WatchWithRevision_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(string), args[1].(int64))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_WatchWithRevision_Call) Return(_a0 clientv3.WatchChan) *WatchKV_WatchWithRevision_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *WatchKV_WatchWithRevision_Call) RunAndReturn(run func(string, int64) clientv3.WatchChan) *WatchKV_WatchWithRevision_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// NewWatchKV creates a new instance of WatchKV. 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 NewWatchKV(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *WatchKV {
|
|
mock := &WatchKV{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|