* MM-43956: Adds post counts by day. * MM-43956: Test data cleanup. Switch from Unix to UnixMilli. * MM-43956: Changes from selecting date data types to strings in SQL. * MM-43956: Fixes date format key. * MM-43956: Adds missing user id scope for 'my' top channels graph. * MM-43956: Adds the ability to group post counts by hour. * MM-43956: Require enterprise or professional license. Reject guests. * MM-43956: Adds license for tests. * MM-43956: Renames function. * MM-43956: Omits future hours from post counts by hour. * MM-43956: Adjust API response grouping to users timezone. * MM-43956: Adds translation. * MM-43956: Adds user's timezone to the data tier for the grouping by day and hour. * MM-43956: Fixes layers. * MM-43956: Lint fix. * MM-43956: Fix store layers. * MM-43956: Switches to default name for time package; changes parameter names to avoid naming conflict. * MM-43956: Updates mocks. Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
194 строки
4.1 KiB
Go
194 строки
4.1 KiB
Go
// Code generated by mockery v2.10.4. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make store-mocks`.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
model "github.com/mattermost/mattermost-server/v6/model"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// CommandStore is an autogenerated mock type for the CommandStore type
|
|
type CommandStore struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// AnalyticsCommandCount provides a mock function with given fields: teamID
|
|
func (_m *CommandStore) AnalyticsCommandCount(teamID string) (int64, error) {
|
|
ret := _m.Called(teamID)
|
|
|
|
var r0 int64
|
|
if rf, ok := ret.Get(0).(func(string) int64); ok {
|
|
r0 = rf(teamID)
|
|
} else {
|
|
r0 = ret.Get(0).(int64)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string) error); ok {
|
|
r1 = rf(teamID)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Delete provides a mock function with given fields: commandID, timestamp
|
|
func (_m *CommandStore) Delete(commandID string, timestamp int64) error {
|
|
ret := _m.Called(commandID, timestamp)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, int64) error); ok {
|
|
r0 = rf(commandID, timestamp)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Get provides a mock function with given fields: id
|
|
func (_m *CommandStore) Get(id string) (*model.Command, error) {
|
|
ret := _m.Called(id)
|
|
|
|
var r0 *model.Command
|
|
if rf, ok := ret.Get(0).(func(string) *model.Command); ok {
|
|
r0 = rf(id)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.Command)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string) error); ok {
|
|
r1 = rf(id)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// GetByTeam provides a mock function with given fields: teamID
|
|
func (_m *CommandStore) GetByTeam(teamID string) ([]*model.Command, error) {
|
|
ret := _m.Called(teamID)
|
|
|
|
var r0 []*model.Command
|
|
if rf, ok := ret.Get(0).(func(string) []*model.Command); ok {
|
|
r0 = rf(teamID)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]*model.Command)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string) error); ok {
|
|
r1 = rf(teamID)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// GetByTrigger provides a mock function with given fields: teamID, trigger
|
|
func (_m *CommandStore) GetByTrigger(teamID string, trigger string) (*model.Command, error) {
|
|
ret := _m.Called(teamID, trigger)
|
|
|
|
var r0 *model.Command
|
|
if rf, ok := ret.Get(0).(func(string, string) *model.Command); ok {
|
|
r0 = rf(teamID, trigger)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.Command)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, string) error); ok {
|
|
r1 = rf(teamID, trigger)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// PermanentDeleteByTeam provides a mock function with given fields: teamID
|
|
func (_m *CommandStore) PermanentDeleteByTeam(teamID string) error {
|
|
ret := _m.Called(teamID)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string) error); ok {
|
|
r0 = rf(teamID)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// PermanentDeleteByUser provides a mock function with given fields: userID
|
|
func (_m *CommandStore) PermanentDeleteByUser(userID string) error {
|
|
ret := _m.Called(userID)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string) error); ok {
|
|
r0 = rf(userID)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Save provides a mock function with given fields: webhook
|
|
func (_m *CommandStore) Save(webhook *model.Command) (*model.Command, error) {
|
|
ret := _m.Called(webhook)
|
|
|
|
var r0 *model.Command
|
|
if rf, ok := ret.Get(0).(func(*model.Command) *model.Command); ok {
|
|
r0 = rf(webhook)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.Command)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(*model.Command) error); ok {
|
|
r1 = rf(webhook)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Update provides a mock function with given fields: hook
|
|
func (_m *CommandStore) Update(hook *model.Command) (*model.Command, error) {
|
|
ret := _m.Called(hook)
|
|
|
|
var r0 *model.Command
|
|
if rf, ok := ret.Get(0).(func(*model.Command) *model.Command); ok {
|
|
r0 = rf(hook)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.Command)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(*model.Command) error); ok {
|
|
r1 = rf(hook)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|