* Method GetUnsanitizedConfig() exposed to API (Plugin) interface and his implementations * improvements with some suggestions * Fix documentation (final period added) Co-Authored-By: Ali Farooq <25732808+ali-farooq0@users.noreply.github.com> * Added some test for Plugin.GetConfig and Plugin.GetUnsanitizedConfig * Removed empty lines
128 строки
3.0 KiB
Go
128 строки
3.0 KiB
Go
// Code generated by mockery v1.0.0. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make plugin-mocks`.
|
|
|
|
package plugintest
|
|
|
|
import (
|
|
model "github.com/mattermost/mattermost-server/model"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// Helpers is an autogenerated mock type for the Helpers type
|
|
type Helpers struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// EnsureBot provides a mock function with given fields: bot
|
|
func (_m *Helpers) EnsureBot(bot *model.Bot) (string, error) {
|
|
ret := _m.Called(bot)
|
|
|
|
var r0 string
|
|
if rf, ok := ret.Get(0).(func(*model.Bot) string); ok {
|
|
r0 = rf(bot)
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(*model.Bot) error); ok {
|
|
r1 = rf(bot)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// KVCompareAndDeleteJSON provides a mock function with given fields: key, oldValue
|
|
func (_m *Helpers) KVCompareAndDeleteJSON(key string, oldValue interface{}) (bool, error) {
|
|
ret := _m.Called(key, oldValue)
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func(string, interface{}) bool); ok {
|
|
r0 = rf(key, oldValue)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, interface{}) error); ok {
|
|
r1 = rf(key, oldValue)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// KVCompareAndSetJSON provides a mock function with given fields: key, oldValue, newValue
|
|
func (_m *Helpers) KVCompareAndSetJSON(key string, oldValue interface{}, newValue interface{}) (bool, error) {
|
|
ret := _m.Called(key, oldValue, newValue)
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func(string, interface{}, interface{}) bool); ok {
|
|
r0 = rf(key, oldValue, newValue)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, interface{}, interface{}) error); ok {
|
|
r1 = rf(key, oldValue, newValue)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// KVGetJSON provides a mock function with given fields: key, value
|
|
func (_m *Helpers) KVGetJSON(key string, value interface{}) (bool, error) {
|
|
ret := _m.Called(key, value)
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func(string, interface{}) bool); ok {
|
|
r0 = rf(key, value)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, interface{}) error); ok {
|
|
r1 = rf(key, value)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// KVSetJSON provides a mock function with given fields: key, value
|
|
func (_m *Helpers) KVSetJSON(key string, value interface{}) error {
|
|
ret := _m.Called(key, value)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, interface{}) error); ok {
|
|
r0 = rf(key, value)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// KVSetWithExpiryJSON provides a mock function with given fields: key, value, expireInSeconds
|
|
func (_m *Helpers) KVSetWithExpiryJSON(key string, value interface{}, expireInSeconds int64) error {
|
|
ret := _m.Called(key, value, expireInSeconds)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, interface{}, int64) error); ok {
|
|
r0 = rf(key, value, expireInSeconds)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|