mocks

package
v0.7.11 Latest Latest
Warning

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

Go to latest
Published: Aug 7, 2023 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ModuleService

type ModuleService struct {
	mock.Mock
}

ModuleService is an autogenerated mock type for the ModuleService type

func NewModuleService

func NewModuleService(t mockConstructorTestingTNewModuleService) *ModuleService

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

func (*ModuleService) CreateModule

func (_m *ModuleService) CreateModule(ctx context.Context, mod module.Module) (*module.Module, error)

CreateModule provides a mock function with given fields: ctx, mod

func (*ModuleService) DeleteModule

func (_m *ModuleService) DeleteModule(ctx context.Context, urn string) error

DeleteModule provides a mock function with given fields: ctx, urn

func (*ModuleService) EXPECT

func (_m *ModuleService) EXPECT() *ModuleService_Expecter

func (*ModuleService) GetModule

func (_m *ModuleService) GetModule(ctx context.Context, urn string) (*module.Module, error)

GetModule provides a mock function with given fields: ctx, urn

func (*ModuleService) ListModules

func (_m *ModuleService) ListModules(ctx context.Context, project string) ([]module.Module, error)

ListModules provides a mock function with given fields: ctx, project

func (*ModuleService) UpdateModule

func (_m *ModuleService) UpdateModule(ctx context.Context, urn string, newConfigs json.RawMessage) (*module.Module, error)

UpdateModule provides a mock function with given fields: ctx, urn, newConfigs

type ModuleService_CreateModule_Call

type ModuleService_CreateModule_Call struct {
	*mock.Call
}

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

func (*ModuleService_CreateModule_Call) Return

func (*ModuleService_CreateModule_Call) Run

func (*ModuleService_CreateModule_Call) RunAndReturn

type ModuleService_DeleteModule_Call

type ModuleService_DeleteModule_Call struct {
	*mock.Call
}

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

func (*ModuleService_DeleteModule_Call) Return

func (*ModuleService_DeleteModule_Call) Run

func (*ModuleService_DeleteModule_Call) RunAndReturn

type ModuleService_Expecter

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

func (*ModuleService_Expecter) CreateModule

func (_e *ModuleService_Expecter) CreateModule(ctx interface{}, mod interface{}) *ModuleService_CreateModule_Call

CreateModule is a helper method to define mock.On call

  • ctx context.Context
  • mod module.Module

func (*ModuleService_Expecter) DeleteModule

func (_e *ModuleService_Expecter) DeleteModule(ctx interface{}, urn interface{}) *ModuleService_DeleteModule_Call

DeleteModule is a helper method to define mock.On call

  • ctx context.Context
  • urn string

func (*ModuleService_Expecter) GetModule

func (_e *ModuleService_Expecter) GetModule(ctx interface{}, urn interface{}) *ModuleService_GetModule_Call

GetModule is a helper method to define mock.On call

  • ctx context.Context
  • urn string

func (*ModuleService_Expecter) ListModules

func (_e *ModuleService_Expecter) ListModules(ctx interface{}, project interface{}) *ModuleService_ListModules_Call

ListModules is a helper method to define mock.On call

  • ctx context.Context
  • project string

func (*ModuleService_Expecter) UpdateModule

func (_e *ModuleService_Expecter) UpdateModule(ctx interface{}, urn interface{}, newConfigs interface{}) *ModuleService_UpdateModule_Call

UpdateModule is a helper method to define mock.On call

  • ctx context.Context
  • urn string
  • newConfigs json.RawMessage

type ModuleService_GetModule_Call

type ModuleService_GetModule_Call struct {
	*mock.Call
}

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

func (*ModuleService_GetModule_Call) Return

func (*ModuleService_GetModule_Call) Run

func (*ModuleService_GetModule_Call) RunAndReturn

type ModuleService_ListModules_Call

type ModuleService_ListModules_Call struct {
	*mock.Call
}

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

func (*ModuleService_ListModules_Call) Return

func (*ModuleService_ListModules_Call) Run

func (*ModuleService_ListModules_Call) RunAndReturn

type ModuleService_UpdateModule_Call

type ModuleService_UpdateModule_Call struct {
	*mock.Call
}

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

func (*ModuleService_UpdateModule_Call) Return

func (*ModuleService_UpdateModule_Call) Run

func (*ModuleService_UpdateModule_Call) RunAndReturn

type ResourceService

type ResourceService struct {
	mock.Mock
}

ResourceService is an autogenerated mock type for the ResourceService type

func NewResourceService

func NewResourceService(t mockConstructorTestingTNewResourceService) *ResourceService

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

func (*ResourceService) ApplyAction

func (_m *ResourceService) ApplyAction(ctx context.Context, urn string, action module.ActionRequest) (*resource.Resource, error)

ApplyAction provides a mock function with given fields: ctx, urn, action

func (*ResourceService) CreateResource

func (_m *ResourceService) CreateResource(ctx context.Context, res resource.Resource) (*resource.Resource, error)

CreateResource provides a mock function with given fields: ctx, res

func (*ResourceService) DeleteResource

func (_m *ResourceService) DeleteResource(ctx context.Context, urn string) error

DeleteResource provides a mock function with given fields: ctx, urn

func (*ResourceService) EXPECT

func (*ResourceService) GetLog

func (_m *ResourceService) GetLog(ctx context.Context, urn string, filter map[string]string) (<-chan module.LogChunk, error)

GetLog provides a mock function with given fields: ctx, urn, filter

func (*ResourceService) GetResource

