harbor/src/testing/controller/scandataexport/controller.go

148 lines
3.8 KiB
Go

// Code generated by mockery v2.35.4. DO NOT EDIT.
package scandataexport
import (
context "context"
export "github.com/goharbor/harbor/src/pkg/scan/export"
mock "github.com/stretchr/testify/mock"
task "github.com/goharbor/harbor/src/pkg/task"
)
// Controller is an autogenerated mock type for the Controller type
type Controller struct {
mock.Mock
}
// DeleteExecution provides a mock function with given fields: ctx, executionID
func (_m *Controller) DeleteExecution(ctx context.Context, executionID int64) error {
ret := _m.Called(ctx, executionID)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, int64) error); ok {
r0 = rf(ctx, executionID)
} else {
r0 = ret.Error(0)
}
return r0
}
// GetExecution provides a mock function with given fields: ctx, executionID
func (_m *Controller) GetExecution(ctx context.Context, executionID int64) (*export.Execution, error) {
ret := _m.Called(ctx, executionID)
var r0 *export.Execution
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, int64) (*export.Execution, error)); ok {
return rf(ctx, executionID)
}
if rf, ok := ret.Get(0).(func(context.Context, int64) *export.Execution); ok {
r0 = rf(ctx, executionID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*export.Execution)
}
}
if rf, ok := ret.Get(1).(func(context.Context, int64) error); ok {
r1 = rf(ctx, executionID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetTask provides a mock function with given fields: ctx, executionID
func (_m *Controller) GetTask(ctx context.Context, executionID int64) (*task.Task, error) {
ret := _m.Called(ctx, executionID)
var r0 *task.Task
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, int64) (*task.Task, error)); ok {
return rf(ctx, executionID)
}
if rf, ok := ret.Get(0).(func(context.Context, int64) *task.Task); ok {
r0 = rf(ctx, executionID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*task.Task)
}
}
if rf, ok := ret.Get(1).(func(context.Context, int64) error); ok {
r1 = rf(ctx, executionID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// ListExecutions provides a mock function with given fields: ctx, userName
func (_m *Controller) ListExecutions(ctx context.Context, userName string) ([]*export.Execution, error) {
ret := _m.Called(ctx, userName)
var r0 []*export.Execution
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, string) ([]*export.Execution, error)); ok {
return rf(ctx, userName)
}
if rf, ok := ret.Get(0).(func(context.Context, string) []*export.Execution); ok {
r0 = rf(ctx, userName)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*export.Execution)
}
}
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, userName)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Start provides a mock function with given fields: ctx, criteria
func (_m *Controller) Start(ctx context.Context, criteria export.Request) (int64, error) {
ret := _m.Called(ctx, criteria)
var r0 int64
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, export.Request) (int64, error)); ok {
return rf(ctx, criteria)
}
if rf, ok := ret.Get(0).(func(context.Context, export.Request) int64); ok {
r0 = rf(ctx, criteria)
} else {
r0 = ret.Get(0).(int64)
}
if rf, ok := ret.Get(1).(func(context.Context, export.Request) error); ok {
r1 = rf(ctx, criteria)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// NewController creates a new instance of Controller. 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 NewController(t interface {
mock.TestingT
Cleanup(func())
}) *Controller {
mock := &Controller{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}