* Update files in /app * Update files in /plugin * Update files in /store * Update files in /utils * Update files in /web * Update store.go * Update command_response.go * check-mocks and check-store-layer checks * Fix build errors * Revert "Fix build errors" This reverts commit 4ee38c3d0bf7bd7d8386f46f0985a0d03245a1d4. * Update .golangci.yml * make i18n-extract and make i18n-check * Commit suggestions * check-mocks and check-store-layers * Update en.json * Update product_notices.go * Update main.go * Fix translations * Regenerate mocks Co-authored-by: Mattermod <mattermod@users.noreply.github.com> Co-authored-by: Claudio Costa <cstcld91@gmail.com>
190 строки
4.5 KiB
Go
190 строки
4.5 KiB
Go
// Code generated by mockery v1.0.0. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make store-mocks`.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
model "github.com/mattermost/mattermost-server/v5/model"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// PluginStore is an autogenerated mock type for the PluginStore type
|
|
type PluginStore struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// CompareAndDelete provides a mock function with given fields: keyVal, oldValue
|
|
func (_m *PluginStore) CompareAndDelete(keyVal *model.PluginKeyValue, oldValue []byte) (bool, error) {
|
|
ret := _m.Called(keyVal, oldValue)
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func(*model.PluginKeyValue, []byte) bool); ok {
|
|
r0 = rf(keyVal, oldValue)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(*model.PluginKeyValue, []byte) error); ok {
|
|
r1 = rf(keyVal, oldValue)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// CompareAndSet provides a mock function with given fields: keyVal, oldValue
|
|
func (_m *PluginStore) CompareAndSet(keyVal *model.PluginKeyValue, oldValue []byte) (bool, error) {
|
|
ret := _m.Called(keyVal, oldValue)
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func(*model.PluginKeyValue, []byte) bool); ok {
|
|
r0 = rf(keyVal, oldValue)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(*model.PluginKeyValue, []byte) error); ok {
|
|
r1 = rf(keyVal, oldValue)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Delete provides a mock function with given fields: pluginID, key
|
|
func (_m *PluginStore) Delete(pluginID string, key string) error {
|
|
ret := _m.Called(pluginID, key)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, string) error); ok {
|
|
r0 = rf(pluginID, key)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// DeleteAllExpired provides a mock function with given fields:
|
|
func (_m *PluginStore) DeleteAllExpired() 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
|
|
}
|
|
|
|
// DeleteAllForPlugin provides a mock function with given fields: PluginID
|
|
func (_m *PluginStore) DeleteAllForPlugin(PluginID string) error {
|
|
ret := _m.Called(PluginID)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string) error); ok {
|
|
r0 = rf(PluginID)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Get provides a mock function with given fields: pluginID, key
|
|
func (_m *PluginStore) Get(pluginID string, key string) (*model.PluginKeyValue, error) {
|
|
ret := _m.Called(pluginID, key)
|
|
|
|
var r0 *model.PluginKeyValue
|
|
if rf, ok := ret.Get(0).(func(string, string) *model.PluginKeyValue); ok {
|
|
r0 = rf(pluginID, key)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.PluginKeyValue)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, string) error); ok {
|
|
r1 = rf(pluginID, key)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// List provides a mock function with given fields: pluginID, page, perPage
|
|
func (_m *PluginStore) List(pluginID string, page int, perPage int) ([]string, error) {
|
|
ret := _m.Called(pluginID, page, perPage)
|
|
|
|
var r0 []string
|
|
if rf, ok := ret.Get(0).(func(string, int, int) []string); ok {
|
|
r0 = rf(pluginID, page, perPage)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]string)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, int, int) error); ok {
|
|
r1 = rf(pluginID, page, perPage)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// SaveOrUpdate provides a mock function with given fields: keyVal
|
|
func (_m *PluginStore) SaveOrUpdate(keyVal *model.PluginKeyValue) (*model.PluginKeyValue, error) {
|
|
ret := _m.Called(keyVal)
|
|
|
|
var r0 *model.PluginKeyValue
|
|
if rf, ok := ret.Get(0).(func(*model.PluginKeyValue) *model.PluginKeyValue); ok {
|
|
r0 = rf(keyVal)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.PluginKeyValue)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(*model.PluginKeyValue) error); ok {
|
|
r1 = rf(keyVal)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// SetWithOptions provides a mock function with given fields: pluginID, key, value, options
|
|
func (_m *PluginStore) SetWithOptions(pluginID string, key string, value []byte, options model.PluginKVSetOptions) (bool, error) {
|
|
ret := _m.Called(pluginID, key, value, options)
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func(string, string, []byte, model.PluginKVSetOptions) bool); ok {
|
|
r0 = rf(pluginID, key, value, options)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, string, []byte, model.PluginKVSetOptions) error); ok {
|
|
r1 = rf(pluginID, key, value, options)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|