-
Notifications
You must be signed in to change notification settings - Fork 4
/
mock_source_test.go
460 lines (387 loc) · 14.5 KB
/
mock_source_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
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/conduitio/conduit-connector-sdk (interfaces: Source)
//
// Generated by this command:
//
// mockgen -typed -destination=mock_source_test.go -self_package=github.com/conduitio/conduit-connector-sdk -package=sdk -write_package_comment=false . Source
//
package sdk
import (
context "context"
reflect "reflect"
config "github.com/conduitio/conduit-commons/config"
opencdc "github.com/conduitio/conduit-commons/opencdc"
gomock "go.uber.org/mock/gomock"
)
// MockSource is a mock of Source interface.
type MockSource struct {
ctrl *gomock.Controller
recorder *MockSourceMockRecorder
isgomock struct{}
}
// MockSourceMockRecorder is the mock recorder for MockSource.
type MockSourceMockRecorder struct {
mock *MockSource
}
// NewMockSource creates a new mock instance.
func NewMockSource(ctrl *gomock.Controller) *MockSource {
mock := &MockSource{ctrl: ctrl}
mock.recorder = &MockSourceMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockSource) EXPECT() *MockSourceMockRecorder {
return m.recorder
}
// Ack mocks base method.
func (m *MockSource) Ack(arg0 context.Context, arg1 opencdc.Position) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Ack", arg0, arg1)
ret0, _ := ret[0].(error)
return ret0
}
// Ack indicates an expected call of Ack.
func (mr *MockSourceMockRecorder) Ack(arg0, arg1 any) *MockSourceAckCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Ack", reflect.TypeOf((*MockSource)(nil).Ack), arg0, arg1)
return &MockSourceAckCall{Call: call}
}
// MockSourceAckCall wrap *gomock.Call
type MockSourceAckCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceAckCall) Return(arg0 error) *MockSourceAckCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceAckCall) Do(f func(context.Context, opencdc.Position) error) *MockSourceAckCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceAckCall) DoAndReturn(f func(context.Context, opencdc.Position) error) *MockSourceAckCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Configure mocks base method.
func (m *MockSource) Configure(arg0 context.Context, arg1 config.Config) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Configure", arg0, arg1)
ret0, _ := ret[0].(error)
return ret0
}
// Configure indicates an expected call of Configure.
func (mr *MockSourceMockRecorder) Configure(arg0, arg1 any) *MockSourceConfigureCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Configure", reflect.TypeOf((*MockSource)(nil).Configure), arg0, arg1)
return &MockSourceConfigureCall{Call: call}
}
// MockSourceConfigureCall wrap *gomock.Call
type MockSourceConfigureCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceConfigureCall) Return(arg0 error) *MockSourceConfigureCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceConfigureCall) Do(f func(context.Context, config.Config) error) *MockSourceConfigureCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceConfigureCall) DoAndReturn(f func(context.Context, config.Config) error) *MockSourceConfigureCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// LifecycleOnCreated mocks base method.
func (m *MockSource) LifecycleOnCreated(ctx context.Context, config config.Config) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "LifecycleOnCreated", ctx, config)
ret0, _ := ret[0].(error)
return ret0
}
// LifecycleOnCreated indicates an expected call of LifecycleOnCreated.
func (mr *MockSourceMockRecorder) LifecycleOnCreated(ctx, config any) *MockSourceLifecycleOnCreatedCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LifecycleOnCreated", reflect.TypeOf((*MockSource)(nil).LifecycleOnCreated), ctx, config)
return &MockSourceLifecycleOnCreatedCall{Call: call}
}
// MockSourceLifecycleOnCreatedCall wrap *gomock.Call
type MockSourceLifecycleOnCreatedCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceLifecycleOnCreatedCall) Return(arg0 error) *MockSourceLifecycleOnCreatedCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceLifecycleOnCreatedCall) Do(f func(context.Context, config.Config) error) *MockSourceLifecycleOnCreatedCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceLifecycleOnCreatedCall) DoAndReturn(f func(context.Context, config.Config) error) *MockSourceLifecycleOnCreatedCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// LifecycleOnDeleted mocks base method.
func (m *MockSource) LifecycleOnDeleted(ctx context.Context, config config.Config) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "LifecycleOnDeleted", ctx, config)
ret0, _ := ret[0].(error)
return ret0
}
// LifecycleOnDeleted indicates an expected call of LifecycleOnDeleted.
func (mr *MockSourceMockRecorder) LifecycleOnDeleted(ctx, config any) *MockSourceLifecycleOnDeletedCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LifecycleOnDeleted", reflect.TypeOf((*MockSource)(nil).LifecycleOnDeleted), ctx, config)
return &MockSourceLifecycleOnDeletedCall{Call: call}
}
// MockSourceLifecycleOnDeletedCall wrap *gomock.Call
type MockSourceLifecycleOnDeletedCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceLifecycleOnDeletedCall) Return(arg0 error) *MockSourceLifecycleOnDeletedCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceLifecycleOnDeletedCall) Do(f func(context.Context, config.Config) error) *MockSourceLifecycleOnDeletedCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceLifecycleOnDeletedCall) DoAndReturn(f func(context.Context, config.Config) error) *MockSourceLifecycleOnDeletedCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// LifecycleOnUpdated mocks base method.
func (m *MockSource) LifecycleOnUpdated(ctx context.Context, configBefore, configAfter config.Config) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "LifecycleOnUpdated", ctx, configBefore, configAfter)
ret0, _ := ret[0].(error)
return ret0
}
// LifecycleOnUpdated indicates an expected call of LifecycleOnUpdated.
func (mr *MockSourceMockRecorder) LifecycleOnUpdated(ctx, configBefore, configAfter any) *MockSourceLifecycleOnUpdatedCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LifecycleOnUpdated", reflect.TypeOf((*MockSource)(nil).LifecycleOnUpdated), ctx, configBefore, configAfter)
return &MockSourceLifecycleOnUpdatedCall{Call: call}
}
// MockSourceLifecycleOnUpdatedCall wrap *gomock.Call
type MockSourceLifecycleOnUpdatedCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceLifecycleOnUpdatedCall) Return(arg0 error) *MockSourceLifecycleOnUpdatedCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceLifecycleOnUpdatedCall) Do(f func(context.Context, config.Config, config.Config) error) *MockSourceLifecycleOnUpdatedCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceLifecycleOnUpdatedCall) DoAndReturn(f func(context.Context, config.Config, config.Config) error) *MockSourceLifecycleOnUpdatedCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Open mocks base method.
func (m *MockSource) Open(arg0 context.Context, arg1 opencdc.Position) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Open", arg0, arg1)
ret0, _ := ret[0].(error)
return ret0
}
// Open indicates an expected call of Open.
func (mr *MockSourceMockRecorder) Open(arg0, arg1 any) *MockSourceOpenCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Open", reflect.TypeOf((*MockSource)(nil).Open), arg0, arg1)
return &MockSourceOpenCall{Call: call}
}
// MockSourceOpenCall wrap *gomock.Call
type MockSourceOpenCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceOpenCall) Return(arg0 error) *MockSourceOpenCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceOpenCall) Do(f func(context.Context, opencdc.Position) error) *MockSourceOpenCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceOpenCall) DoAndReturn(f func(context.Context, opencdc.Position) error) *MockSourceOpenCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Parameters mocks base method.
func (m *MockSource) Parameters() config.Parameters {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Parameters")
ret0, _ := ret[0].(config.Parameters)
return ret0
}
// Parameters indicates an expected call of Parameters.
func (mr *MockSourceMockRecorder) Parameters() *MockSourceParametersCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Parameters", reflect.TypeOf((*MockSource)(nil).Parameters))
return &MockSourceParametersCall{Call: call}
}
// MockSourceParametersCall wrap *gomock.Call
type MockSourceParametersCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceParametersCall) Return(arg0 config.Parameters) *MockSourceParametersCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceParametersCall) Do(f func() config.Parameters) *MockSourceParametersCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceParametersCall) DoAndReturn(f func() config.Parameters) *MockSourceParametersCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Read mocks base method.
func (m *MockSource) Read(arg0 context.Context) (opencdc.Record, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Read", arg0)
ret0, _ := ret[0].(opencdc.Record)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Read indicates an expected call of Read.
func (mr *MockSourceMockRecorder) Read(arg0 any) *MockSourceReadCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Read", reflect.TypeOf((*MockSource)(nil).Read), arg0)
return &MockSourceReadCall{Call: call}
}
// MockSourceReadCall wrap *gomock.Call
type MockSourceReadCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceReadCall) Return(arg0 opencdc.Record, arg1 error) *MockSourceReadCall {
c.Call = c.Call.Return(arg0, arg1)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceReadCall) Do(f func(context.Context) (opencdc.Record, error)) *MockSourceReadCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceReadCall) DoAndReturn(f func(context.Context) (opencdc.Record, error)) *MockSourceReadCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// ReadN mocks base method.
func (m *MockSource) ReadN(arg0 context.Context, arg1 int) ([]opencdc.Record, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "ReadN", arg0, arg1)
ret0, _ := ret[0].([]opencdc.Record)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// ReadN indicates an expected call of ReadN.
func (mr *MockSourceMockRecorder) ReadN(arg0, arg1 any) *MockSourceReadNCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReadN", reflect.TypeOf((*MockSource)(nil).ReadN), arg0, arg1)
return &MockSourceReadNCall{Call: call}
}
// MockSourceReadNCall wrap *gomock.Call
type MockSourceReadNCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceReadNCall) Return(arg0 []opencdc.Record, arg1 error) *MockSourceReadNCall {
c.Call = c.Call.Return(arg0, arg1)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceReadNCall) Do(f func(context.Context, int) ([]opencdc.Record, error)) *MockSourceReadNCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceReadNCall) DoAndReturn(f func(context.Context, int) ([]opencdc.Record, error)) *MockSourceReadNCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Teardown mocks base method.
func (m *MockSource) Teardown(arg0 context.Context) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Teardown", arg0)
ret0, _ := ret[0].(error)
return ret0
}
// Teardown indicates an expected call of Teardown.
func (mr *MockSourceMockRecorder) Teardown(arg0 any) *MockSourceTeardownCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Teardown", reflect.TypeOf((*MockSource)(nil).Teardown), arg0)
return &MockSourceTeardownCall{Call: call}
}
// MockSourceTeardownCall wrap *gomock.Call
type MockSourceTeardownCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourceTeardownCall) Return(arg0 error) *MockSourceTeardownCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourceTeardownCall) Do(f func(context.Context) error) *MockSourceTeardownCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourceTeardownCall) DoAndReturn(f func(context.Context) error) *MockSourceTeardownCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// mustEmbedUnimplementedSource mocks base method.
func (m *MockSource) mustEmbedUnimplementedSource() {
m.ctrl.T.Helper()
m.ctrl.Call(m, "mustEmbedUnimplementedSource")
}
// mustEmbedUnimplementedSource indicates an expected call of mustEmbedUnimplementedSource.
func (mr *MockSourceMockRecorder) mustEmbedUnimplementedSource() *MockSourcemustEmbedUnimplementedSourceCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "mustEmbedUnimplementedSource", reflect.TypeOf((*MockSource)(nil).mustEmbedUnimplementedSource))
return &MockSourcemustEmbedUnimplementedSourceCall{Call: call}
}
// MockSourcemustEmbedUnimplementedSourceCall wrap *gomock.Call
type MockSourcemustEmbedUnimplementedSourceCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSourcemustEmbedUnimplementedSourceCall) Return() *MockSourcemustEmbedUnimplementedSourceCall {
c.Call = c.Call.Return()
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSourcemustEmbedUnimplementedSourceCall) Do(f func()) *MockSourcemustEmbedUnimplementedSourceCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSourcemustEmbedUnimplementedSourceCall) DoAndReturn(f func()) *MockSourcemustEmbedUnimplementedSourceCall {
c.Call = c.Call.DoAndReturn(f)
return c
}