mocks

package
v1.55.0 Latest Latest
Warning

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

Go to latest
Published: Nov 11, 2025 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type APITokenRepo

type APITokenRepo struct {
	mock.Mock
}

APITokenRepo is an autogenerated mock type for the APITokenRepo type

func NewAPITokenRepo

func NewAPITokenRepo(t interface {
	mock.TestingT
	Cleanup(func())
}) *APITokenRepo

NewAPITokenRepo creates a new instance of APITokenRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*APITokenRepo) Create

func (_mock *APITokenRepo) Create(ctx context.Context, name string, description *string, expiresAt *time.Time, organizationID uuid.UUID, projectID *uuid.UUID, policies []*authz.Policy) (*biz.APIToken, error)

Create provides a mock function for the type APITokenRepo

func (*APITokenRepo) EXPECT added in v1.54.0

func (_m *APITokenRepo) EXPECT() *APITokenRepo_Expecter

func (*APITokenRepo) FindByID

func (_mock *APITokenRepo) FindByID(ctx context.Context, ID uuid.UUID) (*biz.APIToken, error)

FindByID provides a mock function for the type APITokenRepo

func (*APITokenRepo) FindByIDInOrg added in v1.29.0

func (_mock *APITokenRepo) FindByIDInOrg(ctx context.Context, orgID uuid.UUID, id uuid.UUID) (*biz.APIToken, error)

FindByIDInOrg provides a mock function for the type APITokenRepo

func (*APITokenRepo) FindByNameInOrg added in v0.93.1

func (_mock *APITokenRepo) FindByNameInOrg(ctx context.Context, orgID uuid.UUID, name string) (*biz.APIToken, error)

FindByNameInOrg provides a mock function for the type APITokenRepo

func (*APITokenRepo) List

func (_mock *APITokenRepo) List(ctx context.Context, orgID *uuid.UUID, filters *biz.APITokenListFilters) ([]*biz.APIToken, error)

List provides a mock function for the type APITokenRepo

func (*APITokenRepo) Revoke

func (_mock *APITokenRepo) Revoke(ctx context.Context, orgID uuid.UUID, ID uuid.UUID) error

Revoke provides a mock function for the type APITokenRepo

func (*APITokenRepo) UpdateExpiration added in v1.5.0

func (_mock *APITokenRepo) UpdateExpiration(ctx context.Context, ID uuid.UUID, expiresAt time.Time) error

UpdateExpiration provides a mock function for the type APITokenRepo

func (*APITokenRepo) UpdateLastUsedAt added in v1.29.0

func (_mock *APITokenRepo) UpdateLastUsedAt(ctx context.Context, ID uuid.UUID, lastUsedAt time.Time) error

UpdateLastUsedAt provides a mock function for the type APITokenRepo

type APITokenRepo_Create_Call added in v1.54.0

type APITokenRepo_Create_Call struct {
	*mock.Call
}

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

func (*APITokenRepo_Create_Call) Return added in v1.54.0

func (*APITokenRepo_Create_Call) Run added in v1.54.0

func (_c *APITokenRepo_Create_Call) Run(run func(ctx context.Context, name string, description *string, expiresAt *time.Time, organizationID uuid.UUID, projectID *uuid.UUID, policies []*authz.Policy)) *APITokenRepo_Create_Call

func (*APITokenRepo_Create_Call) RunAndReturn added in v1.54.0

func (_c *APITokenRepo_Create_Call) RunAndReturn(run func(ctx context.Context, name string, description *string, expiresAt *time.Time, organizationID uuid.UUID, projectID *uuid.UUID, policies []*authz.Policy) (*biz.APIToken, error)) *APITokenRepo_Create_Call

type APITokenRepo_Expecter added in v1.54.0

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

func (*APITokenRepo_Expecter) Create added in v1.54.0

func (_e *APITokenRepo_Expecter) Create(ctx interface{}, name interface{}, description interface{}, expiresAt interface{}, organizationID interface{}, projectID interface{}, policies interface{}) *APITokenRepo_Create_Call

Create is a helper method to define mock.On call

  • ctx context.Context
  • name string
  • description *string
  • expiresAt *time.Time
  • organizationID uuid.UUID
  • projectID *uuid.UUID
  • policies []*authz.Policy

func (*APITokenRepo_Expecter) FindByID added in v1.54.0

func (_e *APITokenRepo_Expecter) FindByID(ctx interface{}, ID interface{}) *APITokenRepo_FindByID_Call

FindByID is a helper method to define mock.On call

  • ctx context.Context
  • ID uuid.UUID

func (*APITokenRepo_Expecter) FindByIDInOrg added in v1.54.0

