/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ // Code generated by MockGen. DO NOT EDIT. // Source: ./siteinfo_service.go // // Generated by this command: // // mockgen -source=./siteinfo_service.go -destination=../mock/siteinfo_repo_mock.go -package=mock // // Package mock is a generated GoMock package. package mock import ( context "context" reflect "reflect" entity "github.com/apache/answer/internal/entity" schema "github.com/apache/answer/internal/schema" gomock "go.uber.org/mock/gomock" ) // MockSiteInfoRepo is a mock of SiteInfoRepo interface. type MockSiteInfoRepo struct { ctrl *gomock.Controller recorder *MockSiteInfoRepoMockRecorder isgomock struct{} } // MockSiteInfoRepoMockRecorder is the mock recorder for MockSiteInfoRepo. type MockSiteInfoRepoMockRecorder struct { mock *MockSiteInfoRepo } // NewMockSiteInfoRepo creates a new mock instance. func NewMockSiteInfoRepo(ctrl *gomock.Controller) *MockSiteInfoRepo { mock := &MockSiteInfoRepo{ctrl: ctrl} mock.recorder = &MockSiteInfoRepoMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockSiteInfoRepo) EXPECT() *MockSiteInfoRepoMockRecorder { return m.recorder } // GetByType mocks base method. func (m *MockSiteInfoRepo) GetByType(ctx context.Context, siteType string, withoutCache ...bool) (*entity.SiteInfo, bool, error) { m.ctrl.T.Helper() varargs := []any{ctx, siteType} for _, a := range withoutCache { varargs = append(varargs, a) } ret := m.ctrl.Call(m, "GetByType", varargs...) ret0, _ := ret[0].(*entity.SiteInfo) ret1, _ := ret[1].(bool) ret2, _ := ret[2].(error) return ret0, ret1, ret2 } // GetByType indicates an expected call of GetByType. func (mr *MockSiteInfoRepoMockRecorder) GetByType(ctx, siteType any, withoutCache ...any) *gomock.Call { mr.mock.ctrl.T.Helper() varargs := append([]any{ctx, siteType}, withoutCache...) return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetByType", reflect.TypeOf((*MockSiteInfoRepo)(nil).GetByType), varargs...) } // IsBrandingFileUsed mocks base method. func (m *MockSiteInfoRepo) IsBrandingFileUsed(ctx context.Context, filePath string) (bool, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "IsBrandingFileUsed", ctx, filePath) ret0, _ := ret[0].(bool) ret1, _ := ret[1].(error) return ret0, ret1 } // IsBrandingFileUsed indicates an expected call of IsBrandingFileUsed. func (mr *MockSiteInfoRepoMockRecorder) IsBrandingFileUsed(ctx, filePath any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsBrandingFileUsed", reflect.TypeOf((*MockSiteInfoRepo)(nil).IsBrandingFileUsed), ctx, filePath) } // SaveByType mocks base method. func (m *MockSiteInfoRepo) SaveByType(ctx context.Context, siteType string, data *entity.SiteInfo) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "SaveByType", ctx, siteType, data) ret0, _ := ret[0].(error) return ret0 } // SaveByType indicates an expected call of SaveByType. func (mr *MockSiteInfoRepoMockRecorder) SaveByType(ctx, siteType, data any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SaveByType", reflect.TypeOf((*MockSiteInfoRepo)(nil).SaveByType), ctx, siteType, data) } // MockSiteInfoCommonService is a mock of SiteInfoCommonService interface. type MockSiteInfoCommonService struct { ctrl *gomock.Controller recorder *MockSiteInfoCommonServiceMockRecorder isgomock struct{} } // MockSiteInfoCommonServiceMockRecorder is the mock recorder for MockSiteInfoCommonService. type MockSiteInfoCommonServiceMockRecorder struct { mock *MockSiteInfoCommonService } // NewMockSiteInfoCommonService creates a new mock instance. func NewMockSiteInfoCommonService(ctrl *gomock.Controller) *MockSiteInfoCommonService { mock := &MockSiteInfoCommonService{ctrl: ctrl} mock.recorder = &MockSiteInfoCommonServiceMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockSiteInfoCommonService) EXPECT() *MockSiteInfoCommonServiceMockRecorder { return m.recorder } // FormatAvatar mocks base method. func (m *MockSiteInfoCommonService) FormatAvatar(ctx context.Context, originalAvatarData, email string, userStatus int) *schema.AvatarInfo { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "FormatAvatar", ctx, originalAvatarData, email, userStatus) ret0, _ := ret[0].(*schema.AvatarInfo) return ret0 } // FormatAvatar indicates an expected call of FormatAvatar. func (mr *MockSiteInfoCommonServiceMockRecorder) FormatAvatar(ctx, originalAvatarData, email, userStatus any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FormatAvatar", reflect.TypeOf((*MockSiteInfoCommonService)(nil).FormatAvatar), ctx, originalAvatarData, email, userStatus) } // FormatListAvatar mocks base method. func (m *MockSiteInfoCommonService) FormatListAvatar(ctx context.Context, userList []*entity.User) map[string]*schema.AvatarInfo { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "FormatListAvatar", ctx, userList) ret0, _ := ret[0].(map[string]*schema.AvatarInfo) return ret0 } // FormatListAvatar indicates an expected call of FormatListAvatar. func (mr *MockSiteInfoCommonServiceMockRecorder) FormatListAvatar(ctx, userList any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FormatListAvatar", reflect.TypeOf((*MockSiteInfoCommonService)(nil).FormatListAvatar), ctx, userList) } // GetSiteAI mocks base method. func (m *MockSiteInfoCommonService) GetSiteAI(ctx context.Context) (*schema.SiteAIResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteAI", ctx) ret0, _ := ret[0].(*schema.SiteAIResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteAI indicates an expected call of GetSiteAI. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteAI(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteAI", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteAI), ctx) } // GetSiteAdvanced mocks base method. func (m *MockSiteInfoCommonService) GetSiteAdvanced(ctx context.Context) (*schema.SiteAdvancedResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteAdvanced", ctx) ret0, _ := ret[0].(*schema.SiteAdvancedResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteAdvanced indicates an expected call of GetSiteAdvanced. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteAdvanced(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteAdvanced", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteAdvanced), ctx) } // GetSiteBranding mocks base method. func (m *MockSiteInfoCommonService) GetSiteBranding(ctx context.Context) (*schema.SiteBrandingResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteBranding", ctx) ret0, _ := ret[0].(*schema.SiteBrandingResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteBranding indicates an expected call of GetSiteBranding. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteBranding(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteBranding", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteBranding), ctx) } // GetSiteCustomCssHTML mocks base method. func (m *MockSiteInfoCommonService) GetSiteCustomCssHTML(ctx context.Context) (*schema.SiteCustomCssHTMLResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteCustomCssHTML", ctx) ret0, _ := ret[0].(*schema.SiteCustomCssHTMLResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteCustomCssHTML indicates an expected call of GetSiteCustomCssHTML. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteCustomCssHTML(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteCustomCssHTML", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteCustomCssHTML), ctx) } // GetSiteGeneral mocks base method. func (m *MockSiteInfoCommonService) GetSiteGeneral(ctx context.Context) (*schema.SiteGeneralResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteGeneral", ctx) ret0, _ := ret[0].(*schema.SiteGeneralResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteGeneral indicates an expected call of GetSiteGeneral. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteGeneral(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteGeneral", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteGeneral), ctx) } // GetSiteInfoByType mocks base method. func (m *MockSiteInfoCommonService) GetSiteInfoByType(ctx context.Context, siteType string, resp any) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteInfoByType", ctx, siteType, resp) ret0, _ := ret[0].(error) return ret0 } // GetSiteInfoByType indicates an expected call of GetSiteInfoByType. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteInfoByType(ctx, siteType, resp any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteInfoByType", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteInfoByType), ctx, siteType, resp) } // GetSiteInterface mocks base method. func (m *MockSiteInfoCommonService) GetSiteInterface(ctx context.Context) (*schema.SiteInterfaceSettingsResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteInterface", ctx) ret0, _ := ret[0].(*schema.SiteInterfaceSettingsResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteInterface indicates an expected call of GetSiteInterface. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteInterface(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteInterface", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteInterface), ctx) } // GetSiteLogin mocks base method. func (m *MockSiteInfoCommonService) GetSiteLogin(ctx context.Context) (*schema.SiteLoginResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteLogin", ctx) ret0, _ := ret[0].(*schema.SiteLoginResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteLogin indicates an expected call of GetSiteLogin. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteLogin(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteLogin", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteLogin), ctx) } // GetSiteMCP mocks base method. func (m *MockSiteInfoCommonService) GetSiteMCP(ctx context.Context) (*schema.SiteMCPResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteMCP", ctx) ret0, _ := ret[0].(*schema.SiteMCPResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteMCP indicates an expected call of GetSiteMCP. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteMCP(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteMCP", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteMCP), ctx) } // GetSitePolicies mocks base method. func (m *MockSiteInfoCommonService) GetSitePolicies(ctx context.Context) (*schema.SitePoliciesResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSitePolicies", ctx) ret0, _ := ret[0].(*schema.SitePoliciesResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSitePolicies indicates an expected call of GetSitePolicies. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSitePolicies(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSitePolicies", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSitePolicies), ctx) } // GetSiteQuestion mocks base method. func (m *MockSiteInfoCommonService) GetSiteQuestion(ctx context.Context) (*schema.SiteQuestionsResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteQuestion", ctx) ret0, _ := ret[0].(*schema.SiteQuestionsResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteQuestion indicates an expected call of GetSiteQuestion. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteQuestion(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteQuestion", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteQuestion), ctx) } // GetSiteSecurity mocks base method. func (m *MockSiteInfoCommonService) GetSiteSecurity(ctx context.Context) (*schema.SiteSecurityResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteSecurity", ctx) ret0, _ := ret[0].(*schema.SiteSecurityResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteSecurity indicates an expected call of GetSiteSecurity. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteSecurity(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteSecurity", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteSecurity), ctx) } // GetSiteSeo mocks base method. func (m *MockSiteInfoCommonService) GetSiteSeo(ctx context.Context) (*schema.SiteSeoResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteSeo", ctx) ret0, _ := ret[0].(*schema.SiteSeoResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteSeo indicates an expected call of GetSiteSeo. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteSeo(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteSeo", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteSeo), ctx) } // GetSiteTag mocks base method. func (m *MockSiteInfoCommonService) GetSiteTag(ctx context.Context) (*schema.SiteTagsResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteTag", ctx) ret0, _ := ret[0].(*schema.SiteTagsResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteTag indicates an expected call of GetSiteTag. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteTag(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteTag", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteTag), ctx) } // GetSiteTheme mocks base method. func (m *MockSiteInfoCommonService) GetSiteTheme(ctx context.Context) (*schema.SiteThemeResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteTheme", ctx) ret0, _ := ret[0].(*schema.SiteThemeResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteTheme indicates an expected call of GetSiteTheme. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteTheme(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteTheme", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteTheme), ctx) } // GetSiteUsers mocks base method. func (m *MockSiteInfoCommonService) GetSiteUsers(ctx context.Context) (*schema.SiteUsersResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteUsers", ctx) ret0, _ := ret[0].(*schema.SiteUsersResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteUsers indicates an expected call of GetSiteUsers. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteUsers(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteUsers", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteUsers), ctx) } // GetSiteUsersSettings mocks base method. func (m *MockSiteInfoCommonService) GetSiteUsersSettings(ctx context.Context) (*schema.SiteUsersSettingsResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteUsersSettings", ctx) ret0, _ := ret[0].(*schema.SiteUsersSettingsResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteUsersSettings indicates an expected call of GetSiteUsersSettings. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteUsersSettings(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteUsersSettings", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteUsersSettings), ctx) } // GetSiteWrite mocks base method. func (m *MockSiteInfoCommonService) GetSiteWrite(ctx context.Context) (*schema.SiteWriteResp, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetSiteWrite", ctx) ret0, _ := ret[0].(*schema.SiteWriteResp) ret1, _ := ret[1].(error) return ret0, ret1 } // GetSiteWrite indicates an expected call of GetSiteWrite. func (mr *MockSiteInfoCommonServiceMockRecorder) GetSiteWrite(ctx any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSiteWrite", reflect.TypeOf((*MockSiteInfoCommonService)(nil).GetSiteWrite), ctx) } // IsBrandingFileUsed mocks base method. func (m *MockSiteInfoCommonService) IsBrandingFileUsed(ctx context.Context, filePath string) bool { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "IsBrandingFileUsed", ctx, filePath) ret0, _ := ret[0].(bool) return ret0 } // IsBrandingFileUsed indicates an expected call of IsBrandingFileUsed. func (mr *MockSiteInfoCommonServiceMockRecorder) IsBrandingFileUsed(ctx, filePath any) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsBrandingFileUsed", reflect.TypeOf((*MockSiteInfoCommonService)(nil).IsBrandingFileUsed), ctx, filePath) }