-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbinterface_test.go
408 lines (332 loc) · 12 KB
/
dbinterface_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
// 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"
primitive "go.mongodb.org/mongo-driver/bson/primitive"
)
// DbInterfaceMock is an autogenerated mock type for the DbInterface type
type DbInterfaceMock struct {
mock.Mock
}
type DbInterfaceMock_Expecter struct {
mock *mock.Mock
}
func (_m *DbInterfaceMock) EXPECT() *DbInterfaceMock_Expecter {
return &DbInterfaceMock_Expecter{mock: &_m.Mock}
}
// Context provides a mock function with given fields:
func (_m *DbInterfaceMock) Context() context.Context {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for Context")
}
var r0 context.Context
if rf, ok := ret.Get(0).(func() context.Context); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(context.Context)
}
}
return r0
}
// DbInterfaceMock_Context_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Context'
type DbInterfaceMock_Context_Call struct {
*mock.Call
}
// Context is a helper method to define mock.On call
func (_e *DbInterfaceMock_Expecter) Context() *DbInterfaceMock_Context_Call {
return &DbInterfaceMock_Context_Call{Call: _e.mock.On("Context")}
}
func (_c *DbInterfaceMock_Context_Call) Run(run func()) *DbInterfaceMock_Context_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *DbInterfaceMock_Context_Call) Return(_a0 context.Context) *DbInterfaceMock_Context_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *DbInterfaceMock_Context_Call) RunAndReturn(run func() context.Context) *DbInterfaceMock_Context_Call {
_c.Call.Return(run)
return _c
}
// CreateIndexes provides a mock function with given fields: index
func (_m *DbInterfaceMock) CreateIndexes(index []mongo.IndexModel) error {
ret := _m.Called(index)
if len(ret) == 0 {
panic("no return value specified for CreateIndexes")
}
var r0 error
if rf, ok := ret.Get(0).(func([]mongo.IndexModel) error); ok {
r0 = rf(index)
} else {
r0 = ret.Error(0)
}
return r0
}
// DbInterfaceMock_CreateIndexes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateIndexes'
type DbInterfaceMock_CreateIndexes_Call struct {
*mock.Call
}
// CreateIndexes is a helper method to define mock.On call
// - index []mongo.IndexModel
func (_e *DbInterfaceMock_Expecter) CreateIndexes(index interface{}) *DbInterfaceMock_CreateIndexes_Call {
return &DbInterfaceMock_CreateIndexes_Call{Call: _e.mock.On("CreateIndexes", index)}
}
func (_c *DbInterfaceMock_CreateIndexes_Call) Run(run func(index []mongo.IndexModel)) *DbInterfaceMock_CreateIndexes_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].([]mongo.IndexModel))
})
return _c
}
func (_c *DbInterfaceMock_CreateIndexes_Call) Return(_a0 error) *DbInterfaceMock_CreateIndexes_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *DbInterfaceMock_CreateIndexes_Call) RunAndReturn(run func([]mongo.IndexModel) error) *DbInterfaceMock_CreateIndexes_Call {
_c.Call.Return(run)
return _c
}
// FindOneAndUpdate provides a mock function with given fields: filter, update, opts
func (_m *DbInterfaceMock) FindOneAndUpdate(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, 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(interface{}, interface{}, ...*options.FindOneAndUpdateOptions) *mongo.SingleResult); ok {
r0 = rf(filter, update, opts...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*mongo.SingleResult)
}
}
return r0
}
// DbInterfaceMock_FindOneAndUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'FindOneAndUpdate'
type DbInterfaceMock_FindOneAndUpdate_Call struct {
*mock.Call
}
// FindOneAndUpdate is a helper method to define mock.On call
// - filter interface{}
// - update interface{}
// - opts ...*options.FindOneAndUpdateOptions
func (_e *DbInterfaceMock_Expecter) FindOneAndUpdate(filter interface{}, update interface{}, opts ...interface{}) *DbInterfaceMock_FindOneAndUpdate_Call {
return &DbInterfaceMock_FindOneAndUpdate_Call{Call: _e.mock.On("FindOneAndUpdate",
append([]interface{}{filter, update}, opts...)...)}
}
func (_c *DbInterfaceMock_FindOneAndUpdate_Call) Run(run func(filter interface{}, update interface{}, opts ...*options.FindOneAndUpdateOptions)) *DbInterfaceMock_FindOneAndUpdate_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]*options.FindOneAndUpdateOptions, len(args)-2)
for i, a := range args[2:] {
if a != nil {
variadicArgs[i] = a.(*options.FindOneAndUpdateOptions)
}
}
run(args[0].(interface{}), args[1].(interface{}), variadicArgs...)
})
return _c
}
func (_c *DbInterfaceMock_FindOneAndUpdate_Call) Return(_a0 *mongo.SingleResult) *DbInterfaceMock_FindOneAndUpdate_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *DbInterfaceMock_FindOneAndUpdate_Call) RunAndReturn(run func(interface{}, interface{}, ...*options.FindOneAndUpdateOptions) *mongo.SingleResult) *DbInterfaceMock_FindOneAndUpdate_Call {
_c.Call.Return(run)
return _c
}
// InsertOne provides a mock function with given fields: document
func (_m *DbInterfaceMock) InsertOne(document interface{}) (primitive.ObjectID, error) {
ret := _m.Called(document)
if len(ret) == 0 {
panic("no return value specified for InsertOne")
}
var r0 primitive.ObjectID
var r1 error
if rf, ok := ret.Get(0).(func(interface{}) (primitive.ObjectID, error)); ok {
return rf(document)
}
if rf, ok := ret.Get(0).(func(interface{}) primitive.ObjectID); ok {
r0 = rf(document)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(primitive.ObjectID)
}
}
if rf, ok := ret.Get(1).(func(interface{}) error); ok {
r1 = rf(document)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DbInterfaceMock_InsertOne_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'InsertOne'
type DbInterfaceMock_InsertOne_Call struct {
*mock.Call
}
// InsertOne is a helper method to define mock.On call
// - document interface{}
func (_e *DbInterfaceMock_Expecter) InsertOne(document interface{}) *DbInterfaceMock_InsertOne_Call {
return &DbInterfaceMock_InsertOne_Call{Call: _e.mock.On("InsertOne", document)}
}
func (_c *DbInterfaceMock_InsertOne_Call) Run(run func(document interface{})) *DbInterfaceMock_InsertOne_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(interface{}))
})
return _c
}
func (_c *DbInterfaceMock_InsertOne_Call) Return(_a0 primitive.ObjectID, _a1 error) *DbInterfaceMock_InsertOne_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *DbInterfaceMock_InsertOne_Call) RunAndReturn(run func(interface{}) (primitive.ObjectID, error)) *DbInterfaceMock_InsertOne_Call {
_c.Call.Return(run)
return _c
}
// UpdateMany provides a mock function with given fields: filter, update
func (_m *DbInterfaceMock) UpdateMany(filter interface{}, update interface{}) error {
ret := _m.Called(filter, update)
if len(ret) == 0 {
panic("no return value specified for UpdateMany")
}
var r0 error
if rf, ok := ret.Get(0).(func(interface{}, interface{}) error); ok {
r0 = rf(filter, update)
} else {
r0 = ret.Error(0)
}
return r0
}
// DbInterfaceMock_UpdateMany_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UpdateMany'
type DbInterfaceMock_UpdateMany_Call struct {
*mock.Call
}
// UpdateMany is a helper method to define mock.On call
// - filter interface{}
// - update interface{}
func (_e *DbInterfaceMock_Expecter) UpdateMany(filter interface{}, update interface{}) *DbInterfaceMock_UpdateMany_Call {
return &DbInterfaceMock_UpdateMany_Call{Call: _e.mock.On("UpdateMany", filter, update)}
}
func (_c *DbInterfaceMock_UpdateMany_Call) Run(run func(filter interface{}, update interface{})) *DbInterfaceMock_UpdateMany_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(interface{}), args[1].(interface{}))
})
return _c
}
func (_c *DbInterfaceMock_UpdateMany_Call) Return(_a0 error) *DbInterfaceMock_UpdateMany_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *DbInterfaceMock_UpdateMany_Call) RunAndReturn(run func(interface{}, interface{}) error) *DbInterfaceMock_UpdateMany_Call {
_c.Call.Return(run)
return _c
}
// UpdateOne provides a mock function with given fields: filter, update
func (_m *DbInterfaceMock) UpdateOne(filter interface{}, update interface{}) error {
ret := _m.Called(filter, update)
if len(ret) == 0 {
panic("no return value specified for UpdateOne")
}
var r0 error
if rf, ok := ret.Get(0).(func(interface{}, interface{}) error); ok {
r0 = rf(filter, update)
} else {
r0 = ret.Error(0)
}
return r0
}
// DbInterfaceMock_UpdateOne_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UpdateOne'
type DbInterfaceMock_UpdateOne_Call struct {
*mock.Call
}
// UpdateOne is a helper method to define mock.On call
// - filter interface{}
// - update interface{}
func (_e *DbInterfaceMock_Expecter) UpdateOne(filter interface{}, update interface{}) *DbInterfaceMock_UpdateOne_Call {
return &DbInterfaceMock_UpdateOne_Call{Call: _e.mock.On("UpdateOne", filter, update)}
}
func (_c *DbInterfaceMock_UpdateOne_Call) Run(run func(filter interface{}, update interface{})) *DbInterfaceMock_UpdateOne_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(interface{}), args[1].(interface{}))
})
return _c
}
func (_c *DbInterfaceMock_UpdateOne_Call) Return(_a0 error) *DbInterfaceMock_UpdateOne_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *DbInterfaceMock_UpdateOne_Call) RunAndReturn(run func(interface{}, interface{}) error) *DbInterfaceMock_UpdateOne_Call {
_c.Call.Return(run)
return _c
}
// Watch provides a mock function with given fields: pipeline
func (_m *DbInterfaceMock) Watch(pipeline interface{}) (ChangeStreamInterface, error) {
ret := _m.Called(pipeline)
if len(ret) == 0 {
panic("no return value specified for Watch")
}
var r0 ChangeStreamInterface
var r1 error
if rf, ok := ret.Get(0).(func(interface{}) (ChangeStreamInterface, error)); ok {
return rf(pipeline)
}
if rf, ok := ret.Get(0).(func(interface{}) ChangeStreamInterface); ok {
r0 = rf(pipeline)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(ChangeStreamInterface)
}
}
if rf, ok := ret.Get(1).(func(interface{}) error); ok {
r1 = rf(pipeline)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DbInterfaceMock_Watch_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Watch'
type DbInterfaceMock_Watch_Call struct {
*mock.Call
}
// Watch is a helper method to define mock.On call
// - pipeline interface{}
func (_e *DbInterfaceMock_Expecter) Watch(pipeline interface{}) *DbInterfaceMock_Watch_Call {
return &DbInterfaceMock_Watch_Call{Call: _e.mock.On("Watch", pipeline)}
}
func (_c *DbInterfaceMock_Watch_Call) Run(run func(pipeline interface{})) *DbInterfaceMock_Watch_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(interface{}))
})
return _c
}
func (_c *DbInterfaceMock_Watch_Call) Return(_a0 ChangeStreamInterface, _a1 error) *DbInterfaceMock_Watch_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *DbInterfaceMock_Watch_Call) RunAndReturn(run func(interface{}) (ChangeStreamInterface, error)) *DbInterfaceMock_Watch_Call {
_c.Call.Return(run)
return _c
}
// NewDbInterfaceMock creates a new instance of DbInterfaceMock. 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 NewDbInterfaceMock(t interface {
mock.TestingT
Cleanup(func())
}) *DbInterfaceMock {
mock := &DbInterfaceMock{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}