func (_e *APITokenRepo_Expecter) FindByIDInOrg(ctx interface{}, orgID interface{}, id interface{}) *APITokenRepo_FindByIDInOrg_Call

FindByIDInOrg is a helper method to define mock.On call

  • ctx context.Context
  • orgID uuid.UUID
  • id uuid.UUID

func (*APITokenRepo_Expecter) FindByNameInOrg added in v1.54.0

func (_e *APITokenRepo_Expecter) FindByNameInOrg(ctx interface{}, orgID interface{}, name interface{}) *APITokenRepo_FindByNameInOrg_Call

FindByNameInOrg is a helper method to define mock.On call

  • ctx context.Context
  • orgID uuid.UUID
  • name string

func (*APITokenRepo_Expecter) List added in v1.54.0

func (_e *APITokenRepo_Expecter) List(ctx interface{}, orgID interface{}, filters interface{}) *APITokenRepo_List_Call

List is a helper method to define mock.On call

  • ctx context.Context
  • orgID *uuid.UUID
  • filters *biz.APITokenListFilters

func (*APITokenRepo_Expecter) Revoke added in v1.54.0

func (_e *APITokenRepo_Expecter) Revoke(ctx interface{}, orgID interface{}, ID interface{}) *APITokenRepo_Revoke_Call

Revoke is a helper method to define mock.On call

  • ctx context.Context
  • orgID uuid.UUID
  • ID uuid.UUID

func (*APITokenRepo_Expecter) UpdateExpiration added in v1.54.0

func (_e *APITokenRepo_Expecter) UpdateExpiration(ctx interface{}, ID interface{}, expiresAt interface{}) *APITokenRepo_UpdateExpiration_Call

UpdateExpiration is a helper method to define mock.On call

  • ctx context.Context
  • ID uuid.UUID
  • expiresAt time.Time

func (*APITokenRepo_Expecter) UpdateLastUsedAt added in v1.54.0

func (_e *APITokenRepo_Expecter) UpdateLastUsedAt(ctx interface{}, ID interface{}, lastUsedAt interface{}) *APITokenRepo_UpdateLastUsedAt_Call

UpdateLastUsedAt is a helper method to define mock.On call

  • ctx context.Context
  • ID uuid.UUID
  • lastUsedAt time.Time

type APITokenRepo_FindByIDInOrg_Call added in v1.54.0

type APITokenRepo_FindByIDInOrg_Call struct {
	*mock.Call
}

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

func (*APITokenRepo_FindByIDInOrg_Call) Return added in v1.54.0

func (*APITokenRepo_FindByIDInOrg_Call) Run added in v1.54.0

func (*APITokenRepo_FindByIDInOrg_Call) RunAndReturn added in v1.54.0

type APITokenRepo_FindByID_Call added in v1.54.0

type APITokenRepo_FindByID_Call struct {
	*mock.Call
}

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

func (*APITokenRepo_FindByID_Call) Return added in v1.54.0

func (*APITokenRepo_FindByID_Call) Run added in v1.54.0

func (*APITokenRepo_FindByID_Call) RunAndReturn added in v1.54.0

type APITokenRepo_FindByNameInOrg_Call added in v1.54.0

type APITokenRepo_FindByNameInOrg_Call struct {
	*mock.Call
}

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

func (*APITokenRepo_FindByNameInOrg_Call) Return added in v1.54.0

func (*APITokenRepo_FindByNameInOrg_Call) Run added in v1.54.0

func (*APITokenRepo_FindByNameInOrg_Call) RunAndReturn added in v1.54.0

type APITokenRepo_List_Call added in v1.54.0

type APITokenRepo_List_Call struct {
	*mock.Call
}

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

func (*APITokenRepo_List_Call) Return added in v1.54.0

func (_c *APITokenRepo_List_Call) Return(aPITokens []*biz.APIToken, err error) *APITokenRepo_List_Call

func (*APITokenRepo_List_Call) Run added in v1.54.0

func (*APITokenRepo_List_Call) RunAndReturn added in v1.54.0

func (_c *APITokenRepo_List_Call) RunAndReturn(run func(ctx context.Context, orgID *uuid.UUID, filters *biz.APITokenListFilters) ([]*biz.APIToken, error)) *APITokenRepo_List_Call

type APITokenRepo_Revoke_Call added in v1.54.0

type APITokenRepo_Revoke_Call struct {
	*mock.Call
}

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

func (*APITokenRepo_Revoke_Call) Return added in v1.54.0

func (*APITokenRepo_Revoke_Call) Run added in v1.54.0

func (*APITokenRepo_Revoke_Call) RunAndReturn added in v1.54.0

