mocks

package
v0.29.10 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2022 License: AGPL-3.0, AGPL-3.0-only Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthRepo

type AuthRepo struct {
	mock.Mock
}

AuthRepo is an autogenerated mock type for the AuthRepo type

func NewAuthRepo

func NewAuthRepo(t mockConstructorTestingTNewAuthRepo) *AuthRepo

NewAuthRepo creates a new instance of AuthRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*AuthRepo) CreateAccessToken added in v0.18.0

func (_m *AuthRepo) CreateAccessToken(ctx context.Context, userID model.UserID, name string, expiration time.Duration) (string, error)

CreateAccessToken provides a mock function with given fields: ctx, userID, name, expiration

func (*AuthRepo) DeleteAccessToken added in v0.18.0

func (_m *AuthRepo) DeleteAccessToken(ctx context.Context, tokenID uint32) (bool, error)

DeleteAccessToken provides a mock function with given fields: ctx, tokenID

func (*AuthRepo) EXPECT

func (_m *AuthRepo) EXPECT() *AuthRepo_Expecter

func (*AuthRepo) GetByEmail

func (_m *AuthRepo) GetByEmail(ctx context.Context, email string) (domain.AuthUserInfo, []byte, error)

GetByEmail provides a mock function with given fields: ctx, email

func (*AuthRepo) GetByToken

func (_m *AuthRepo) GetByToken(ctx context.Context, token string) (domain.AuthUserInfo, error)

GetByToken provides a mock function with given fields: ctx, token

func (*AuthRepo) GetPermission

func (_m *AuthRepo) GetPermission(ctx context.Context, groupID uint8) (domain.Permission, error)

GetPermission provides a mock function with given fields: ctx, groupID

func (*AuthRepo) GetTokenByID added in v0.18.0

func (_m *AuthRepo) GetTokenByID(ctx context.Context, id uint32) (domain.AccessToken, error)

GetTokenByID provides a mock function with given fields: ctx, id

func (*AuthRepo) ListAccessToken added in v0.18.0

func (_m *AuthRepo) ListAccessToken(ctx context.Context, userID model.UserID) ([]domain.AccessToken, error)

ListAccessToken provides a mock function with given fields: ctx, userID

type AuthRepo_CreateAccessToken_Call added in v0.18.0

type AuthRepo_CreateAccessToken_Call struct {
	*mock.Call
}

AuthRepo_CreateAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateAccessToken'

func (*AuthRepo_CreateAccessToken_Call) Return added in v0.18.0

func (*AuthRepo_CreateAccessToken_Call) Run added in v0.18.0

type AuthRepo_DeleteAccessToken_Call added in v0.18.0

type AuthRepo_DeleteAccessToken_Call struct {
	*mock.Call
}

AuthRepo_DeleteAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteAccessToken'

func (*AuthRepo_DeleteAccessToken_Call) Return added in v0.18.0

func (*AuthRepo_DeleteAccessToken_Call) Run added in v0.18.0

type AuthRepo_Expecter

type AuthRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*AuthRepo_Expecter) CreateAccessToken added in v0.18.0

func (_e *AuthRepo_Expecter) CreateAccessToken(ctx interface{}, userID interface{}, name interface{}, expiration interface{}) *AuthRepo_CreateAccessToken_Call

CreateAccessToken is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • name string
  • expiration time.Duration

func (*AuthRepo_Expecter) DeleteAccessToken added in v0.18.0

func (_e *AuthRepo_Expecter) DeleteAccessToken(ctx interface{}, tokenID interface{}) *AuthRepo_DeleteAccessToken_Call

DeleteAccessToken is a helper method to define mock.On call

  • ctx context.Context
  • tokenID uint32

func (*AuthRepo_Expecter) GetByEmail

func (_e *AuthRepo_Expecter) GetByEmail(ctx interface{}, email interface{}) *AuthRepo_GetByEmail_Call

GetByEmail is a helper method to define mock.On call

  • ctx context.Context
  • email string

func (*AuthRepo_Expecter) GetByToken

func (_e *AuthRepo_Expecter) GetByToken(ctx interface{}, token interface{}) *AuthRepo_GetByToken_Call

GetByToken is a helper method to define mock.On call

  • ctx context.Context
  • token string

func (*AuthRepo_Expecter) GetPermission

func (_e *AuthRepo_Expecter) GetPermission(ctx interface{}, groupID interface{}) *AuthRepo_GetPermission_Call

GetPermission is a helper method to define mock.On call

  • ctx context.Context
  • groupID uint8

func (*AuthRepo_Expecter) GetTokenByID added in v0.18.0

func (_e *AuthRepo_Expecter) GetTokenByID(ctx interface{}, id interface{}) *AuthRepo_GetTokenByID_Call

GetTokenByID is a helper method to define mock.On call

  • ctx context.Context
  • id uint32

func (*AuthRepo_Expecter) ListAccessToken added in v0.18.0

func (_e *AuthRepo_Expecter) ListAccessToken(ctx interface{}, userID interface{}) *AuthRepo_ListAccessToken_Call

ListAccessToken is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

type AuthRepo_GetByEmail_Call

type AuthRepo_GetByEmail_Call struct {
	*mock.Call
}

AuthRepo_GetByEmail_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByEmail'

func (*AuthRepo_GetByEmail_Call) Return

func (*AuthRepo_GetByEmail_Call) Run

type AuthRepo_GetByToken_Call

type AuthRepo_GetByToken_Call struct {
	*mock.Call
}

AuthRepo_GetByToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByToken'

func (*AuthRepo_GetByToken_Call) Return

func (*AuthRepo_GetByToken_Call) Run

type AuthRepo_GetPermission_Call

type AuthRepo_GetPermission_Call struct {
	*mock.Call
}

AuthRepo_GetPermission_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetPermission'

func (*AuthRepo_GetPermission_Call) Return

func (*AuthRepo_GetPermission_Call) Run

type AuthRepo_GetTokenByID_Call added in v0.18.0

type AuthRepo_GetTokenByID_Call struct {
	*mock.Call
}

AuthRepo_GetTokenByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetTokenByID'

func (*AuthRepo_GetTokenByID_Call) Return added in v0.18.0

func (*AuthRepo_GetTokenByID_Call) Run added in v0.18.0

type AuthRepo_ListAccessToken_Call added in v0.18.0

type AuthRepo_ListAccessToken_Call struct {
	*mock.Call
}

AuthRepo_ListAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListAccessToken'

func (*AuthRepo_ListAccessToken_Call) Return added in v0.18.0

func (*AuthRepo_ListAccessToken_Call) Run added in v0.18.0

type AuthService

type AuthService struct {
	mock.Mock
}

AuthService is an autogenerated mock type for the AuthService type

func NewAuthService

func NewAuthService(t mockConstructorTestingTNewAuthService) *AuthService

NewAuthService creates a new instance of AuthService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*AuthService) ComparePassword

func (_m *AuthService) ComparePassword(hashed []byte, password string) (bool, error)

ComparePassword provides a mock function with given fields: hashed, password

func (*AuthService) CreateAccessToken added in v0.18.0

func (_m *AuthService) CreateAccessToken(ctx context.Context, userID model.UserID, name string, expiration time.Duration) (string, error)

CreateAccessToken provides a mock function with given fields: ctx, userID, name, expiration

func (*AuthService) DeleteAccessToken added in v0.18.0

func (_m *AuthService) DeleteAccessToken(ctx context.Context, tokenID uint32) (bool, error)

DeleteAccessToken provides a mock function with given fields: ctx, tokenID

func (*AuthService) EXPECT

func (_m *AuthService) EXPECT() *AuthService_Expecter

func (*AuthService) GetByID

func (_m *AuthService) GetByID(ctx context.Context, userID model.UserID) (domain.Auth, error)

GetByID provides a mock function with given fields: ctx, userID

func (*AuthService) GetByToken

func (_m *AuthService) GetByToken(ctx context.Context, token string) (domain.Auth, error)

GetByToken provides a mock function with given fields: ctx, token

func (*AuthService) GetTokenByID added in v0.18.0

func (_m *AuthService) GetTokenByID(ctx context.Context, tokenID uint32) (domain.AccessToken, error)

GetTokenByID provides a mock function with given fields: ctx, tokenID

func (*AuthService) ListAccessToken added in v0.18.0

func (_m *AuthService) ListAccessToken(ctx context.Context, userID model.UserID) ([]domain.AccessToken, error)

ListAccessToken provides a mock function with given fields: ctx, userID

func (*AuthService) Login

func (_m *AuthService) Login(ctx context.Context, email string, password string) (domain.Auth, bool, error)

Login provides a mock function with given fields: ctx, email, password

type AuthService_ComparePassword_Call

type AuthService_ComparePassword_Call struct {
	*mock.Call
}

AuthService_ComparePassword_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ComparePassword'

func (*AuthService_ComparePassword_Call) Return

func (*AuthService_ComparePassword_Call) Run

func (_c *AuthService_ComparePassword_Call) Run(run func(hashed []byte, password string)) *AuthService_ComparePassword_Call

type AuthService_CreateAccessToken_Call added in v0.18.0

type AuthService_CreateAccessToken_Call struct {
	*mock.Call
}

AuthService_CreateAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateAccessToken'

func (*AuthService_CreateAccessToken_Call) Return added in v0.18.0

func (*AuthService_CreateAccessToken_Call) Run added in v0.18.0

type AuthService_DeleteAccessToken_Call added in v0.18.0

type AuthService_DeleteAccessToken_Call struct {
	*mock.Call
}

AuthService_DeleteAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteAccessToken'

func (*AuthService_DeleteAccessToken_Call) Return added in v0.18.0

func (*AuthService_DeleteAccessToken_Call) Run added in v0.18.0

type AuthService_Expecter

type AuthService_Expecter struct {
	// contains filtered or unexported fields
}

func (*AuthService_Expecter) ComparePassword

func (_e *AuthService_Expecter) ComparePassword(hashed interface{}, password interface{}) *AuthService_ComparePassword_Call

ComparePassword is a helper method to define mock.On call

  • hashed []byte
  • password string

func (*AuthService_Expecter) CreateAccessToken added in v0.18.0

func (_e *AuthService_Expecter) CreateAccessToken(ctx interface{}, userID interface{}, name interface{}, expiration interface{}) *AuthService_CreateAccessToken_Call

CreateAccessToken is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • name string
  • expiration time.Duration

func (*AuthService_Expecter) DeleteAccessToken added in v0.18.0

func (_e *AuthService_Expecter) DeleteAccessToken(ctx interface{}, tokenID interface{}) *AuthService_DeleteAccessToken_Call

DeleteAccessToken is a helper method to define mock.On call

  • ctx context.Context
  • tokenID uint32

func (*AuthService_Expecter) GetByID

func (_e *AuthService_Expecter) GetByID(ctx interface{}, userID interface{}) *AuthService_GetByID_Call

GetByID is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

func (*AuthService_Expecter) GetByToken

func (_e *AuthService_Expecter) GetByToken(ctx interface{}, token interface{}) *AuthService_GetByToken_Call

GetByToken is a helper method to define mock.On call

  • ctx context.Context
  • token string

func (*AuthService_Expecter) GetTokenByID added in v0.18.0

func (_e *AuthService_Expecter) GetTokenByID(ctx interface{}, tokenID interface{}) *AuthService_GetTokenByID_Call

GetTokenByID is a helper method to define mock.On call

  • ctx context.Context
  • tokenID uint32

func (*AuthService_Expecter) ListAccessToken added in v0.18.0

func (_e *AuthService_Expecter) ListAccessToken(ctx interface{}, userID interface{}) *AuthService_ListAccessToken_Call

ListAccessToken is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

func (*AuthService_Expecter) Login

func (_e *AuthService_Expecter) Login(ctx interface{}, email interface{}, password interface{}) *AuthService_Login_Call

Login is a helper method to define mock.On call

  • ctx context.Context
  • email string
  • password string

type AuthService_GetByID_Call

type AuthService_GetByID_Call struct {
	*mock.Call
}

AuthService_GetByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByID'

func (*AuthService_GetByID_Call) Return

func (*AuthService_GetByID_Call) Run

type AuthService_GetByToken_Call

type AuthService_GetByToken_Call struct {
	*mock.Call
}

AuthService_GetByToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByToken'

func (*AuthService_GetByToken_Call) Return

func (*AuthService_GetByToken_Call) Run

type AuthService_GetTokenByID_Call added in v0.18.0

type AuthService_GetTokenByID_Call struct {
	*mock.Call
}

AuthService_GetTokenByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetTokenByID'

func (*AuthService_GetTokenByID_Call) Return added in v0.18.0

func (*AuthService_GetTokenByID_Call) Run added in v0.18.0

type AuthService_ListAccessToken_Call added in v0.18.0

type AuthService_ListAccessToken_Call struct {
	*mock.Call
}

AuthService_ListAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListAccessToken'

func (*AuthService_ListAccessToken_Call) Return added in v0.18.0

func (*AuthService_ListAccessToken_Call) Run added in v0.18.0

type AuthService_Login_Call

type AuthService_Login_Call struct {
	*mock.Call
}

AuthService_Login_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Login'

func (*AuthService_Login_Call) Return

func (*AuthService_Login_Call) Run

func (_c *AuthService_Login_Call) Run(run func(ctx context.Context, email string, password string)) *AuthService_Login_Call

type CaptchaManager

type CaptchaManager struct {
	mock.Mock
}

CaptchaManager is an autogenerated mock type for the Manager type

func NewCaptchaManager

func NewCaptchaManager(t mockConstructorTestingTNewCaptchaManager) *CaptchaManager

NewCaptchaManager creates a new instance of CaptchaManager. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*CaptchaManager) EXPECT

func (*CaptchaManager) Verify