func (_m *ResourceService) GetResource(ctx context.Context, urn string) (*resource.Resource, error)

GetResource provides a mock function with given fields: ctx, urn

func (*ResourceService) GetRevisions

func (_m *ResourceService) GetRevisions(ctx context.Context, selector resource.RevisionsSelector) ([]resource.Revision, error)

GetRevisions provides a mock function with given fields: ctx, selector

func (*ResourceService) ListResources

func (_m *ResourceService) ListResources(ctx context.Context, filter resource.Filter) ([]resource.Resource, error)

ListResources provides a mock function with given fields: ctx, filter

func (*ResourceService) UpdateResource

func (_m *ResourceService) UpdateResource(ctx context.Context, urn string, req resource.UpdateRequest) (*resource.Resource, error)

UpdateResource provides a mock function with given fields: ctx, urn, req

type ResourceService_ApplyAction_Call

type ResourceService_ApplyAction_Call struct {
	*mock.Call
}

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

func (*ResourceService_ApplyAction_Call) Return

func (*ResourceService_ApplyAction_Call) Run

func (*ResourceService_ApplyAction_Call) RunAndReturn

type ResourceService_CreateResource_Call

type ResourceService_CreateResource_Call struct {
	*mock.Call
}

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

func (*ResourceService_CreateResource_Call) Return

func (*ResourceService_CreateResource_Call) Run

func (*ResourceService_CreateResource_Call) RunAndReturn

type ResourceService_DeleteResource_Call

type ResourceService_DeleteResource_Call struct {
	*mock.Call
}

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

func (*ResourceService_DeleteResource_Call) Return

func (*ResourceService_DeleteResource_Call) Run

func (*ResourceService_DeleteResource_Call) RunAndReturn

type ResourceService_Expecter

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

func (*ResourceService_Expecter) ApplyAction

func (_e *ResourceService_Expecter) ApplyAction(ctx interface{}, urn interface{}, action interface{}) *ResourceService_ApplyAction_Call

ApplyAction is a helper method to define mock.On call

  • ctx context.Context
  • urn string
  • action module.ActionRequest

func (*ResourceService_Expecter) CreateResource

func (_e *ResourceService_Expecter) CreateResource(ctx interface{}, res interface{}) *ResourceService_CreateResource_Call

CreateResource is a helper method to define mock.On call

  • ctx context.Context
  • res resource.Resource

func (*ResourceService_Expecter) DeleteResource

func (_e *ResourceService_Expecter) DeleteResource(ctx interface{}, urn interface{}) *ResourceService_DeleteResource_Call

DeleteResource is a helper method to define mock.On call

  • ctx context.Context
  • urn string

func (*ResourceService_Expecter) GetLog

func (_e *ResourceService_Expecter) GetLog(ctx interface{}, urn interface{}, filter interface{}) *ResourceService_GetLog_Call

GetLog is a helper method to define mock.On call

  • ctx context.Context
  • urn string
  • filter map[string]string

func (*ResourceService_Expecter) GetResource

func (_e *ResourceService_Expecter) GetResource(ctx interface{}, urn interface{}) *ResourceService_GetResource_Call

GetResource is a helper method to define mock.On call

  • ctx context.Context
  • urn string

func (*ResourceService_Expecter) GetRevisions

func (_e *ResourceService_Expecter) GetRevisions(ctx interface{}, selector interface{}) *ResourceService_GetRevisions_Call

GetRevisions is a helper method to define mock.On call

  • ctx context.Context
  • selector resource.RevisionsSelector

func (*ResourceService_Expecter) ListResources

func (_e *ResourceService_Expecter) ListResources(ctx interface{}, filter interface{}) *ResourceService_ListResources_Call

ListResources is a helper method to define mock.On call

  • ctx context.Context
  • filter resource.Filter

func (*ResourceService_Expecter) UpdateResource

func (_e *ResourceService_Expecter) UpdateResource(ctx interface{}, urn interface{}, req interface{}) *ResourceService_UpdateResource_Call

UpdateResource is a helper method to define mock.On call

  • ctx context.Context
  • urn string
  • req resource.UpdateRequest

type ResourceService_GetLog_Call

type ResourceService_GetLog_Call struct {
	*mock.Call
}

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

func (*ResourceService_GetLog_Call) Return

func (*ResourceService_GetLog_Call) Run

func (*ResourceService_GetLog_Call) RunAndReturn

type ResourceService_GetResource_Call

type ResourceService_GetResource_Call struct {
	*mock.Call
}

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

func (*ResourceService_GetResource_Call) Return

func (*ResourceService_GetResource_Call) Run

func (*ResourceService_GetResource_Call) RunAndReturn

type ResourceService_GetRevisions_Call

type ResourceService_GetRevisions_Call struct {
	*mock.Call
}

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

func (*ResourceService_GetRevisions_Call) Return

func (*ResourceService_GetRevisions_Call) Run

func (*ResourceService_GetRevisions_Call) RunAndReturn

type ResourceService_ListResources_Call

type ResourceService_ListResources_Call struct {
	*mock.Call
}

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

func (*ResourceService_ListResources_Call) Return

func (*ResourceService_ListResources_Call) Run

func (*ResourceService_ListResources_Call) RunAndReturn

type ResourceService_UpdateResource_Call

type ResourceService_UpdateResource_Call struct {
	*mock.Call
}

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

func (*ResourceService_UpdateResource_Call) Return

func (*ResourceService_UpdateResource_Call) Run

func (*ResourceService_UpdateResource_Call) RunAndReturn

Jump to

Keyboard shortcuts

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