func (_c *APITokenRepo_Revoke_Call) RunAndReturn(run func(ctx context.Context, orgID uuid.UUID, ID uuid.UUID) error) *APITokenRepo_Revoke_Call

type APITokenRepo_UpdateExpiration_Call added in v1.54.0

type APITokenRepo_UpdateExpiration_Call struct {
	*mock.Call
}

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

func (*APITokenRepo_UpdateExpiration_Call) Return added in v1.54.0

func (*APITokenRepo_UpdateExpiration_Call) Run added in v1.54.0

func (*APITokenRepo_UpdateExpiration_Call) RunAndReturn added in v1.54.0

type APITokenRepo_UpdateLastUsedAt_Call added in v1.54.0

type APITokenRepo_UpdateLastUsedAt_Call struct {
	*mock.Call
}

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

func (*APITokenRepo_UpdateLastUsedAt_Call) Return added in v1.54.0

func (*APITokenRepo_UpdateLastUsedAt_Call) Run added in v1.54.0

func (*APITokenRepo_UpdateLastUsedAt_Call) RunAndReturn added in v1.54.0

type CASBackendReader

type CASBackendReader struct {
	mock.Mock
}

CASBackendReader is an autogenerated mock type for the CASBackendReader type

func NewCASBackendReader

func NewCASBackendReader(t interface {
	mock.TestingT
	Cleanup(func())
}) *CASBackendReader

NewCASBackendReader creates a new instance of CASBackendReader. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*CASBackendReader) FindByIDInOrg

func (_m *CASBackendReader) FindByIDInOrg(ctx context.Context, OrgID string, ID string) (*biz.CASBackend, error)

FindByIDInOrg provides a mock function with given fields: ctx, OrgID, ID

func (*CASBackendReader) FindDefaultBackend

func (_m *CASBackendReader) FindDefaultBackend(ctx context.Context, orgID string) (*biz.CASBackend, error)

FindDefaultBackend provides a mock function with given fields: ctx, orgID

func (*CASBackendReader) PerformValidation

func (_m *CASBackendReader) PerformValidation(ctx context.Context, ID string) error

PerformValidation provides a mock function with given fields: ctx, ID

type CASBackendRepo

type CASBackendRepo struct {
	mock.Mock
}

CASBackendRepo is an autogenerated mock type for the CASBackendRepo type

func NewCASBackendRepo

func NewCASBackendRepo(t interface {
	mock.TestingT
	Cleanup(func())
}) *CASBackendRepo

NewCASBackendRepo creates a new instance of CASBackendRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*CASBackendRepo) Create

func (_mock *CASBackendRepo) Create(context1 context.Context, cASBackendCreateOpts *biz.CASBackendCreateOpts) (*biz.CASBackend, error)

Create provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) Delete

func (_mock *CASBackendRepo) Delete(ctx context.Context, ID uuid.UUID) error

Delete provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) EXPECT added in v1.54.0

func (*CASBackendRepo) FindByID

func (_mock *CASBackendRepo) FindByID(ctx context.Context, ID uuid.UUID) (*biz.CASBackend, error)

FindByID provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) FindByIDInOrg

func (_mock *CASBackendRepo) FindByIDInOrg(ctx context.Context, OrgID uuid.UUID, ID uuid.UUID) (*biz.CASBackend, error)

FindByIDInOrg provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) FindByNameInOrg added in v0.93.0

func (_mock *CASBackendRepo) FindByNameInOrg(ctx context.Context, OrgID uuid.UUID, name string) (*biz.CASBackend, error)

FindByNameInOrg provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) FindDefaultBackend

func (_mock *CASBackendRepo) FindDefaultBackend(ctx context.Context, orgID uuid.UUID) (*biz.CASBackend, error)

FindDefaultBackend provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) FindFallbackBackend

func (_mock *CASBackendRepo) FindFallbackBackend(ctx context.Context, orgID uuid.UUID) (*biz.CASBackend, error)

FindFallbackBackend provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) List

func (_mock *CASBackendRepo) List(ctx context.Context, orgID uuid.UUID) ([]*biz.CASBackend, error)

List provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) ListBackends added in v1.43.2

func (_mock *CASBackendRepo) ListBackends(ctx context.Context, onlyDefaults bool) ([]*biz.CASBackend, error)

ListBackends provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) SoftDelete

func (_mock *CASBackendRepo) SoftDelete(ctx context.Context, ID uuid.UUID) error

SoftDelete provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) Update

func (_mock *CASBackendRepo) Update(context1 context.Context, cASBackendUpdateOpts *biz.CASBackendUpdateOpts) (*biz.CASBackend, error)

