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>
113 lines
2.6 KiB
Go
113 lines
2.6 KiB
Go
// Code generated by mockery v2.53.4. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make store-mocks`.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
model "github.com/mattermost/mattermost/server/public/model"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// CommandWebhookStore is an autogenerated mock type for the CommandWebhookStore type
|
|
type CommandWebhookStore struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Cleanup provides a mock function with no fields
|
|
func (_m *CommandWebhookStore) Cleanup() {
|
|
_m.Called()
|
|
}
|
|
|
|
// Get provides a mock function with given fields: id
|
|
func (_m *CommandWebhookStore) Get(id string) (*model.CommandWebhook, error) {
|
|
ret := _m.Called(id)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Get")
|
|
}
|
|
|
|
var r0 *model.CommandWebhook
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(string) (*model.CommandWebhook, error)); ok {
|
|
return rf(id)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string) *model.CommandWebhook); ok {
|
|
r0 = rf(id)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.CommandWebhook)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string) error); ok {
|
|
r1 = rf(id)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Save provides a mock function with given fields: webhook
|
|
func (_m *CommandWebhookStore) Save(webhook *model.CommandWebhook) (*model.CommandWebhook, error) {
|
|
ret := _m.Called(webhook)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Save")
|
|
}
|
|
|
|
var r0 *model.CommandWebhook
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(*model.CommandWebhook) (*model.CommandWebhook, error)); ok {
|
|
return rf(webhook)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(*model.CommandWebhook) *model.CommandWebhook); ok {
|
|
r0 = rf(webhook)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.CommandWebhook)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(*model.CommandWebhook) error); ok {
|
|
r1 = rf(webhook)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// TryUse provides a mock function with given fields: id, limit
|
|
func (_m *CommandWebhookStore) TryUse(id string, limit int) error {
|
|
ret := _m.Called(id, limit)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for TryUse")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, int) error); ok {
|
|
r0 = rf(id, limit)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// NewCommandWebhookStore creates a new instance of CommandWebhookStore. 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 NewCommandWebhookStore(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *CommandWebhookStore {
|
|
mock := &CommandWebhookStore{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|