mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-11 20:17:04 -04:00
We were setting the user status to offline without checking for connections on other nodes in a cluster. Now we implement a request-response mechanism for the whole cluster and we check that before setting a user to offline. https://mattermost.atlassian.net/browse/MM-57153 ```release-note Fix a bug where the user status would incorrectly be set to offline without checking for connections in other nodes in an HA cluster. ``` Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> Co-authored-by: Mattermost Build <build@mattermost.com> Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
346 lines
8.2 KiB
Go
346 lines
8.2 KiB
Go
// Code generated by mockery v2.42.2. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make einterfaces-mocks`.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
einterfaces "github.com/mattermost/mattermost/server/v8/einterfaces"
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
model "github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
// ClusterInterface is an autogenerated mock type for the ClusterInterface type
|
|
type ClusterInterface struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// ConfigChanged provides a mock function with given fields: previousConfig, newConfig, sendToOtherServer
|
|
func (_m *ClusterInterface) ConfigChanged(previousConfig *model.Config, newConfig *model.Config, sendToOtherServer bool) *model.AppError {
|
|
ret := _m.Called(previousConfig, newConfig, sendToOtherServer)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for ConfigChanged")
|
|
}
|
|
|
|
var r0 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(*model.Config, *model.Config, bool) *model.AppError); ok {
|
|
r0 = rf(previousConfig, newConfig, sendToOtherServer)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// GetClusterId provides a mock function with given fields:
|
|
func (_m *ClusterInterface) GetClusterId() string {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetClusterId")
|
|
}
|
|
|
|
var r0 string
|
|
if rf, ok := ret.Get(0).(func() string); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// GetClusterInfos provides a mock function with given fields:
|
|
func (_m *ClusterInterface) GetClusterInfos() []*model.ClusterInfo {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetClusterInfos")
|
|
}
|
|
|
|
var r0 []*model.ClusterInfo
|
|
if rf, ok := ret.Get(0).(func() []*model.ClusterInfo); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]*model.ClusterInfo)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// GetClusterStats provides a mock function with given fields:
|
|
func (_m *ClusterInterface) GetClusterStats() ([]*model.ClusterStats, *model.AppError) {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetClusterStats")
|
|
}
|
|
|
|
var r0 []*model.ClusterStats
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func() ([]*model.ClusterStats, *model.AppError)); ok {
|
|
return rf()
|
|
}
|
|
if rf, ok := ret.Get(0).(func() []*model.ClusterStats); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]*model.ClusterStats)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func() *model.AppError); ok {
|
|
r1 = rf()
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// GetLogs provides a mock function with given fields: page, perPage
|
|
func (_m *ClusterInterface) GetLogs(page int, perPage int) ([]string, *model.AppError) {
|
|
ret := _m.Called(page, perPage)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetLogs")
|
|
}
|
|
|
|
var r0 []string
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(int, int) ([]string, *model.AppError)); ok {
|
|
return rf(page, perPage)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(int, int) []string); ok {
|
|
r0 = rf(page, perPage)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]string)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(int, int) *model.AppError); ok {
|
|
r1 = rf(page, perPage)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// GetMyClusterInfo provides a mock function with given fields:
|
|
func (_m *ClusterInterface) GetMyClusterInfo() *model.ClusterInfo {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetMyClusterInfo")
|
|
}
|
|
|
|
var r0 *model.ClusterInfo
|
|
if rf, ok := ret.Get(0).(func() *model.ClusterInfo); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.ClusterInfo)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// GetPluginStatuses provides a mock function with given fields:
|
|
func (_m *ClusterInterface) GetPluginStatuses() (model.PluginStatuses, *model.AppError) {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetPluginStatuses")
|
|
}
|
|
|
|
var r0 model.PluginStatuses
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func() (model.PluginStatuses, *model.AppError)); ok {
|
|
return rf()
|
|
}
|
|
if rf, ok := ret.Get(0).(func() model.PluginStatuses); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(model.PluginStatuses)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func() *model.AppError); ok {
|
|
r1 = rf()
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// HealthScore provides a mock function with given fields:
|
|
func (_m *ClusterInterface) HealthScore() int {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for HealthScore")
|
|
}
|
|
|
|
var r0 int
|
|
if rf, ok := ret.Get(0).(func() int); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(int)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// IsLeader provides a mock function with given fields:
|
|
func (_m *ClusterInterface) IsLeader() bool {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for IsLeader")
|
|
}
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func() bool); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// NotifyMsg provides a mock function with given fields: buf
|
|
func (_m *ClusterInterface) NotifyMsg(buf []byte) {
|
|
_m.Called(buf)
|
|
}
|
|
|
|
// QueryLogs provides a mock function with given fields: page, perPage
|
|
func (_m *ClusterInterface) QueryLogs(page int, perPage int) (map[string][]string, *model.AppError) {
|
|
ret := _m.Called(page, perPage)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for QueryLogs")
|
|
}
|
|
|
|
var r0 map[string][]string
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(int, int) (map[string][]string, *model.AppError)); ok {
|
|
return rf(page, perPage)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(int, int) map[string][]string); ok {
|
|
r0 = rf(page, perPage)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(map[string][]string)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(int, int) *model.AppError); ok {
|
|
r1 = rf(page, perPage)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// RegisterClusterMessageHandler provides a mock function with given fields: event, crm
|
|
func (_m *ClusterInterface) RegisterClusterMessageHandler(event model.ClusterEvent, crm einterfaces.ClusterMessageHandler) {
|
|
_m.Called(event, crm)
|
|
}
|
|
|
|
// SendClusterMessage provides a mock function with given fields: msg
|
|
func (_m *ClusterInterface) SendClusterMessage(msg *model.ClusterMessage) {
|
|
_m.Called(msg)
|
|
}
|
|
|
|
// SendClusterMessageToNode provides a mock function with given fields: nodeID, msg
|
|
func (_m *ClusterInterface) SendClusterMessageToNode(nodeID string, msg *model.ClusterMessage) error {
|
|
ret := _m.Called(nodeID, msg)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for SendClusterMessageToNode")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(string, *model.ClusterMessage) error); ok {
|
|
r0 = rf(nodeID, msg)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// StartInterNodeCommunication provides a mock function with given fields:
|
|
func (_m *ClusterInterface) StartInterNodeCommunication() {
|
|
_m.Called()
|
|
}
|
|
|
|
// StopInterNodeCommunication provides a mock function with given fields:
|
|
func (_m *ClusterInterface) StopInterNodeCommunication() {
|
|
_m.Called()
|
|
}
|
|
|
|
// WebConnCountForUser provides a mock function with given fields: userID
|
|
func (_m *ClusterInterface) WebConnCountForUser(userID string) (int, *model.AppError) {
|
|
ret := _m.Called(userID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for WebConnCountForUser")
|
|
}
|
|
|
|
var r0 int
|
|
var r1 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(string) (int, *model.AppError)); ok {
|
|
return rf(userID)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(string) int); ok {
|
|
r0 = rf(userID)
|
|
} else {
|
|
r0 = ret.Get(0).(int)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(string) *model.AppError); ok {
|
|
r1 = rf(userID)
|
|
} else {
|
|
if ret.Get(1) != nil {
|
|
r1 = ret.Get(1).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// NewClusterInterface creates a new instance of ClusterInterface. 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 NewClusterInterface(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *ClusterInterface {
|
|
mock := &ClusterInterface{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|