Update provides a mock function for the type CASBackendRepo

func (*CASBackendRepo) UpdateValidationStatus

func (_mock *CASBackendRepo) UpdateValidationStatus(ctx context.Context, ID uuid.UUID, status biz.CASBackendValidationStatus, validationError *string) error

UpdateValidationStatus provides a mock function for the type CASBackendRepo

type CASBackendRepo_Create_Call added in v1.54.0

type CASBackendRepo_Create_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_Create_Call) Return added in v1.54.0

func (*CASBackendRepo_Create_Call) Run added in v1.54.0

func (_c *CASBackendRepo_Create_Call) Run(run func(context1 context.Context, cASBackendCreateOpts *biz.CASBackendCreateOpts)) *CASBackendRepo_Create_Call

func (*CASBackendRepo_Create_Call) RunAndReturn added in v1.54.0

func (_c *CASBackendRepo_Create_Call) RunAndReturn(run func(context1 context.Context, cASBackendCreateOpts *biz.CASBackendCreateOpts) (*biz.CASBackend, error)) *CASBackendRepo_Create_Call

type CASBackendRepo_Delete_Call added in v1.54.0

type CASBackendRepo_Delete_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_Delete_Call) Return added in v1.54.0

func (*CASBackendRepo_Delete_Call) Run added in v1.54.0

func (*CASBackendRepo_Delete_Call) RunAndReturn added in v1.54.0

type CASBackendRepo_Expecter added in v1.54.0

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

func (*CASBackendRepo_Expecter) Create added in v1.54.0

func (_e *CASBackendRepo_Expecter) Create(context1 interface{}, cASBackendCreateOpts interface{}) *CASBackendRepo_Create_Call

Create is a helper method to define mock.On call

  • context1 context.Context
  • cASBackendCreateOpts *biz.CASBackendCreateOpts

func (*CASBackendRepo_Expecter) Delete added in v1.54.0

func (_e *CASBackendRepo_Expecter) Delete(ctx interface{}, ID interface{}) *CASBackendRepo_Delete_Call

Delete is a helper method to define mock.On call

  • ctx context.Context
  • ID uuid.UUID

func (*CASBackendRepo_Expecter) FindByID added in v1.54.0

func (_e *CASBackendRepo_Expecter) FindByID(ctx interface{}, ID interface{}) *CASBackendRepo_FindByID_Call

FindByID is a helper method to define mock.On call

  • ctx context.Context
  • ID uuid.UUID

func (*CASBackendRepo_Expecter) FindByIDInOrg added in v1.54.0

func (_e *CASBackendRepo_Expecter) FindByIDInOrg(ctx interface{}, OrgID interface{}, ID interface{}) *CASBackendRepo_FindByIDInOrg_Call

FindByIDInOrg is a helper method to define mock.On call

  • ctx context.Context
  • OrgID uuid.UUID
  • ID uuid.UUID

func (*CASBackendRepo_Expecter) FindByNameInOrg added in v1.54.0

func (_e *CASBackendRepo_Expecter) FindByNameInOrg(ctx interface{}, OrgID interface{}, name interface{}) *CASBackendRepo_FindByNameInOrg_Call

FindByNameInOrg is a helper method to define mock.On call

  • ctx context.Context
  • OrgID uuid.UUID
  • name string

func (*CASBackendRepo_Expecter) FindDefaultBackend added in v1.54.0

func (_e *CASBackendRepo_Expecter) FindDefaultBackend(ctx interface{}, orgID interface{}) *CASBackendRepo_FindDefaultBackend_Call

FindDefaultBackend is a helper method to define mock.On call

  • ctx context.Context
  • orgID uuid.UUID

func (*CASBackendRepo_Expecter) FindFallbackBackend added in v1.54.0

func (_e *CASBackendRepo_Expecter) FindFallbackBackend(ctx interface{}, orgID interface{}) *CASBackendRepo_FindFallbackBackend_Call

FindFallbackBackend is a helper method to define mock.On call

  • ctx context.Context
  • orgID uuid.UUID

func (*CASBackendRepo_Expecter) List added in v1.54.0

func (_e *CASBackendRepo_Expecter) List(ctx interface{}, orgID interface{}) *CASBackendRepo_List_Call

List is a helper method to define mock.On call

  • ctx context.Context
  • orgID uuid.UUID

func (*CASBackendRepo_Expecter) ListBackends added in v1.54.0

func (_e *CASBackendRepo_Expecter) ListBackends(ctx interface{}, onlyDefaults interface{}) *CASBackendRepo_ListBackends_Call

ListBackends is a helper method to define mock.On call

  • ctx context.Context
  • onlyDefaults bool

