-
Notifications
You must be signed in to change notification settings - Fork 4
/
mock_destination_test.go
383 lines (322 loc) · 12.9 KB
/
mock_destination_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
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/conduitio/conduit-connector-sdk (interfaces: Destination)
//
// Generated by this command:
//
// mockgen -typed -destination=mock_destination_test.go -self_package=github.com/conduitio/conduit-connector-sdk -package=sdk -write_package_comment=false . Destination
//
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"
)
// MockDestination is a mock of Destination interface.
type MockDestination struct {
ctrl *gomock.Controller
recorder *MockDestinationMockRecorder
isgomock struct{}
}
// MockDestinationMockRecorder is the mock recorder for MockDestination.
type MockDestinationMockRecorder struct {
mock *MockDestination
}
// NewMockDestination creates a new mock instance.
func NewMockDestination(ctrl *gomock.Controller) *MockDestination {
mock := &MockDestination{ctrl: ctrl}
mock.recorder = &MockDestinationMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockDestination) EXPECT() *MockDestinationMockRecorder {
return m.recorder
}
// Configure mocks base method.
func (m *MockDestination) 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 *MockDestinationMockRecorder) Configure(arg0, arg1 any) *MockDestinationConfigureCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Configure", reflect.TypeOf((*MockDestination)(nil).Configure), arg0, arg1)
return &MockDestinationConfigureCall{Call: call}
}
// MockDestinationConfigureCall wrap *gomock.Call
type MockDestinationConfigureCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationConfigureCall) Return(arg0 error) *MockDestinationConfigureCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationConfigureCall) Do(f func(context.Context, config.Config) error) *MockDestinationConfigureCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationConfigureCall) DoAndReturn(f func(context.Context, config.Config) error) *MockDestinationConfigureCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// LifecycleOnCreated mocks base method.
func (m *MockDestination) 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 *MockDestinationMockRecorder) LifecycleOnCreated(ctx, config any) *MockDestinationLifecycleOnCreatedCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LifecycleOnCreated", reflect.TypeOf((*MockDestination)(nil).LifecycleOnCreated), ctx, config)
return &MockDestinationLifecycleOnCreatedCall{Call: call}
}
// MockDestinationLifecycleOnCreatedCall wrap *gomock.Call
type MockDestinationLifecycleOnCreatedCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationLifecycleOnCreatedCall) Return(arg0 error) *MockDestinationLifecycleOnCreatedCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationLifecycleOnCreatedCall) Do(f func(context.Context, config.Config) error) *MockDestinationLifecycleOnCreatedCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationLifecycleOnCreatedCall) DoAndReturn(f func(context.Context, config.Config) error) *MockDestinationLifecycleOnCreatedCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// LifecycleOnDeleted mocks base method.
func (m *MockDestination) 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 *MockDestinationMockRecorder) LifecycleOnDeleted(ctx, config any) *MockDestinationLifecycleOnDeletedCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LifecycleOnDeleted", reflect.TypeOf((*MockDestination)(nil).LifecycleOnDeleted), ctx, config)
return &MockDestinationLifecycleOnDeletedCall{Call: call}
}
// MockDestinationLifecycleOnDeletedCall wrap *gomock.Call
type MockDestinationLifecycleOnDeletedCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationLifecycleOnDeletedCall) Return(arg0 error) *MockDestinationLifecycleOnDeletedCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationLifecycleOnDeletedCall) Do(f func(context.Context, config.Config) error) *MockDestinationLifecycleOnDeletedCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationLifecycleOnDeletedCall) DoAndReturn(f func(context.Context, config.Config) error) *MockDestinationLifecycleOnDeletedCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// LifecycleOnUpdated mocks base method.
func (m *MockDestination) 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 *MockDestinationMockRecorder) LifecycleOnUpdated(ctx, configBefore, configAfter any) *MockDestinationLifecycleOnUpdatedCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LifecycleOnUpdated", reflect.TypeOf((*MockDestination)(nil).LifecycleOnUpdated), ctx, configBefore, configAfter)
return &MockDestinationLifecycleOnUpdatedCall{Call: call}
}
// MockDestinationLifecycleOnUpdatedCall wrap *gomock.Call
type MockDestinationLifecycleOnUpdatedCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationLifecycleOnUpdatedCall) Return(arg0 error) *MockDestinationLifecycleOnUpdatedCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationLifecycleOnUpdatedCall) Do(f func(context.Context, config.Config, config.Config) error) *MockDestinationLifecycleOnUpdatedCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationLifecycleOnUpdatedCall) DoAndReturn(f func(context.Context, config.Config, config.Config) error) *MockDestinationLifecycleOnUpdatedCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Open mocks base method.
func (m *MockDestination) Open(arg0 context.Context) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Open", arg0)
ret0, _ := ret[0].(error)
return ret0
}
// Open indicates an expected call of Open.
func (mr *MockDestinationMockRecorder) Open(arg0 any) *MockDestinationOpenCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Open", reflect.TypeOf((*MockDestination)(nil).Open), arg0)
return &MockDestinationOpenCall{Call: call}
}
// MockDestinationOpenCall wrap *gomock.Call
type MockDestinationOpenCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationOpenCall) Return(arg0 error) *MockDestinationOpenCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationOpenCall) Do(f func(context.Context) error) *MockDestinationOpenCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationOpenCall) DoAndReturn(f func(context.Context) error) *MockDestinationOpenCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Parameters mocks base method.
func (m *MockDestination) 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 *MockDestinationMockRecorder) Parameters() *MockDestinationParametersCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Parameters", reflect.TypeOf((*MockDestination)(nil).Parameters))
return &MockDestinationParametersCall{Call: call}
}
// MockDestinationParametersCall wrap *gomock.Call
type MockDestinationParametersCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationParametersCall) Return(arg0 config.Parameters) *MockDestinationParametersCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationParametersCall) Do(f func() config.Parameters) *MockDestinationParametersCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationParametersCall) DoAndReturn(f func() config.Parameters) *MockDestinationParametersCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Teardown mocks base method.
func (m *MockDestination) 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 *MockDestinationMockRecorder) Teardown(arg0 any) *MockDestinationTeardownCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Teardown", reflect.TypeOf((*MockDestination)(nil).Teardown), arg0)
return &MockDestinationTeardownCall{Call: call}
}
// MockDestinationTeardownCall wrap *gomock.Call
type MockDestinationTeardownCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationTeardownCall) Return(arg0 error) *MockDestinationTeardownCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationTeardownCall) Do(f func(context.Context) error) *MockDestinationTeardownCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationTeardownCall) DoAndReturn(f func(context.Context) error) *MockDestinationTeardownCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// Write mocks base method.
func (m *MockDestination) Write(ctx context.Context, r []opencdc.Record) (int, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Write", ctx, r)
ret0, _ := ret[0].(int)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Write indicates an expected call of Write.
func (mr *MockDestinationMockRecorder) Write(ctx, r any) *MockDestinationWriteCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Write", reflect.TypeOf((*MockDestination)(nil).Write), ctx, r)
return &MockDestinationWriteCall{Call: call}
}
// MockDestinationWriteCall wrap *gomock.Call
type MockDestinationWriteCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationWriteCall) Return(n int, err error) *MockDestinationWriteCall {
c.Call = c.Call.Return(n, err)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationWriteCall) Do(f func(context.Context, []opencdc.Record) (int, error)) *MockDestinationWriteCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationWriteCall) DoAndReturn(f func(context.Context, []opencdc.Record) (int, error)) *MockDestinationWriteCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// mustEmbedUnimplementedDestination mocks base method.
func (m *MockDestination) mustEmbedUnimplementedDestination() {
m.ctrl.T.Helper()
m.ctrl.Call(m, "mustEmbedUnimplementedDestination")
}
// mustEmbedUnimplementedDestination indicates an expected call of mustEmbedUnimplementedDestination.
func (mr *MockDestinationMockRecorder) mustEmbedUnimplementedDestination() *MockDestinationmustEmbedUnimplementedDestinationCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "mustEmbedUnimplementedDestination", reflect.TypeOf((*MockDestination)(nil).mustEmbedUnimplementedDestination))
return &MockDestinationmustEmbedUnimplementedDestinationCall{Call: call}
}
// MockDestinationmustEmbedUnimplementedDestinationCall wrap *gomock.Call
type MockDestinationmustEmbedUnimplementedDestinationCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockDestinationmustEmbedUnimplementedDestinationCall) Return() *MockDestinationmustEmbedUnimplementedDestinationCall {
c.Call = c.Call.Return()
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockDestinationmustEmbedUnimplementedDestinationCall) Do(f func()) *MockDestinationmustEmbedUnimplementedDestinationCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockDestinationmustEmbedUnimplementedDestinationCall) DoAndReturn(f func()) *MockDestinationmustEmbedUnimplementedDestinationCall {
c.Call = c.Call.DoAndReturn(f)
return c
}