Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
79 lines
2.3 KiB
Go
79 lines
2.3 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/mattermost/mattermost-plugin-mscalendar/server/utils/oauther (interfaces: OAuther)
|
|
|
|
// Package mock_oauther is a generated GoMock package.
|
|
package mock_oauther
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
oauth2 "golang.org/x/oauth2"
|
|
)
|
|
|
|
// MockOAuther is a mock of OAuther interface
|
|
type MockOAuther struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockOAutherMockRecorder
|
|
}
|
|
|
|
// MockOAutherMockRecorder is the mock recorder for MockOAuther
|
|
type MockOAutherMockRecorder struct {
|
|
mock *MockOAuther
|
|
}
|
|
|
|
// NewMockOAuther creates a new mock instance
|
|
func NewMockOAuther(ctrl *gomock.Controller) *MockOAuther {
|
|
mock := &MockOAuther{ctrl: ctrl}
|
|
mock.recorder = &MockOAutherMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use
|
|
func (m *MockOAuther) EXPECT() *MockOAutherMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// Deauth mocks base method
|
|
func (m *MockOAuther) Deauth(arg0 string) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Deauth", arg0)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// Deauth indicates an expected call of Deauth
|
|
func (mr *MockOAutherMockRecorder) Deauth(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Deauth", reflect.TypeOf((*MockOAuther)(nil).Deauth), arg0)
|
|
}
|
|
|
|
// GetToken mocks base method
|
|
func (m *MockOAuther) GetToken(arg0 string) (*oauth2.Token, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "GetToken", arg0)
|
|
ret0, _ := ret[0].(*oauth2.Token)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// GetToken indicates an expected call of GetToken
|
|
func (mr *MockOAutherMockRecorder) GetToken(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetToken", reflect.TypeOf((*MockOAuther)(nil).GetToken), arg0)
|
|
}
|
|
|
|
// GetURL mocks base method
|
|
func (m *MockOAuther) GetURL() string {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "GetURL")
|
|
ret0, _ := ret[0].(string)
|
|
return ret0
|
|
}
|
|
|
|
// GetURL indicates an expected call of GetURL
|
|
func (mr *MockOAutherMockRecorder) GetURL() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetURL", reflect.TypeOf((*MockOAuther)(nil).GetURL))
|
|
}
|