func (_m *CaptchaManager) Verify(ctx context.Context, response string) (bool, error)

Verify provides a mock function with given fields: ctx, response

type CaptchaManager_Expecter

type CaptchaManager_Expecter struct {
	// contains filtered or unexported fields
}

func (*CaptchaManager_Expecter) Verify

func (_e *CaptchaManager_Expecter) Verify(ctx interface{}, response interface{}) *CaptchaManager_Verify_Call

Verify is a helper method to define mock.On call

  • ctx context.Context
  • response string

type CaptchaManager_Verify_Call

type CaptchaManager_Verify_Call struct {
	*mock.Call
}

CaptchaManager_Verify_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Verify'

func (*CaptchaManager_Verify_Call) Return

func (*CaptchaManager_Verify_Call) Run

type CharacterRepo

type CharacterRepo struct {
	mock.Mock
}

CharacterRepo is an autogenerated mock type for the CharacterRepo type

func NewCharacterRepo

func NewCharacterRepo(t mockConstructorTestingTNewCharacterRepo) *CharacterRepo

NewCharacterRepo creates a new instance of CharacterRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*CharacterRepo) EXPECT

func (_m *CharacterRepo) EXPECT() *CharacterRepo_Expecter

func (*CharacterRepo) Get

Get provides a mock function with given fields: ctx, id

func (*CharacterRepo) GetByIDs

GetByIDs provides a mock function with given fields: ctx, ids

func (*CharacterRepo) GetPersonRelated

func (_m *CharacterRepo) GetPersonRelated(ctx context.Context, personID model.PersonID) ([]domain.PersonCharacterRelation, error)

GetPersonRelated provides a mock function with given fields: ctx, personID

func (*CharacterRepo) GetSubjectRelated

func (_m *CharacterRepo) GetSubjectRelated(ctx context.Context, subjectID model.SubjectID) ([]domain.SubjectCharacterRelation, error)

GetSubjectRelated provides a mock function with given fields: ctx, subjectID

type CharacterRepo_Expecter

type CharacterRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*CharacterRepo_Expecter) Get

func (_e *CharacterRepo_Expecter) Get(ctx interface{}, id interface{}) *CharacterRepo_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • id model.CharacterID

func (*CharacterRepo_Expecter) GetByIDs

func (_e *CharacterRepo_Expecter) GetByIDs(ctx interface{}, ids interface{}) *CharacterRepo_GetByIDs_Call

GetByIDs is a helper method to define mock.On call

  • ctx context.Context
  • ids []model.CharacterID

func (*CharacterRepo_Expecter) GetPersonRelated

func (_e *CharacterRepo_Expecter) GetPersonRelated(ctx interface{}, personID interface{}) *CharacterRepo_GetPersonRelated_Call

GetPersonRelated is a helper method to define mock.On call

  • ctx context.Context
  • personID model.PersonID

func (*CharacterRepo_Expecter) GetSubjectRelated

func (_e *CharacterRepo_Expecter) GetSubjectRelated(ctx interface{}, subjectID interface{}) *CharacterRepo_GetSubjectRelated_Call

GetSubjectRelated is a helper method to define mock.On call

  • ctx context.Context
  • subjectID model.SubjectID

type CharacterRepo_GetByIDs_Call

type CharacterRepo_GetByIDs_Call struct {
	*mock.Call
}

CharacterRepo_GetByIDs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByIDs'

func (*CharacterRepo_GetByIDs_Call) Return

func (*CharacterRepo_GetByIDs_Call) Run

type CharacterRepo_GetPersonRelated_Call

type CharacterRepo_GetPersonRelated_Call struct {
	*mock.Call
}

CharacterRepo_GetPersonRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetPersonRelated'

func (*CharacterRepo_GetPersonRelated_Call) Return

func (*CharacterRepo_GetPersonRelated_Call) Run

type CharacterRepo_GetSubjectRelated_Call

type CharacterRepo_GetSubjectRelated_Call struct {
	*mock.Call
}

CharacterRepo_GetSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectRelated'

func (*CharacterRepo_GetSubjectRelated_Call) Return

func (*CharacterRepo_GetSubjectRelated_Call) Run

type CharacterRepo_Get_Call

type CharacterRepo_Get_Call struct {
	*mock.Call
}

CharacterRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*CharacterRepo_Get_Call) Return

func (*CharacterRepo_Get_Call) Run

type CollectionRepo added in v0.20.9

type CollectionRepo struct {
	mock.Mock
}

CollectionRepo is an autogenerated mock type for the CollectionRepo type

func NewCollectionRepo added in v0.20.9

func NewCollectionRepo(t mockConstructorTestingTNewCollectionRepo) *CollectionRepo

NewCollectionRepo creates a new instance of CollectionRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*CollectionRepo) CountSubjectCollections added in v0.20.9

func (_m *CollectionRepo) CountSubjectCollections(ctx context.Context, userID model.UserID, subjectType uint8, collectionType model.SubjectCollection, showPrivate bool) (int64, error)

CountSubjectCollections provides a mock function with given fields: ctx, userID, subjectType, collectionType, showPrivate

func (*CollectionRepo) EXPECT added in v0.20.9

func (*CollectionRepo) GetSubjectCollection added in v0.20.9

func (_m *CollectionRepo) GetSubjectCollection(ctx context.Context, userID model.UserID, subjectID model.SubjectID) (model.UserSubjectCollection, error)

GetSubjectCollection provides a mock function with given fields: ctx, userID, subjectID

func (*CollectionRepo) GetSubjectEpisodesCollection added in v0.23.0

func (_m *CollectionRepo) GetSubjectEpisodesCollection(ctx context.Context, userID model.UserID, subjectID model.SubjectID) (model.UserSubjectEpisodesCollection, error)

GetSubjectEpisodesCollection provides a mock function with given fields: ctx, userID, subjectID

func (*CollectionRepo) ListSubjectCollection added in v0.20.9

func (_m *CollectionRepo) ListSubjectCollection(ctx context.Context, userID model.UserID, subjectType uint8, collectionType model.SubjectCollection, showPrivate bool, limit int, offset int) ([]model.UserSubjectCollection, error)

ListSubjectCollection provides a mock function with given fields: ctx, userID, subjectType, collectionType, showPrivate, limit, offset

func (*CollectionRepo) UpdateEpisodeCollection added in v0.23.8

func (_m *CollectionRepo) UpdateEpisodeCollection(ctx context.Context, userID model.UserID, subjectID model.SubjectID, episodeIDs []model.EpisodeID, collection model.EpisodeCollection, at time.Time) (model.UserSubjectEpisodesCollection, error)

UpdateEpisodeCollection provides a mock function with given fields: ctx, userID, subjectID, episodeIDs, collection, at

func (*CollectionRepo) UpdateSubjectCollection added in v0.23.8

func (_m *CollectionRepo) UpdateSubjectCollection(ctx context.Context, userID model.UserID, subjectID model.SubjectID, data domain.SubjectCollectionUpdate, at time.Time) error

UpdateSubjectCollection provides a mock function with given fields: ctx, userID, subjectID, data, at

func (*CollectionRepo) WithQuery added in v0.23.8

func (_m *CollectionRepo) WithQuery(_a0 *query.Query) domain.CollectionRepo

WithQuery provides a mock function with given fields: _a0

type CollectionRepo_CountSubjectCollections_Call added in v0.20.9

type CollectionRepo_CountSubjectCollections_Call struct {
	*mock.Call
}

CollectionRepo_CountSubjectCollections_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountSubjectCollections'

func (*CollectionRepo_CountSubjectCollections_Call) Return added in v0.20.9

func (*CollectionRepo_CountSubjectCollections_Call) Run added in v0.20.9

type CollectionRepo_Expecter added in v0.20.9

type CollectionRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*CollectionRepo_Expecter) CountSubjectCollections added in v0.20.9

func (_e *CollectionRepo_Expecter) CountSubjectCollections(ctx interface{}, userID interface{}, subjectType interface{}, collectionType interface{}, showPrivate interface{}) *CollectionRepo_CountSubjectCollections_Call

CountSubjectCollections is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • subjectType uint8
  • collectionType model.SubjectCollection
  • showPrivate bool

func (*CollectionRepo_Expecter) GetSubjectCollection added in v0.20.9

func (_e *CollectionRepo_Expecter) GetSubjectCollection(ctx interface{}, userID interface{}, subjectID interface{}) *CollectionRepo_GetSubjectCollection_Call

GetSubjectCollection is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • subjectID model.SubjectID

func (*CollectionRepo_Expecter) GetSubjectEpisodesCollection added in v0.23.0

func (_e *CollectionRepo_Expecter) GetSubjectEpisodesCollection(ctx interface{}, userID interface{}, subjectID interface{}) *CollectionRepo_GetSubjectEpisodesCollection_Call

GetSubjectEpisodesCollection is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • subjectID model.SubjectID

func (*CollectionRepo_Expecter) ListSubjectCollection added in v0.20.9

func (_e *CollectionRepo_Expecter) ListSubjectCollection(ctx interface{}, userID interface{}, subjectType interface{}, collectionType interface{}, showPrivate interface{}, limit interface{}, offset interface{}) *CollectionRepo_ListSubjectCollection_Call

ListSubjectCollection is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • subjectType uint8
  • collectionType model.SubjectCollection
  • showPrivate bool
  • limit int
  • offset int

func (*CollectionRepo_Expecter) UpdateEpisodeCollection added in v0.23.8

func (_e *CollectionRepo_Expecter) UpdateEpisodeCollection(ctx interface{}, userID interface{}, subjectID interface{}, episodeIDs interface{}, collection interface{}, at interface{}) *CollectionRepo_UpdateEpisodeCollection_Call

UpdateEpisodeCollection is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • subjectID model.SubjectID
  • episodeIDs []model.EpisodeID
  • collection model.EpisodeCollection
  • at time.Time

func (*CollectionRepo_Expecter) UpdateSubjectCollection added in v0.23.8

func (_e *CollectionRepo_Expecter) UpdateSubjectCollection(ctx interface{}, userID interface{}, subjectID interface{}, data interface{}, at interface{}) *CollectionRepo_UpdateSubjectCollection_Call

UpdateSubjectCollection is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • subjectID model.SubjectID
  • data domain.SubjectCollectionUpdate
  • at time.Time

func (*CollectionRepo_Expecter) WithQuery added in v0.23.8

func (_e *CollectionRepo_Expecter) WithQuery(_a0 interface{}) *CollectionRepo_WithQuery_Call

WithQuery is a helper method to define mock.On call

  • _a0 *query.Query

type CollectionRepo_GetSubjectCollection_Call added in v0.20.9

type CollectionRepo_GetSubjectCollection_Call struct {
	*mock.Call
}

CollectionRepo_GetSubjectCollection_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectCollection'

func (*CollectionRepo_GetSubjectCollection_Call) Return added in v0.20.9

func (*CollectionRepo_GetSubjectCollection_Call) Run added in v0.20.9

type CollectionRepo_GetSubjectEpisodesCollection_Call added in v0.23.0

type CollectionRepo_GetSubjectEpisodesCollection_Call struct {
	*mock.Call
}

CollectionRepo_GetSubjectEpisodesCollection_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectEpisodesCollection'

func (*CollectionRepo_GetSubjectEpisodesCollection_Call) Return added in v0.23.0

func (*CollectionRepo_GetSubjectEpisodesCollection_Call) Run added in v0.23.0

type CollectionRepo_ListSubjectCollection_Call added in v0.20.9

type CollectionRepo_ListSubjectCollection_Call struct {
	*mock.Call
}

CollectionRepo_ListSubjectCollection_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListSubjectCollection'

func (*CollectionRepo_ListSubjectCollection_Call) Return added in v0.20.9

func (*CollectionRepo_ListSubjectCollection_Call) Run added in v0.20.9

func (_c *CollectionRepo_ListSubjectCollection_Call) Run(run func(ctx context.Context, userID model.UserID, subjectType uint8, collectionType model.SubjectCollection, showPrivate bool, limit int, offset int)) *CollectionRepo_ListSubjectCollection_Call

type CollectionRepo_UpdateEpisodeCollection_Call added in v0.23.8

type CollectionRepo_UpdateEpisodeCollection_Call struct {
	*mock.Call
}

CollectionRepo_UpdateEpisodeCollection_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UpdateEpisodeCollection'

func (*CollectionRepo_UpdateEpisodeCollection_Call) Return added in v0.23.8

func (*CollectionRepo_UpdateEpisodeCollection_Call) Run added in v0.23.8

type CollectionRepo_UpdateSubjectCollection_Call added in v0.23.8

type CollectionRepo_UpdateSubjectCollection_Call struct {
	*mock.Call
}

CollectionRepo_UpdateSubjectCollection_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UpdateSubjectCollection'

func (*CollectionRepo_UpdateSubjectCollection_Call) Return added in v0.23.8

func (*CollectionRepo_UpdateSubjectCollection_Call) Run added in v0.23.8

type CollectionRepo_WithQuery_Call added in v0.23.8

type CollectionRepo_WithQuery_Call struct {
	*mock.Call
}

CollectionRepo_WithQuery_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WithQuery'

func (*CollectionRepo_WithQuery_Call) Return added in v0.23.8

func (*CollectionRepo_WithQuery_Call) Run added in v0.23.8

type EpisodeRepo

type EpisodeRepo struct {
	mock.Mock
}

EpisodeRepo is an autogenerated mock type for the EpisodeRepo type

func NewEpisodeRepo

func NewEpisodeRepo(t mockConstructorTestingTNewEpisodeRepo) *EpisodeRepo

NewEpisodeRepo creates a new instance of EpisodeRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*EpisodeRepo) Count

func (_m *EpisodeRepo) Count(ctx context.Context, subjectID model.SubjectID, filter domain.EpisodeFilter) (int64, error)

