mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-19 02:28:08 -05:00
--------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Nick Misasi <nick.misasi@mattermost.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Matthew Birtch <mattbirtch@gmail.com> Co-authored-by: Mattermost Build <build@mattermost.com>
129 lines
2.8 KiB
Go
129 lines
2.8 KiB
Go
// Code generated by mockery v2.53.4. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make einterfaces-mocks`.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
jobs "github.com/mattermost/mattermost/server/v8/einterfaces/jobs"
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
model "github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
// PushProxyInterface is an autogenerated mock type for the PushProxyInterface type
|
|
type PushProxyInterface struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// DeleteAuthToken provides a mock function with no fields
|
|
func (_m *PushProxyInterface) DeleteAuthToken() *model.AppError {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for DeleteAuthToken")
|
|
}
|
|
|
|
var r0 *model.AppError
|
|
if rf, ok := ret.Get(0).(func() *model.AppError); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// GenerateAuthToken provides a mock function with no fields
|
|
func (_m *PushProxyInterface) GenerateAuthToken() *model.AppError {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GenerateAuthToken")
|
|
}
|
|
|
|
var r0 *model.AppError
|
|
if rf, ok := ret.Get(0).(func() *model.AppError); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// GetAuthToken provides a mock function with no fields
|
|
func (_m *PushProxyInterface) GetAuthToken() string {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetAuthToken")
|
|
}
|
|
|
|
var r0 string
|
|
if rf, ok := ret.Get(0).(func() string); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MakeScheduler provides a mock function with no fields
|
|
func (_m *PushProxyInterface) 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 *PushProxyInterface) 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
|
|
}
|
|
|
|
// NewPushProxyInterface creates a new instance of PushProxyInterface. 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 NewPushProxyInterface(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *PushProxyInterface {
|
|
mock := &PushProxyInterface{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|