-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmock_types_test.go
495 lines (429 loc) · 14.9 KB
/
mock_types_test.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
// Code generated by go-mockgen 0.1.0; DO NOT EDIT.
package process
import (
"context"
"sync"
)
// MockMaximumProcess is a mock implementation of the maximumProcess
// interface (from the package github.com/go-nacelle/process) used for unit
// testing.
type MockMaximumProcess struct {
// FinalizeFunc is an instance of a mock function object controlling the
// behavior of the method Finalize.
FinalizeFunc *MaximumProcessFinalizeFunc
// InitFunc is an instance of a mock function object controlling the
// behavior of the method Init.
InitFunc *MaximumProcessInitFunc
// RunFunc is an instance of a mock function object controlling the
// behavior of the method Run.
RunFunc *MaximumProcessRunFunc
// StopFunc is an instance of a mock function object controlling the
// behavior of the method Stop.
StopFunc *MaximumProcessStopFunc
}
// NewMockMaximumProcess creates a new mock of the maximumProcess interface.
// All methods return zero values for all results, unless overwritten.
func NewMockMaximumProcess() *MockMaximumProcess {
return &MockMaximumProcess{
FinalizeFunc: &MaximumProcessFinalizeFunc{
defaultHook: func(context.Context) error {
return nil
},
},
InitFunc: &MaximumProcessInitFunc{
defaultHook: func(context.Context) error {
return nil
},
},
RunFunc: &MaximumProcessRunFunc{
defaultHook: func(context.Context) error {
return nil
},
},
StopFunc: &MaximumProcessStopFunc{
defaultHook: func(context.Context) error {
return nil
},
},
}
}
// surrogateMockMaximumProcess is a copy of the maximumProcess interface
// (from the package github.com/go-nacelle/process). It is redefined here as
// it is unexported in the source packge.
type surrogateMockMaximumProcess interface {
Finalize(context.Context) error
Init(context.Context) error
Run(context.Context) error
Stop(context.Context) error
}
// NewMockMaximumProcessFrom creates a new mock of the MockMaximumProcess
// interface. All methods delegate to the given implementation, unless
// overwritten.
func NewMockMaximumProcessFrom(i surrogateMockMaximumProcess) *MockMaximumProcess {
return &MockMaximumProcess{
FinalizeFunc: &MaximumProcessFinalizeFunc{
defaultHook: i.Finalize,
},
InitFunc: &MaximumProcessInitFunc{
defaultHook: i.Init,
},
RunFunc: &MaximumProcessRunFunc{
defaultHook: i.Run,
},
StopFunc: &MaximumProcessStopFunc{
defaultHook: i.Stop,
},
}
}
// MaximumProcessFinalizeFunc describes the behavior when the Finalize
// method of the parent MockMaximumProcess instance is invoked.
type MaximumProcessFinalizeFunc struct {
defaultHook func(context.Context) error
hooks []func(context.Context) error
history []MaximumProcessFinalizeFuncCall
mutex sync.Mutex
}
// Finalize delegates to the next hook function in the queue and stores the
// parameter and result values of this invocation.
func (m *MockMaximumProcess) Finalize(v0 context.Context) error {
r0 := m.FinalizeFunc.nextHook()(v0)
m.FinalizeFunc.appendCall(MaximumProcessFinalizeFuncCall{v0, r0})
return r0
}
// SetDefaultHook sets function that is called when the Finalize method of
// the parent MockMaximumProcess instance is invoked and the hook queue is
// empty.
func (f *MaximumProcessFinalizeFunc) SetDefaultHook(hook func(context.Context) error) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// Finalize method of the parent MockMaximumProcess instance invokes the
// hook at the front of the queue and discards it. After the queue is empty,
// the default hook function is invoked for any future action.
func (f *MaximumProcessFinalizeFunc) PushHook(hook func(context.Context) error) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultDefaultHook with a function that returns
// the given values.
func (f *MaximumProcessFinalizeFunc) SetDefaultReturn(r0 error) {
f.SetDefaultHook(func(context.Context) error {
return r0
})
}
// PushReturn calls PushDefaultHook with a function that returns the given
// values.
func (f *MaximumProcessFinalizeFunc) PushReturn(r0 error) {
f.PushHook(func(context.Context) error {
return r0
})
}
func (f *MaximumProcessFinalizeFunc) nextHook() func(context.Context) error {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *MaximumProcessFinalizeFunc) appendCall(r0 MaximumProcessFinalizeFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of MaximumProcessFinalizeFuncCall objects
// describing the invocations of this function.
func (f *MaximumProcessFinalizeFunc) History() []MaximumProcessFinalizeFuncCall {
f.mutex.Lock()
history := make([]MaximumProcessFinalizeFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// MaximumProcessFinalizeFuncCall is an object that describes an invocation
// of method Finalize on an instance of MockMaximumProcess.
type MaximumProcessFinalizeFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 error
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c MaximumProcessFinalizeFuncCall) Args() []interface{} {
return []interface{}{c.Arg0}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c MaximumProcessFinalizeFuncCall) Results() []interface{} {
return []interface{}{c.Result0}
}
// MaximumProcessInitFunc describes the behavior when the Init method of the
// parent MockMaximumProcess instance is invoked.
type MaximumProcessInitFunc struct {
defaultHook func(context.Context) error
hooks []func(context.Context) error
history []MaximumProcessInitFuncCall
mutex sync.Mutex
}
// Init delegates to the next hook function in the queue and stores the
// parameter and result values of this invocation.
func (m *MockMaximumProcess) Init(v0 context.Context) error {
r0 := m.InitFunc.nextHook()(v0)
m.InitFunc.appendCall(MaximumProcessInitFuncCall{v0, r0})
return r0
}
// SetDefaultHook sets function that is called when the Init method of the
// parent MockMaximumProcess instance is invoked and the hook queue is
// empty.
func (f *MaximumProcessInitFunc) SetDefaultHook(hook func(context.Context) error) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// Init method of the parent MockMaximumProcess instance invokes the hook at
// the front of the queue and discards it. After the queue is empty, the
// default hook function is invoked for any future action.
func (f *MaximumProcessInitFunc) PushHook(hook func(context.Context) error) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultDefaultHook with a function that returns
// the given values.
func (f *MaximumProcessInitFunc) SetDefaultReturn(r0 error) {
f.SetDefaultHook(func(context.Context) error {
return r0
})
}
// PushReturn calls PushDefaultHook with a function that returns the given
// values.
func (f *MaximumProcessInitFunc) PushReturn(r0 error) {
f.PushHook(func(context.Context) error {
return r0
})
}
func (f *MaximumProcessInitFunc) nextHook() func(context.Context) error {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *MaximumProcessInitFunc) appendCall(r0 MaximumProcessInitFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of MaximumProcessInitFuncCall objects
// describing the invocations of this function.
func (f *MaximumProcessInitFunc) History() []MaximumProcessInitFuncCall {
f.mutex.Lock()
history := make([]MaximumProcessInitFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// MaximumProcessInitFuncCall is an object that describes an invocation of
// method Init on an instance of MockMaximumProcess.
type MaximumProcessInitFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 error
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c MaximumProcessInitFuncCall) Args() []interface{} {
return []interface{}{c.Arg0}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c MaximumProcessInitFuncCall) Results() []interface{} {
return []interface{}{c.Result0}
}
// MaximumProcessRunFunc describes the behavior when the Run method of the
// parent MockMaximumProcess instance is invoked.
type MaximumProcessRunFunc struct {
defaultHook func(context.Context) error
hooks []func(context.Context) error
history []MaximumProcessRunFuncCall
mutex sync.Mutex
}
// Run delegates to the next hook function in the queue and stores the
// parameter and result values of this invocation.
func (m *MockMaximumProcess) Run(v0 context.Context) error {
r0 := m.RunFunc.nextHook()(v0)
m.RunFunc.appendCall(MaximumProcessRunFuncCall{v0, r0})
return r0
}
// SetDefaultHook sets function that is called when the Run method of the
// parent MockMaximumProcess instance is invoked and the hook queue is
// empty.
func (f *MaximumProcessRunFunc) SetDefaultHook(hook func(context.Context) error) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// Run method of the parent MockMaximumProcess instance invokes the hook at
// the front of the queue and discards it. After the queue is empty, the
// default hook function is invoked for any future action.
func (f *MaximumProcessRunFunc) PushHook(hook func(context.Context) error) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultDefaultHook with a function that returns
// the given values.
func (f *MaximumProcessRunFunc) SetDefaultReturn(r0 error) {
f.SetDefaultHook(func(context.Context) error {
return r0
})
}
// PushReturn calls PushDefaultHook with a function that returns the given
// values.
func (f *MaximumProcessRunFunc) PushReturn(r0 error) {
f.PushHook(func(context.Context) error {
return r0
})
}
func (f *MaximumProcessRunFunc) nextHook() func(context.Context) error {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *MaximumProcessRunFunc) appendCall(r0 MaximumProcessRunFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of MaximumProcessRunFuncCall objects
// describing the invocations of this function.
func (f *MaximumProcessRunFunc) History() []MaximumProcessRunFuncCall {
f.mutex.Lock()
history := make([]MaximumProcessRunFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// MaximumProcessRunFuncCall is an object that describes an invocation of
// method Run on an instance of MockMaximumProcess.
type MaximumProcessRunFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 error
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c MaximumProcessRunFuncCall) Args() []interface{} {
return []interface{}{c.Arg0}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c MaximumProcessRunFuncCall) Results() []interface{} {
return []interface{}{c.Result0}
}
// MaximumProcessStopFunc describes the behavior when the Stop method of the
// parent MockMaximumProcess instance is invoked.
type MaximumProcessStopFunc struct {
defaultHook func(context.Context) error
hooks []func(context.Context) error
history []MaximumProcessStopFuncCall
mutex sync.Mutex
}
// Stop delegates to the next hook function in the queue and stores the
// parameter and result values of this invocation.
func (m *MockMaximumProcess) Stop(v0 context.Context) error {
r0 := m.StopFunc.nextHook()(v0)
m.StopFunc.appendCall(MaximumProcessStopFuncCall{v0, r0})
return r0
}
// SetDefaultHook sets function that is called when the Stop method of the
// parent MockMaximumProcess instance is invoked and the hook queue is
// empty.
func (f *MaximumProcessStopFunc) SetDefaultHook(hook func(context.Context) error) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// Stop method of the parent MockMaximumProcess instance invokes the hook at
// the front of the queue and discards it. After the queue is empty, the
// default hook function is invoked for any future action.
func (f *MaximumProcessStopFunc) PushHook(hook func(context.Context) error) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultDefaultHook with a function that returns
// the given values.
func (f *MaximumProcessStopFunc) SetDefaultReturn(r0 error) {
f.SetDefaultHook(func(context.Context) error {
return r0
})
}
// PushReturn calls PushDefaultHook with a function that returns the given
// values.
func (f *MaximumProcessStopFunc) PushReturn(r0 error) {
f.PushHook(func(context.Context) error {
return r0
})
}
func (f *MaximumProcessStopFunc) nextHook() func(context.Context) error {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *MaximumProcessStopFunc) appendCall(r0 MaximumProcessStopFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of MaximumProcessStopFuncCall objects
// describing the invocations of this function.
func (f *MaximumProcessStopFunc) History() []MaximumProcessStopFuncCall {
f.mutex.Lock()
history := make([]MaximumProcessStopFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// MaximumProcessStopFuncCall is an object that describes an invocation of
// method Stop on an instance of MockMaximumProcess.
type MaximumProcessStopFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 error
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c MaximumProcessStopFuncCall) Args() []interface{} {
return []interface{}{c.Arg0}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c MaximumProcessStopFuncCall) Results() []interface{} {
return []interface{}{c.Result0}
}