func (*CASBackendRepo_Expecter) SoftDelete added in v1.54.0

func (_e *CASBackendRepo_Expecter) SoftDelete(ctx interface{}, ID interface{}) *CASBackendRepo_SoftDelete_Call

SoftDelete is a helper method to define mock.On call

  • ctx context.Context
  • ID uuid.UUID

func (*CASBackendRepo_Expecter) Update added in v1.54.0

func (_e *CASBackendRepo_Expecter) Update(context1 interface{}, cASBackendUpdateOpts interface{}) *CASBackendRepo_Update_Call

Update is a helper method to define mock.On call

  • context1 context.Context
  • cASBackendUpdateOpts *biz.CASBackendUpdateOpts

func (*CASBackendRepo_Expecter) UpdateValidationStatus added in v1.54.0

func (_e *CASBackendRepo_Expecter) UpdateValidationStatus(ctx interface{}, ID interface{}, status interface{}, validationError interface{}) *CASBackendRepo_UpdateValidationStatus_Call

UpdateValidationStatus is a helper method to define mock.On call

  • ctx context.Context
  • ID uuid.UUID
  • status biz.CASBackendValidationStatus
  • validationError *string

type CASBackendRepo_FindByIDInOrg_Call added in v1.54.0

type CASBackendRepo_FindByIDInOrg_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_FindByIDInOrg_Call) Return added in v1.54.0

func (*CASBackendRepo_FindByIDInOrg_Call) Run added in v1.54.0

func (*CASBackendRepo_FindByIDInOrg_Call) RunAndReturn added in v1.54.0

type CASBackendRepo_FindByID_Call added in v1.54.0

type CASBackendRepo_FindByID_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_FindByID_Call) Return added in v1.54.0

func (*CASBackendRepo_FindByID_Call) Run added in v1.54.0

func (*CASBackendRepo_FindByID_Call) RunAndReturn added in v1.54.0

type CASBackendRepo_FindByNameInOrg_Call added in v1.54.0

type CASBackendRepo_FindByNameInOrg_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_FindByNameInOrg_Call) Return added in v1.54.0

func (*CASBackendRepo_FindByNameInOrg_Call) Run added in v1.54.0

func (*CASBackendRepo_FindByNameInOrg_Call) RunAndReturn added in v1.54.0

type CASBackendRepo_FindDefaultBackend_Call added in v1.54.0

type CASBackendRepo_FindDefaultBackend_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_FindDefaultBackend_Call) Return added in v1.54.0

func (*CASBackendRepo_FindDefaultBackend_Call) Run added in v1.54.0

func (*CASBackendRepo_FindDefaultBackend_Call) RunAndReturn added in v1.54.0

type CASBackendRepo_FindFallbackBackend_Call added in v1.54.0

type CASBackendRepo_FindFallbackBackend_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_FindFallbackBackend_Call) Return added in v1.54.0

func (*CASBackendRepo_FindFallbackBackend_Call) Run added in v1.54.0

func (*CASBackendRepo_FindFallbackBackend_Call) RunAndReturn added in v1.54.0

type CASBackendRepo_ListBackends_Call added in v1.54.0

type CASBackendRepo_ListBackends_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_ListBackends_Call) Return added in v1.54.0

func (*CASBackendRepo_ListBackends_Call) Run added in v1.54.0

func (*CASBackendRepo_ListBackends_Call) RunAndReturn added in v1.54.0

func (_c *CASBackendRepo_ListBackends_Call) RunAndReturn(run func(ctx context.Context, onlyDefaults bool) ([]*biz.CASBackend, error)) *CASBackendRepo_ListBackends_Call

type CASBackendRepo_List_Call added in v1.54.0

type CASBackendRepo_List_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_List_Call) Return added in v1.54.0

func (_c *CASBackendRepo_List_Call) Return(cASBackends []*biz.CASBackend, err error) *CASBackendRepo_List_Call

func (*CASBackendRepo_List_Call) Run added in v1.54.0

func (*CASBackendRepo_List_Call) RunAndReturn added in v1.54.0

func (_c *CASBackendRepo_List_Call) RunAndReturn(run func(ctx context.Context, orgID uuid.UUID) ([]*biz.CASBackend, error)) *CASBackendRepo_List_Call

type CASBackendRepo_SoftDelete_Call added in v1.54.0

type CASBackendRepo_SoftDelete_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_SoftDelete_Call) Return added in v1.54.0

func (*CASBackendRepo_SoftDelete_Call) Run added in v1.54.0

func (*CASBackendRepo_SoftDelete_Call) RunAndReturn added in v1.54.0

type CASBackendRepo_UpdateValidationStatus_Call added in v1.54.0

