mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-19 02:28:08 -05:00
Some checks are pending
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Blocked by required conditions
Web App CI / check-types (push) Blocked by required conditions
Web App CI / test (platform) (push) Blocked by required conditions
Web App CI / test (mattermost-redux) (push) Blocked by required conditions
Web App CI / test (channels shard 1/4) (push) Blocked by required conditions
Web App CI / test (channels shard 2/4) (push) Blocked by required conditions
Web App CI / test (channels shard 3/4) (push) Blocked by required conditions
Web App CI / test (channels shard 4/4) (push) Blocked by required conditions
Web App CI / upload-coverage (push) Blocked by required conditions
Web App CI / build (push) Blocked by required conditions
339 lines
8.4 KiB
Go
339 lines
8.4 KiB
Go
// Code generated by mockery v2.53.4. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make einterfaces-mocks`.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
context "context"
|
|
|
|
jobs "github.com/mattermost/mattermost/server/v8/einterfaces/jobs"
|
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
model "github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
// AutoTranslationInterface is an autogenerated mock type for the AutoTranslationInterface type
|
|
type AutoTranslationInterface struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Close provides a mock function with no fields
|
|
func (_m *AutoTranslationInterface) Close() error {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Close")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func() error); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// DetectRemote provides a mock function with given fields: ctx, text
|
|
func (_m *AutoTranslationInterface) DetectRemote(ctx context.Context, text string) (string, *float64, *model.AppError) {
|
|
ret := _m.Called(ctx, text)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for DetectRemote")
|
|
}
|
|
|
|
var r0 string
|
|
var r1 *float64
|
|
var r2 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(context.Context, string) (string, *float64, *model.AppError)); ok {
|
|
return rf(ctx, text)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(context.Context, string) string); ok {
|
|
r0 = rf(ctx, text)
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(context.Context, string) *float64); ok {
|
|
r1 = rf(ctx, text)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*float64)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(2).(func(context.Context, string) *model.AppError); ok {
|
|
r2 = rf(ctx, text)
|
|
} else {
|
|
if ret.Get(2) != nil {
|
|
r2 = ret.Get(2).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1, r2
|
|
}
|
|
|
|
// GetBatch provides a mock function with given fields: objectType, objectIDs, dstLang
|
|
func (_m *AutoTranslationInterface) GetBatch(objectType string, objectIDs []string, dstLang string) (map[string]*model.Translation, *model.AppError) {
|
|
ret := _m.Called(objectType, objectIDs, dstLang)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetBatch")
|
|
}
|
|
|
|
var r0 map[string]*model.Translation
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(string, []string, string) (map[string]*model.Translation, *model.AppError)); ok {
|
|
return rf(objectType, objectIDs, dstLang)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, []string, string) map[string]*model.Translation); ok {
|
|
r0 = rf(objectType, objectIDs, dstLang)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(map[string]*model.Translation)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, []string, string) *model.AppError); ok {
|
|
r1 = rf(objectType, objectIDs, dstLang)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// GetUserLanguage provides a mock function with given fields: userID, channelID
|
|
func (_m *AutoTranslationInterface) GetUserLanguage(userID string, channelID string) (string, *model.AppError) {
|
|
ret := _m.Called(userID, channelID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetUserLanguage")
|
|
}
|
|
|
|
var r0 string
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(string, string) (string, *model.AppError)); ok {
|
|
return rf(userID, channelID)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, string) string); ok {
|
|
r0 = rf(userID, channelID)
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, string) *model.AppError); ok {
|
|
r1 = rf(userID, channelID)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// IsChannelEnabled provides a mock function with given fields: channelID
|
|
func (_m *AutoTranslationInterface) IsChannelEnabled(channelID string) (bool, *model.AppError) {
|
|
ret := _m.Called(channelID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for IsChannelEnabled")
|
|
}
|
|
|
|
var r0 bool
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(string) (bool, *model.AppError)); ok {
|
|
return rf(channelID)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string) bool); ok {
|
|
r0 = rf(channelID)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string) *model.AppError); ok {
|
|
r1 = rf(channelID)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// IsFeatureAvailable provides a mock function with no fields
|
|
func (_m *AutoTranslationInterface) IsFeatureAvailable() bool {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for IsFeatureAvailable")
|
|
}
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func() bool); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// IsUserEnabled provides a mock function with given fields: channelID, userID
|
|
func (_m *AutoTranslationInterface) IsUserEnabled(channelID string, userID string) (bool, *model.AppError) {
|
|
ret := _m.Called(channelID, userID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for IsUserEnabled")
|
|
}
|
|
|
|
var r0 bool
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(string, string) (bool, *model.AppError)); ok {
|
|
return rf(channelID, userID)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, string) bool); ok {
|
|
r0 = rf(channelID, userID)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, string) *model.AppError); ok {
|
|
r1 = rf(channelID, userID)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// MakeScheduler provides a mock function with no fields
|
|
func (_m *AutoTranslationInterface) MakeScheduler() jobs.Scheduler {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for MakeScheduler")
|
|
}
|
|
|
|
var r0 jobs.Scheduler
|
|
if rf, ok := ret.Get(0).(func() jobs.Scheduler); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(jobs.Scheduler)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MakeWorker provides a mock function with no fields
|
|
func (_m *AutoTranslationInterface) MakeWorker() model.Worker {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for MakeWorker")
|
|
}
|
|
|
|
var r0 model.Worker
|
|
if rf, ok := ret.Get(0).(func() model.Worker); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(model.Worker)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Shutdown provides a mock function with no fields
|
|
func (_m *AutoTranslationInterface) Shutdown() error {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Shutdown")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func() error); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Start provides a mock function with no fields
|
|
func (_m *AutoTranslationInterface) Start() error {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Start")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func() error); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Translate provides a mock function with given fields: ctx, objectType, objectID, channelID, userID, content
|
|
func (_m *AutoTranslationInterface) Translate(ctx context.Context, objectType string, objectID string, channelID string, userID string, content interface{}) (*model.Translation, *model.AppError) {
|
|
ret := _m.Called(ctx, objectType, objectID, channelID, userID, content)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Translate")
|
|
}
|
|
|
|
var r0 *model.Translation
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(context.Context, string, string, string, string, interface{}) (*model.Translation, *model.AppError)); ok {
|
|
return rf(ctx, objectType, objectID, channelID, userID, content)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(context.Context, string, string, string, string, interface{}) *model.Translation); ok {
|
|
r0 = rf(ctx, objectType, objectID, channelID, userID, content)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.Translation)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(context.Context, string, string, string, string, interface{}) *model.AppError); ok {
|
|
r1 = rf(ctx, objectType, objectID, channelID, userID, content)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// NewAutoTranslationInterface creates a new instance of AutoTranslationInterface. 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 NewAutoTranslationInterface(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *AutoTranslationInterface {
|
|
mock := &AutoTranslationInterface{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|