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>
129 lines
3.0 KiB
Go
129 lines
3.0 KiB
Go
// Code generated by mockery v2.53.4. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make store-mocks`.
|
|
|
|
package mocks
|
|
|
|
import mock "github.com/stretchr/testify/mock"
|
|
|
|
// DesktopTokensStore is an autogenerated mock type for the DesktopTokensStore type
|
|
type DesktopTokensStore struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Delete provides a mock function with given fields: token
|
|
func (_m *DesktopTokensStore) Delete(token string) error {
|
|
ret := _m.Called(token)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Delete")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string) error); ok {
|
|
r0 = rf(token)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// DeleteByUserId provides a mock function with given fields: userID
|
|
func (_m *DesktopTokensStore) DeleteByUserId(userID string) error {
|
|
ret := _m.Called(userID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for DeleteByUserId")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string) error); ok {
|
|
r0 = rf(userID)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// DeleteOlderThan provides a mock function with given fields: minCreatedAt
|
|
func (_m *DesktopTokensStore) DeleteOlderThan(minCreatedAt int64) error {
|
|
ret := _m.Called(minCreatedAt)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for DeleteOlderThan")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(int64) error); ok {
|
|
r0 = rf(minCreatedAt)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// GetUserId provides a mock function with given fields: token, minCreatedAt
|
|
func (_m *DesktopTokensStore) GetUserId(token string, minCreatedAt int64) (*string, error) {
|
|
ret := _m.Called(token, minCreatedAt)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetUserId")
|
|
}
|
|
|
|
var r0 *string
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(string, int64) (*string, error)); ok {
|
|
return rf(token, minCreatedAt)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, int64) *string); ok {
|
|
r0 = rf(token, minCreatedAt)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*string)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, int64) error); ok {
|
|
r1 = rf(token, minCreatedAt)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Insert provides a mock function with given fields: token, createAt, userID
|
|
func (_m *DesktopTokensStore) Insert(token string, createAt int64, userID string) error {
|
|
ret := _m.Called(token, createAt, userID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Insert")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, int64, string) error); ok {
|
|
r0 = rf(token, createAt, userID)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// NewDesktopTokensStore creates a new instance of DesktopTokensStore. 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 NewDesktopTokensStore(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *DesktopTokensStore {
|
|
mock := &DesktopTokensStore{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|