ce98ec55fc
* Stores a cache of inactive connections so their subscriptions are recovered on reconnections * Adds test for getUserIDsForWorkspace and simplify messages through helpers * Make the plugin websocket client more resilient * Remove missed event callback and limit ws state polling to one at a time * Add read lock for the plugin adapter and guarantee atomic ops on inactiveAt * Add mutex to the plugin adapter client and tests to cover for races * Split plugin adapter mutex in two and use them to lock only on data access * Group plugin adapter fields by the mutex that's guarding them
80 lines
2.9 KiB
Go
80 lines
2.9 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/mattermost/focalboard/server/auth (interfaces: AuthInterface)
|
|
|
|
// Package mocks is a generated GoMock package.
|
|
package mocks
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
model "github.com/mattermost/focalboard/server/model"
|
|
store "github.com/mattermost/focalboard/server/services/store"
|
|
)
|
|
|
|
// MockAuthInterface is a mock of AuthInterface interface.
|
|
type MockAuthInterface struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockAuthInterfaceMockRecorder
|
|
}
|
|
|
|
// MockAuthInterfaceMockRecorder is the mock recorder for MockAuthInterface.
|
|
type MockAuthInterfaceMockRecorder struct {
|
|
mock *MockAuthInterface
|
|
}
|
|
|
|
// NewMockAuthInterface creates a new mock instance.
|
|
func NewMockAuthInterface(ctrl *gomock.Controller) *MockAuthInterface {
|
|
mock := &MockAuthInterface{ctrl: ctrl}
|
|
mock.recorder = &MockAuthInterfaceMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockAuthInterface) EXPECT() *MockAuthInterfaceMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// DoesUserHaveWorkspaceAccess mocks base method.
|
|
func (m *MockAuthInterface) DoesUserHaveWorkspaceAccess(arg0, arg1 string) bool {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "DoesUserHaveWorkspaceAccess", arg0, arg1)
|
|
ret0, _ := ret[0].(bool)
|
|
return ret0
|
|
}
|
|
|
|
// DoesUserHaveWorkspaceAccess indicates an expected call of DoesUserHaveWorkspaceAccess.
|
|
func (mr *MockAuthInterfaceMockRecorder) DoesUserHaveWorkspaceAccess(arg0, arg1 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DoesUserHaveWorkspaceAccess", reflect.TypeOf((*MockAuthInterface)(nil).DoesUserHaveWorkspaceAccess), arg0, arg1)
|
|
}
|
|
|
|
// GetSession mocks base method.
|
|
func (m *MockAuthInterface) GetSession(arg0 string) (*model.Session, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "GetSession", arg0)
|
|
ret0, _ := ret[0].(*model.Session)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// GetSession indicates an expected call of GetSession.
|
|
func (mr *MockAuthInterfaceMockRecorder) GetSession(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSession", reflect.TypeOf((*MockAuthInterface)(nil).GetSession), arg0)
|
|
}
|
|
|
|
// IsValidReadToken mocks base method.
|
|
func (m *MockAuthInterface) IsValidReadToken(arg0 store.Container, arg1, arg2 string) (bool, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "IsValidReadToken", arg0, arg1, arg2)
|
|
ret0, _ := ret[0].(bool)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// IsValidReadToken indicates an expected call of IsValidReadToken.
|
|
func (mr *MockAuthInterfaceMockRecorder) IsValidReadToken(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsValidReadToken", reflect.TypeOf((*MockAuthInterface)(nil).IsValidReadToken), arg0, arg1, arg2)
|
|
}
|