-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathtask.go
228 lines (180 loc) · 4.81 KB
/
task.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// Code generated by mockery v2.22.1. DO NOT EDIT.
package mocks
import (
context "context"
logger "github.com/smartcontractkit/chainlink/v2/core/logger"
mock "github.com/stretchr/testify/mock"
pipeline "github.com/smartcontractkit/chainlink/v2/core/services/pipeline"
time "time"
)
// Task is an autogenerated mock type for the Task type
type Task struct {
mock.Mock
}
// Base provides a mock function with given fields:
func (_m *Task) Base() *pipeline.BaseTask {
ret := _m.Called()
var r0 *pipeline.BaseTask
if rf, ok := ret.Get(0).(func() *pipeline.BaseTask); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*pipeline.BaseTask)
}
}
return r0
}
// DotID provides a mock function with given fields:
func (_m *Task) DotID() string {
ret := _m.Called()
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// ID provides a mock function with given fields:
func (_m *Task) ID() int {
ret := _m.Called()
var r0 int
if rf, ok := ret.Get(0).(func() int); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(int)
}
return r0
}
// Inputs provides a mock function with given fields:
func (_m *Task) Inputs() []pipeline.TaskDependency {
ret := _m.Called()
var r0 []pipeline.TaskDependency
if rf, ok := ret.Get(0).(func() []pipeline.TaskDependency); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]pipeline.TaskDependency)
}
}
return r0
}
// OutputIndex provides a mock function with given fields:
func (_m *Task) OutputIndex() int32 {
ret := _m.Called()
var r0 int32
if rf, ok := ret.Get(0).(func() int32); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(int32)
}
return r0
}
// Outputs provides a mock function with given fields:
func (_m *Task) Outputs() []pipeline.Task {
ret := _m.Called()
var r0 []pipeline.Task
if rf, ok := ret.Get(0).(func() []pipeline.Task); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]pipeline.Task)
}
}
return r0
}
// Run provides a mock function with given fields: ctx, lggr, vars, inputs
func (_m *Task) Run(ctx context.Context, lggr logger.Logger, vars pipeline.Vars, inputs []pipeline.Result) (pipeline.Result, pipeline.RunInfo) {
ret := _m.Called(ctx, lggr, vars, inputs)
var r0 pipeline.Result
var r1 pipeline.RunInfo
if rf, ok := ret.Get(0).(func(context.Context, logger.Logger, pipeline.Vars, []pipeline.Result) (pipeline.Result, pipeline.RunInfo)); ok {
return rf(ctx, lggr, vars, inputs)
}
if rf, ok := ret.Get(0).(func(context.Context, logger.Logger, pipeline.Vars, []pipeline.Result) pipeline.Result); ok {
r0 = rf(ctx, lggr, vars, inputs)
} else {
r0 = ret.Get(0).(pipeline.Result)
}
if rf, ok := ret.Get(1).(func(context.Context, logger.Logger, pipeline.Vars, []pipeline.Result) pipeline.RunInfo); ok {
r1 = rf(ctx, lggr, vars, inputs)
} else {
r1 = ret.Get(1).(pipeline.RunInfo)
}
return r0, r1
}
// TaskMaxBackoff provides a mock function with given fields:
func (_m *Task) TaskMaxBackoff() time.Duration {
ret := _m.Called()
var r0 time.Duration
if rf, ok := ret.Get(0).(func() time.Duration); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(time.Duration)
}
return r0
}
// TaskMinBackoff provides a mock function with given fields:
func (_m *Task) TaskMinBackoff() time.Duration {
ret := _m.Called()
var r0 time.Duration
if rf, ok := ret.Get(0).(func() time.Duration); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(time.Duration)
}
return r0
}
// TaskRetries provides a mock function with given fields:
func (_m *Task) TaskRetries() uint32 {
ret := _m.Called()
var r0 uint32
if rf, ok := ret.Get(0).(func() uint32); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(uint32)
}
return r0
}
// TaskTimeout provides a mock function with given fields:
func (_m *Task) TaskTimeout() (time.Duration, bool) {
ret := _m.Called()
var r0 time.Duration
var r1 bool
if rf, ok := ret.Get(0).(func() (time.Duration, bool)); ok {
return rf()
}
if rf, ok := ret.Get(0).(func() time.Duration); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(time.Duration)
}
if rf, ok := ret.Get(1).(func() bool); ok {
r1 = rf()
} else {
r1 = ret.Get(1).(bool)
}
return r0, r1
}
// Type provides a mock function with given fields:
func (_m *Task) Type() pipeline.TaskType {
ret := _m.Called()
var r0 pipeline.TaskType
if rf, ok := ret.Get(0).(func() pipeline.TaskType); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(pipeline.TaskType)
}
return r0
}
type mockConstructorTestingTNewTask interface {
mock.TestingT
Cleanup(func())
}
// NewTask creates a new instance of Task. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewTask(t mockConstructorTestingTNewTask) *Task {
mock := &Task{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}