Count provides a mock function with given fields: ctx, subjectID, filter

func (*EpisodeRepo) EXPECT

func (_m *EpisodeRepo) EXPECT() *EpisodeRepo_Expecter

func (*EpisodeRepo) Get

func (_m *EpisodeRepo) Get(ctx context.Context, episodeID model.EpisodeID) (model.Episode, error)

Get provides a mock function with given fields: ctx, episodeID

func (*EpisodeRepo) List

func (_m *EpisodeRepo) List(ctx context.Context, subjectID model.SubjectID, filter domain.EpisodeFilter, limit int, offset int) ([]model.Episode, error)

List provides a mock function with given fields: ctx, subjectID, filter, limit, offset

func (*EpisodeRepo) WithQuery added in v0.23.8

func (_m *EpisodeRepo) WithQuery(_a0 *query.Query) domain.EpisodeRepo

WithQuery provides a mock function with given fields: _a0

type EpisodeRepo_Count_Call

type EpisodeRepo_Count_Call struct {
	*mock.Call
}

EpisodeRepo_Count_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Count'

func (*EpisodeRepo_Count_Call) Return

func (*EpisodeRepo_Count_Call) Run

type EpisodeRepo_Expecter

type EpisodeRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*EpisodeRepo_Expecter) Count

func (_e *EpisodeRepo_Expecter) Count(ctx interface{}, subjectID interface{}, filter interface{}) *EpisodeRepo_Count_Call

Count is a helper method to define mock.On call

  • ctx context.Context
  • subjectID model.SubjectID
  • filter domain.EpisodeFilter

func (*EpisodeRepo_Expecter) Get

func (_e *EpisodeRepo_Expecter) Get(ctx interface{}, episodeID interface{}) *EpisodeRepo_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • episodeID model.EpisodeID

func (*EpisodeRepo_Expecter) List

func (_e *EpisodeRepo_Expecter) List(ctx interface{}, subjectID interface{}, filter interface{}, limit interface{}, offset interface{}) *EpisodeRepo_List_Call

List is a helper method to define mock.On call

  • ctx context.Context
  • subjectID model.SubjectID
  • filter domain.EpisodeFilter
  • limit int
  • offset int

func (*EpisodeRepo_Expecter) WithQuery added in v0.23.8

func (_e *EpisodeRepo_Expecter) WithQuery(_a0 interface{}) *EpisodeRepo_WithQuery_Call

WithQuery is a helper method to define mock.On call

  • _a0 *query.Query

type EpisodeRepo_Get_Call

type EpisodeRepo_Get_Call struct {
	*mock.Call
}

EpisodeRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*EpisodeRepo_Get_Call) Return

func (*EpisodeRepo_Get_Call) Run

func (_c *EpisodeRepo_Get_Call) Run(run func(ctx context.Context, episodeID model.EpisodeID)) *EpisodeRepo_Get_Call

type EpisodeRepo_List_Call

type EpisodeRepo_List_Call struct {
	*mock.Call
}

EpisodeRepo_List_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'List'

func (*EpisodeRepo_List_Call) Return

func (*EpisodeRepo_List_Call) Run

func (_c *EpisodeRepo_List_Call) Run(run func(ctx context.Context, subjectID model.SubjectID, filter domain.EpisodeFilter, limit int, offset int)) *EpisodeRepo_List_Call

type EpisodeRepo_WithQuery_Call added in v0.23.8

type EpisodeRepo_WithQuery_Call struct {
	*mock.Call
}

EpisodeRepo_WithQuery_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WithQuery'

func (*EpisodeRepo_WithQuery_Call) Return added in v0.23.8

func (*EpisodeRepo_WithQuery_Call) Run added in v0.23.8

type GroupRepo added in v0.20.9

type GroupRepo struct {
	mock.Mock
}

GroupRepo is an autogenerated mock type for the GroupRepo type

func NewGroupRepo added in v0.20.9

func NewGroupRepo(t mockConstructorTestingTNewGroupRepo) *GroupRepo

NewGroupRepo creates a new instance of GroupRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*GroupRepo) CountMembersByID added in v0.20.9

func (_m *GroupRepo) CountMembersByID(ctx context.Context, id model.GroupID, memberType domain.GroupMemberType) (int64, error)

CountMembersByID provides a mock function with given fields: ctx, id, memberType

func (*GroupRepo) EXPECT added in v0.20.9

func (_m *GroupRepo) EXPECT() *GroupRepo_Expecter

func (*GroupRepo) GetByID added in v0.24.1

func (_m *GroupRepo) GetByID(ctx context.Context, id model.GroupID) (model.Group, error)

GetByID provides a mock function with given fields: ctx, id

func (*GroupRepo) GetByName added in v0.20.9

func (_m *GroupRepo) GetByName(ctx context.Context, name string) (model.Group, error)

GetByName provides a mock function with given fields: ctx, name

func (*GroupRepo) ListMembersByID added in v0.20.9

func (_m *GroupRepo) ListMembersByID(ctx context.Context, id model.GroupID, memberType domain.GroupMemberType, limit int, offset int) ([]model.GroupMember, error)

ListMembersByID provides a mock function with given fields: ctx, id, memberType, limit, offset

type GroupRepo_CountMembersByID_Call added in v0.20.9

type GroupRepo_CountMembersByID_Call struct {
	*mock.Call
}

GroupRepo_CountMembersByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountMembersByID'

func (*GroupRepo_CountMembersByID_Call) Return added in v0.20.9

func (*GroupRepo_CountMembersByID_Call) Run added in v0.20.9

type GroupRepo_Expecter added in v0.20.9

type GroupRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*GroupRepo_Expecter) CountMembersByID added in v0.20.9

func (_e *GroupRepo_Expecter) CountMembersByID(ctx interface{}, id interface{}, memberType interface{}) *GroupRepo_CountMembersByID_Call

CountMembersByID is a helper method to define mock.On call

  • ctx context.Context
  • id model.GroupID
  • memberType domain.GroupMemberType

func (*GroupRepo_Expecter) GetByID added in v0.24.1

func (_e *GroupRepo_Expecter) GetByID(ctx interface{}, id interface{}) *GroupRepo_GetByID_Call

GetByID is a helper method to define mock.On call

  • ctx context.Context
  • id model.GroupID

func (*GroupRepo_Expecter) GetByName added in v0.20.9

func (_e *GroupRepo_Expecter) GetByName(ctx interface{}, name interface{}) *GroupRepo_GetByName_Call

GetByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*GroupRepo_Expecter) ListMembersByID added in v0.20.9

func (_e *GroupRepo_Expecter) ListMembersByID(ctx interface{}, id interface{}, memberType interface{}, limit interface{}, offset interface{}) *GroupRepo_ListMembersByID_Call

ListMembersByID is a helper method to define mock.On call

  • ctx context.Context
  • id model.GroupID
  • memberType domain.GroupMemberType
  • limit int
  • offset int

type GroupRepo_GetByID_Call added in v0.24.1

type GroupRepo_GetByID_Call struct {
	*mock.Call
}

GroupRepo_GetByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByID'

func (*GroupRepo_GetByID_Call) Return added in v0.24.1

func (*GroupRepo_GetByID_Call) Run added in v0.24.1

type GroupRepo_GetByName_Call added in v0.20.9

type GroupRepo_GetByName_Call struct {
	*mock.Call
}

GroupRepo_GetByName_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByName'

func (*GroupRepo_GetByName_Call) Return added in v0.20.9

func (*GroupRepo_GetByName_Call) Run added in v0.20.9

type GroupRepo_ListMembersByID_Call added in v0.20.9

type GroupRepo_ListMembersByID_Call struct {
	*mock.Call
}

GroupRepo_ListMembersByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListMembersByID'

func (*GroupRepo_ListMembersByID_Call) Return added in v0.20.9

func (*GroupRepo_ListMembersByID_Call) Run added in v0.20.9

type IndexRepo

type IndexRepo struct {
	mock.Mock
}

IndexRepo is an autogenerated mock type for the IndexRepo type

func NewIndexRepo

func NewIndexRepo(t mockConstructorTestingTNewIndexRepo) *IndexRepo

NewIndexRepo creates a new instance of IndexRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*IndexRepo) AddOrUpdateIndexSubject added in v0.28.0

func (_m *IndexRepo) AddOrUpdateIndexSubject(ctx context.Context, id uint32, subjectID model.SubjectID, sort uint32, comment string) (*domain.IndexSubject, error)

AddOrUpdateIndexSubject provides a mock function with given fields: ctx, id, subjectID, sort, comment

func (*IndexRepo) CountSubjects

func (_m *IndexRepo) CountSubjects(ctx context.Context, id uint32, subjectType uint8) (int64, error)

CountSubjects provides a mock function with given fields: ctx, id, subjectType

func (*IndexRepo) Delete added in v0.28.0

func (_m *IndexRepo) Delete(ctx context.Context, id uint32) error

Delete provides a mock function with given fields: ctx, id

func (*IndexRepo) DeleteIndexSubject added in v0.28.0

func (_m *IndexRepo) DeleteIndexSubject(ctx context.Context, id uint32, subjectID model.SubjectID) error

DeleteIndexSubject provides a mock function with given fields: ctx, id, subjectID

func (*IndexRepo) EXPECT

func (_m *IndexRepo) EXPECT() *IndexRepo_Expecter

func (*IndexRepo) Get

func (_m *IndexRepo) Get(ctx context.Context, id uint32) (model.Index, error)

Get provides a mock function with given fields: ctx, id

func (*IndexRepo) ListSubjects

func (_m *IndexRepo) ListSubjects(ctx context.Context, id uint32, subjectType uint8, limit int, offset int) ([]domain.IndexSubject, error)

ListSubjects provides a mock function with given fields: ctx, id, subjectType, limit, offset

func (*IndexRepo) New added in v0.28.0

func (_m *IndexRepo) New(ctx context.Context, i *model.Index) error

New provides a mock function with given fields: ctx, i

func (*IndexRepo) Update added in v0.28.0

func (_m *IndexRepo) Update(ctx context.Context, id uint32, title string, desc string) error

Update provides a mock function with given fields: ctx, id, title, desc

type IndexRepo_AddOrUpdateIndexSubject_Call added in v0.28.0

type IndexRepo_AddOrUpdateIndexSubject_Call struct {
	*mock.Call
}

IndexRepo_AddOrUpdateIndexSubject_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AddOrUpdateIndexSubject'

func (*IndexRepo_AddOrUpdateIndexSubject_Call) Return added in v0.28.0

func (*IndexRepo_AddOrUpdateIndexSubject_Call) Run added in v0.28.0

type IndexRepo_CountSubjects_Call

type IndexRepo_CountSubjects_Call struct {
	*mock.Call
}

IndexRepo_CountSubjects_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountSubjects'

func (*IndexRepo_CountSubjects_Call) Return

func (*IndexRepo_CountSubjects_Call) Run

func (_c *IndexRepo_CountSubjects_Call) Run(run func(ctx context.Context, id uint32, subjectType uint8)) *IndexRepo_CountSubjects_Call

type IndexRepo_DeleteIndexSubject_Call added in v0.28.0

type IndexRepo_DeleteIndexSubject_Call struct {
	*mock.Call
}

IndexRepo_DeleteIndexSubject_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteIndexSubject'

func (*IndexRepo_DeleteIndexSubject_Call) Return added in v0.28.0

func (*IndexRepo_DeleteIndexSubject_Call) Run added in v0.28.0

type IndexRepo_Delete_Call added in v0.28.0

type IndexRepo_Delete_Call struct {
	*mock.Call
}

IndexRepo_Delete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Delete'

func (*IndexRepo_Delete_Call) Return added in v0.28.0

func (*IndexRepo_Delete_Call) Run added in v0.28.0

type IndexRepo_Expecter

type IndexRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*IndexRepo_Expecter) AddOrUpdateIndexSubject added in v0.28.0

func (_e *IndexRepo_Expecter) AddOrUpdateIndexSubject(ctx interface{}, id interface{}, subjectID interface{}, sort interface{}, comment interface{}) *IndexRepo_AddOrUpdateIndexSubject_Call

AddOrUpdateIndexSubject is a helper method to define mock.On call

  • ctx context.Context
  • id uint32
  • subjectID model.SubjectID
  • sort uint32
  • comment string

func (*IndexRepo_Expecter) CountSubjects

func (_e *IndexRepo_Expecter) CountSubjects(ctx interface{}, id interface{}, subjectType interface{}) *IndexRepo_CountSubjects_Call

CountSubjects is a helper method to define mock.On call

  • ctx context.Context
  • id uint32
  • subjectType uint8

func (*IndexRepo_Expecter) Delete added in v0.28.0

func (_e *IndexRepo_Expecter) Delete(ctx interface{}, id interface{}) *IndexRepo_Delete_Call

Delete is a helper method to define mock.On call

  • ctx context.Context
  • id uint32

func (*IndexRepo_Expecter) DeleteIndexSubject added in v0.28.0

func (_e *IndexRepo_Expecter) DeleteIndexSubject(ctx interface{}, id interface{}, subjectID interface{}) *IndexRepo_DeleteIndexSubject_Call

DeleteIndexSubject is a helper method to define mock.On call

  • ctx context.Context
  • id uint32
  • subjectID model.SubjectID

func (*IndexRepo_Expecter) Get

func (_e *IndexRepo_Expecter) Get(ctx interface{}, id interface{}) *IndexRepo_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • id uint32

func (*IndexRepo_Expecter) ListSubjects

func (_e *IndexRepo_Expecter) ListSubjects(ctx interface{}, id interface{}, subjectType interface{}, limit interface{}, offset interface{}) *IndexRepo_ListSubjects_Call

ListSubjects is a helper method to define mock.On call

  • ctx context.Context
  • id uint32
  • subjectType uint8
  • limit int
  • offset int

