blob: 8969d3b40c6671733c5f785e25a3c036780e4e50 [file] [log] [blame]
// Code generated by mockery; DO NOT EDIT.
// github.com/vektra/mockery
// template: testify
package mocks
import (
"context"
"github.com/apache/airflow/go-sdk/pkg/api"
mock "github.com/stretchr/testify/mock"
"resty.dev/v3"
)
// NewXcomsClient creates a new instance of XcomsClient. 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 NewXcomsClient(t interface {
mock.TestingT
Cleanup(func())
}) *XcomsClient {
mock := &XcomsClient{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}
// XcomsClient is an autogenerated mock type for the XcomsClient type
type XcomsClient struct {
mock.Mock
}
type XcomsClient_Expecter struct {
mock *mock.Mock
}
func (_m *XcomsClient) EXPECT() *XcomsClient_Expecter {
return &XcomsClient_Expecter{mock: &_m.Mock}
}
// Delete provides a mock function for the type XcomsClient
func (_mock *XcomsClient) Delete(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.DeleteXcomParams) (*interface{}, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params)
if len(ret) == 0 {
panic("no return value specified for Delete")
}
var r0 *interface{}
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.DeleteXcomParams) (*interface{}, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.DeleteXcomParams) *interface{}); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*interface{})
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.DeleteXcomParams) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_Delete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Delete'
type XcomsClient_Delete_Call struct {
*mock.Call
}
// Delete is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.DeleteXcomParams
func (_e *XcomsClient_Expecter) Delete(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}) *XcomsClient_Delete_Call {
return &XcomsClient_Delete_Call{Call: _e.mock.On("Delete", ctx, dagId, runId, taskId, key, params)}
}
func (_c *XcomsClient_Delete_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.DeleteXcomParams)) *XcomsClient_Delete_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.DeleteXcomParams
if args[5] != nil {
arg5 = args[5].(*api.DeleteXcomParams)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_Delete_Call) Return(ifaceVal *interface{}, err error) *XcomsClient_Delete_Call {
_c.Call.Return(ifaceVal, err)
return _c
}
func (_c *XcomsClient_Delete_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.DeleteXcomParams) (*interface{}, error)) *XcomsClient_Delete_Call {
_c.Call.Return(run)
return _c
}
// DeleteResponse provides a mock function for the type XcomsClient
func (_mock *XcomsClient) DeleteResponse(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.DeleteXcomParams) (*resty.Response, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params)
if len(ret) == 0 {
panic("no return value specified for DeleteResponse")
}
var r0 *resty.Response
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.DeleteXcomParams) (*resty.Response, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.DeleteXcomParams) *resty.Response); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*resty.Response)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.DeleteXcomParams) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_DeleteResponse_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteResponse'
type XcomsClient_DeleteResponse_Call struct {
*mock.Call
}
// DeleteResponse is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.DeleteXcomParams
func (_e *XcomsClient_Expecter) DeleteResponse(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}) *XcomsClient_DeleteResponse_Call {
return &XcomsClient_DeleteResponse_Call{Call: _e.mock.On("DeleteResponse", ctx, dagId, runId, taskId, key, params)}
}
func (_c *XcomsClient_DeleteResponse_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.DeleteXcomParams)) *XcomsClient_DeleteResponse_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.DeleteXcomParams
if args[5] != nil {
arg5 = args[5].(*api.DeleteXcomParams)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_DeleteResponse_Call) Return(response *resty.Response, err error) *XcomsClient_DeleteResponse_Call {
_c.Call.Return(response, err)
return _c
}
func (_c *XcomsClient_DeleteResponse_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.DeleteXcomParams) (*resty.Response, error)) *XcomsClient_DeleteResponse_Call {
_c.Call.Return(run)
return _c
}
// Get provides a mock function for the type XcomsClient
func (_mock *XcomsClient) Get(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetXcomParams) (*api.XComResponse, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params)
if len(ret) == 0 {
panic("no return value specified for Get")
}
var r0 *api.XComResponse
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.GetXcomParams) (*api.XComResponse, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.GetXcomParams) *api.XComResponse); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*api.XComResponse)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.GetXcomParams) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'
type XcomsClient_Get_Call struct {
*mock.Call
}
// Get is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.GetXcomParams
func (_e *XcomsClient_Expecter) Get(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}) *XcomsClient_Get_Call {
return &XcomsClient_Get_Call{Call: _e.mock.On("Get", ctx, dagId, runId, taskId, key, params)}
}
func (_c *XcomsClient_Get_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetXcomParams)) *XcomsClient_Get_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.GetXcomParams
if args[5] != nil {
arg5 = args[5].(*api.GetXcomParams)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_Get_Call) Return(xComResponse *api.XComResponse, err error) *XcomsClient_Get_Call {
_c.Call.Return(xComResponse, err)
return _c
}
func (_c *XcomsClient_Get_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetXcomParams) (*api.XComResponse, error)) *XcomsClient_Get_Call {
_c.Call.Return(run)
return _c
}
// GetMappedByIndex provides a mock function for the type XcomsClient
func (_mock *XcomsClient) GetMappedByIndex(ctx context.Context, dagId string, runId string, taskId string, key string, offset int) (*api.XComSequenceIndexResponse, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, offset)
if len(ret) == 0 {
panic("no return value specified for GetMappedByIndex")
}
var r0 *api.XComSequenceIndexResponse
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, int) (*api.XComSequenceIndexResponse, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, offset)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, int) *api.XComSequenceIndexResponse); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, offset)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*api.XComSequenceIndexResponse)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, int) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, offset)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_GetMappedByIndex_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetMappedByIndex'
type XcomsClient_GetMappedByIndex_Call struct {
*mock.Call
}
// GetMappedByIndex is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - offset int
func (_e *XcomsClient_Expecter) GetMappedByIndex(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, offset interface{}) *XcomsClient_GetMappedByIndex_Call {
return &XcomsClient_GetMappedByIndex_Call{Call: _e.mock.On("GetMappedByIndex", ctx, dagId, runId, taskId, key, offset)}
}
func (_c *XcomsClient_GetMappedByIndex_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, offset int)) *XcomsClient_GetMappedByIndex_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 int
if args[5] != nil {
arg5 = args[5].(int)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_GetMappedByIndex_Call) Return(v *api.XComSequenceIndexResponse, err error) *XcomsClient_GetMappedByIndex_Call {
_c.Call.Return(v, err)
return _c
}
func (_c *XcomsClient_GetMappedByIndex_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, offset int) (*api.XComSequenceIndexResponse, error)) *XcomsClient_GetMappedByIndex_Call {
_c.Call.Return(run)
return _c
}
// GetMappedByIndexResponse provides a mock function for the type XcomsClient
func (_mock *XcomsClient) GetMappedByIndexResponse(ctx context.Context, dagId string, runId string, taskId string, key string, offset int) (*resty.Response, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, offset)
if len(ret) == 0 {
panic("no return value specified for GetMappedByIndexResponse")
}
var r0 *resty.Response
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, int) (*resty.Response, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, offset)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, int) *resty.Response); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, offset)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*resty.Response)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, int) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, offset)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_GetMappedByIndexResponse_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetMappedByIndexResponse'
type XcomsClient_GetMappedByIndexResponse_Call struct {
*mock.Call
}
// GetMappedByIndexResponse is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - offset int
func (_e *XcomsClient_Expecter) GetMappedByIndexResponse(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, offset interface{}) *XcomsClient_GetMappedByIndexResponse_Call {
return &XcomsClient_GetMappedByIndexResponse_Call{Call: _e.mock.On("GetMappedByIndexResponse", ctx, dagId, runId, taskId, key, offset)}
}
func (_c *XcomsClient_GetMappedByIndexResponse_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, offset int)) *XcomsClient_GetMappedByIndexResponse_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 int
if args[5] != nil {
arg5 = args[5].(int)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_GetMappedByIndexResponse_Call) Return(response *resty.Response, err error) *XcomsClient_GetMappedByIndexResponse_Call {
_c.Call.Return(response, err)
return _c
}
func (_c *XcomsClient_GetMappedByIndexResponse_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, offset int) (*resty.Response, error)) *XcomsClient_GetMappedByIndexResponse_Call {
_c.Call.Return(run)
return _c
}
// GetMappedBySlice provides a mock function for the type XcomsClient
func (_mock *XcomsClient) GetMappedBySlice(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetMappedXcomBySliceParams) (*api.XComSequenceSliceResponse, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params)
if len(ret) == 0 {
panic("no return value specified for GetMappedBySlice")
}
var r0 *api.XComSequenceSliceResponse
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.GetMappedXcomBySliceParams) (*api.XComSequenceSliceResponse, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.GetMappedXcomBySliceParams) *api.XComSequenceSliceResponse); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*api.XComSequenceSliceResponse)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.GetMappedXcomBySliceParams) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_GetMappedBySlice_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetMappedBySlice'
type XcomsClient_GetMappedBySlice_Call struct {
*mock.Call
}
// GetMappedBySlice is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.GetMappedXcomBySliceParams
func (_e *XcomsClient_Expecter) GetMappedBySlice(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}) *XcomsClient_GetMappedBySlice_Call {
return &XcomsClient_GetMappedBySlice_Call{Call: _e.mock.On("GetMappedBySlice", ctx, dagId, runId, taskId, key, params)}
}
func (_c *XcomsClient_GetMappedBySlice_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetMappedXcomBySliceParams)) *XcomsClient_GetMappedBySlice_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.GetMappedXcomBySliceParams
if args[5] != nil {
arg5 = args[5].(*api.GetMappedXcomBySliceParams)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_GetMappedBySlice_Call) Return(v *api.XComSequenceSliceResponse, err error) *XcomsClient_GetMappedBySlice_Call {
_c.Call.Return(v, err)
return _c
}
func (_c *XcomsClient_GetMappedBySlice_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetMappedXcomBySliceParams) (*api.XComSequenceSliceResponse, error)) *XcomsClient_GetMappedBySlice_Call {
_c.Call.Return(run)
return _c
}
// GetMappedBySliceResponse provides a mock function for the type XcomsClient
func (_mock *XcomsClient) GetMappedBySliceResponse(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetMappedXcomBySliceParams) (*resty.Response, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params)
if len(ret) == 0 {
panic("no return value specified for GetMappedBySliceResponse")
}
var r0 *resty.Response
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.GetMappedXcomBySliceParams) (*resty.Response, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.GetMappedXcomBySliceParams) *resty.Response); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*resty.Response)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.GetMappedXcomBySliceParams) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_GetMappedBySliceResponse_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetMappedBySliceResponse'
type XcomsClient_GetMappedBySliceResponse_Call struct {
*mock.Call
}
// GetMappedBySliceResponse is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.GetMappedXcomBySliceParams
func (_e *XcomsClient_Expecter) GetMappedBySliceResponse(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}) *XcomsClient_GetMappedBySliceResponse_Call {
return &XcomsClient_GetMappedBySliceResponse_Call{Call: _e.mock.On("GetMappedBySliceResponse", ctx, dagId, runId, taskId, key, params)}
}
func (_c *XcomsClient_GetMappedBySliceResponse_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetMappedXcomBySliceParams)) *XcomsClient_GetMappedBySliceResponse_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.GetMappedXcomBySliceParams
if args[5] != nil {
arg5 = args[5].(*api.GetMappedXcomBySliceParams)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_GetMappedBySliceResponse_Call) Return(response *resty.Response, err error) *XcomsClient_GetMappedBySliceResponse_Call {
_c.Call.Return(response, err)
return _c
}
func (_c *XcomsClient_GetMappedBySliceResponse_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetMappedXcomBySliceParams) (*resty.Response, error)) *XcomsClient_GetMappedBySliceResponse_Call {
_c.Call.Return(run)
return _c
}
// GetResponse provides a mock function for the type XcomsClient
func (_mock *XcomsClient) GetResponse(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetXcomParams) (*resty.Response, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params)
if len(ret) == 0 {
panic("no return value specified for GetResponse")
}
var r0 *resty.Response
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.GetXcomParams) (*resty.Response, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.GetXcomParams) *resty.Response); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*resty.Response)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.GetXcomParams) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_GetResponse_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetResponse'
type XcomsClient_GetResponse_Call struct {
*mock.Call
}
// GetResponse is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.GetXcomParams
func (_e *XcomsClient_Expecter) GetResponse(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}) *XcomsClient_GetResponse_Call {
return &XcomsClient_GetResponse_Call{Call: _e.mock.On("GetResponse", ctx, dagId, runId, taskId, key, params)}
}
func (_c *XcomsClient_GetResponse_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetXcomParams)) *XcomsClient_GetResponse_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.GetXcomParams
if args[5] != nil {
arg5 = args[5].(*api.GetXcomParams)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_GetResponse_Call) Return(response *resty.Response, err error) *XcomsClient_GetResponse_Call {
_c.Call.Return(response, err)
return _c
}
func (_c *XcomsClient_GetResponse_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.GetXcomParams) (*resty.Response, error)) *XcomsClient_GetResponse_Call {
_c.Call.Return(run)
return _c
}
// Head provides a mock function for the type XcomsClient
func (_mock *XcomsClient) Head(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.HeadXcomParams) (*interface{}, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params)
if len(ret) == 0 {
panic("no return value specified for Head")
}
var r0 *interface{}
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.HeadXcomParams) (*interface{}, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.HeadXcomParams) *interface{}); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*interface{})
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.HeadXcomParams) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_Head_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Head'
type XcomsClient_Head_Call struct {
*mock.Call
}
// Head is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.HeadXcomParams
func (_e *XcomsClient_Expecter) Head(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}) *XcomsClient_Head_Call {
return &XcomsClient_Head_Call{Call: _e.mock.On("Head", ctx, dagId, runId, taskId, key, params)}
}
func (_c *XcomsClient_Head_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.HeadXcomParams)) *XcomsClient_Head_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.HeadXcomParams
if args[5] != nil {
arg5 = args[5].(*api.HeadXcomParams)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_Head_Call) Return(ifaceVal *interface{}, err error) *XcomsClient_Head_Call {
_c.Call.Return(ifaceVal, err)
return _c
}
func (_c *XcomsClient_Head_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.HeadXcomParams) (*interface{}, error)) *XcomsClient_Head_Call {
_c.Call.Return(run)
return _c
}
// HeadResponse provides a mock function for the type XcomsClient
func (_mock *XcomsClient) HeadResponse(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.HeadXcomParams) (*resty.Response, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params)
if len(ret) == 0 {
panic("no return value specified for HeadResponse")
}
var r0 *resty.Response
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.HeadXcomParams) (*resty.Response, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.HeadXcomParams) *resty.Response); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*resty.Response)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.HeadXcomParams) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_HeadResponse_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'HeadResponse'
type XcomsClient_HeadResponse_Call struct {
*mock.Call
}
// HeadResponse is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.HeadXcomParams
func (_e *XcomsClient_Expecter) HeadResponse(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}) *XcomsClient_HeadResponse_Call {
return &XcomsClient_HeadResponse_Call{Call: _e.mock.On("HeadResponse", ctx, dagId, runId, taskId, key, params)}
}
func (_c *XcomsClient_HeadResponse_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.HeadXcomParams)) *XcomsClient_HeadResponse_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.HeadXcomParams
if args[5] != nil {
arg5 = args[5].(*api.HeadXcomParams)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
)
})
return _c
}
func (_c *XcomsClient_HeadResponse_Call) Return(response *resty.Response, err error) *XcomsClient_HeadResponse_Call {
_c.Call.Return(response, err)
return _c
}
func (_c *XcomsClient_HeadResponse_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.HeadXcomParams) (*resty.Response, error)) *XcomsClient_HeadResponse_Call {
_c.Call.Return(run)
return _c
}
// Set provides a mock function for the type XcomsClient
func (_mock *XcomsClient) Set(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.SetXcomParams, body *interface{}) (*interface{}, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params, body)
if len(ret) == 0 {
panic("no return value specified for Set")
}
var r0 *interface{}
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.SetXcomParams, *interface{}) (*interface{}, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params, body)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.SetXcomParams, *interface{}) *interface{}); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params, body)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*interface{})
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.SetXcomParams, *interface{}) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params, body)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_Set_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Set'
type XcomsClient_Set_Call struct {
*mock.Call
}
// Set is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.SetXcomParams
// - body *interface{}
func (_e *XcomsClient_Expecter) Set(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}, body interface{}) *XcomsClient_Set_Call {
return &XcomsClient_Set_Call{Call: _e.mock.On("Set", ctx, dagId, runId, taskId, key, params, body)}
}
func (_c *XcomsClient_Set_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.SetXcomParams, body *interface{})) *XcomsClient_Set_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.SetXcomParams
if args[5] != nil {
arg5 = args[5].(*api.SetXcomParams)
}
var arg6 *interface{}
if args[6] != nil {
arg6 = args[6].(*interface{})
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
arg6,
)
})
return _c
}
func (_c *XcomsClient_Set_Call) Return(ifaceVal *interface{}, err error) *XcomsClient_Set_Call {
_c.Call.Return(ifaceVal, err)
return _c
}
func (_c *XcomsClient_Set_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.SetXcomParams, body *interface{}) (*interface{}, error)) *XcomsClient_Set_Call {
_c.Call.Return(run)
return _c
}
// SetResponse provides a mock function for the type XcomsClient
func (_mock *XcomsClient) SetResponse(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.SetXcomParams, body *interface{}) (*resty.Response, error) {
ret := _mock.Called(ctx, dagId, runId, taskId, key, params, body)
if len(ret) == 0 {
panic("no return value specified for SetResponse")
}
var r0 *resty.Response
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.SetXcomParams, *interface{}) (*resty.Response, error)); ok {
return returnFunc(ctx, dagId, runId, taskId, key, params, body)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, string, string, string, string, *api.SetXcomParams, *interface{}) *resty.Response); ok {
r0 = returnFunc(ctx, dagId, runId, taskId, key, params, body)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*resty.Response)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context, string, string, string, string, *api.SetXcomParams, *interface{}) error); ok {
r1 = returnFunc(ctx, dagId, runId, taskId, key, params, body)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// XcomsClient_SetResponse_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SetResponse'
type XcomsClient_SetResponse_Call struct {
*mock.Call
}
// SetResponse is a helper method to define mock.On call
// - ctx context.Context
// - dagId string
// - runId string
// - taskId string
// - key string
// - params *api.SetXcomParams
// - body *interface{}
func (_e *XcomsClient_Expecter) SetResponse(ctx interface{}, dagId interface{}, runId interface{}, taskId interface{}, key interface{}, params interface{}, body interface{}) *XcomsClient_SetResponse_Call {
return &XcomsClient_SetResponse_Call{Call: _e.mock.On("SetResponse", ctx, dagId, runId, taskId, key, params, body)}
}
func (_c *XcomsClient_SetResponse_Call) Run(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.SetXcomParams, body *interface{})) *XcomsClient_SetResponse_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 string
if args[1] != nil {
arg1 = args[1].(string)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
var arg4 string
if args[4] != nil {
arg4 = args[4].(string)
}
var arg5 *api.SetXcomParams
if args[5] != nil {
arg5 = args[5].(*api.SetXcomParams)
}
var arg6 *interface{}
if args[6] != nil {
arg6 = args[6].(*interface{})
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5,
arg6,
)
})
return _c
}
func (_c *XcomsClient_SetResponse_Call) Return(response *resty.Response, err error) *XcomsClient_SetResponse_Call {
_c.Call.Return(response, err)
return _c
}
func (_c *XcomsClient_SetResponse_Call) RunAndReturn(run func(ctx context.Context, dagId string, runId string, taskId string, key string, params *api.SetXcomParams, body *interface{}) (*resty.Response, error)) *XcomsClient_SetResponse_Call {
_c.Call.Return(run)
return _c
}