-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmocks.go
More file actions
5073 lines (4418 loc) · 150 KB
/
Copy pathmocks.go
File metadata and controls
5073 lines (4418 loc) · 150 KB
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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by mockery; DO NOT EDIT.
// github.com/vektra/mockery
// template: testify
package floxy
import (
"context"
"encoding/json"
"time"
"github.com/jackc/pgx/v5"
"github.com/jackc/pgx/v5/pgconn"
mock "github.com/stretchr/testify/mock"
)
// NewMockIEngine creates a new instance of MockIEngine. 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 NewMockIEngine(t interface {
mock.TestingT
Cleanup(func())
}) *MockIEngine {
mock := &MockIEngine{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}
// MockIEngine is an autogenerated mock type for the IEngine type
type MockIEngine struct {
mock.Mock
}
type MockIEngine_Expecter struct {
mock *mock.Mock
}
func (_m *MockIEngine) EXPECT() *MockIEngine_Expecter {
return &MockIEngine_Expecter{mock: &_m.Mock}
}
// AbortWorkflow provides a mock function for the type MockIEngine
func (_mock *MockIEngine) AbortWorkflow(ctx context.Context, instanceID int64, requestedBy string, reason string) error {
ret := _mock.Called(ctx, instanceID, requestedBy, reason)
if len(ret) == 0 {
panic("no return value specified for AbortWorkflow")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, int64, string, string) error); ok {
r0 = returnFunc(ctx, instanceID, requestedBy, reason)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockIEngine_AbortWorkflow_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AbortWorkflow'
type MockIEngine_AbortWorkflow_Call struct {
*mock.Call
}
// AbortWorkflow is a helper method to define mock.On call
// - ctx context.Context
// - instanceID int64
// - requestedBy string
// - reason string
func (_e *MockIEngine_Expecter) AbortWorkflow(ctx interface{}, instanceID interface{}, requestedBy interface{}, reason interface{}) *MockIEngine_AbortWorkflow_Call {
return &MockIEngine_AbortWorkflow_Call{Call: _e.mock.On("AbortWorkflow", ctx, instanceID, requestedBy, reason)}
}
func (_c *MockIEngine_AbortWorkflow_Call) Run(run func(ctx context.Context, instanceID int64, requestedBy string, reason string)) *MockIEngine_AbortWorkflow_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 int64
if args[1] != nil {
arg1 = args[1].(int64)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
run(
arg0,
arg1,
arg2,
arg3,
)
})
return _c
}
func (_c *MockIEngine_AbortWorkflow_Call) Return(err error) *MockIEngine_AbortWorkflow_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockIEngine_AbortWorkflow_Call) RunAndReturn(run func(ctx context.Context, instanceID int64, requestedBy string, reason string) error) *MockIEngine_AbortWorkflow_Call {
_c.Call.Return(run)
return _c
}
// CancelWorkflow provides a mock function for the type MockIEngine
func (_mock *MockIEngine) CancelWorkflow(ctx context.Context, instanceID int64, requestedBy string, reason string) error {
ret := _mock.Called(ctx, instanceID, requestedBy, reason)
if len(ret) == 0 {
panic("no return value specified for CancelWorkflow")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, int64, string, string) error); ok {
r0 = returnFunc(ctx, instanceID, requestedBy, reason)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockIEngine_CancelWorkflow_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CancelWorkflow'
type MockIEngine_CancelWorkflow_Call struct {
*mock.Call
}
// CancelWorkflow is a helper method to define mock.On call
// - ctx context.Context
// - instanceID int64
// - requestedBy string
// - reason string
func (_e *MockIEngine_Expecter) CancelWorkflow(ctx interface{}, instanceID interface{}, requestedBy interface{}, reason interface{}) *MockIEngine_CancelWorkflow_Call {
return &MockIEngine_CancelWorkflow_Call{Call: _e.mock.On("CancelWorkflow", ctx, instanceID, requestedBy, reason)}
}
func (_c *MockIEngine_CancelWorkflow_Call) Run(run func(ctx context.Context, instanceID int64, requestedBy string, reason string)) *MockIEngine_CancelWorkflow_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 int64
if args[1] != nil {
arg1 = args[1].(int64)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 string
if args[3] != nil {
arg3 = args[3].(string)
}
run(
arg0,
arg1,
arg2,
arg3,
)
})
return _c
}
func (_c *MockIEngine_CancelWorkflow_Call) Return(err error) *MockIEngine_CancelWorkflow_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockIEngine_CancelWorkflow_Call) RunAndReturn(run func(ctx context.Context, instanceID int64, requestedBy string, reason string) error) *MockIEngine_CancelWorkflow_Call {
_c.Call.Return(run)
return _c
}
// MakeHumanDecision provides a mock function for the type MockIEngine
func (_mock *MockIEngine) MakeHumanDecision(ctx context.Context, stepID int64, decidedBy string, decision HumanDecision, comment *string) error {
ret := _mock.Called(ctx, stepID, decidedBy, decision, comment)
if len(ret) == 0 {
panic("no return value specified for MakeHumanDecision")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, int64, string, HumanDecision, *string) error); ok {
r0 = returnFunc(ctx, stepID, decidedBy, decision, comment)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockIEngine_MakeHumanDecision_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MakeHumanDecision'
type MockIEngine_MakeHumanDecision_Call struct {
*mock.Call
}
// MakeHumanDecision is a helper method to define mock.On call
// - ctx context.Context
// - stepID int64
// - decidedBy string
// - decision HumanDecision
// - comment *string
func (_e *MockIEngine_Expecter) MakeHumanDecision(ctx interface{}, stepID interface{}, decidedBy interface{}, decision interface{}, comment interface{}) *MockIEngine_MakeHumanDecision_Call {
return &MockIEngine_MakeHumanDecision_Call{Call: _e.mock.On("MakeHumanDecision", ctx, stepID, decidedBy, decision, comment)}
}
func (_c *MockIEngine_MakeHumanDecision_Call) Run(run func(ctx context.Context, stepID int64, decidedBy string, decision HumanDecision, comment *string)) *MockIEngine_MakeHumanDecision_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 int64
if args[1] != nil {
arg1 = args[1].(int64)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 HumanDecision
if args[3] != nil {
arg3 = args[3].(HumanDecision)
}
var arg4 *string
if args[4] != nil {
arg4 = args[4].(*string)
}
run(
arg0,
arg1,
arg2,
arg3,
arg4,
)
})
return _c
}
func (_c *MockIEngine_MakeHumanDecision_Call) Return(err error) *MockIEngine_MakeHumanDecision_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockIEngine_MakeHumanDecision_Call) RunAndReturn(run func(ctx context.Context, stepID int64, decidedBy string, decision HumanDecision, comment *string) error) *MockIEngine_MakeHumanDecision_Call {
_c.Call.Return(run)
return _c
}
// RequeueFromDLQ provides a mock function for the type MockIEngine
func (_mock *MockIEngine) RequeueFromDLQ(ctx context.Context, dlqID int64, newInput *json.RawMessage) error {
ret := _mock.Called(ctx, dlqID, newInput)
if len(ret) == 0 {
panic("no return value specified for RequeueFromDLQ")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, int64, *json.RawMessage) error); ok {
r0 = returnFunc(ctx, dlqID, newInput)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockIEngine_RequeueFromDLQ_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'RequeueFromDLQ'
type MockIEngine_RequeueFromDLQ_Call struct {
*mock.Call
}
// RequeueFromDLQ is a helper method to define mock.On call
// - ctx context.Context
// - dlqID int64
// - newInput *json.RawMessage
func (_e *MockIEngine_Expecter) RequeueFromDLQ(ctx interface{}, dlqID interface{}, newInput interface{}) *MockIEngine_RequeueFromDLQ_Call {
return &MockIEngine_RequeueFromDLQ_Call{Call: _e.mock.On("RequeueFromDLQ", ctx, dlqID, newInput)}
}
func (_c *MockIEngine_RequeueFromDLQ_Call) Run(run func(ctx context.Context, dlqID int64, newInput *json.RawMessage)) *MockIEngine_RequeueFromDLQ_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 int64
if args[1] != nil {
arg1 = args[1].(int64)
}
var arg2 *json.RawMessage
if args[2] != nil {
arg2 = args[2].(*json.RawMessage)
}
run(
arg0,
arg1,
arg2,
)
})
return _c
}
func (_c *MockIEngine_RequeueFromDLQ_Call) Return(err error) *MockIEngine_RequeueFromDLQ_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockIEngine_RequeueFromDLQ_Call) RunAndReturn(run func(ctx context.Context, dlqID int64, newInput *json.RawMessage) error) *MockIEngine_RequeueFromDLQ_Call {
_c.Call.Return(run)
return _c
}
// NewMockMonitor creates a new instance of MockMonitor. 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 NewMockMonitor(t interface {
mock.TestingT
Cleanup(func())
}) *MockMonitor {
mock := &MockMonitor{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}
// MockMonitor is an autogenerated mock type for the Monitor type
type MockMonitor struct {
mock.Mock
}
type MockMonitor_Expecter struct {
mock *mock.Mock
}
func (_m *MockMonitor) EXPECT() *MockMonitor_Expecter {
return &MockMonitor_Expecter{mock: &_m.Mock}
}
// GetWorkflowStats provides a mock function for the type MockMonitor
func (_mock *MockMonitor) GetWorkflowStats(ctx context.Context) ([]WorkflowStats, error) {
ret := _mock.Called(ctx)
if len(ret) == 0 {
panic("no return value specified for GetWorkflowStats")
}
var r0 []WorkflowStats
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context) ([]WorkflowStats, error)); ok {
return returnFunc(ctx)
}
if returnFunc, ok := ret.Get(0).(func(context.Context) []WorkflowStats); ok {
r0 = returnFunc(ctx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]WorkflowStats)
}
}
if returnFunc, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = returnFunc(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// MockMonitor_GetWorkflowStats_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetWorkflowStats'
type MockMonitor_GetWorkflowStats_Call struct {
*mock.Call
}
// GetWorkflowStats is a helper method to define mock.On call
// - ctx context.Context
func (_e *MockMonitor_Expecter) GetWorkflowStats(ctx interface{}) *MockMonitor_GetWorkflowStats_Call {
return &MockMonitor_GetWorkflowStats_Call{Call: _e.mock.On("GetWorkflowStats", ctx)}
}
func (_c *MockMonitor_GetWorkflowStats_Call) Run(run func(ctx context.Context)) *MockMonitor_GetWorkflowStats_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
run(
arg0,
)
})
return _c
}
func (_c *MockMonitor_GetWorkflowStats_Call) Return(workflowStatss []WorkflowStats, err error) *MockMonitor_GetWorkflowStats_Call {
_c.Call.Return(workflowStatss, err)
return _c
}
func (_c *MockMonitor_GetWorkflowStats_Call) RunAndReturn(run func(ctx context.Context) ([]WorkflowStats, error)) *MockMonitor_GetWorkflowStats_Call {
_c.Call.Return(run)
return _c
}
// NewMockPlugin creates a new instance of MockPlugin. 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 NewMockPlugin(t interface {
mock.TestingT
Cleanup(func())
}) *MockPlugin {
mock := &MockPlugin{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}
// MockPlugin is an autogenerated mock type for the Plugin type
type MockPlugin struct {
mock.Mock
}
type MockPlugin_Expecter struct {
mock *mock.Mock
}
func (_m *MockPlugin) EXPECT() *MockPlugin_Expecter {
return &MockPlugin_Expecter{mock: &_m.Mock}
}
// Name provides a mock function for the type MockPlugin
func (_mock *MockPlugin) Name() string {
ret := _mock.Called()
if len(ret) == 0 {
panic("no return value specified for Name")
}
var r0 string
if returnFunc, ok := ret.Get(0).(func() string); ok {
r0 = returnFunc()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// MockPlugin_Name_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Name'
type MockPlugin_Name_Call struct {
*mock.Call
}
// Name is a helper method to define mock.On call
func (_e *MockPlugin_Expecter) Name() *MockPlugin_Name_Call {
return &MockPlugin_Name_Call{Call: _e.mock.On("Name")}
}
func (_c *MockPlugin_Name_Call) Run(run func()) *MockPlugin_Name_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockPlugin_Name_Call) Return(s string) *MockPlugin_Name_Call {
_c.Call.Return(s)
return _c
}
func (_c *MockPlugin_Name_Call) RunAndReturn(run func() string) *MockPlugin_Name_Call {
_c.Call.Return(run)
return _c
}
// OnRollbackStepChain provides a mock function for the type MockPlugin
func (_mock *MockPlugin) OnRollbackStepChain(ctx context.Context, instanceID int64, stepName string, depth int) error {
ret := _mock.Called(ctx, instanceID, stepName, depth)
if len(ret) == 0 {
panic("no return value specified for OnRollbackStepChain")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, int64, string, int) error); ok {
r0 = returnFunc(ctx, instanceID, stepName, depth)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockPlugin_OnRollbackStepChain_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnRollbackStepChain'
type MockPlugin_OnRollbackStepChain_Call struct {
*mock.Call
}
// OnRollbackStepChain is a helper method to define mock.On call
// - ctx context.Context
// - instanceID int64
// - stepName string
// - depth int
func (_e *MockPlugin_Expecter) OnRollbackStepChain(ctx interface{}, instanceID interface{}, stepName interface{}, depth interface{}) *MockPlugin_OnRollbackStepChain_Call {
return &MockPlugin_OnRollbackStepChain_Call{Call: _e.mock.On("OnRollbackStepChain", ctx, instanceID, stepName, depth)}
}
func (_c *MockPlugin_OnRollbackStepChain_Call) Run(run func(ctx context.Context, instanceID int64, stepName string, depth int)) *MockPlugin_OnRollbackStepChain_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 int64
if args[1] != nil {
arg1 = args[1].(int64)
}
var arg2 string
if args[2] != nil {
arg2 = args[2].(string)
}
var arg3 int
if args[3] != nil {
arg3 = args[3].(int)
}
run(
arg0,
arg1,
arg2,
arg3,
)
})
return _c
}
func (_c *MockPlugin_OnRollbackStepChain_Call) Return(err error) *MockPlugin_OnRollbackStepChain_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockPlugin_OnRollbackStepChain_Call) RunAndReturn(run func(ctx context.Context, instanceID int64, stepName string, depth int) error) *MockPlugin_OnRollbackStepChain_Call {
_c.Call.Return(run)
return _c
}
// OnStepComplete provides a mock function for the type MockPlugin
func (_mock *MockPlugin) OnStepComplete(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep) error {
ret := _mock.Called(ctx, instance, step)
if len(ret) == 0 {
panic("no return value specified for OnStepComplete")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, *WorkflowInstance, *WorkflowStep) error); ok {
r0 = returnFunc(ctx, instance, step)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockPlugin_OnStepComplete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnStepComplete'
type MockPlugin_OnStepComplete_Call struct {
*mock.Call
}
// OnStepComplete is a helper method to define mock.On call
// - ctx context.Context
// - instance *WorkflowInstance
// - step *WorkflowStep
func (_e *MockPlugin_Expecter) OnStepComplete(ctx interface{}, instance interface{}, step interface{}) *MockPlugin_OnStepComplete_Call {
return &MockPlugin_OnStepComplete_Call{Call: _e.mock.On("OnStepComplete", ctx, instance, step)}
}
func (_c *MockPlugin_OnStepComplete_Call) Run(run func(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep)) *MockPlugin_OnStepComplete_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 *WorkflowInstance
if args[1] != nil {
arg1 = args[1].(*WorkflowInstance)
}
var arg2 *WorkflowStep
if args[2] != nil {
arg2 = args[2].(*WorkflowStep)
}
run(
arg0,
arg1,
arg2,
)
})
return _c
}
func (_c *MockPlugin_OnStepComplete_Call) Return(err error) *MockPlugin_OnStepComplete_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockPlugin_OnStepComplete_Call) RunAndReturn(run func(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep) error) *MockPlugin_OnStepComplete_Call {
_c.Call.Return(run)
return _c
}
// OnStepFailed provides a mock function for the type MockPlugin
func (_mock *MockPlugin) OnStepFailed(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep, err error) error {
ret := _mock.Called(ctx, instance, step, err)
if len(ret) == 0 {
panic("no return value specified for OnStepFailed")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, *WorkflowInstance, *WorkflowStep, error) error); ok {
r0 = returnFunc(ctx, instance, step, err)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockPlugin_OnStepFailed_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnStepFailed'
type MockPlugin_OnStepFailed_Call struct {
*mock.Call
}
// OnStepFailed is a helper method to define mock.On call
// - ctx context.Context
// - instance *WorkflowInstance
// - step *WorkflowStep
// - err error
func (_e *MockPlugin_Expecter) OnStepFailed(ctx interface{}, instance interface{}, step interface{}, err interface{}) *MockPlugin_OnStepFailed_Call {
return &MockPlugin_OnStepFailed_Call{Call: _e.mock.On("OnStepFailed", ctx, instance, step, err)}
}
func (_c *MockPlugin_OnStepFailed_Call) Run(run func(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep, err error)) *MockPlugin_OnStepFailed_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 *WorkflowInstance
if args[1] != nil {
arg1 = args[1].(*WorkflowInstance)
}
var arg2 *WorkflowStep
if args[2] != nil {
arg2 = args[2].(*WorkflowStep)
}
var arg3 error
if args[3] != nil {
arg3 = args[3].(error)
}
run(
arg0,
arg1,
arg2,
arg3,
)
})
return _c
}
func (_c *MockPlugin_OnStepFailed_Call) Return(err1 error) *MockPlugin_OnStepFailed_Call {
_c.Call.Return(err1)
return _c
}
func (_c *MockPlugin_OnStepFailed_Call) RunAndReturn(run func(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep, err error) error) *MockPlugin_OnStepFailed_Call {
_c.Call.Return(run)
return _c
}
// OnStepStart provides a mock function for the type MockPlugin
func (_mock *MockPlugin) OnStepStart(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep) error {
ret := _mock.Called(ctx, instance, step)
if len(ret) == 0 {
panic("no return value specified for OnStepStart")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, *WorkflowInstance, *WorkflowStep) error); ok {
r0 = returnFunc(ctx, instance, step)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockPlugin_OnStepStart_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnStepStart'
type MockPlugin_OnStepStart_Call struct {
*mock.Call
}
// OnStepStart is a helper method to define mock.On call
// - ctx context.Context
// - instance *WorkflowInstance
// - step *WorkflowStep
func (_e *MockPlugin_Expecter) OnStepStart(ctx interface{}, instance interface{}, step interface{}) *MockPlugin_OnStepStart_Call {
return &MockPlugin_OnStepStart_Call{Call: _e.mock.On("OnStepStart", ctx, instance, step)}
}
func (_c *MockPlugin_OnStepStart_Call) Run(run func(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep)) *MockPlugin_OnStepStart_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 *WorkflowInstance
if args[1] != nil {
arg1 = args[1].(*WorkflowInstance)
}
var arg2 *WorkflowStep
if args[2] != nil {
arg2 = args[2].(*WorkflowStep)
}
run(
arg0,
arg1,
arg2,
)
})
return _c
}
func (_c *MockPlugin_OnStepStart_Call) Return(err error) *MockPlugin_OnStepStart_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockPlugin_OnStepStart_Call) RunAndReturn(run func(ctx context.Context, instance *WorkflowInstance, step *WorkflowStep) error) *MockPlugin_OnStepStart_Call {
_c.Call.Return(run)
return _c
}
// OnWorkflowComplete provides a mock function for the type MockPlugin
func (_mock *MockPlugin) OnWorkflowComplete(ctx context.Context, instance *WorkflowInstance) error {
ret := _mock.Called(ctx, instance)
if len(ret) == 0 {
panic("no return value specified for OnWorkflowComplete")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, *WorkflowInstance) error); ok {
r0 = returnFunc(ctx, instance)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockPlugin_OnWorkflowComplete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnWorkflowComplete'
type MockPlugin_OnWorkflowComplete_Call struct {
*mock.Call
}
// OnWorkflowComplete is a helper method to define mock.On call
// - ctx context.Context
// - instance *WorkflowInstance
func (_e *MockPlugin_Expecter) OnWorkflowComplete(ctx interface{}, instance interface{}) *MockPlugin_OnWorkflowComplete_Call {
return &MockPlugin_OnWorkflowComplete_Call{Call: _e.mock.On("OnWorkflowComplete", ctx, instance)}
}
func (_c *MockPlugin_OnWorkflowComplete_Call) Run(run func(ctx context.Context, instance *WorkflowInstance)) *MockPlugin_OnWorkflowComplete_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 *WorkflowInstance
if args[1] != nil {
arg1 = args[1].(*WorkflowInstance)
}
run(
arg0,
arg1,
)
})
return _c
}
func (_c *MockPlugin_OnWorkflowComplete_Call) Return(err error) *MockPlugin_OnWorkflowComplete_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockPlugin_OnWorkflowComplete_Call) RunAndReturn(run func(ctx context.Context, instance *WorkflowInstance) error) *MockPlugin_OnWorkflowComplete_Call {
_c.Call.Return(run)
return _c
}
// OnWorkflowFailed provides a mock function for the type MockPlugin
func (_mock *MockPlugin) OnWorkflowFailed(ctx context.Context, instance *WorkflowInstance) error {
ret := _mock.Called(ctx, instance)
if len(ret) == 0 {
panic("no return value specified for OnWorkflowFailed")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, *WorkflowInstance) error); ok {
r0 = returnFunc(ctx, instance)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockPlugin_OnWorkflowFailed_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnWorkflowFailed'
type MockPlugin_OnWorkflowFailed_Call struct {
*mock.Call
}
// OnWorkflowFailed is a helper method to define mock.On call
// - ctx context.Context
// - instance *WorkflowInstance
func (_e *MockPlugin_Expecter) OnWorkflowFailed(ctx interface{}, instance interface{}) *MockPlugin_OnWorkflowFailed_Call {
return &MockPlugin_OnWorkflowFailed_Call{Call: _e.mock.On("OnWorkflowFailed", ctx, instance)}
}
func (_c *MockPlugin_OnWorkflowFailed_Call) Run(run func(ctx context.Context, instance *WorkflowInstance)) *MockPlugin_OnWorkflowFailed_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 *WorkflowInstance
if args[1] != nil {
arg1 = args[1].(*WorkflowInstance)
}
run(
arg0,
arg1,
)
})
return _c
}
func (_c *MockPlugin_OnWorkflowFailed_Call) Return(err error) *MockPlugin_OnWorkflowFailed_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockPlugin_OnWorkflowFailed_Call) RunAndReturn(run func(ctx context.Context, instance *WorkflowInstance) error) *MockPlugin_OnWorkflowFailed_Call {
_c.Call.Return(run)
return _c
}
// OnWorkflowStart provides a mock function for the type MockPlugin
func (_mock *MockPlugin) OnWorkflowStart(ctx context.Context, instance *WorkflowInstance) error {
ret := _mock.Called(ctx, instance)
if len(ret) == 0 {
panic("no return value specified for OnWorkflowStart")
}
var r0 error
if returnFunc, ok := ret.Get(0).(func(context.Context, *WorkflowInstance) error); ok {
r0 = returnFunc(ctx, instance)
} else {
r0 = ret.Error(0)
}
return r0
}
// MockPlugin_OnWorkflowStart_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OnWorkflowStart'
type MockPlugin_OnWorkflowStart_Call struct {
*mock.Call
}
// OnWorkflowStart is a helper method to define mock.On call
// - ctx context.Context
// - instance *WorkflowInstance
func (_e *MockPlugin_Expecter) OnWorkflowStart(ctx interface{}, instance interface{}) *MockPlugin_OnWorkflowStart_Call {
return &MockPlugin_OnWorkflowStart_Call{Call: _e.mock.On("OnWorkflowStart", ctx, instance)}
}
func (_c *MockPlugin_OnWorkflowStart_Call) Run(run func(ctx context.Context, instance *WorkflowInstance)) *MockPlugin_OnWorkflowStart_Call {
_c.Call.Run(func(args mock.Arguments) {
var arg0 context.Context
if args[0] != nil {
arg0 = args[0].(context.Context)
}
var arg1 *WorkflowInstance
if args[1] != nil {
arg1 = args[1].(*WorkflowInstance)
}
run(
arg0,
arg1,
)
})
return _c
}
func (_c *MockPlugin_OnWorkflowStart_Call) Return(err error) *MockPlugin_OnWorkflowStart_Call {
_c.Call.Return(err)
return _c
}
func (_c *MockPlugin_OnWorkflowStart_Call) RunAndReturn(run func(ctx context.Context, instance *WorkflowInstance) error) *MockPlugin_OnWorkflowStart_Call {
_c.Call.Return(run)
return _c
}
// Priority provides a mock function for the type MockPlugin
func (_mock *MockPlugin) Priority() Priority {
ret := _mock.Called()
if len(ret) == 0 {
panic("no return value specified for Priority")
}
var r0 Priority
if returnFunc, ok := ret.Get(0).(func() Priority); ok {
r0 = returnFunc()
} else {
r0 = ret.Get(0).(Priority)
}
return r0
}
// MockPlugin_Priority_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Priority'
type MockPlugin_Priority_Call struct {
*mock.Call
}
// Priority is a helper method to define mock.On call
func (_e *MockPlugin_Expecter) Priority() *MockPlugin_Priority_Call {
return &MockPlugin_Priority_Call{Call: _e.mock.On("Priority")}
}
func (_c *MockPlugin_Priority_Call) Run(run func()) *MockPlugin_Priority_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockPlugin_Priority_Call) Return(priority Priority) *MockPlugin_Priority_Call {
_c.Call.Return(priority)
return _c
}
func (_c *MockPlugin_Priority_Call) RunAndReturn(run func() Priority) *MockPlugin_Priority_Call {
_c.Call.Return(run)
return _c
}
// NewMockStepHandler creates a new instance of MockStepHandler. 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 NewMockStepHandler(t interface {
mock.TestingT
Cleanup(func())
}) *MockStepHandler {
mock := &MockStepHandler{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}
// MockStepHandler is an autogenerated mock type for the StepHandler type
type MockStepHandler struct {
mock.Mock
}
type MockStepHandler_Expecter struct {
mock *mock.Mock
}
func (_m *MockStepHandler) EXPECT() *MockStepHandler_Expecter {
return &MockStepHandler_Expecter{mock: &_m.Mock}
}
// Execute provides a mock function for the type MockStepHandler
func (_mock *MockStepHandler) Execute(ctx context.Context, stepCtx StepContext, input json.RawMessage) (json.RawMessage, error) {
ret := _mock.Called(ctx, stepCtx, input)
if len(ret) == 0 {
panic("no return value specified for Execute")
}
var r0 json.RawMessage
var r1 error
if returnFunc, ok := ret.Get(0).(func(context.Context, StepContext, json.RawMessage) (json.RawMessage, error)); ok {
return returnFunc(ctx, stepCtx, input)
}
if returnFunc, ok := ret.Get(0).(func(context.Context, StepContext, json.RawMessage) json.RawMessage); ok {
r0 = returnFunc(ctx, stepCtx, input)