func (*IndexRepo_Expecter) New added in v0.28.0

func (_e *IndexRepo_Expecter) New(ctx interface{}, i interface{}) *IndexRepo_New_Call

New is a helper method to define mock.On call

  • ctx context.Context
  • i *model.Index

func (*IndexRepo_Expecter) Update added in v0.28.0

func (_e *IndexRepo_Expecter) Update(ctx interface{}, id interface{}, title interface{}, desc interface{}) *IndexRepo_Update_Call

Update is a helper method to define mock.On call

  • ctx context.Context
  • id uint32
  • title string
  • desc string

type IndexRepo_Get_Call

type IndexRepo_Get_Call struct {
	*mock.Call
}

IndexRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*IndexRepo_Get_Call) Return

func (_c *IndexRepo_Get_Call) Return(_a0 model.Index, _a1 error) *IndexRepo_Get_Call

func (*IndexRepo_Get_Call) Run

func (_c *IndexRepo_Get_Call) Run(run func(ctx context.Context, id uint32)) *IndexRepo_Get_Call

type IndexRepo_ListSubjects_Call

type IndexRepo_ListSubjects_Call struct {
	*mock.Call
}

IndexRepo_ListSubjects_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListSubjects'

func (*IndexRepo_ListSubjects_Call) Return

func (*IndexRepo_ListSubjects_Call) Run

func (_c *IndexRepo_ListSubjects_Call) Run(run func(ctx context.Context, id uint32, subjectType uint8, limit int, offset int)) *IndexRepo_ListSubjects_Call

type IndexRepo_New_Call added in v0.28.0

type IndexRepo_New_Call struct {
	*mock.Call
}

IndexRepo_New_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'New'

func (*IndexRepo_New_Call) Return added in v0.28.0

func (_c *IndexRepo_New_Call) Return(_a0 error) *IndexRepo_New_Call

func (*IndexRepo_New_Call) Run added in v0.28.0

func (_c *IndexRepo_New_Call) Run(run func(ctx context.Context, i *model.Index)) *IndexRepo_New_Call

type IndexRepo_Update_Call added in v0.28.0

type IndexRepo_Update_Call struct {
	*mock.Call
}

IndexRepo_Update_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Update'

func (*IndexRepo_Update_Call) Return added in v0.28.0

func (*IndexRepo_Update_Call) Run added in v0.28.0

func (_c *IndexRepo_Update_Call) Run(run func(ctx context.Context, id uint32, title string, desc string)) *IndexRepo_Update_Call

type NotificationRepo added in v0.29.0

type NotificationRepo struct {
	mock.Mock
}

NotificationRepo is an autogenerated mock type for the NotificationRepo type

func NewNotificationRepo added in v0.29.0

func NewNotificationRepo(t mockConstructorTestingTNewNotificationRepo) *NotificationRepo

NewNotificationRepo creates a new instance of NotificationRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*NotificationRepo) Count added in v0.29.0

func (_m *NotificationRepo) Count(ctx context.Context, userID model.UserID) (int64, error)

Count provides a mock function with given fields: ctx, userID

func (*NotificationRepo) EXPECT added in v0.29.0

type NotificationRepo_Count_Call added in v0.29.0

type NotificationRepo_Count_Call struct {
	*mock.Call
}

NotificationRepo_Count_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Count'

func (*NotificationRepo_Count_Call) Return added in v0.29.0

func (*NotificationRepo_Count_Call) Run added in v0.29.0

type NotificationRepo_Expecter added in v0.29.0

type NotificationRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*NotificationRepo_Expecter) Count added in v0.29.0

func (_e *NotificationRepo_Expecter) Count(ctx interface{}, userID interface{}) *NotificationRepo_Count_Call

Count is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

type OAuthManger added in v0.19.0

type OAuthManger struct {
	mock.Mock
}

OAuthManger is an autogenerated mock type for the Manager type

func NewOAuthManger added in v0.19.0

func NewOAuthManger(t mockConstructorTestingTNewOAuthManger) *OAuthManger

NewOAuthManger creates a new instance of OAuthManger. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*OAuthManger) EXPECT added in v0.19.0

func (_m *OAuthManger) EXPECT() *OAuthManger_Expecter

func (*OAuthManger) GetClientByID added in v0.19.0

func (_m *OAuthManger) GetClientByID(ctx context.Context, clientIDs ...string) (map[string]oauth.Client, error)

GetClientByID provides a mock function with given fields: ctx, clientIDs

type OAuthManger_Expecter added in v0.19.0

type OAuthManger_Expecter struct {
	// contains filtered or unexported fields
}

func (*OAuthManger_Expecter) GetClientByID added in v0.19.0

func (_e *OAuthManger_Expecter) GetClientByID(ctx interface{}, clientIDs ...interface{}) *OAuthManger_GetClientByID_Call

GetClientByID is a helper method to define mock.On call

  • ctx context.Context
  • clientIDs ...string

type OAuthManger_GetClientByID_Call added in v0.19.0

type OAuthManger_GetClientByID_Call struct {
	*mock.Call
}

OAuthManger_GetClientByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetClientByID'

func (*OAuthManger_GetClientByID_Call) Return added in v0.19.0

func (*OAuthManger_GetClientByID_Call) Run added in v0.19.0

type PersonRepo

type PersonRepo struct {
	mock.Mock
}

PersonRepo is an autogenerated mock type for the PersonRepo type

func NewPersonRepo

func NewPersonRepo(t mockConstructorTestingTNewPersonRepo) *PersonRepo

NewPersonRepo creates a new instance of PersonRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*PersonRepo) EXPECT

func (_m *PersonRepo) EXPECT() *PersonRepo_Expecter

func (*PersonRepo) Get

func (_m *PersonRepo) Get(ctx context.Context, id model.PersonID) (model.Person, error)

Get provides a mock function with given fields: ctx, id

func (*PersonRepo) GetByIDs

func (_m *PersonRepo) GetByIDs(ctx context.Context, ids []model.PersonID) (map[model.PersonID]model.Person, error)

GetByIDs provides a mock function with given fields: ctx, ids

func (*PersonRepo) GetCharacterRelated

func (_m *PersonRepo) GetCharacterRelated(ctx context.Context, subjectID model.CharacterID) ([]domain.PersonCharacterRelation, error)

GetCharacterRelated provides a mock function with given fields: ctx, subjectID

func (*PersonRepo) GetSubjectRelated

func (_m *PersonRepo) GetSubjectRelated(ctx context.Context, subjectID model.SubjectID) ([]domain.SubjectPersonRelation, error)

GetSubjectRelated provides a mock function with given fields: ctx, subjectID

type PersonRepo_Expecter

type PersonRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*PersonRepo_Expecter) Get

func (_e *PersonRepo_Expecter) Get(ctx interface{}, id interface{}) *PersonRepo_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • id model.PersonID

func (*PersonRepo_Expecter) GetByIDs

func (_e *PersonRepo_Expecter) GetByIDs(ctx interface{}, ids interface{}) *PersonRepo_GetByIDs_Call

GetByIDs is a helper method to define mock.On call

  • ctx context.Context
  • ids []model.PersonID

func (*PersonRepo_Expecter) GetCharacterRelated

func (_e *PersonRepo_Expecter) GetCharacterRelated(ctx interface{}, subjectID interface{}) *PersonRepo_GetCharacterRelated_Call

GetCharacterRelated is a helper method to define mock.On call

  • ctx context.Context
  • subjectID model.CharacterID

func (*PersonRepo_Expecter) GetSubjectRelated

func (_e *PersonRepo_Expecter) GetSubjectRelated(ctx interface{}, subjectID interface{}) *PersonRepo_GetSubjectRelated_Call

GetSubjectRelated is a helper method to define mock.On call

  • ctx context.Context
  • subjectID model.SubjectID

type PersonRepo_GetByIDs_Call

type PersonRepo_GetByIDs_Call struct {
	*mock.Call
}

PersonRepo_GetByIDs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByIDs'

func (*PersonRepo_GetByIDs_Call) Return

func (*PersonRepo_GetByIDs_Call) Run

type PersonRepo_GetCharacterRelated_Call

type PersonRepo_GetCharacterRelated_Call struct {
	*mock.Call
}

PersonRepo_GetCharacterRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCharacterRelated'

func (*PersonRepo_GetCharacterRelated_Call) Return

func (*PersonRepo_GetCharacterRelated_Call) Run

type PersonRepo_GetSubjectRelated_Call

type PersonRepo_GetSubjectRelated_Call struct {
	*mock.Call
}

PersonRepo_GetSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectRelated'

func (*PersonRepo_GetSubjectRelated_Call) Return

func (*PersonRepo_GetSubjectRelated_Call) Run

type PersonRepo_Get_Call

type PersonRepo_Get_Call struct {
	*mock.Call
}

PersonRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*PersonRepo_Get_Call) Return

func (*PersonRepo_Get_Call) Run

type PersonService

type PersonService struct {
	mock.Mock
}

PersonService is an autogenerated mock type for the PersonService type

func NewPersonService

func NewPersonService(t mockConstructorTestingTNewPersonService) *PersonService

NewPersonService creates a new instance of PersonService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*PersonService) EXPECT

func (_m *PersonService) EXPECT() *PersonService_Expecter

func (*PersonService) Get

Get provides a mock function with given fields: ctx, id

func (*PersonService) GetCharacterRelated

func (_m *PersonService) GetCharacterRelated(ctx context.Context, characterID model.CharacterID) ([]model.PersonCharacterRelation, error)

GetCharacterRelated provides a mock function with given fields: ctx, characterID

func (*PersonService) GetSubjectRelated

func (_m *PersonService) GetSubjectRelated(ctx context.Context, subjectID model.SubjectID) ([]model.SubjectPersonRelation, error)

GetSubjectRelated provides a mock function with given fields: ctx, subjectID

type PersonService_Expecter

type PersonService_Expecter struct {
	// contains filtered or unexported fields
}

func (*PersonService_Expecter) Get

func (_e *PersonService_Expecter) Get(ctx interface{}, id interface{}) *PersonService_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • id model.PersonID

func (*PersonService_Expecter) GetCharacterRelated

func (_e *PersonService_Expecter) GetCharacterRelated(ctx interface{}, characterID interface{}) *PersonService_GetCharacterRelated_Call

GetCharacterRelated is a helper method to define mock.On call

  • ctx context.Context
  • characterID model.CharacterID

func (*PersonService_Expecter) GetSubjectRelated

func (_e *PersonService_Expecter) GetSubjectRelated(ctx interface{}, subjectID interface{}) *PersonService_GetSubjectRelated_Call

GetSubjectRelated is a helper method to define mock.On call

  • ctx context.Context
  • subjectID model.SubjectID

type PersonService_GetCharacterRelated_Call

type PersonService_GetCharacterRelated_Call struct {
	*mock.Call
}

PersonService_GetCharacterRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCharacterRelated'

func (*PersonService_GetCharacterRelated_Call) Return

func (*PersonService_GetCharacterRelated_Call) Run

type PersonService_GetSubjectRelated_Call

type PersonService_GetSubjectRelated_Call struct {
	*mock.Call
}

PersonService_GetSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectRelated'

func (*PersonService_GetSubjectRelated_Call) Return

func (*PersonService_GetSubjectRelated_Call) Run

type PersonService_Get_Call

type PersonService_Get_Call struct {
	*mock.Call
}

PersonService_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*PersonService_Get_Call) Return

func (*PersonService_Get_Call) Run

type PrivateMessageRepo added in v0.29.0

type PrivateMessageRepo struct {
	mock.Mock
}

PrivateMessageRepo is an autogenerated mock type for the PrivateMessageRepo type

func NewPrivateMessageRepo added in v0.29.0

func NewPrivateMessageRepo(t mockConstructorTestingTNewPrivateMessageRepo) *PrivateMessageRepo

NewPrivateMessageRepo creates a new instance of PrivateMessageRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*PrivateMessageRepo) CountByFolder added in v0.29.0

func (_m *PrivateMessageRepo) CountByFolder(ctx context.Context, userID model.UserID, folder model.PrivateMessageFolderType) (int64, error)

CountByFolder provides a mock function with given fields: ctx, userID, folder

func (*PrivateMessageRepo) CountTypes added in v0.29.0

CountTypes provides a mock function with given fields: ctx, userID

func (*PrivateMessageRepo) Create added in v0.29.0

func (_m *PrivateMessageRepo) Create(ctx context.Context, senderID model.UserID, receiverIDs []model.UserID, relatedIDFilter domain.PrivateMessageIDFilter, title string, content string) ([]model.PrivateMessage, error)

Create provides a mock function with given fields: ctx, senderID, receiverIDs, relatedIDFilter, title, content

func (*PrivateMessageRepo) Delete added in v0.29.0

func (_m *PrivateMessageRepo) Delete(ctx context.Context, userID model.UserID, ids []model.PrivateMessageID) error

Delete provides a mock function with given fields: ctx, userID, ids

func (*PrivateMessageRepo) EXPECT added in v0.29.0

func (*PrivateMessageRepo) List added in v0.29.0

List provides a mock function with given fields: ctx, userID, folder, offset, limit

func (*PrivateMessageRepo) ListRecentContact added in v0.29.0

func (_m *PrivateMessageRepo) ListRecentContact(ctx context.Context, userID model.UserID) ([]model.UserID, error)

ListRecentContact provides a mock function with given fields: ctx, userID

func (*PrivateMessageRepo) ListRelated added in v0.29.0

ListRelated provides a mock function with given fields: ctx, userID, id

func (*PrivateMessageRepo) MarkRead added in v0.29.0

func (_m *PrivateMessageRepo) MarkRead(ctx context.Context, userID model.UserID, relatedID model.PrivateMessageID) error

MarkRead provides a mock function with given fields: ctx, userID, relatedID

