-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollectioninterface_test.go
447 lines (379 loc) · 15.7 KB
/
collectioninterface_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
// Code generated by mockery. DO NOT EDIT.
package queue
import (
context "context"
mock "github.com/stretchr/testify/mock"
mongo "go.mongodb.org/mongo-driver/mongo"
options "go.mongodb.org/mongo-driver/mongo/options"
)
// CollectionInterfaceMock is an autogenerated mock type for the CollectionInterface type
type CollectionInterfaceMock struct {
mock.Mock
}
type CollectionInterfaceMock_Expecter struct {
mock *mock.Mock
}
func (_m *CollectionInterfaceMock) EXPECT() *CollectionInterfaceMock_Expecter {
return &CollectionInterfaceMock_Expecter{mock: &_m.Mock}
}
// FindOneAndUpdate provides a mock function with given fields: ctx, filter, update, opts
func (_m *CollectionInterfaceMock) FindOneAndUpdate(ctx context.Context, filter interface{}, update interface{}, opts ...*options.FindOneAndUpdateOptions) *mongo.SingleResult {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, filter, update)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for FindOneAndUpdate")
}
var r0 *mongo.SingleResult
if rf, ok := ret.Get(0).(func(context.Context, interface{}, interface{}, ...*options.FindOneAndUpdateOptions) *mongo.SingleResult); ok {
r0 = rf(ctx, filter, update, opts...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*mongo.SingleResult)
}
}
return r0
}
// CollectionInterfaceMock_FindOneAndUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'FindOneAndUpdate'
type CollectionInterfaceMock_FindOneAndUpdate_Call struct {
*mock.Call
}
// FindOneAndUpdate is a helper method to define mock.On call
// - ctx context.Context
// - filter interface{}
// - update interface{}
// - opts ...*options.FindOneAndUpdateOptions
func (_e *CollectionInterfaceMock_Expecter) FindOneAndUpdate(ctx interface{}, filter interface{}, update interface{}, opts ...interface{}) *CollectionInterfaceMock_FindOneAndUpdate_Call {
return &CollectionInterfaceMock_FindOneAndUpdate_Call{Call: _e.mock.On("FindOneAndUpdate",
append([]interface{}{ctx, filter, update}, opts...)...)}
}
func (_c *CollectionInterfaceMock_FindOneAndUpdate_Call) Run(run func(ctx context.Context, filter interface{}, update interface{}, opts ...*options.FindOneAndUpdateOptions)) *CollectionInterfaceMock_FindOneAndUpdate_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]*options.FindOneAndUpdateOptions, len(args)-3)
for i, a := range args[3:] {
if a != nil {
variadicArgs[i] = a.(*options.FindOneAndUpdateOptions)
}
}
run(args[0].(context.Context), args[1].(interface{}), args[2].(interface{}), variadicArgs...)
})
return _c
}
func (_c *CollectionInterfaceMock_FindOneAndUpdate_Call) Return(_a0 *mongo.SingleResult) *CollectionInterfaceMock_FindOneAndUpdate_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *CollectionInterfaceMock_FindOneAndUpdate_Call) RunAndReturn(run func(context.Context, interface{}, interface{}, ...*options.FindOneAndUpdateOptions) *mongo.SingleResult) *CollectionInterfaceMock_FindOneAndUpdate_Call {
_c.Call.Return(run)
return _c
}
// Indexes provides a mock function with given fields:
func (_m *CollectionInterfaceMock) Indexes() mongo.IndexView {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for Indexes")
}
var r0 mongo.IndexView
if rf, ok := ret.Get(0).(func() mongo.IndexView); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(mongo.IndexView)
}
return r0
}
// CollectionInterfaceMock_Indexes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Indexes'
type CollectionInterfaceMock_Indexes_Call struct {
*mock.Call
}
// Indexes is a helper method to define mock.On call
func (_e *CollectionInterfaceMock_Expecter) Indexes() *CollectionInterfaceMock_Indexes_Call {
return &CollectionInterfaceMock_Indexes_Call{Call: _e.mock.On("Indexes")}
}
func (_c *CollectionInterfaceMock_Indexes_Call) Run(run func()) *CollectionInterfaceMock_Indexes_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *CollectionInterfaceMock_Indexes_Call) Return(_a0 mongo.IndexView) *CollectionInterfaceMock_Indexes_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *CollectionInterfaceMock_Indexes_Call) RunAndReturn(run func() mongo.IndexView) *CollectionInterfaceMock_Indexes_Call {
_c.Call.Return(run)
return _c
}
// InsertOne provides a mock function with given fields: ctx, document, opts
func (_m *CollectionInterfaceMock) InsertOne(ctx context.Context, document interface{}, opts ...*options.InsertOneOptions) (*mongo.InsertOneResult, error) {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, document)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for InsertOne")
}
var r0 *mongo.InsertOneResult
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, interface{}, ...*options.InsertOneOptions) (*mongo.InsertOneResult, error)); ok {
return rf(ctx, document, opts...)
}
if rf, ok := ret.Get(0).(func(context.Context, interface{}, ...*options.InsertOneOptions) *mongo.InsertOneResult); ok {
r0 = rf(ctx, document, opts...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*mongo.InsertOneResult)
}
}
if rf, ok := ret.Get(1).(func(context.Context, interface{}, ...*options.InsertOneOptions) error); ok {
r1 = rf(ctx, document, opts...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// CollectionInterfaceMock_InsertOne_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'InsertOne'
type CollectionInterfaceMock_InsertOne_Call struct {
*mock.Call
}
// InsertOne is a helper method to define mock.On call
// - ctx context.Context
// - document interface{}
// - opts ...*options.InsertOneOptions
func (_e *CollectionInterfaceMock_Expecter) InsertOne(ctx interface{}, document interface{}, opts ...interface{}) *CollectionInterfaceMock_InsertOne_Call {
return &CollectionInterfaceMock_InsertOne_Call{Call: _e.mock.On("InsertOne",
append([]interface{}{ctx, document}, opts...)...)}
}
func (_c *CollectionInterfaceMock_InsertOne_Call) Run(run func(ctx context.Context, document interface{}, opts ...*options.InsertOneOptions)) *CollectionInterfaceMock_InsertOne_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]*options.InsertOneOptions, len(args)-2)
for i, a := range args[2:] {
if a != nil {
variadicArgs[i] = a.(*options.InsertOneOptions)
}
}
run(args[0].(context.Context), args[1].(interface{}), variadicArgs...)
})
return _c
}
func (_c *CollectionInterfaceMock_InsertOne_Call) Return(_a0 *mongo.InsertOneResult, _a1 error) *CollectionInterfaceMock_InsertOne_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *CollectionInterfaceMock_InsertOne_Call) RunAndReturn(run func(context.Context, interface{}, ...*options.InsertOneOptions) (*mongo.InsertOneResult, error)) *CollectionInterfaceMock_InsertOne_Call {
_c.Call.Return(run)
return _c
}
// UpdateMany provides a mock function with given fields: ctx, filter, update, opts
func (_m *CollectionInterfaceMock) UpdateMany(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions) (*mongo.UpdateResult, error) {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, filter, update)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for UpdateMany")
}
var r0 *mongo.UpdateResult
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, interface{}, interface{}, ...*options.UpdateOptions) (*mongo.UpdateResult, error)); ok {
return rf(ctx, filter, update, opts...)
}
if rf, ok := ret.Get(0).(func(context.Context, interface{}, interface{}, ...*options.UpdateOptions) *mongo.UpdateResult); ok {
r0 = rf(ctx, filter, update, opts...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*mongo.UpdateResult)
}
}
if rf, ok := ret.Get(1).(func(context.Context, interface{}, interface{}, ...*options.UpdateOptions) error); ok {
r1 = rf(ctx, filter, update, opts...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// CollectionInterfaceMock_UpdateMany_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UpdateMany'
type CollectionInterfaceMock_UpdateMany_Call struct {
*mock.Call
}
// UpdateMany is a helper method to define mock.On call
// - ctx context.Context
// - filter interface{}
// - update interface{}
// - opts ...*options.UpdateOptions
func (_e *CollectionInterfaceMock_Expecter) UpdateMany(ctx interface{}, filter interface{}, update interface{}, opts ...interface{}) *CollectionInterfaceMock_UpdateMany_Call {
return &CollectionInterfaceMock_UpdateMany_Call{Call: _e.mock.On("UpdateMany",
append([]interface{}{ctx, filter, update}, opts...)...)}
}
func (_c *CollectionInterfaceMock_UpdateMany_Call) Run(run func(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions)) *CollectionInterfaceMock_UpdateMany_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]*options.UpdateOptions, len(args)-3)
for i, a := range args[3:] {
if a != nil {
variadicArgs[i] = a.(*options.UpdateOptions)
}
}
run(args[0].(context.Context), args[1].(interface{}), args[2].(interface{}), variadicArgs...)
})
return _c
}
func (_c *CollectionInterfaceMock_UpdateMany_Call) Return(_a0 *mongo.UpdateResult, _a1 error) *CollectionInterfaceMock_UpdateMany_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *CollectionInterfaceMock_UpdateMany_Call) RunAndReturn(run func(context.Context, interface{}, interface{}, ...*options.UpdateOptions) (*mongo.UpdateResult, error)) *CollectionInterfaceMock_UpdateMany_Call {
_c.Call.Return(run)
return _c
}
// UpdateOne provides a mock function with given fields: ctx, filter, update, opts
func (_m *CollectionInterfaceMock) UpdateOne(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions) (*mongo.UpdateResult, error) {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, filter, update)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for UpdateOne")
}
var r0 *mongo.UpdateResult
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, interface{}, interface{}, ...*options.UpdateOptions) (*mongo.UpdateResult, error)); ok {
return rf(ctx, filter, update, opts...)
}
if rf, ok := ret.Get(0).(func(context.Context, interface{}, interface{}, ...*options.UpdateOptions) *mongo.UpdateResult); ok {
r0 = rf(ctx, filter, update, opts...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*mongo.UpdateResult)
}
}
if rf, ok := ret.Get(1).(func(context.Context, interface{}, interface{}, ...*options.UpdateOptions) error); ok {
r1 = rf(ctx, filter, update, opts...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// CollectionInterfaceMock_UpdateOne_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UpdateOne'
type CollectionInterfaceMock_UpdateOne_Call struct {
*mock.Call
}
// UpdateOne is a helper method to define mock.On call
// - ctx context.Context
// - filter interface{}
// - update interface{}
// - opts ...*options.UpdateOptions
func (_e *CollectionInterfaceMock_Expecter) UpdateOne(ctx interface{}, filter interface{}, update interface{}, opts ...interface{}) *CollectionInterfaceMock_UpdateOne_Call {
return &CollectionInterfaceMock_UpdateOne_Call{Call: _e.mock.On("UpdateOne",
append([]interface{}{ctx, filter, update}, opts...)...)}
}
func (_c *CollectionInterfaceMock_UpdateOne_Call) Run(run func(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions)) *CollectionInterfaceMock_UpdateOne_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]*options.UpdateOptions, len(args)-3)
for i, a := range args[3:] {
if a != nil {
variadicArgs[i] = a.(*options.UpdateOptions)
}
}
run(args[0].(context.Context), args[1].(interface{}), args[2].(interface{}), variadicArgs...)
})
return _c
}
func (_c *CollectionInterfaceMock_UpdateOne_Call) Return(_a0 *mongo.UpdateResult, _a1 error) *CollectionInterfaceMock_UpdateOne_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *CollectionInterfaceMock_UpdateOne_Call) RunAndReturn(run func(context.Context, interface{}, interface{}, ...*options.UpdateOptions) (*mongo.UpdateResult, error)) *CollectionInterfaceMock_UpdateOne_Call {
_c.Call.Return(run)
return _c
}
// Watch provides a mock function with given fields: ctx, pipeline, opts
func (_m *CollectionInterfaceMock) Watch(ctx context.Context, pipeline interface{}, opts ...*options.ChangeStreamOptions) (*mongo.ChangeStream, error) {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, pipeline)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for Watch")
}
var r0 *mongo.ChangeStream
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, interface{}, ...*options.ChangeStreamOptions) (*mongo.ChangeStream, error)); ok {
return rf(ctx, pipeline, opts...)
}
if rf, ok := ret.Get(0).(func(context.Context, interface{}, ...*options.ChangeStreamOptions) *mongo.ChangeStream); ok {
r0 = rf(ctx, pipeline, opts...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*mongo.ChangeStream)
}
}
if rf, ok := ret.Get(1).(func(context.Context, interface{}, ...*options.ChangeStreamOptions) error); ok {
r1 = rf(ctx, pipeline, opts...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// CollectionInterfaceMock_Watch_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Watch'
type CollectionInterfaceMock_Watch_Call struct {
*mock.Call
}
// Watch is a helper method to define mock.On call
// - ctx context.Context
// - pipeline interface{}
// - opts ...*options.ChangeStreamOptions
func (_e *CollectionInterfaceMock_Expecter) Watch(ctx interface{}, pipeline interface{}, opts ...interface{}) *CollectionInterfaceMock_Watch_Call {
return &CollectionInterfaceMock_Watch_Call{Call: _e.mock.On("Watch",
append([]interface{}{ctx, pipeline}, opts...)...)}
}
func (_c *CollectionInterfaceMock_Watch_Call) Run(run func(ctx context.Context, pipeline interface{}, opts ...*options.ChangeStreamOptions)) *CollectionInterfaceMock_Watch_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]*options.ChangeStreamOptions, len(args)-2)
for i, a := range args[2:] {
if a != nil {
variadicArgs[i] = a.(*options.ChangeStreamOptions)
}
}
run(args[0].(context.Context), args[1].(interface{}), variadicArgs...)
})
return _c
}
func (_c *CollectionInterfaceMock_Watch_Call) Return(_a0 *mongo.ChangeStream, _a1 error) *CollectionInterfaceMock_Watch_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *CollectionInterfaceMock_Watch_Call) RunAndReturn(run func(context.Context, interface{}, ...*options.ChangeStreamOptions) (*mongo.ChangeStream, error)) *CollectionInterfaceMock_Watch_Call {
_c.Call.Return(run)
return _c
}
// NewCollectionInterfaceMock creates a new instance of CollectionInterfaceMock. 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 NewCollectionInterfaceMock(t interface {
mock.TestingT
Cleanup(func())
}) *CollectionInterfaceMock {
mock := &CollectionInterfaceMock{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}