mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
It was a good decision in hindsight to keep the public module as 0.x because this would have been a breaking change again. https://mattermost.atlassian.net/browse/MM-53032 ```release-note Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8. For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public ```
123 lines
2.9 KiB
Go
123 lines
2.9 KiB
Go
// Code generated by mockery v2.23.2. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make einterfaces-mocks`.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
model "github.com/mattermost/mattermost/server/public/model"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// MfaInterface is an autogenerated mock type for the MfaInterface type
|
|
type MfaInterface struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Activate provides a mock function with given fields: user, token
|
|
func (_m *MfaInterface) Activate(user *model.User, token string) *model.AppError {
|
|
ret := _m.Called(user, token)
|
|
|
|
var r0 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(*model.User, string) *model.AppError); ok {
|
|
r0 = rf(user, token)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Deactivate provides a mock function with given fields: userID
|
|
func (_m *MfaInterface) Deactivate(userID string) *model.AppError {
|
|
ret := _m.Called(userID)
|
|
|
|
var r0 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(string) *model.AppError); ok {
|
|
r0 = rf(userID)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// GenerateSecret provides a mock function with given fields: user
|
|
func (_m *MfaInterface) GenerateSecret(user *model.User) (string, []byte, *model.AppError) {
|
|
ret := _m.Called(user)
|
|
|
|
var r0 string
|
|
var r1 []byte
|
|
var r2 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(*model.User) (string, []byte, *model.AppError)); ok {
|
|
return rf(user)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(*model.User) string); ok {
|
|
r0 = rf(user)
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(*model.User) []byte); ok {
|
|
r1 = rf(user)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).([]byte)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(2).(func(*model.User) *model.AppError); ok {
|
|
r2 = rf(user)
|
|
} else {
|
|
if ret.Get(2) != nil {
|
|
r2 = ret.Get(2).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1, r2
|
|
}
|
|
|
|
// ValidateToken provides a mock function with given fields: secret, token
|
|
func (_m *MfaInterface) ValidateToken(secret string, token string) (bool, *model.AppError) {
|
|
ret := _m.Called(secret, token)
|
|
|
|
var r0 bool
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(string, string) (bool, *model.AppError)); ok {
|
|
return rf(secret, token)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, string) bool); ok {
|
|
r0 = rf(secret, token)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, string) *model.AppError); ok {
|
|
r1 = rf(secret, token)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
type mockConstructorTestingTNewMfaInterface interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}
|
|
|
|
// NewMfaInterface creates a new instance of MfaInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
|
func NewMfaInterface(t mockConstructorTestingTNewMfaInterface) *MfaInterface {
|
|
mock := &MfaInterface{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|