type PrivateMessageRepo_CountByFolder_Call added in v0.29.0

type PrivateMessageRepo_CountByFolder_Call struct {
	*mock.Call
}

PrivateMessageRepo_CountByFolder_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountByFolder'

func (*PrivateMessageRepo_CountByFolder_Call) Return added in v0.29.0

func (*PrivateMessageRepo_CountByFolder_Call) Run added in v0.29.0

type PrivateMessageRepo_CountTypes_Call added in v0.29.0

type PrivateMessageRepo_CountTypes_Call struct {
	*mock.Call
}

PrivateMessageRepo_CountTypes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountTypes'

func (*PrivateMessageRepo_CountTypes_Call) Return added in v0.29.0

func (*PrivateMessageRepo_CountTypes_Call) Run added in v0.29.0

type PrivateMessageRepo_Create_Call added in v0.29.0

type PrivateMessageRepo_Create_Call struct {
	*mock.Call
}

PrivateMessageRepo_Create_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Create'

func (*PrivateMessageRepo_Create_Call) Return added in v0.29.0

func (*PrivateMessageRepo_Create_Call) Run added in v0.29.0

func (_c *PrivateMessageRepo_Create_Call) Run(run func(ctx context.Context, senderID model.UserID, receiverIDs []model.UserID, relatedIDFilter domain.PrivateMessageIDFilter, title string, content string)) *PrivateMessageRepo_Create_Call

type PrivateMessageRepo_Delete_Call added in v0.29.0

type PrivateMessageRepo_Delete_Call struct {
	*mock.Call
}

PrivateMessageRepo_Delete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Delete'

func (*PrivateMessageRepo_Delete_Call) Return added in v0.29.0

func (*PrivateMessageRepo_Delete_Call) Run added in v0.29.0

type PrivateMessageRepo_Expecter added in v0.29.0

type PrivateMessageRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*PrivateMessageRepo_Expecter) CountByFolder added in v0.29.0

func (_e *PrivateMessageRepo_Expecter) CountByFolder(ctx interface{}, userID interface{}, folder interface{}) *PrivateMessageRepo_CountByFolder_Call

CountByFolder is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • folder model.PrivateMessageFolderType

func (*PrivateMessageRepo_Expecter) CountTypes added in v0.29.0

func (_e *PrivateMessageRepo_Expecter) CountTypes(ctx interface{}, userID interface{}) *PrivateMessageRepo_CountTypes_Call

CountTypes is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

func (*PrivateMessageRepo_Expecter) Create added in v0.29.0

func (_e *PrivateMessageRepo_Expecter) Create(ctx interface{}, senderID interface{}, receiverIDs interface{}, relatedIDFilter interface{}, title interface{}, content interface{}) *PrivateMessageRepo_Create_Call

Create is a helper method to define mock.On call

  • ctx context.Context
  • senderID model.UserID
  • receiverIDs []model.UserID
  • relatedIDFilter domain.PrivateMessageIDFilter
  • title string
  • content string

func (*PrivateMessageRepo_Expecter) Delete added in v0.29.0

func (_e *PrivateMessageRepo_Expecter) Delete(ctx interface{}, userID interface{}, ids interface{}) *PrivateMessageRepo_Delete_Call

Delete is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • ids []model.PrivateMessageID

func (*PrivateMessageRepo_Expecter) List added in v0.29.0

func (_e *PrivateMessageRepo_Expecter) List(ctx interface{}, userID interface{}, folder interface{}, offset interface{}, limit interface{}) *PrivateMessageRepo_List_Call

List is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • folder model.PrivateMessageFolderType
  • offset int
  • limit int

func (*PrivateMessageRepo_Expecter) ListRecentContact added in v0.29.0

func (_e *PrivateMessageRepo_Expecter) ListRecentContact(ctx interface{}, userID interface{}) *PrivateMessageRepo_ListRecentContact_Call

ListRecentContact is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

func (*PrivateMessageRepo_Expecter) ListRelated added in v0.29.0

func (_e *PrivateMessageRepo_Expecter) ListRelated(ctx interface{}, userID interface{}, id interface{}) *PrivateMessageRepo_ListRelated_Call

ListRelated is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • id model.PrivateMessageID

func (*PrivateMessageRepo_Expecter) MarkRead added in v0.29.0

func (_e *PrivateMessageRepo_Expecter) MarkRead(ctx interface{}, userID interface{}, relatedID interface{}) *PrivateMessageRepo_MarkRead_Call

MarkRead is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • relatedID model.PrivateMessageID

type PrivateMessageRepo_ListRecentContact_Call added in v0.29.0

type PrivateMessageRepo_ListRecentContact_Call struct {
	*mock.Call
}

PrivateMessageRepo_ListRecentContact_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListRecentContact'

func (*PrivateMessageRepo_ListRecentContact_Call) Return added in v0.29.0

func (*PrivateMessageRepo_ListRecentContact_Call) Run added in v0.29.0

type PrivateMessageRepo_ListRelated_Call added in v0.29.0

type PrivateMessageRepo_ListRelated_Call struct {
	*mock.Call
}

PrivateMessageRepo_ListRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListRelated'

func (*PrivateMessageRepo_ListRelated_Call) Return added in v0.29.0

func (*PrivateMessageRepo_ListRelated_Call) Run added in v0.29.0

type PrivateMessageRepo_List_Call added in v0.29.0

type PrivateMessageRepo_List_Call struct {
	*mock.Call
}

PrivateMessageRepo_List_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'List'

func (*PrivateMessageRepo_List_Call) Return added in v0.29.0

func (*PrivateMessageRepo_List_Call) Run added in v0.29.0

type PrivateMessageRepo_MarkRead_Call added in v0.29.0

type PrivateMessageRepo_MarkRead_Call struct {
	*mock.Call
}

PrivateMessageRepo_MarkRead_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MarkRead'

func (*PrivateMessageRepo_MarkRead_Call) Return added in v0.29.0

func (*PrivateMessageRepo_MarkRead_Call) Run added in v0.29.0

type RateLimiter

type RateLimiter struct {
	mock.Mock
}

RateLimiter is an autogenerated mock type for the Manager type

func NewRateLimiter

func NewRateLimiter(t mockConstructorTestingTNewRateLimiter) *RateLimiter

NewRateLimiter creates a new instance of RateLimiter. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*RateLimiter) AllowAction added in v0.23.7

func (_m *RateLimiter) AllowAction(ctx context.Context, u model.UserID, _a2 action.Action, limit rate.Limit) (bool, int, error)

AllowAction provides a mock function with given fields: ctx, u, _a2, limit

func (*RateLimiter) EXPECT

func (_m *RateLimiter) EXPECT() *RateLimiter_Expecter

func (*RateLimiter) Login added in v0.23.7

func (_m *RateLimiter) Login(ctx context.Context, ip string) (bool, int, error)

Login provides a mock function with given fields: ctx, ip

func (*RateLimiter) Reset

func (_m *RateLimiter) Reset(ctx context.Context, ip string) error

Reset provides a mock function with given fields: ctx, ip

type RateLimiter_AllowAction_Call added in v0.23.7

type RateLimiter_AllowAction_Call struct {
	*mock.Call
}

RateLimiter_AllowAction_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AllowAction'

func (*RateLimiter_AllowAction_Call) Return added in v0.23.7

func (_c *RateLimiter_AllowAction_Call) Return(allowed bool, remain int, err error) *RateLimiter_AllowAction_Call

func (*RateLimiter_AllowAction_Call) Run added in v0.23.7

type RateLimiter_Expecter

type RateLimiter_Expecter struct {
	// contains filtered or unexported fields
}

func (*RateLimiter_Expecter) AllowAction added in v0.23.7

func (_e *RateLimiter_Expecter) AllowAction(ctx interface{}, u interface{}, _a2 interface{}, limit interface{}) *RateLimiter_AllowAction_Call

AllowAction is a helper method to define mock.On call

  • ctx context.Context
  • u model.UserID
  • _a2 action.Action
  • limit rate.Limit

func (*RateLimiter_Expecter) Login added in v0.23.7

func (_e *RateLimiter_Expecter) Login(ctx interface{}, ip interface{}) *RateLimiter_Login_Call

Login is a helper method to define mock.On call

  • ctx context.Context
  • ip string

func (*RateLimiter_Expecter) Reset

func (_e *RateLimiter_Expecter) Reset(ctx interface{}, ip interface{}) *RateLimiter_Reset_Call

Reset is a helper method to define mock.On call

  • ctx context.Context
  • ip string

type RateLimiter_Login_Call added in v0.23.7

type RateLimiter_Login_Call struct {
	*mock.Call
}

RateLimiter_Login_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Login'

func (*RateLimiter_Login_Call) Return added in v0.23.7

func (_c *RateLimiter_Login_Call) Return(allowed bool, remain int, err error) *RateLimiter_Login_Call

func (*RateLimiter_Login_Call) Run added in v0.23.7

type RateLimiter_Reset_Call

type RateLimiter_Reset_Call struct {
	*mock.Call
}

RateLimiter_Reset_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Reset'

func (*RateLimiter_Reset_Call) Return

func (*RateLimiter_Reset_Call) Run

type RedisCache added in v0.27.4

type RedisCache struct {
	mock.Mock
}

RedisCache is an autogenerated mock type for the RedisCache type

func NewRedisCache added in v0.27.4

func NewRedisCache(t mockConstructorTestingTNewRedisCache) *RedisCache

NewRedisCache creates a new instance of RedisCache. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*RedisCache) Del added in v0.27.4

func (_m *RedisCache) Del(ctx context.Context, keys ...string) error

Del provides a mock function with given fields: ctx, keys

func (*RedisCache) EXPECT added in v0.27.4

func (_m *RedisCache) EXPECT() *RedisCache_Expecter

func (*RedisCache) Get added in v0.27.4

func (_m *RedisCache) Get(ctx context.Context, key string, value interface{}) (bool, error)

Get provides a mock function with given fields: ctx, key, value

func (*RedisCache) Set added in v0.27.4

func (_m *RedisCache) Set(ctx context.Context, key string, value interface{}, ttl time.Duration) error

Set provides a mock function with given fields: ctx, key, value, ttl

type RedisCache_Del_Call added in v0.27.4

type RedisCache_Del_Call struct {
	*mock.Call
}

RedisCache_Del_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Del'

func (*RedisCache_Del_Call) Return added in v0.27.4

func (*RedisCache_Del_Call) Run added in v0.27.4

func (_c *RedisCache_Del_Call) Run(run func(ctx context.Context, keys ...string)) *RedisCache_Del_Call

type RedisCache_Expecter added in v0.27.4

type RedisCache_Expecter struct {
	// contains filtered or unexported fields
}

func (*RedisCache_Expecter) Del added in v0.27.4

func (_e *RedisCache_Expecter) Del(ctx interface{}, keys ...interface{}) *RedisCache_Del_Call

Del is a helper method to define mock.On call

  • ctx context.Context
  • keys ...string

func (*RedisCache_Expecter) Get added in v0.27.4

func (_e *RedisCache_Expecter) Get(ctx interface{}, key interface{}, value interface{}) *RedisCache_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • key string
  • value interface{}

func (*RedisCache_Expecter) Set added in v0.27.4

func (_e *RedisCache_Expecter) Set(ctx interface{}, key interface{}, value interface{}, ttl interface{}) *RedisCache_Set_Call

Set is a helper method to define mock.On call

  • ctx context.Context
  • key string
  • value interface{}
  • ttl time.Duration

type RedisCache_Get_Call added in v0.27.4

type RedisCache_Get_Call struct {
	*mock.Call
}

RedisCache_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*RedisCache_Get_Call) Return added in v0.27.4

func (_c *RedisCache_Get_Call) Return(_a0 bool, _a1 error) *RedisCache_Get_Call

func (*RedisCache_Get_Call) Run added in v0.27.4

func (_c *RedisCache_Get_Call) Run(run func(ctx context.Context, key string, value interface{})) *RedisCache_Get_Call

type RedisCache_Set_Call added in v0.27.4

type RedisCache_Set_Call struct {
	*mock.Call
}

RedisCache_Set_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Set'

func (*RedisCache_Set_Call) Return added in v0.27.4

func (*RedisCache_Set_Call) Run added in v0.27.4

func (_c *RedisCache_Set_Call) Run(run func(ctx context.Context, key string, value interface{}, ttl time.Duration)) *RedisCache_Set_Call

type RevisionRepo

type RevisionRepo struct {
	mock.Mock
}

RevisionRepo is an autogenerated mock type for the RevisionRepo type

func NewRevisionRepo

func NewRevisionRepo(t mockConstructorTestingTNewRevisionRepo) *RevisionRepo

NewRevisionRepo creates a new instance of RevisionRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*RevisionRepo) CountCharacterRelated

func (_m *RevisionRepo) CountCharacterRelated(ctx context.Context, characterID model.CharacterID) (int64, error)

CountCharacterRelated provides a mock function with given fields: ctx, characterID

func (*RevisionRepo) CountPersonRelated

func (_m *RevisionRepo) CountPersonRelated(ctx context.Context, personID model.PersonID) (int64, error)

CountPersonRelated provides a mock function with given fields: ctx, personID

func (*RevisionRepo) CountSubjectRelated

func (_m *RevisionRepo) CountSubjectRelated(ctx context.Context, id model.SubjectID) (int64, error)

CountSubjectRelated provides a mock function with given fields: ctx, id

func (*RevisionRepo) EXPECT

func (_m *RevisionRepo) EXPECT() *RevisionRepo_Expecter

func (*RevisionRepo) GetCharacterRelated

func (_m *RevisionRepo) GetCharacterRelated(ctx context.Context, id uint32) (model.CharacterRevision, error)

GetCharacterRelated provides a mock function with given fields: ctx, id

func (*RevisionRepo) GetPersonRelated

