mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
06ceafd905
This simplifies the interface to just expose the methods from the underlying connection that we need. The addition of gen.go makes creating the generated mocks easy go generate.
82 lines
2.6 KiB
Go
82 lines
2.6 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/authelia/authelia/v4/internal/totp (interfaces: Provider)
|
|
|
|
// Package mocks is a generated GoMock package.
|
|
package mocks
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
|
|
model "github.com/authelia/authelia/v4/internal/model"
|
|
)
|
|
|
|
// MockTOTP is a mock of Provider interface.
|
|
type MockTOTP struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockTOTPMockRecorder
|
|
}
|
|
|
|
// MockTOTPMockRecorder is the mock recorder for MockTOTP.
|
|
type MockTOTPMockRecorder struct {
|
|
mock *MockTOTP
|
|
}
|
|
|
|
// NewMockTOTP creates a new mock instance.
|
|
func NewMockTOTP(ctrl *gomock.Controller) *MockTOTP {
|
|
mock := &MockTOTP{ctrl: ctrl}
|
|
mock.recorder = &MockTOTPMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockTOTP) EXPECT() *MockTOTPMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// Generate mocks base method.
|
|
func (m *MockTOTP) Generate(arg0 string) (*model.TOTPConfiguration, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Generate", arg0)
|
|
ret0, _ := ret[0].(*model.TOTPConfiguration)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// Generate indicates an expected call of Generate.
|
|
func (mr *MockTOTPMockRecorder) Generate(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Generate", reflect.TypeOf((*MockTOTP)(nil).Generate), arg0)
|
|
}
|
|
|
|
// GenerateCustom mocks base method.
|
|
func (m *MockTOTP) GenerateCustom(arg0, arg1 string, arg2, arg3, arg4 uint) (*model.TOTPConfiguration, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "GenerateCustom", arg0, arg1, arg2, arg3, arg4)
|
|
ret0, _ := ret[0].(*model.TOTPConfiguration)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// GenerateCustom indicates an expected call of GenerateCustom.
|
|
func (mr *MockTOTPMockRecorder) GenerateCustom(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GenerateCustom", reflect.TypeOf((*MockTOTP)(nil).GenerateCustom), arg0, arg1, arg2, arg3, arg4)
|
|
}
|
|
|
|
// Validate mocks base method.
|
|
func (m *MockTOTP) Validate(arg0 string, arg1 *model.TOTPConfiguration) (bool, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Validate", arg0, arg1)
|
|
ret0, _ := ret[0].(bool)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// Validate indicates an expected call of Validate.
|
|
func (mr *MockTOTPMockRecorder) Validate(arg0, arg1 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Validate", reflect.TypeOf((*MockTOTP)(nil).Validate), arg0, arg1)
|
|
}
|