mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
* Standardize request.CTX parameter naming to rctx - Migrate 886 request.CTX parameters across 147 files to use consistent 'rctx' naming - Updated function signatures from 'c', 'ctx', and 'cancelContext' to 'rctx' - Updated function bodies to reference the new parameter names - Preserved underscore parameters unchanged as they are unused - Fixed method receiver context issue in store.go 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Use request.CTX interface in batch worker * Manual fixes * Fix parameter naming * Add linter check --------- Co-authored-by: Claude <noreply@anthropic.com>
70 lines
2.3 KiB
Go
70 lines
2.3 KiB
Go
// Code generated by mockery v2.53.4. DO NOT EDIT.
|
|
|
|
// Regenerate this file using `make einterfaces-mocks`.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
model "github.com/mattermost/mattermost/server/public/model"
|
|
request "github.com/mattermost/mattermost/server/public/shared/request"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// AccountMigrationInterface is an autogenerated mock type for the AccountMigrationInterface type
|
|
type AccountMigrationInterface struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// MigrateToLdap provides a mock function with given fields: rctx, fromAuthService, foreignUserFieldNameToMatch, force, dryRun
|
|
func (_m *AccountMigrationInterface) MigrateToLdap(rctx request.CTX, fromAuthService string, foreignUserFieldNameToMatch string, force bool, dryRun bool) *model.AppError {
|
|
ret := _m.Called(rctx, fromAuthService, foreignUserFieldNameToMatch, force, dryRun)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for MigrateToLdap")
|
|
}
|
|
|
|
var r0 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(request.CTX, string, string, bool, bool) *model.AppError); ok {
|
|
r0 = rf(rctx, fromAuthService, foreignUserFieldNameToMatch, force, dryRun)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MigrateToSaml provides a mock function with given fields: rctx, fromAuthService, usersMap, auto, dryRun
|
|
func (_m *AccountMigrationInterface) MigrateToSaml(rctx request.CTX, fromAuthService string, usersMap map[string]string, auto bool, dryRun bool) *model.AppError {
|
|
ret := _m.Called(rctx, fromAuthService, usersMap, auto, dryRun)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for MigrateToSaml")
|
|
}
|
|
|
|
var r0 *model.AppError
|
|
if rf, ok := ret.Get(0).(func(request.CTX, string, map[string]string, bool, bool) *model.AppError); ok {
|
|
r0 = rf(rctx, fromAuthService, usersMap, auto, dryRun)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*model.AppError)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// NewAccountMigrationInterface creates a new instance of AccountMigrationInterface. 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 NewAccountMigrationInterface(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *AccountMigrationInterface {
|
|
mock := &AccountMigrationInterface{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|