func (_m *RevisionRepo) GetPersonRelated(ctx context.Context, id uint32) (model.PersonRevision, error)

GetPersonRelated provides a mock function with given fields: ctx, id

func (*RevisionRepo) GetSubjectRelated

func (_m *RevisionRepo) GetSubjectRelated(ctx context.Context, id uint32) (model.SubjectRevision, error)

GetSubjectRelated provides a mock function with given fields: ctx, id

func (*RevisionRepo) ListCharacterRelated

func (_m *RevisionRepo) ListCharacterRelated(ctx context.Context, characterID model.CharacterID, limit int, offset int) ([]model.CharacterRevision, error)

ListCharacterRelated provides a mock function with given fields: ctx, characterID, limit, offset

func (*RevisionRepo) ListPersonRelated

func (_m *RevisionRepo) ListPersonRelated(ctx context.Context, personID model.PersonID, limit int, offset int) ([]model.PersonRevision, error)

ListPersonRelated provides a mock function with given fields: ctx, personID, limit, offset

func (*RevisionRepo) ListSubjectRelated

func (_m *RevisionRepo) ListSubjectRelated(ctx context.Context, id model.SubjectID, limit int, offset int) ([]model.SubjectRevision, error)

ListSubjectRelated provides a mock function with given fields: ctx, id, limit, offset

type RevisionRepo_CountCharacterRelated_Call

type RevisionRepo_CountCharacterRelated_Call struct {
	*mock.Call
}

RevisionRepo_CountCharacterRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountCharacterRelated'

func (*RevisionRepo_CountCharacterRelated_Call) Return

func (*RevisionRepo_CountCharacterRelated_Call) Run

type RevisionRepo_CountPersonRelated_Call

type RevisionRepo_CountPersonRelated_Call struct {
	*mock.Call
}

RevisionRepo_CountPersonRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountPersonRelated'

func (*RevisionRepo_CountPersonRelated_Call) Return

func (*RevisionRepo_CountPersonRelated_Call) Run

type RevisionRepo_CountSubjectRelated_Call

type RevisionRepo_CountSubjectRelated_Call struct {
	*mock.Call
}

RevisionRepo_CountSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountSubjectRelated'

func (*RevisionRepo_CountSubjectRelated_Call) Return

func (*RevisionRepo_CountSubjectRelated_Call) Run

type RevisionRepo_Expecter

type RevisionRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*RevisionRepo_Expecter) CountCharacterRelated

func (_e *RevisionRepo_Expecter) CountCharacterRelated(ctx interface{}, characterID interface{}) *RevisionRepo_CountCharacterRelated_Call

CountCharacterRelated is a helper method to define mock.On call

  • ctx context.Context
  • characterID model.CharacterID

func (*RevisionRepo_Expecter) CountPersonRelated

func (_e *RevisionRepo_Expecter) CountPersonRelated(ctx interface{}, personID interface{}) *RevisionRepo_CountPersonRelated_Call

CountPersonRelated is a helper method to define mock.On call

  • ctx context.Context
  • personID model.PersonID

func (*RevisionRepo_Expecter) CountSubjectRelated

func (_e *RevisionRepo_Expecter) CountSubjectRelated(ctx interface{}, id interface{}) *RevisionRepo_CountSubjectRelated_Call

CountSubjectRelated is a helper method to define mock.On call

  • ctx context.Context
  • id model.SubjectID

func (*RevisionRepo_Expecter) GetCharacterRelated

func (_e *RevisionRepo_Expecter) GetCharacterRelated(ctx interface{}, id interface{}) *RevisionRepo_GetCharacterRelated_Call

GetCharacterRelated is a helper method to define mock.On call

  • ctx context.Context
  • id uint32

func (*RevisionRepo_Expecter) GetPersonRelated

func (_e *RevisionRepo_Expecter) GetPersonRelated(ctx interface{}, id interface{}) *RevisionRepo_GetPersonRelated_Call

GetPersonRelated is a helper method to define mock.On call

  • ctx context.Context
  • id uint32

func (*RevisionRepo_Expecter) GetSubjectRelated

func (_e *RevisionRepo_Expecter) GetSubjectRelated(ctx interface{}, id interface{}) *RevisionRepo_GetSubjectRelated_Call

GetSubjectRelated is a helper method to define mock.On call

  • ctx context.Context
  • id uint32

func (*RevisionRepo_Expecter) ListCharacterRelated

func (_e *RevisionRepo_Expecter) ListCharacterRelated(ctx interface{}, characterID interface{}, limit interface{}, offset interface{}) *RevisionRepo_ListCharacterRelated_Call

ListCharacterRelated is a helper method to define mock.On call

  • ctx context.Context
  • characterID model.CharacterID
  • limit int
  • offset int

func (*RevisionRepo_Expecter) ListPersonRelated

func (_e *RevisionRepo_Expecter) ListPersonRelated(ctx interface{}, personID interface{}, limit interface{}, offset interface{}) *RevisionRepo_ListPersonRelated_Call

ListPersonRelated is a helper method to define mock.On call

  • ctx context.Context
  • personID model.PersonID
  • limit int
  • offset int

func (*RevisionRepo_Expecter) ListSubjectRelated

func (_e *RevisionRepo_Expecter) ListSubjectRelated(ctx interface{}, id interface{}, limit interface{}, offset interface{}) *RevisionRepo_ListSubjectRelated_Call

ListSubjectRelated is a helper method to define mock.On call

  • ctx context.Context
  • id model.SubjectID
  • limit int
  • offset int

type RevisionRepo_GetCharacterRelated_Call

type RevisionRepo_GetCharacterRelated_Call struct {
	*mock.Call
}

RevisionRepo_GetCharacterRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCharacterRelated'

func (*RevisionRepo_GetCharacterRelated_Call) Return

func (*RevisionRepo_GetCharacterRelated_Call) Run

type RevisionRepo_GetPersonRelated_Call

type RevisionRepo_GetPersonRelated_Call struct {
	*mock.Call
}

RevisionRepo_GetPersonRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetPersonRelated'

func (*RevisionRepo_GetPersonRelated_Call) Return

func (*RevisionRepo_GetPersonRelated_Call) Run

type RevisionRepo_GetSubjectRelated_Call

type RevisionRepo_GetSubjectRelated_Call struct {
	*mock.Call
}

RevisionRepo_GetSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectRelated'

func (*RevisionRepo_GetSubjectRelated_Call) Return

func (*RevisionRepo_GetSubjectRelated_Call) Run

type RevisionRepo_ListCharacterRelated_Call

type RevisionRepo_ListCharacterRelated_Call struct {
	*mock.Call
}

RevisionRepo_ListCharacterRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListCharacterRelated'

func (*RevisionRepo_ListCharacterRelated_Call) Return

func (*RevisionRepo_ListCharacterRelated_Call) Run

type RevisionRepo_ListPersonRelated_Call

type RevisionRepo_ListPersonRelated_Call struct {
	*mock.Call
}

RevisionRepo_ListPersonRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListPersonRelated'

func (*RevisionRepo_ListPersonRelated_Call) Return

func (*RevisionRepo_ListPersonRelated_Call) Run

type RevisionRepo_ListSubjectRelated_Call

type RevisionRepo_ListSubjectRelated_Call struct {
	*mock.Call
}

RevisionRepo_ListSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListSubjectRelated'

func (*RevisionRepo_ListSubjectRelated_Call) Return

func (*RevisionRepo_ListSubjectRelated_Call) Run

type SearchClient added in v0.25.0

type SearchClient struct {
	mock.Mock
}

SearchClient is an autogenerated mock type for the Client type

func NewSearchClient added in v0.25.0

func NewSearchClient(t mockConstructorTestingTNewSearchClient) *SearchClient

NewSearchClient creates a new instance of SearchClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*SearchClient) Close added in v0.29.10

func (_m *SearchClient) Close()

Close provides a mock function with given fields:

func (*SearchClient) EXPECT added in v0.25.0

func (_m *SearchClient) EXPECT() *SearchClient_Expecter

func (*SearchClient) Handle added in v0.25.0

func (_m *SearchClient) Handle(ctx *fiber.Ctx, auth *accessor.Accessor) error

Handle provides a mock function with given fields: ctx, auth

func (*SearchClient) OnSubjectDelete added in v0.25.0

func (_m *SearchClient) OnSubjectDelete(ctx context.Context, id model.SubjectID) error

OnSubjectDelete provides a mock function with given fields: ctx, id

func (*SearchClient) OnSubjectUpdate added in v0.25.0

func (_m *SearchClient) OnSubjectUpdate(ctx context.Context, id model.SubjectID) error

OnSubjectUpdate provides a mock function with given fields: ctx, id

type SearchClient_Close_Call added in v0.29.10

type SearchClient_Close_Call struct {
	*mock.Call
}

SearchClient_Close_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Close'

func (*SearchClient_Close_Call) Return added in v0.29.10

func (*SearchClient_Close_Call) Run added in v0.29.10

func (_c *SearchClient_Close_Call) Run(run func()) *SearchClient_Close_Call

type SearchClient_Expecter added in v0.25.0

type SearchClient_Expecter struct {
	// contains filtered or unexported fields
}

func (*SearchClient_Expecter) Close added in v0.29.10

Close is a helper method to define mock.On call

func (*SearchClient_Expecter) Handle added in v0.25.0

func (_e *SearchClient_Expecter) Handle(ctx interface{}, auth interface{}) *SearchClient_Handle_Call

Handle is a helper method to define mock.On call

  • ctx *fiber.Ctx
  • auth *accessor.Accessor

func (*SearchClient_Expecter) OnSubjectDelete added in v0.25.0

func (_e *SearchClient_Expecter) OnSubjectDelete(ctx interface{}, id interface{}) *SearchClient_OnSubjectDelete_Call

OnSubjectDelete is a helper method to define mock.On call

  • ctx context.Context
  • id model.SubjectID

func (*SearchClient_Expecter) OnSubjectUpdate added in v0.25.0

func (_e *SearchClient_Expecter) OnSubjectUpdate(ctx interface{}, id interface{}) *SearchClient_OnSubjectUpdate_Call

OnSubjectUpdate is a helper method to define mock.On call

  • ctx context.Context
  • id model.SubjectID

type SearchClient_Handle_Call added in v0.25.0

type SearchClient_Handle_Call struct {
	*mock.Call
}

SearchClient_Handle_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Handle'

func (*SearchClient_Handle_Call) Return added in v0.25.0

func (*SearchClient_Handle_Call) Run added in v0.25.0

type SearchClient_OnSubjectDelete_Call added in v0.25.0

type SearchClient_OnSubjectDelete_Call struct {
	*mock.Call
}

SearchClient_OnSubjectDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnSubjectDelete'

func (*SearchClient_OnSubjectDelete_Call) Return added in v0.25.0

func (*SearchClient_OnSubjectDelete_Call) Run added in v0.25.0

type SearchClient_OnSubjectUpdate_Call added in v0.25.0

type SearchClient_OnSubjectUpdate_Call struct {
	*mock.Call
}

SearchClient_OnSubjectUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnSubjectUpdate'

func (*SearchClient_OnSubjectUpdate_Call) Return added in v0.25.0

func (*SearchClient_OnSubjectUpdate_Call) Run added in v0.25.0

type SessionManager

type SessionManager struct {
	mock.Mock
}

SessionManager is an autogenerated mock type for the Manager type

func NewSessionManager

func NewSessionManager(t mockConstructorTestingTNewSessionManager) *SessionManager

NewSessionManager creates a new instance of SessionManager. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*SessionManager) Create

Create provides a mock function with given fields: ctx, a

func (*SessionManager) EXPECT

func (*SessionManager) Get

func (_m *SessionManager) Get(ctx context.Context, key string) (session.Session, error)

Get provides a mock function with given fields: ctx, key

func (*SessionManager) Revoke

func (_m *SessionManager) Revoke(ctx context.Context, key string) error

Revoke provides a mock function with given fields: ctx, key

func (*SessionManager) RevokeUser

func (_m *SessionManager) RevokeUser(ctx context.Context, id model.UserID) error

RevokeUser provides a mock function with given fields: ctx, id

type SessionManager_Create_Call

type SessionManager_Create_Call struct {
	*mock.Call
}

SessionManager_Create_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Create'

func (*SessionManager_Create_Call) Return

func (*SessionManager_Create_Call) Run

type SessionManager_Expecter

type SessionManager_Expecter struct {
	// contains filtered or unexported fields
}

func (*SessionManager_Expecter) Create

func (_e *SessionManager_Expecter) Create(ctx interface{}, a interface{}) *SessionManager_Create_Call

Create is a helper method to define mock.On call

  • ctx context.Context
  • a domain.Auth

func (*SessionManager_Expecter) Get

func (_e *SessionManager_Expecter) Get(ctx interface{}, key interface{}) *SessionManager_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • key string

func (*SessionManager_Expecter) Revoke

func (_e *SessionManager_Expecter) Revoke(ctx interface{}, key interface{}) *SessionManager_Revoke_Call

Revoke is a helper method to define mock.On call

  • ctx context.Context
  • key string

func (*SessionManager_Expecter) RevokeUser

func (_e *SessionManager_Expecter) RevokeUser(ctx interface{}, id interface{}) *SessionManager_RevokeUser_Call

RevokeUser is a helper method to define mock.On call

  • ctx context.Context
  • id model.UserID

type SessionManager_Get_Call

type SessionManager_Get_Call struct {
	*mock.Call
}

SessionManager_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*SessionManager_Get_Call) Return

func (*SessionManager_Get_Call) Run

type SessionManager_RevokeUser_Call

type SessionManager_RevokeUser_Call struct {
	*mock.Call
}

SessionManager_RevokeUser_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'RevokeUser'

func (*SessionManager_RevokeUser_Call) Return

