-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathmock_ExecutorProvider.go
341 lines (275 loc) · 10.1 KB
/
mock_ExecutorProvider.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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
// Code generated by mockery v2.53.3. DO NOT EDIT.
package common
import mock "github.com/stretchr/testify/mock"
// MockExecutorProvider is an autogenerated mock type for the ExecutorProvider type
type MockExecutorProvider struct {
mock.Mock
}
type MockExecutorProvider_Expecter struct {
mock *mock.Mock
}
func (_m *MockExecutorProvider) EXPECT() *MockExecutorProvider_Expecter {
return &MockExecutorProvider_Expecter{mock: &_m.Mock}
}
// Acquire provides a mock function with given fields: config
func (_m *MockExecutorProvider) Acquire(config *RunnerConfig) (ExecutorData, error) {
ret := _m.Called(config)
if len(ret) == 0 {
panic("no return value specified for Acquire")
}
var r0 ExecutorData
var r1 error
if rf, ok := ret.Get(0).(func(*RunnerConfig) (ExecutorData, error)); ok {
return rf(config)
}
if rf, ok := ret.Get(0).(func(*RunnerConfig) ExecutorData); ok {
r0 = rf(config)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(ExecutorData)
}
}
if rf, ok := ret.Get(1).(func(*RunnerConfig) error); ok {
r1 = rf(config)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// MockExecutorProvider_Acquire_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Acquire'
type MockExecutorProvider_Acquire_Call struct {
*mock.Call
}
// Acquire is a helper method to define mock.On call
// - config *RunnerConfig
func (_e *MockExecutorProvider_Expecter) Acquire(config interface{}) *MockExecutorProvider_Acquire_Call {
return &MockExecutorProvider_Acquire_Call{Call: _e.mock.On("Acquire", config)}
}
func (_c *MockExecutorProvider_Acquire_Call) Run(run func(config *RunnerConfig)) *MockExecutorProvider_Acquire_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(*RunnerConfig))
})
return _c
}
func (_c *MockExecutorProvider_Acquire_Call) Return(_a0 ExecutorData, _a1 error) *MockExecutorProvider_Acquire_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *MockExecutorProvider_Acquire_Call) RunAndReturn(run func(*RunnerConfig) (ExecutorData, error)) *MockExecutorProvider_Acquire_Call {
_c.Call.Return(run)
return _c
}
// CanCreate provides a mock function with no fields
func (_m *MockExecutorProvider) CanCreate() bool {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for CanCreate")
}
var r0 bool
if rf, ok := ret.Get(0).(func() bool); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// MockExecutorProvider_CanCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CanCreate'
type MockExecutorProvider_CanCreate_Call struct {
*mock.Call
}
// CanCreate is a helper method to define mock.On call
func (_e *MockExecutorProvider_Expecter) CanCreate() *MockExecutorProvider_CanCreate_Call {
return &MockExecutorProvider_CanCreate_Call{Call: _e.mock.On("CanCreate")}
}
func (_c *MockExecutorProvider_CanCreate_Call) Run(run func()) *MockExecutorProvider_CanCreate_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockExecutorProvider_CanCreate_Call) Return(_a0 bool) *MockExecutorProvider_CanCreate_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockExecutorProvider_CanCreate_Call) RunAndReturn(run func() bool) *MockExecutorProvider_CanCreate_Call {
_c.Call.Return(run)
return _c
}
// Create provides a mock function with no fields
func (_m *MockExecutorProvider) Create() Executor {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for Create")
}
var r0 Executor
if rf, ok := ret.Get(0).(func() Executor); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(Executor)
}
}
return r0
}
// MockExecutorProvider_Create_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Create'
type MockExecutorProvider_Create_Call struct {
*mock.Call
}
// Create is a helper method to define mock.On call
func (_e *MockExecutorProvider_Expecter) Create() *MockExecutorProvider_Create_Call {
return &MockExecutorProvider_Create_Call{Call: _e.mock.On("Create")}
}
func (_c *MockExecutorProvider_Create_Call) Run(run func()) *MockExecutorProvider_Create_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockExecutorProvider_Create_Call) Return(_a0 Executor) *MockExecutorProvider_Create_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockExecutorProvider_Create_Call) RunAndReturn(run func() Executor) *MockExecutorProvider_Create_Call {
_c.Call.Return(run)
return _c
}
// GetConfigInfo provides a mock function with given fields: input, output
func (_m *MockExecutorProvider) GetConfigInfo(input *RunnerConfig, output *ConfigInfo) {
_m.Called(input, output)
}
// MockExecutorProvider_GetConfigInfo_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetConfigInfo'
type MockExecutorProvider_GetConfigInfo_Call struct {
*mock.Call
}
// GetConfigInfo is a helper method to define mock.On call
// - input *RunnerConfig
// - output *ConfigInfo
func (_e *MockExecutorProvider_Expecter) GetConfigInfo(input interface{}, output interface{}) *MockExecutorProvider_GetConfigInfo_Call {
return &MockExecutorProvider_GetConfigInfo_Call{Call: _e.mock.On("GetConfigInfo", input, output)}
}
func (_c *MockExecutorProvider_GetConfigInfo_Call) Run(run func(input *RunnerConfig, output *ConfigInfo)) *MockExecutorProvider_GetConfigInfo_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(*RunnerConfig), args[1].(*ConfigInfo))
})
return _c
}
func (_c *MockExecutorProvider_GetConfigInfo_Call) Return() *MockExecutorProvider_GetConfigInfo_Call {
_c.Call.Return()
return _c
}
func (_c *MockExecutorProvider_GetConfigInfo_Call) RunAndReturn(run func(*RunnerConfig, *ConfigInfo)) *MockExecutorProvider_GetConfigInfo_Call {
_c.Run(run)
return _c
}
// GetDefaultShell provides a mock function with no fields
func (_m *MockExecutorProvider) GetDefaultShell() string {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for GetDefaultShell")
}
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// MockExecutorProvider_GetDefaultShell_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetDefaultShell'
type MockExecutorProvider_GetDefaultShell_Call struct {
*mock.Call
}
// GetDefaultShell is a helper method to define mock.On call
func (_e *MockExecutorProvider_Expecter) GetDefaultShell() *MockExecutorProvider_GetDefaultShell_Call {
return &MockExecutorProvider_GetDefaultShell_Call{Call: _e.mock.On("GetDefaultShell")}
}
func (_c *MockExecutorProvider_GetDefaultShell_Call) Run(run func()) *MockExecutorProvider_GetDefaultShell_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockExecutorProvider_GetDefaultShell_Call) Return(_a0 string) *MockExecutorProvider_GetDefaultShell_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockExecutorProvider_GetDefaultShell_Call) RunAndReturn(run func() string) *MockExecutorProvider_GetDefaultShell_Call {
_c.Call.Return(run)
return _c
}
// GetFeatures provides a mock function with given fields: features
func (_m *MockExecutorProvider) GetFeatures(features *FeaturesInfo) error {
ret := _m.Called(features)
if len(ret) == 0 {
panic("no return value specified for GetFeatures")
}
var r0 error
if rf, ok := ret.Get(0).(func(*FeaturesInfo) error); ok {
r0 = rf(features)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockExecutorProvider_GetFeatures_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetFeatures'
type MockExecutorProvider_GetFeatures_Call struct {
*mock.Call
}
// GetFeatures is a helper method to define mock.On call
// - features *FeaturesInfo
func (_e *MockExecutorProvider_Expecter) GetFeatures(features interface{}) *MockExecutorProvider_GetFeatures_Call {
return &MockExecutorProvider_GetFeatures_Call{Call: _e.mock.On("GetFeatures", features)}
}
func (_c *MockExecutorProvider_GetFeatures_Call) Run(run func(features *FeaturesInfo)) *MockExecutorProvider_GetFeatures_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(*FeaturesInfo))
})
return _c
}
func (_c *MockExecutorProvider_GetFeatures_Call) Return(_a0 error) *MockExecutorProvider_GetFeatures_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockExecutorProvider_GetFeatures_Call) RunAndReturn(run func(*FeaturesInfo) error) *MockExecutorProvider_GetFeatures_Call {
_c.Call.Return(run)
return _c
}
// Release provides a mock function with given fields: config, data
func (_m *MockExecutorProvider) Release(config *RunnerConfig, data ExecutorData) {
_m.Called(config, data)
}
// MockExecutorProvider_Release_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Release'
type MockExecutorProvider_Release_Call struct {
*mock.Call
}
// Release is a helper method to define mock.On call
// - config *RunnerConfig
// - data ExecutorData
func (_e *MockExecutorProvider_Expecter) Release(config interface{}, data interface{}) *MockExecutorProvider_Release_Call {
return &MockExecutorProvider_Release_Call{Call: _e.mock.On("Release", config, data)}
}
func (_c *MockExecutorProvider_Release_Call) Run(run func(config *RunnerConfig, data ExecutorData)) *MockExecutorProvider_Release_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(*RunnerConfig), args[1].(ExecutorData))
})
return _c
}
func (_c *MockExecutorProvider_Release_Call) Return() *MockExecutorProvider_Release_Call {
_c.Call.Return()
return _c
}
func (_c *MockExecutorProvider_Release_Call) RunAndReturn(run func(*RunnerConfig, ExecutorData)) *MockExecutorProvider_Release_Call {
_c.Run(run)
return _c
}
// NewMockExecutorProvider creates a new instance of MockExecutorProvider. 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 NewMockExecutorProvider(t interface {
mock.TestingT
Cleanup(func())
}) *MockExecutorProvider {
mock := &MockExecutorProvider{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}