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>
204 lines
5.7 KiB
Go
204 lines
5.7 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"
|
|
)
|
|
|
|
// ChannelBookmarkStore is an autogenerated mock type for the ChannelBookmarkStore type
|
|
type ChannelBookmarkStore struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Delete provides a mock function with given fields: bookmarkID, deleteFile
|
|
func (_m *ChannelBookmarkStore) Delete(bookmarkID string, deleteFile bool) error {
|
|
ret := _m.Called(bookmarkID, deleteFile)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Delete")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, bool) error); ok {
|
|
r0 = rf(bookmarkID, deleteFile)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// ErrorIfBookmarkFileInfoAlreadyAttached provides a mock function with given fields: fileID, channelID
|
|
func (_m *ChannelBookmarkStore) ErrorIfBookmarkFileInfoAlreadyAttached(fileID string, channelID string) error {
|
|
ret := _m.Called(fileID, channelID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for ErrorIfBookmarkFileInfoAlreadyAttached")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, string) error); ok {
|
|
r0 = rf(fileID, channelID)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Get provides a mock function with given fields: Id, includeDeleted
|
|
func (_m *ChannelBookmarkStore) Get(Id string, includeDeleted bool) (*model.ChannelBookmarkWithFileInfo, error) {
|
|
ret := _m.Called(Id, includeDeleted)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Get")
|
|
}
|
|
|
|
var r0 *model.ChannelBookmarkWithFileInfo
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(string, bool) (*model.ChannelBookmarkWithFileInfo, error)); ok {
|
|
return rf(Id, includeDeleted)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, bool) *model.ChannelBookmarkWithFileInfo); ok {
|
|
r0 = rf(Id, includeDeleted)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.ChannelBookmarkWithFileInfo)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, bool) error); ok {
|
|
r1 = rf(Id, includeDeleted)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// GetBookmarksForChannelSince provides a mock function with given fields: channelID, since
|
|
func (_m *ChannelBookmarkStore) GetBookmarksForChannelSince(channelID string, since int64) ([]*model.ChannelBookmarkWithFileInfo, error) {
|
|
ret := _m.Called(channelID, since)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetBookmarksForChannelSince")
|
|
}
|
|
|
|
var r0 []*model.ChannelBookmarkWithFileInfo
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(string, int64) ([]*model.ChannelBookmarkWithFileInfo, error)); ok {
|
|
return rf(channelID, since)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, int64) []*model.ChannelBookmarkWithFileInfo); ok {
|
|
r0 = rf(channelID, since)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]*model.ChannelBookmarkWithFileInfo)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, int64) error); ok {
|
|
r1 = rf(channelID, since)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Save provides a mock function with given fields: bookmark, increaseSortOrder
|
|
func (_m *ChannelBookmarkStore) Save(bookmark *model.ChannelBookmark, increaseSortOrder bool) (*model.ChannelBookmarkWithFileInfo, error) {
|
|
ret := _m.Called(bookmark, increaseSortOrder)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Save")
|
|
}
|
|
|
|
var r0 *model.ChannelBookmarkWithFileInfo
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(*model.ChannelBookmark, bool) (*model.ChannelBookmarkWithFileInfo, error)); ok {
|
|
return rf(bookmark, increaseSortOrder)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(*model.ChannelBookmark, bool) *model.ChannelBookmarkWithFileInfo); ok {
|
|
r0 = rf(bookmark, increaseSortOrder)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.ChannelBookmarkWithFileInfo)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(*model.ChannelBookmark, bool) error); ok {
|
|
r1 = rf(bookmark, increaseSortOrder)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Update provides a mock function with given fields: bookmark
|
|
func (_m *ChannelBookmarkStore) Update(bookmark *model.ChannelBookmark) error {
|
|
ret := _m.Called(bookmark)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Update")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(*model.ChannelBookmark) error); ok {
|
|
r0 = rf(bookmark)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// UpdateSortOrder provides a mock function with given fields: bookmarkID, channelID, newIndex
|
|
func (_m *ChannelBookmarkStore) UpdateSortOrder(bookmarkID string, channelID string, newIndex int64) ([]*model.ChannelBookmarkWithFileInfo, error) {
|
|
ret := _m.Called(bookmarkID, channelID, newIndex)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for UpdateSortOrder")
|
|
}
|
|
|
|
var r0 []*model.ChannelBookmarkWithFileInfo
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(string, string, int64) ([]*model.ChannelBookmarkWithFileInfo, error)); ok {
|
|
return rf(bookmarkID, channelID, newIndex)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string, string, int64) []*model.ChannelBookmarkWithFileInfo); ok {
|
|
r0 = rf(bookmarkID, channelID, newIndex)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]*model.ChannelBookmarkWithFileInfo)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string, string, int64) error); ok {
|
|
r1 = rf(bookmarkID, channelID, newIndex)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// NewChannelBookmarkStore creates a new instance of ChannelBookmarkStore. 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 NewChannelBookmarkStore(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *ChannelBookmarkStore {
|
|
mock := &ChannelBookmarkStore{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|