func (*SessionManager_RevokeUser_Call) Run

type SessionManager_Revoke_Call

type SessionManager_Revoke_Call struct {
	*mock.Call
}

SessionManager_Revoke_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Revoke'

func (*SessionManager_Revoke_Call) Return

func (*SessionManager_Revoke_Call) Run

type SessionRepo added in v0.20.13

type SessionRepo struct {
	mock.Mock
}

SessionRepo is an autogenerated mock type for the Repo type

func NewSessionRepo added in v0.20.13

func NewSessionRepo(t mockConstructorTestingTNewSessionRepo) *SessionRepo

NewSessionRepo creates a new instance of SessionRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*SessionRepo) Create added in v0.20.13

func (_m *SessionRepo) Create(ctx context.Context, userID model.UserID, regTime time.Time, keyGen func() string) (string, session.Session, error)

Create provides a mock function with given fields: ctx, userID, regTime, keyGen

func (*SessionRepo) EXPECT added in v0.20.13

func (_m *SessionRepo) EXPECT() *SessionRepo_Expecter

func (*SessionRepo) Get added in v0.20.13

func (_m *SessionRepo) Get(ctx context.Context, key string) (session.Session, error)

Get provides a mock function with given fields: ctx, key

func (*SessionRepo) Revoke added in v0.20.13

func (_m *SessionRepo) Revoke(ctx context.Context, key string) error

Revoke provides a mock function with given fields: ctx, key

func (*SessionRepo) RevokeUser added in v0.20.13

func (_m *SessionRepo) RevokeUser(ctx context.Context, userID model.UserID) ([]string, error)

RevokeUser provides a mock function with given fields: ctx, userID

type SessionRepo_Create_Call added in v0.20.13

type SessionRepo_Create_Call struct {
	*mock.Call
}

SessionRepo_Create_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Create'

func (*SessionRepo_Create_Call) Return added in v0.20.13

func (*SessionRepo_Create_Call) Run added in v0.20.13

func (_c *SessionRepo_Create_Call) Run(run func(ctx context.Context, userID model.UserID, regTime time.Time, keyGen func() string)) *SessionRepo_Create_Call

type SessionRepo_Expecter added in v0.20.13

type SessionRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*SessionRepo_Expecter) Create added in v0.20.13

func (_e *SessionRepo_Expecter) Create(ctx interface{}, userID interface{}, regTime interface{}, keyGen interface{}) *SessionRepo_Create_Call

Create is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID
  • regTime time.Time
  • keyGen func() string

func (*SessionRepo_Expecter) Get added in v0.20.13

func (_e *SessionRepo_Expecter) Get(ctx interface{}, key interface{}) *SessionRepo_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • key string

func (*SessionRepo_Expecter) Revoke added in v0.20.13

func (_e *SessionRepo_Expecter) Revoke(ctx interface{}, key interface{}) *SessionRepo_Revoke_Call

Revoke is a helper method to define mock.On call

  • ctx context.Context
  • key string

func (*SessionRepo_Expecter) RevokeUser added in v0.20.13

func (_e *SessionRepo_Expecter) RevokeUser(ctx interface{}, userID interface{}) *SessionRepo_RevokeUser_Call

RevokeUser is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

type SessionRepo_Get_Call added in v0.20.13

type SessionRepo_Get_Call struct {
	*mock.Call
}

SessionRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*SessionRepo_Get_Call) Return added in v0.20.13

func (*SessionRepo_Get_Call) Run added in v0.20.13

func (_c *SessionRepo_Get_Call) Run(run func(ctx context.Context, key string)) *SessionRepo_Get_Call

type SessionRepo_RevokeUser_Call added in v0.20.13

type SessionRepo_RevokeUser_Call struct {
	*mock.Call
}

SessionRepo_RevokeUser_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'RevokeUser'

func (*SessionRepo_RevokeUser_Call) Return added in v0.20.13

func (*SessionRepo_RevokeUser_Call) Run added in v0.20.13

type SessionRepo_Revoke_Call added in v0.20.13

type SessionRepo_Revoke_Call struct {
	*mock.Call
}

SessionRepo_Revoke_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Revoke'

func (*SessionRepo_Revoke_Call) Return added in v0.20.13

func (*SessionRepo_Revoke_Call) Run added in v0.20.13

type SubjectRepo

type SubjectRepo struct {
	mock.Mock
}

SubjectRepo is an autogenerated mock type for the Repo type

func NewSubjectRepo

func NewSubjectRepo(t mockConstructorTestingTNewSubjectRepo) *SubjectRepo

NewSubjectRepo creates a new instance of SubjectRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*SubjectRepo) EXPECT

func (_m *SubjectRepo) EXPECT() *SubjectRepo_Expecter

func (*SubjectRepo) Get

func (_m *SubjectRepo) Get(ctx context.Context, id model.SubjectID, filter subject.Filter) (model.Subject, error)

Get provides a mock function with given fields: ctx, id, filter

func (*SubjectRepo) GetActors

func (_m *SubjectRepo) GetActors(ctx context.Context, subjectID model.SubjectID, characterIDs []model.CharacterID) (map[model.CharacterID][]model.PersonID, error)

GetActors provides a mock function with given fields: ctx, subjectID, characterIDs

func (*SubjectRepo) GetByIDs

func (_m *SubjectRepo) GetByIDs(ctx context.Context, ids []model.SubjectID, filter subject.Filter) (map[model.SubjectID]model.Subject, error)

GetByIDs provides a mock function with given fields: ctx, ids, filter

func (*SubjectRepo) GetCharacterRelated

func (_m *SubjectRepo) GetCharacterRelated(ctx context.Context, characterID model.CharacterID) ([]domain.SubjectCharacterRelation, error)

GetCharacterRelated provides a mock function with given fields: ctx, characterID

func (*SubjectRepo) GetPersonRelated

func (_m *SubjectRepo) GetPersonRelated(ctx context.Context, personID model.PersonID) ([]domain.SubjectPersonRelation, error)

GetPersonRelated provides a mock function with given fields: ctx, personID

func (*SubjectRepo) GetSubjectRelated

func (_m *SubjectRepo) GetSubjectRelated(ctx context.Context, subjectID model.SubjectID) ([]domain.SubjectInternalRelation, error)

GetSubjectRelated provides a mock function with given fields: ctx, subjectID

type SubjectRepo_Expecter

type SubjectRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*SubjectRepo_Expecter) Get

func (_e *SubjectRepo_Expecter) Get(ctx interface{}, id interface{}, filter interface{}) *SubjectRepo_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • id model.SubjectID
  • filter subject.Filter

func (*SubjectRepo_Expecter) GetActors

func (_e *SubjectRepo_Expecter) GetActors(ctx interface{}, subjectID interface{}, characterIDs interface{}) *SubjectRepo_GetActors_Call

GetActors is a helper method to define mock.On call

  • ctx context.Context
  • subjectID model.SubjectID
  • characterIDs []model.CharacterID

func (*SubjectRepo_Expecter) GetByIDs

func (_e *SubjectRepo_Expecter) GetByIDs(ctx interface{}, ids interface{}, filter interface{}) *SubjectRepo_GetByIDs_Call

GetByIDs is a helper method to define mock.On call

  • ctx context.Context
  • ids []model.SubjectID
  • filter subject.Filter

func (*SubjectRepo_Expecter) GetCharacterRelated

func (_e *SubjectRepo_Expecter) GetCharacterRelated(ctx interface{}, characterID interface{}) *SubjectRepo_GetCharacterRelated_Call

GetCharacterRelated is a helper method to define mock.On call

  • ctx context.Context
  • characterID model.CharacterID

func (*SubjectRepo_Expecter) GetPersonRelated

func (_e *SubjectRepo_Expecter) GetPersonRelated(ctx interface{}, personID interface{}) *SubjectRepo_GetPersonRelated_Call

GetPersonRelated is a helper method to define mock.On call

  • ctx context.Context
  • personID model.PersonID

func (*SubjectRepo_Expecter) GetSubjectRelated

func (_e *SubjectRepo_Expecter) GetSubjectRelated(ctx interface{}, subjectID interface{}) *SubjectRepo_GetSubjectRelated_Call

GetSubjectRelated is a helper method to define mock.On call

  • ctx context.Context
  • subjectID model.SubjectID

type SubjectRepo_GetActors_Call

type SubjectRepo_GetActors_Call struct {
	*mock.Call
}

SubjectRepo_GetActors_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetActors'

func (*SubjectRepo_GetActors_Call) Return

func (*SubjectRepo_GetActors_Call) Run

func (_c *SubjectRepo_GetActors_Call) Run(run func(ctx context.Context, subjectID model.SubjectID, characterIDs []model.CharacterID)) *SubjectRepo_GetActors_Call

type SubjectRepo_GetByIDs_Call

type SubjectRepo_GetByIDs_Call struct {
	*mock.Call
}

SubjectRepo_GetByIDs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByIDs'

func (*SubjectRepo_GetByIDs_Call) Return

func (*SubjectRepo_GetByIDs_Call) Run

type SubjectRepo_GetCharacterRelated_Call

type SubjectRepo_GetCharacterRelated_Call struct {
	*mock.Call
}

SubjectRepo_GetCharacterRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCharacterRelated'

func (*SubjectRepo_GetCharacterRelated_Call) Return

func (*SubjectRepo_GetCharacterRelated_Call) Run

type SubjectRepo_GetPersonRelated_Call

type SubjectRepo_GetPersonRelated_Call struct {
	*mock.Call
}

SubjectRepo_GetPersonRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetPersonRelated'

func (*SubjectRepo_GetPersonRelated_Call) Return

func (*SubjectRepo_GetPersonRelated_Call) Run

type SubjectRepo_GetSubjectRelated_Call

type SubjectRepo_GetSubjectRelated_Call struct {
	*mock.Call
}

SubjectRepo_GetSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectRelated'

func (*SubjectRepo_GetSubjectRelated_Call) Return

func (*SubjectRepo_GetSubjectRelated_Call) Run

type SubjectRepo_Get_Call

type SubjectRepo_Get_Call struct {
	*mock.Call
}

SubjectRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*SubjectRepo_Get_Call) Return

func (*SubjectRepo_Get_Call) Run

type TimeLineRepo added in v0.25.7

type TimeLineRepo struct {
	mock.Mock
}

TimeLineRepo is an autogenerated mock type for the TimeLineRepo type

func NewTimeLineRepo added in v0.25.7

func NewTimeLineRepo(t mockConstructorTestingTNewTimeLineRepo) *TimeLineRepo

NewTimeLineRepo creates a new instance of TimeLineRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*TimeLineRepo) Create added in v0.25.7

func (_m *TimeLineRepo) Create(ctx context.Context, tl *model.TimeLine) error

Create provides a mock function with given fields: ctx, tl

func (*TimeLineRepo) EXPECT added in v0.25.7

func (_m *TimeLineRepo) EXPECT() *TimeLineRepo_Expecter

func (*TimeLineRepo) GetByID added in v0.25.7

func (_m *TimeLineRepo) GetByID(ctx context.Context, id model.TimeLineID) (*model.TimeLine, error)

GetByID provides a mock function with given fields: ctx, id

func (*TimeLineRepo) ListByUID added in v0.25.7

func (_m *TimeLineRepo) ListByUID(ctx context.Context, uid model.UserID, limit int, since model.TimeLineID) ([]*model.TimeLine, error)

ListByUID provides a mock function with given fields: ctx, uid, limit, since

func (*TimeLineRepo) WithQuery added in v0.25.7

func (_m *TimeLineRepo) WithQuery(_a0 *query.Query) domain.TimeLineRepo

WithQuery provides a mock function with given fields: _a0

type TimeLineRepo_Create_Call added in v0.25.7

type TimeLineRepo_Create_Call struct {
	*mock.Call
}

TimeLineRepo_Create_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Create'

func (*TimeLineRepo_Create_Call) Return added in v0.25.7

func (*TimeLineRepo_Create_Call) Run added in v0.25.7

type TimeLineRepo_Expecter added in v0.25.7

type TimeLineRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*TimeLineRepo_Expecter) Create added in v0.25.7

func (_e *TimeLineRepo_Expecter) Create(ctx interface{}, tl interface{}) *TimeLineRepo_Create_Call

Create is a helper method to define mock.On call

  • ctx context.Context
  • tl *model.TimeLine

func (*TimeLineRepo_Expecter) GetByID added in v0.25.7

func (_e *TimeLineRepo_Expecter) GetByID(ctx interface{}, id interface{}) *TimeLineRepo_GetByID_Call

GetByID is a helper method to define mock.On call

  • ctx context.Context
  • id model.TimeLineID

func (*TimeLineRepo_Expecter) ListByUID added in v0.25.7

func (_e *TimeLineRepo_Expecter) ListByUID(ctx interface{}, uid interface{}, limit interface{}, since interface{}) *TimeLineRepo_ListByUID_Call

ListByUID is a helper method to define mock.On call

  • ctx context.Context
  • uid model.UserID
  • limit int
  • since model.TimeLineID

func (*TimeLineRepo_Expecter) WithQuery added in v0.25.7

func (_e *TimeLineRepo_Expecter) WithQuery(_a0 interface{}) *TimeLineRepo_WithQuery_Call

WithQuery is a helper method to define mock.On call

  • _a0 *query.Query

type TimeLineRepo_GetByID_Call added in v0.25.7

type TimeLineRepo_GetByID_Call struct {
	*mock.Call
}

TimeLineRepo_GetByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByID'

func (*TimeLineRepo_GetByID_Call) Return added in v0.25.7

func (*TimeLineRepo_GetByID_Call) Run added in v0.25.7

type TimeLineRepo_ListByUID_Call added in v0.25.7

type TimeLineRepo_ListByUID_Call struct {
	*mock.Call
}

