-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
runner.go
271 lines (218 loc) · 7.35 KB
/
runner.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
// Code generated by mockery v2.20.0. DO NOT EDIT.
package mocks
import (
context "context"
logger "github.com/smartcontractkit/chainlink/core/logger"
mock "github.com/stretchr/testify/mock"
pg "github.com/smartcontractkit/chainlink/core/services/pg"
pipeline "github.com/smartcontractkit/chainlink/core/services/pipeline"
uuid "github.com/satori/go.uuid"
)
// Runner is an autogenerated mock type for the Runner type
type Runner struct {
mock.Mock
}
// Close provides a mock function with given fields:
func (_m *Runner) Close() error {
ret := _m.Called()
var r0 error
if rf, ok := ret.Get(0).(func() error); ok {
r0 = rf()
} else {
r0 = ret.Error(0)
}
return r0
}
// ExecuteAndInsertFinishedRun provides a mock function with given fields: ctx, spec, vars, l, saveSuccessfulTaskRuns
func (_m *Runner) ExecuteAndInsertFinishedRun(ctx context.Context, spec pipeline.Spec, vars pipeline.Vars, l logger.Logger, saveSuccessfulTaskRuns bool) (int64, pipeline.FinalResult, error) {
ret := _m.Called(ctx, spec, vars, l, saveSuccessfulTaskRuns)
var r0 int64
var r1 pipeline.FinalResult
var r2 error
if rf, ok := ret.Get(0).(func(context.Context, pipeline.Spec, pipeline.Vars, logger.Logger, bool) (int64, pipeline.FinalResult, error)); ok {
return rf(ctx, spec, vars, l, saveSuccessfulTaskRuns)
}
if rf, ok := ret.Get(0).(func(context.Context, pipeline.Spec, pipeline.Vars, logger.Logger, bool) int64); ok {
r0 = rf(ctx, spec, vars, l, saveSuccessfulTaskRuns)
} else {
r0 = ret.Get(0).(int64)
}
if rf, ok := ret.Get(1).(func(context.Context, pipeline.Spec, pipeline.Vars, logger.Logger, bool) pipeline.FinalResult); ok {
r1 = rf(ctx, spec, vars, l, saveSuccessfulTaskRuns)
} else {
r1 = ret.Get(1).(pipeline.FinalResult)
}
if rf, ok := ret.Get(2).(func(context.Context, pipeline.Spec, pipeline.Vars, logger.Logger, bool) error); ok {
r2 = rf(ctx, spec, vars, l, saveSuccessfulTaskRuns)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}
// ExecuteRun provides a mock function with given fields: ctx, spec, vars, l
func (_m *Runner) ExecuteRun(ctx context.Context, spec pipeline.Spec, vars pipeline.Vars, l logger.Logger) (pipeline.Run, pipeline.TaskRunResults, error) {
ret := _m.Called(ctx, spec, vars, l)
var r0 pipeline.Run
var r1 pipeline.TaskRunResults
var r2 error
if rf, ok := ret.Get(0).(func(context.Context, pipeline.Spec, pipeline.Vars, logger.Logger) (pipeline.Run, pipeline.TaskRunResults, error)); ok {
return rf(ctx, spec, vars, l)
}
if rf, ok := ret.Get(0).(func(context.Context, pipeline.Spec, pipeline.Vars, logger.Logger) pipeline.Run); ok {
r0 = rf(ctx, spec, vars, l)
} else {
r0 = ret.Get(0).(pipeline.Run)
}
if rf, ok := ret.Get(1).(func(context.Context, pipeline.Spec, pipeline.Vars, logger.Logger) pipeline.TaskRunResults); ok {
r1 = rf(ctx, spec, vars, l)
} else {
if ret.Get(1) != nil {
r1 = ret.Get(1).(pipeline.TaskRunResults)
}
}
if rf, ok := ret.Get(2).(func(context.Context, pipeline.Spec, pipeline.Vars, logger.Logger) error); ok {
r2 = rf(ctx, spec, vars, l)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}
// HealthReport provides a mock function with given fields:
func (_m *Runner) HealthReport() map[string]error {
ret := _m.Called()
var r0 map[string]error
if rf, ok := ret.Get(0).(func() map[string]error); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]error)
}
}
return r0
}
// Healthy provides a mock function with given fields:
func (_m *Runner) Healthy() error {
ret := _m.Called()
var r0 error
if rf, ok := ret.Get(0).(func() error); ok {
r0 = rf()
} else {
r0 = ret.Error(0)
}
return r0
}
// InsertFinishedRun provides a mock function with given fields: run, saveSuccessfulTaskRuns, qopts
func (_m *Runner) InsertFinishedRun(run *pipeline.Run, saveSuccessfulTaskRuns bool, qopts ...pg.QOpt) error {
_va := make([]interface{}, len(qopts))
for _i := range qopts {
_va[_i] = qopts[_i]
}
var _ca []interface{}
_ca = append(_ca, run, saveSuccessfulTaskRuns)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
var r0 error
if rf, ok := ret.Get(0).(func(*pipeline.Run, bool, ...pg.QOpt) error); ok {
r0 = rf(run, saveSuccessfulTaskRuns, qopts...)
} else {
r0 = ret.Error(0)
}
return r0
}
// InsertFinishedRuns provides a mock function with given fields: runs, saveSuccessfulTaskRuns, qopts
func (_m *Runner) InsertFinishedRuns(runs []*pipeline.Run, saveSuccessfulTaskRuns bool, qopts ...pg.QOpt) error {
_va := make([]interface{}, len(qopts))
for _i := range qopts {
_va[_i] = qopts[_i]
}
var _ca []interface{}
_ca = append(_ca, runs, saveSuccessfulTaskRuns)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
var r0 error
if rf, ok := ret.Get(0).(func([]*pipeline.Run, bool, ...pg.QOpt) error); ok {
r0 = rf(runs, saveSuccessfulTaskRuns, qopts...)
} else {
r0 = ret.Error(0)
}
return r0
}
// Name provides a mock function with given fields:
func (_m *Runner) Name() 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
}
// OnRunFinished provides a mock function with given fields: _a0
func (_m *Runner) OnRunFinished(_a0 func(*pipeline.Run)) {
_m.Called(_a0)
}
// Ready provides a mock function with given fields:
func (_m *Runner) Ready() error {
ret := _m.Called()
var r0 error
if rf, ok := ret.Get(0).(func() error); ok {
r0 = rf()
} else {
r0 = ret.Error(0)
}
return r0
}
// ResumeRun provides a mock function with given fields: taskID, value, err
func (_m *Runner) ResumeRun(taskID uuid.UUID, value interface{}, err error) error {
ret := _m.Called(taskID, value, err)
var r0 error
if rf, ok := ret.Get(0).(func(uuid.UUID, interface{}, error) error); ok {
r0 = rf(taskID, value, err)
} else {
r0 = ret.Error(0)
}
return r0
}
// Run provides a mock function with given fields: ctx, run, l, saveSuccessfulTaskRuns, fn
func (_m *Runner) Run(ctx context.Context, run *pipeline.Run, l logger.Logger, saveSuccessfulTaskRuns bool, fn func(pg.Queryer) error) (bool, error) {
ret := _m.Called(ctx, run, l, saveSuccessfulTaskRuns, fn)
var r0 bool
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *pipeline.Run, logger.Logger, bool, func(pg.Queryer) error) (bool, error)); ok {
return rf(ctx, run, l, saveSuccessfulTaskRuns, fn)
}
if rf, ok := ret.Get(0).(func(context.Context, *pipeline.Run, logger.Logger, bool, func(pg.Queryer) error) bool); ok {
r0 = rf(ctx, run, l, saveSuccessfulTaskRuns, fn)
} else {
r0 = ret.Get(0).(bool)
}
if rf, ok := ret.Get(1).(func(context.Context, *pipeline.Run, logger.Logger, bool, func(pg.Queryer) error) error); ok {
r1 = rf(ctx, run, l, saveSuccessfulTaskRuns, fn)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Start provides a mock function with given fields: _a0
func (_m *Runner) Start(_a0 context.Context) error {
ret := _m.Called(_a0)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context) error); ok {
r0 = rf(_a0)
} else {
r0 = ret.Error(0)
}
return r0
}
type mockConstructorTestingTNewRunner interface {
mock.TestingT
Cleanup(func())
}
// NewRunner creates a new instance of Runner. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewRunner(t mockConstructorTestingTNewRunner) *Runner {
mock := &Runner{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}