type CASBackendRepo_UpdateValidationStatus_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_UpdateValidationStatus_Call) Return added in v1.54.0

func (*CASBackendRepo_UpdateValidationStatus_Call) Run added in v1.54.0

func (*CASBackendRepo_UpdateValidationStatus_Call) RunAndReturn added in v1.54.0

type CASBackendRepo_Update_Call added in v1.54.0

type CASBackendRepo_Update_Call struct {
	*mock.Call
}

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

func (*CASBackendRepo_Update_Call) Return added in v1.54.0

func (*CASBackendRepo_Update_Call) Run added in v1.54.0

func (_c *CASBackendRepo_Update_Call) Run(run func(context1 context.Context, cASBackendUpdateOpts *biz.CASBackendUpdateOpts)) *CASBackendRepo_Update_Call

func (*CASBackendRepo_Update_Call) RunAndReturn added in v1.54.0

func (_c *CASBackendRepo_Update_Call) RunAndReturn(run func(context1 context.Context, cASBackendUpdateOpts *biz.CASBackendUpdateOpts) (*biz.CASBackend, error)) *CASBackendRepo_Update_Call

type CASClient

type CASClient struct {
	mock.Mock
}

CASClient is an autogenerated mock type for the CASClient type

func NewCASClient

func NewCASClient(t interface {
	mock.TestingT
	Cleanup(func())
}) *CASClient

NewCASClient creates a new instance of CASClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*CASClient) Download

func (_m *CASClient) Download(ctx context.Context, backendType string, secretID string, w io.Writer, digest string) error

Download provides a mock function with given fields: ctx, backendType, secretID, w, digest

func (*CASClient) Upload

func (_m *CASClient) Upload(ctx context.Context, backendType string, secretID string, content io.Reader, filename string, digest string) error

Upload provides a mock function with given fields: ctx, backendType, secretID, content, filename, digest

type CASMappingRepo

type CASMappingRepo struct {
	mock.Mock
}

CASMappingRepo is an autogenerated mock type for the CASMappingRepo type

func NewCASMappingRepo

func NewCASMappingRepo(t interface {
	mock.TestingT
	Cleanup(func())
}) *CASMappingRepo

NewCASMappingRepo creates a new instance of CASMappingRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*CASMappingRepo) Create

func (_m *CASMappingRepo) Create(ctx context.Context, digest string, casBackendID uuid.UUID, opts *biz.CASMappingCreateOpts) (*biz.CASMapping, error)

Create provides a mock function with given fields: ctx, digest, casBackendID, opts

func (*CASMappingRepo) FindByDigest

func (_m *CASMappingRepo) FindByDigest(ctx context.Context, digest string) ([]*biz.CASMapping, error)

FindByDigest provides a mock function with given fields: ctx, digest

type MembershipsRBAC added in v1.11.0

type MembershipsRBAC struct {
	mock.Mock
}

MembershipsRBAC is an autogenerated mock type for the MembershipsRBAC type

func NewMembershipsRBAC added in v1.11.0

func NewMembershipsRBAC(t interface {
	mock.TestingT
	Cleanup(func())
}) *MembershipsRBAC

NewMembershipsRBAC creates a new instance of MembershipsRBAC. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MembershipsRBAC) ListAllMembershipsForUser added in v1.11.0

func (_m *MembershipsRBAC) ListAllMembershipsForUser(ctx context.Context, userID uuid.UUID) ([]*biz.Membership, error)

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

type OrganizationRepo

type OrganizationRepo struct {
	mock.Mock
}

OrganizationRepo is an autogenerated mock type for the OrganizationRepo type

func NewOrganizationRepo

func NewOrganizationRepo(t interface {
	mock.TestingT
	Cleanup(func())
}) *OrganizationRepo

NewOrganizationRepo creates a new instance of OrganizationRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*OrganizationRepo) Create

func (_mock *OrganizationRepo) Create(ctx context.Context, name string) (*biz.Organization, error)

Create provides a mock function for the type OrganizationRepo

func (*OrganizationRepo) Delete

func (_mock *OrganizationRepo) Delete(ctx context.Context, ID uuid.UUID) error

Delete provides a mock function for the type OrganizationRepo

func (*OrganizationRepo) EXPECT added in v1.54.0

func (*OrganizationRepo) FindByID

func (_mock *OrganizationRepo) FindByID(ctx context.Context, orgID uuid.UUID) (*biz.Organization, error)

FindByID provides a mock function for the type OrganizationRepo

func (*OrganizationRepo) FindByName added in v0.91.8

func (_mock *OrganizationRepo) FindByName(ctx context.Context, name string) (*biz.Organization, error)