TimeLineRepo_ListByUID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListByUID'

func (*TimeLineRepo_ListByUID_Call) Return added in v0.25.7

func (*TimeLineRepo_ListByUID_Call) Run added in v0.25.7

type TimeLineRepo_WithQuery_Call added in v0.25.7

type TimeLineRepo_WithQuery_Call struct {
	*mock.Call
}

TimeLineRepo_WithQuery_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WithQuery'

func (*TimeLineRepo_WithQuery_Call) Return added in v0.25.7

func (*TimeLineRepo_WithQuery_Call) Run added in v0.25.7

type TopicRepo added in v0.22.0

type TopicRepo struct {
	mock.Mock
}

TopicRepo is an autogenerated mock type for the TopicRepo type

func NewTopicRepo added in v0.22.0

func NewTopicRepo(t mockConstructorTestingTNewTopicRepo) *TopicRepo

NewTopicRepo creates a new instance of TopicRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*TopicRepo) Count added in v0.22.0

func (_m *TopicRepo) Count(ctx context.Context, topicType domain.TopicType, id uint32, displays []model.TopicDisplay) (int64, error)

Count provides a mock function with given fields: ctx, topicType, id, displays

func (*TopicRepo) CountReplies added in v0.22.0

func (_m *TopicRepo) CountReplies(ctx context.Context, commentType domain.CommentType, id model.TopicID) (int64, error)

CountReplies provides a mock function with given fields: ctx, commentType, id

func (*TopicRepo) EXPECT added in v0.22.0

func (_m *TopicRepo) EXPECT() *TopicRepo_Expecter

func (*TopicRepo) Get added in v0.22.0

func (_m *TopicRepo) Get(ctx context.Context, topicType domain.TopicType, id model.TopicID) (model.Topic, error)

Get provides a mock function with given fields: ctx, topicType, id

func (*TopicRepo) GetTopicContent added in v0.22.0

func (_m *TopicRepo) GetTopicContent(ctx context.Context, topicType domain.TopicType, id model.TopicID) (model.Comment, error)

GetTopicContent provides a mock function with given fields: ctx, topicType, id

func (*TopicRepo) List added in v0.22.0

func (_m *TopicRepo) List(ctx context.Context, topicType domain.TopicType, id uint32, displays []model.TopicDisplay, limit int, offset int) ([]model.Topic, error)

List provides a mock function with given fields: ctx, topicType, id, displays, limit, offset

func (*TopicRepo) ListReplies added in v0.22.0

func (_m *TopicRepo) ListReplies(ctx context.Context, commentType domain.CommentType, id model.TopicID, limit int, offset int) ([]model.Comment, error)

ListReplies provides a mock function with given fields: ctx, commentType, id, limit, offset

type TopicRepo_CountReplies_Call added in v0.22.0

type TopicRepo_CountReplies_Call struct {
	*mock.Call
}

TopicRepo_CountReplies_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CountReplies'

func (*TopicRepo_CountReplies_Call) Return added in v0.22.0

func (*TopicRepo_CountReplies_Call) Run added in v0.22.0

type TopicRepo_Count_Call added in v0.22.0

type TopicRepo_Count_Call struct {
	*mock.Call
}

TopicRepo_Count_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Count'

func (*TopicRepo_Count_Call) Return added in v0.22.0

func (_c *TopicRepo_Count_Call) Return(_a0 int64, _a1 error) *TopicRepo_Count_Call

func (*TopicRepo_Count_Call) Run added in v0.22.0

func (_c *TopicRepo_Count_Call) Run(run func(ctx context.Context, topicType domain.TopicType, id uint32, displays []model.TopicDisplay)) *TopicRepo_Count_Call

type TopicRepo_Expecter added in v0.22.0

type TopicRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*TopicRepo_Expecter) Count added in v0.22.0

func (_e *TopicRepo_Expecter) Count(ctx interface{}, topicType interface{}, id interface{}, displays interface{}) *TopicRepo_Count_Call

Count is a helper method to define mock.On call

  • ctx context.Context
  • topicType domain.TopicType
  • id uint32
  • displays []model.TopicDisplay

func (*TopicRepo_Expecter) CountReplies added in v0.22.0

func (_e *TopicRepo_Expecter) CountReplies(ctx interface{}, commentType interface{}, id interface{}) *TopicRepo_CountReplies_Call

CountReplies is a helper method to define mock.On call

  • ctx context.Context
  • commentType domain.CommentType
  • id model.TopicID

func (*TopicRepo_Expecter) Get added in v0.22.0

func (_e *TopicRepo_Expecter) Get(ctx interface{}, topicType interface{}, id interface{}) *TopicRepo_Get_Call

Get is a helper method to define mock.On call

  • ctx context.Context
  • topicType domain.TopicType
  • id model.TopicID

func (*TopicRepo_Expecter) GetTopicContent added in v0.22.0

func (_e *TopicRepo_Expecter) GetTopicContent(ctx interface{}, topicType interface{}, id interface{}) *TopicRepo_GetTopicContent_Call

GetTopicContent is a helper method to define mock.On call

  • ctx context.Context
  • topicType domain.TopicType
  • id model.TopicID

func (*TopicRepo_Expecter) List added in v0.22.0

func (_e *TopicRepo_Expecter) List(ctx interface{}, topicType interface{}, id interface{}, displays interface{}, limit interface{}, offset interface{}) *TopicRepo_List_Call

List is a helper method to define mock.On call

  • ctx context.Context
  • topicType domain.TopicType
  • id uint32
  • displays []model.TopicDisplay
  • limit int
  • offset int

func (*TopicRepo_Expecter) ListReplies added in v0.22.0

func (_e *TopicRepo_Expecter) ListReplies(ctx interface{}, commentType interface{}, id interface{}, limit interface{}, offset interface{}) *TopicRepo_ListReplies_Call

ListReplies is a helper method to define mock.On call

  • ctx context.Context
  • commentType domain.CommentType
  • id model.TopicID
  • limit int
  • offset int

type TopicRepo_GetTopicContent_Call added in v0.22.0

type TopicRepo_GetTopicContent_Call struct {
	*mock.Call
}

TopicRepo_GetTopicContent_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetTopicContent'

func (*TopicRepo_GetTopicContent_Call) Return added in v0.22.0

func (*TopicRepo_GetTopicContent_Call) Run added in v0.22.0

type TopicRepo_Get_Call added in v0.22.0

type TopicRepo_Get_Call struct {
	*mock.Call
}

TopicRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'

func (*TopicRepo_Get_Call) Return added in v0.22.0

func (_c *TopicRepo_Get_Call) Return(_a0 model.Topic, _a1 error) *TopicRepo_Get_Call

func (*TopicRepo_Get_Call) Run added in v0.22.0

func (_c *TopicRepo_Get_Call) Run(run func(ctx context.Context, topicType domain.TopicType, id model.TopicID)) *TopicRepo_Get_Call

type TopicRepo_ListReplies_Call added in v0.22.0

type TopicRepo_ListReplies_Call struct {
	*mock.Call
}

TopicRepo_ListReplies_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListReplies'

func (*TopicRepo_ListReplies_Call) Return added in v0.22.0

func (*TopicRepo_ListReplies_Call) Run added in v0.22.0

func (_c *TopicRepo_ListReplies_Call) Run(run func(ctx context.Context, commentType domain.CommentType, id model.TopicID, limit int, offset int)) *TopicRepo_ListReplies_Call

type TopicRepo_List_Call added in v0.22.0

type TopicRepo_List_Call struct {
	*mock.Call
}

TopicRepo_List_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'List'

func (*TopicRepo_List_Call) Return added in v0.22.0

func (_c *TopicRepo_List_Call) Return(_a0 []model.Topic, _a1 error) *TopicRepo_List_Call

func (*TopicRepo_List_Call) Run added in v0.22.0

func (_c *TopicRepo_List_Call) Run(run func(ctx context.Context, topicType domain.TopicType, id uint32, displays []model.TopicDisplay, limit int, offset int)) *TopicRepo_List_Call

type UserRepo

type UserRepo struct {
	mock.Mock
}

UserRepo is an autogenerated mock type for the UserRepo type

func NewUserRepo

func NewUserRepo(t mockConstructorTestingTNewUserRepo) *UserRepo

NewUserRepo creates a new instance of UserRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*UserRepo) CheckIsFriendToOthers added in v0.29.0

func (_m *UserRepo) CheckIsFriendToOthers(ctx context.Context, selfID model.UserID, otherIDs ...model.UserID) (bool, error)

CheckIsFriendToOthers provides a mock function with given fields: ctx, selfID, otherIDs

func (*UserRepo) EXPECT

func (_m *UserRepo) EXPECT() *UserRepo_Expecter

func (*UserRepo) GetByID

func (_m *UserRepo) GetByID(ctx context.Context, userID model.UserID) (model.User, error)

GetByID provides a mock function with given fields: ctx, userID

func (*UserRepo) GetByIDs

func (_m *UserRepo) GetByIDs(ctx context.Context, ids []model.UserID) (map[model.UserID]model.User, error)

GetByIDs provides a mock function with given fields: ctx, ids

func (*UserRepo) GetByName

func (_m *UserRepo) GetByName(ctx context.Context, username string) (model.User, error)

GetByName provides a mock function with given fields: ctx, username

func (*UserRepo) GetFieldsByIDs added in v0.29.0

func (_m *UserRepo) GetFieldsByIDs(ctx context.Context, ids []model.UserID) (map[model.UserID]model.UserFields, error)

GetFieldsByIDs provides a mock function with given fields: ctx, ids

func (*UserRepo) GetFriends added in v0.23.0

func (_m *UserRepo) GetFriends(ctx context.Context, userID model.UserID) (map[model.UserID]domain.FriendItem, error)

GetFriends provides a mock function with given fields: ctx, userID

type UserRepo_CheckIsFriendToOthers_Call added in v0.29.0

type UserRepo_CheckIsFriendToOthers_Call struct {
	*mock.Call
}

UserRepo_CheckIsFriendToOthers_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CheckIsFriendToOthers'

func (*UserRepo_CheckIsFriendToOthers_Call) Return added in v0.29.0

func (*UserRepo_CheckIsFriendToOthers_Call) Run added in v0.29.0

type UserRepo_Expecter

type UserRepo_Expecter struct {
	// contains filtered or unexported fields
}

func (*UserRepo_Expecter) CheckIsFriendToOthers added in v0.29.0

func (_e *UserRepo_Expecter) CheckIsFriendToOthers(ctx interface{}, selfID interface{}, otherIDs ...interface{}) *UserRepo_CheckIsFriendToOthers_Call

CheckIsFriendToOthers is a helper method to define mock.On call

  • ctx context.Context
  • selfID model.UserID
  • otherIDs ...model.UserID

func (*UserRepo_Expecter) GetByID

func (_e *UserRepo_Expecter) GetByID(ctx interface{}, userID interface{}) *UserRepo_GetByID_Call

GetByID is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

func (*UserRepo_Expecter) GetByIDs

func (_e *UserRepo_Expecter) GetByIDs(ctx interface{}, ids interface{}) *UserRepo_GetByIDs_Call

GetByIDs is a helper method to define mock.On call

  • ctx context.Context
  • ids []model.UserID

func (*UserRepo_Expecter) GetByName

func (_e *UserRepo_Expecter) GetByName(ctx interface{}, username interface{}) *UserRepo_GetByName_Call

GetByName is a helper method to define mock.On call

  • ctx context.Context
  • username string

func (*UserRepo_Expecter) GetFieldsByIDs added in v0.29.0

func (_e *UserRepo_Expecter) GetFieldsByIDs(ctx interface{}, ids interface{}) *UserRepo_GetFieldsByIDs_Call

GetFieldsByIDs is a helper method to define mock.On call

  • ctx context.Context
  • ids []model.UserID

func (*UserRepo_Expecter) GetFriends added in v0.23.0

func (_e *UserRepo_Expecter) GetFriends(ctx interface{}, userID interface{}) *UserRepo_GetFriends_Call

GetFriends is a helper method to define mock.On call

  • ctx context.Context
  • userID model.UserID

type UserRepo_GetByID_Call

type UserRepo_GetByID_Call struct {
	*mock.Call
}

UserRepo_GetByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByID'

func (*UserRepo_GetByID_Call) Return

func (*UserRepo_GetByID_Call) Run

func (_c *UserRepo_GetByID_Call) Run(run func(ctx context.Context, userID model.UserID)) *UserRepo_GetByID_Call

type UserRepo_GetByIDs_Call

type UserRepo_GetByIDs_Call struct {
	*mock.Call
}

UserRepo_GetByIDs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByIDs'

func (*UserRepo_GetByIDs_Call) Return

func (*UserRepo_GetByIDs_Call) Run

type UserRepo_GetByName_Call

type UserRepo_GetByName_Call struct {
	*mock.Call
}

UserRepo_GetByName_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByName'

func (*UserRepo_GetByName_Call) Return

func (*UserRepo_GetByName_Call) Run

func (_c *UserRepo_GetByName_Call) Run(run func(ctx context.Context, username string)) *UserRepo_GetByName_Call

type UserRepo_GetFieldsByIDs_Call added in v0.29.0

type UserRepo_GetFieldsByIDs_Call struct {
	*mock.Call
}

UserRepo_GetFieldsByIDs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetFieldsByIDs'

func (*UserRepo_GetFieldsByIDs_Call) Return added in v0.29.0

func (*UserRepo_GetFieldsByIDs_Call) Run added in v0.29.0

type UserRepo_GetFriends_Call added in v0.23.0

type UserRepo_GetFriends_Call struct {
	*mock.Call
}

UserRepo_GetFriends_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetFriends'

func (*UserRepo_GetFriends_Call) Return added in v0.23.0

func (*UserRepo_GetFriends_Call) Run added in v0.23.0

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL