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>
108 lines
2.4 KiB
Go
108 lines
2.4 KiB
Go
// Code generated by mockery v2.53.4. 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"
|
|
)
|
|
|
|
// LicenseInterface is an autogenerated mock type for the LicenseInterface type
|
|
type LicenseInterface struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// CanStartTrial provides a mock function with no fields
|
|
func (_m *LicenseInterface) CanStartTrial() (bool, error) {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for CanStartTrial")
|
|
}
|
|
|
|
var r0 bool
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func() (bool, error)); ok {
|
|
return rf()
|
|
}
|
|
if rf, ok := ret.Get(0).(func() bool); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func() error); ok {
|
|
r1 = rf()
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// GetPrevTrial provides a mock function with no fields
|
|
func (_m *LicenseInterface) GetPrevTrial() (*model.License, error) {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetPrevTrial")
|
|
}
|
|
|
|
var r0 *model.License
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func() (*model.License, error)); ok {
|
|
return rf()
|
|
}
|
|
if rf, ok := ret.Get(0).(func() *model.License); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.License)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func() error); ok {
|
|
r1 = rf()
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// NewMattermostEntryLicense provides a mock function with given fields: serverId
|
|
func (_m *LicenseInterface) NewMattermostEntryLicense(serverId string) *model.License {
|
|
ret := _m.Called(serverId)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for NewMattermostEntryLicense")
|
|
}
|
|
|
|
var r0 *model.License
|
|
if rf, ok := ret.Get(0).(func(string) *model.License); ok {
|
|
r0 = rf(serverId)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.License)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// NewLicenseInterface creates a new instance of LicenseInterface. 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 NewLicenseInterface(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *LicenseInterface {
|
|
mock := &LicenseInterface{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|