FindByName provides a mock function for the type OrganizationRepo

func (*OrganizationRepo) Update

func (_mock *OrganizationRepo) Update(ctx context.Context, id uuid.UUID, blockOnPolicyViolation *bool, policiesAllowedHostnames []string, preventImplicitWorkflowCreation *bool) (*biz.Organization, error)

Update provides a mock function for the type OrganizationRepo

type OrganizationRepo_Create_Call added in v1.54.0

type OrganizationRepo_Create_Call struct {
	*mock.Call
}

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

func (*OrganizationRepo_Create_Call) Return added in v1.54.0

func (*OrganizationRepo_Create_Call) Run added in v1.54.0

func (*OrganizationRepo_Create_Call) RunAndReturn added in v1.54.0

type OrganizationRepo_Delete_Call added in v1.54.0

type OrganizationRepo_Delete_Call struct {
	*mock.Call
}

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

func (*OrganizationRepo_Delete_Call) Return added in v1.54.0

func (*OrganizationRepo_Delete_Call) Run added in v1.54.0

func (*OrganizationRepo_Delete_Call) RunAndReturn added in v1.54.0

type OrganizationRepo_Expecter added in v1.54.0

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

func (*OrganizationRepo_Expecter) Create added in v1.54.0

func (_e *OrganizationRepo_Expecter) Create(ctx interface{}, name interface{}) *OrganizationRepo_Create_Call

Create is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*OrganizationRepo_Expecter) Delete added in v1.54.0

func (_e *OrganizationRepo_Expecter) Delete(ctx interface{}, ID interface{}) *OrganizationRepo_Delete_Call

Delete is a helper method to define mock.On call

  • ctx context.Context
  • ID uuid.UUID

func (*OrganizationRepo_Expecter) FindByID added in v1.54.0

func (_e *OrganizationRepo_Expecter) FindByID(ctx interface{}, orgID interface{}) *OrganizationRepo_FindByID_Call

FindByID is a helper method to define mock.On call

  • ctx context.Context
  • orgID uuid.UUID

func (*OrganizationRepo_Expecter) FindByName added in v1.54.0

func (_e *OrganizationRepo_Expecter) FindByName(ctx interface{}, name interface{}) *OrganizationRepo_FindByName_Call

FindByName is a helper method to define mock.On call

  • ctx context.Context
  • name string

func (*OrganizationRepo_Expecter) Update added in v1.54.0

func (_e *OrganizationRepo_Expecter) Update(ctx interface{}, id interface{}, blockOnPolicyViolation interface{}, policiesAllowedHostnames interface{}, preventImplicitWorkflowCreation interface{}) *OrganizationRepo_Update_Call

Update is a helper method to define mock.On call

  • ctx context.Context
  • id uuid.UUID
  • blockOnPolicyViolation *bool
  • policiesAllowedHostnames []string
  • preventImplicitWorkflowCreation *bool

type OrganizationRepo_FindByID_Call added in v1.54.0

type OrganizationRepo_FindByID_Call struct {
	*mock.Call
}

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

func (*OrganizationRepo_FindByID_Call) Return added in v1.54.0

func (*OrganizationRepo_FindByID_Call) Run added in v1.54.0

func (*OrganizationRepo_FindByID_Call) RunAndReturn added in v1.54.0

type OrganizationRepo_FindByName_Call added in v1.54.0

type OrganizationRepo_FindByName_Call struct {
	*mock.Call
}

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

func (*OrganizationRepo_FindByName_Call) Return added in v1.54.0

func (*OrganizationRepo_FindByName_Call) Run added in v1.54.0

func (*OrganizationRepo_FindByName_Call) RunAndReturn added in v1.54.0

type OrganizationRepo_Update_Call added in v1.54.0

type OrganizationRepo_Update_Call struct {
	*mock.Call
}

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

func (*OrganizationRepo_Update_Call) Return added in v1.54.0

func (*OrganizationRepo_Update_Call) Run added in v1.54.0

func (_c *OrganizationRepo_Update_Call) Run(run func(ctx context.Context, id uuid.UUID, blockOnPolicyViolation *bool, policiesAllowedHostnames []string, preventImplicitWorkflowCreation *bool)) *OrganizationRepo_Update_Call

func (*OrganizationRepo_Update_Call) RunAndReturn added in v1.54.0

func (_c *OrganizationRepo_Update_Call) RunAndReturn(run func(ctx context.Context, id uuid.UUID, blockOnPolicyViolation *bool, policiesAllowedHostnames []string, preventImplicitWorkflowCreation *bool) (*biz.Organization, error)) *OrganizationRepo_Update_Call

type PromObservable added in v0.95.0

type PromObservable struct {
	mock.Mock
}

PromObservable is an autogenerated mock type for the PromObservable type

func NewPromObservable added in v0.95.0

func NewPromObservable(t interface {
	mock.TestingT
	Cleanup(func())
}) *PromObservable

NewPromObservable creates a new instance of PromObservable. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*PromObservable) ObserveAttestationIfNeeded added in v0.95.0

func (_m *PromObservable) ObserveAttestationIfNeeded(ctx context.Context, run *biz.WorkflowRun, status biz.WorkflowRunStatus) bool

ObserveAttestationIfNeeded provides a mock function with given fields: ctx, run, status

type UserOrgFinder

type UserOrgFinder struct {
	mock.Mock
}

UserOrgFinder is an autogenerated mock type for the UserOrgFinder type

func NewUserOrgFinder

func NewUserOrgFinder(t interface {
	mock.TestingT
	Cleanup(func())
}) *UserOrgFinder

NewUserOrgFinder creates a new instance of UserOrgFinder. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*UserOrgFinder) CurrentMembership

func (_m *UserOrgFinder) CurrentMembership(ctx context.Context, userID string) (*biz.Membership, error)

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

func (*UserOrgFinder) FindByID

func (_m *UserOrgFinder) FindByID(ctx context.Context, userID string) (*biz.User, error)

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

func (*UserOrgFinder) MembershipInOrg added in v0.140.0

func (_m *UserOrgFinder) MembershipInOrg(ctx context.Context, userID string, orgName string) (*biz.Membership, error)

MembershipInOrg provides a mock function with given fields: ctx, userID, orgName

type WorkflowRunRepo

type WorkflowRunRepo struct {
	mock.Mock
}

WorkflowRunRepo is an autogenerated mock type for the WorkflowRunRepo type

func NewWorkflowRunRepo

func NewWorkflowRunRepo(t interface {
	mock.TestingT
	Cleanup(func())
}) *WorkflowRunRepo

NewWorkflowRunRepo creates a new instance of WorkflowRunRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*WorkflowRunRepo) Create

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

func (*WorkflowRunRepo) Expire

func (_m *WorkflowRunRepo) Expire(ctx context.Context, id uuid.UUID) error

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

func (*WorkflowRunRepo) FindByAttestationDigest

func (_m *WorkflowRunRepo) FindByAttestationDigest(ctx context.Context, digest string) (*biz.WorkflowRun, error)

FindByAttestationDigest provides a mock function with given fields: ctx, digest

func (*WorkflowRunRepo) FindByID

func (_m *WorkflowRunRepo) FindByID(ctx context.Context, ID uuid.UUID) (*biz.WorkflowRun, error)

FindByID provides a mock function with given fields: ctx, ID

func (*WorkflowRunRepo) FindByIDInOrg

func (_m *WorkflowRunRepo) FindByIDInOrg(ctx context.Context, orgID uuid.UUID, ID uuid.UUID) (*biz.WorkflowRun, error)

FindByIDInOrg provides a mock function with given fields: ctx, orgID, ID

func (*WorkflowRunRepo) GetBundle added in v0.160.0

func (_m *WorkflowRunRepo) GetBundle(ctx context.Context, wrID uuid.UUID) ([]byte, error)

GetBundle provides a mock function with given fields: ctx, wrID

func (*WorkflowRunRepo) List

List provides a mock function with given fields: ctx, orgID, f, p

func (*WorkflowRunRepo) ListNotFinishedOlderThan

func (_m *WorkflowRunRepo) ListNotFinishedOlderThan(ctx context.Context, olderThan time.Time, limit int) ([]*biz.WorkflowRun, error)

ListNotFinishedOlderThan provides a mock function with given fields: ctx, olderThan, limit

func (*WorkflowRunRepo) MarkAsFinished

func (_m *WorkflowRunRepo) MarkAsFinished(ctx context.Context, ID uuid.UUID, status biz.WorkflowRunStatus, reason string) error

MarkAsFinished provides a mock function with given fields: ctx, ID, status, reason

func (*WorkflowRunRepo) SaveAttestation

func (_m *WorkflowRunRepo) SaveAttestation(ctx context.Context, ID uuid.UUID, att *dsse.Envelope, digest string) error

SaveAttestation provides a mock function with given fields: ctx, ID, att, digest

func (*WorkflowRunRepo) SaveBundle added in v0.159.0

func (_m *WorkflowRunRepo) SaveBundle(ctx context.Context, ID uuid.UUID, bundle []byte) error

SaveBundle provides a mock function with given fields: ctx, ID, bundle

Jump to

Keyboard shortcuts

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