-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathSubjectRepo.go
514 lines (423 loc) · 16.6 KB
/
SubjectRepo.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
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
// Code generated by mockery v2.43.0. DO NOT EDIT.
package mocks
import (
context "context"
domain "github.com/bangumi/server/domain"
mock "github.com/stretchr/testify/mock"
model "github.com/bangumi/server/internal/model"
subject "github.com/bangumi/server/internal/subject"
)
// SubjectRepo is an autogenerated mock type for the Repo type
type SubjectRepo struct {
mock.Mock
}
type SubjectRepo_Expecter struct {
mock *mock.Mock
}
func (_m *SubjectRepo) EXPECT() *SubjectRepo_Expecter {
return &SubjectRepo_Expecter{mock: &_m.Mock}
}
// Browse provides a mock function with given fields: ctx, filter, limit, offset
func (_m *SubjectRepo) Browse(ctx context.Context, filter subject.BrowseFilter, limit int, offset int) ([]model.Subject, error) {
ret := _m.Called(ctx, filter, limit, offset)
if len(ret) == 0 {
panic("no return value specified for Browse")
}
var r0 []model.Subject
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, subject.BrowseFilter, int, int) ([]model.Subject, error)); ok {
return rf(ctx, filter, limit, offset)
}
if rf, ok := ret.Get(0).(func(context.Context, subject.BrowseFilter, int, int) []model.Subject); ok {
r0 = rf(ctx, filter, limit, offset)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]model.Subject)
}
}
if rf, ok := ret.Get(1).(func(context.Context, subject.BrowseFilter, int, int) error); ok {
r1 = rf(ctx, filter, limit, offset)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SubjectRepo_Browse_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Browse'
type SubjectRepo_Browse_Call struct {
*mock.Call
}
// Browse is a helper method to define mock.On call
// - ctx context.Context
// - filter subject.BrowseFilter
// - limit int
// - offset int
func (_e *SubjectRepo_Expecter) Browse(ctx interface{}, filter interface{}, limit interface{}, offset interface{}) *SubjectRepo_Browse_Call {
return &SubjectRepo_Browse_Call{Call: _e.mock.On("Browse", ctx, filter, limit, offset)}
}
func (_c *SubjectRepo_Browse_Call) Run(run func(ctx context.Context, filter subject.BrowseFilter, limit int, offset int)) *SubjectRepo_Browse_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(subject.BrowseFilter), args[2].(int), args[3].(int))
})
return _c
}
func (_c *SubjectRepo_Browse_Call) Return(_a0 []model.Subject, _a1 error) *SubjectRepo_Browse_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *SubjectRepo_Browse_Call) RunAndReturn(run func(context.Context, subject.BrowseFilter, int, int) ([]model.Subject, error)) *SubjectRepo_Browse_Call {
_c.Call.Return(run)
return _c
}
// Count provides a mock function with given fields: ctx, filter
func (_m *SubjectRepo) Count(ctx context.Context, filter subject.BrowseFilter) (int64, error) {
ret := _m.Called(ctx, filter)
if len(ret) == 0 {
panic("no return value specified for Count")
}
var r0 int64
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, subject.BrowseFilter) (int64, error)); ok {
return rf(ctx, filter)
}
if rf, ok := ret.Get(0).(func(context.Context, subject.BrowseFilter) int64); ok {
r0 = rf(ctx, filter)
} else {
r0 = ret.Get(0).(int64)
}
if rf, ok := ret.Get(1).(func(context.Context, subject.BrowseFilter) error); ok {
r1 = rf(ctx, filter)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SubjectRepo_Count_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Count'
type SubjectRepo_Count_Call struct {
*mock.Call
}
// Count is a helper method to define mock.On call
// - ctx context.Context
// - filter subject.BrowseFilter
func (_e *SubjectRepo_Expecter) Count(ctx interface{}, filter interface{}) *SubjectRepo_Count_Call {
return &SubjectRepo_Count_Call{Call: _e.mock.On("Count", ctx, filter)}
}
func (_c *SubjectRepo_Count_Call) Run(run func(ctx context.Context, filter subject.BrowseFilter)) *SubjectRepo_Count_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(subject.BrowseFilter))
})
return _c
}
func (_c *SubjectRepo_Count_Call) Return(_a0 int64, _a1 error) *SubjectRepo_Count_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *SubjectRepo_Count_Call) RunAndReturn(run func(context.Context, subject.BrowseFilter) (int64, error)) *SubjectRepo_Count_Call {
_c.Call.Return(run)
return _c
}
// Get provides a mock function with given fields: ctx, id, filter
func (_m *SubjectRepo) Get(ctx context.Context, id uint32, filter subject.Filter) (model.Subject, error) {
ret := _m.Called(ctx, id, filter)
if len(ret) == 0 {
panic("no return value specified for Get")
}
var r0 model.Subject
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32, subject.Filter) (model.Subject, error)); ok {
return rf(ctx, id, filter)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32, subject.Filter) model.Subject); ok {
r0 = rf(ctx, id, filter)
} else {
r0 = ret.Get(0).(model.Subject)
}
if rf, ok := ret.Get(1).(func(context.Context, uint32, subject.Filter) error); ok {
r1 = rf(ctx, id, filter)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SubjectRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'
type SubjectRepo_Get_Call struct {
*mock.Call
}
// Get is a helper method to define mock.On call
// - ctx context.Context
// - id uint32
// - filter subject.Filter
func (_e *SubjectRepo_Expecter) Get(ctx interface{}, id interface{}, filter interface{}) *SubjectRepo_Get_Call {
return &SubjectRepo_Get_Call{Call: _e.mock.On("Get", ctx, id, filter)}
}
func (_c *SubjectRepo_Get_Call) Run(run func(ctx context.Context, id uint32, filter subject.Filter)) *SubjectRepo_Get_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32), args[2].(subject.Filter))
})
return _c
}
func (_c *SubjectRepo_Get_Call) Return(_a0 model.Subject, _a1 error) *SubjectRepo_Get_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *SubjectRepo_Get_Call) RunAndReturn(run func(context.Context, uint32, subject.Filter) (model.Subject, error)) *SubjectRepo_Get_Call {
_c.Call.Return(run)
return _c
}
// GetActors provides a mock function with given fields: ctx, subjectID, characterIDs
func (_m *SubjectRepo) GetActors(ctx context.Context, subjectID uint32, characterIDs []uint32) (map[uint32][]uint32, error) {
ret := _m.Called(ctx, subjectID, characterIDs)
if len(ret) == 0 {
panic("no return value specified for GetActors")
}
var r0 map[uint32][]uint32
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32, []uint32) (map[uint32][]uint32, error)); ok {
return rf(ctx, subjectID, characterIDs)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32, []uint32) map[uint32][]uint32); ok {
r0 = rf(ctx, subjectID, characterIDs)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[uint32][]uint32)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint32, []uint32) error); ok {
r1 = rf(ctx, subjectID, characterIDs)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SubjectRepo_GetActors_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetActors'
type SubjectRepo_GetActors_Call struct {
*mock.Call
}
// GetActors is a helper method to define mock.On call
// - ctx context.Context
// - subjectID uint32
// - characterIDs []uint32
func (_e *SubjectRepo_Expecter) GetActors(ctx interface{}, subjectID interface{}, characterIDs interface{}) *SubjectRepo_GetActors_Call {
return &SubjectRepo_GetActors_Call{Call: _e.mock.On("GetActors", ctx, subjectID, characterIDs)}
}
func (_c *SubjectRepo_GetActors_Call) Run(run func(ctx context.Context, subjectID uint32, characterIDs []uint32)) *SubjectRepo_GetActors_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32), args[2].([]uint32))
})
return _c
}
func (_c *SubjectRepo_GetActors_Call) Return(_a0 map[uint32][]uint32, _a1 error) *SubjectRepo_GetActors_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *SubjectRepo_GetActors_Call) RunAndReturn(run func(context.Context, uint32, []uint32) (map[uint32][]uint32, error)) *SubjectRepo_GetActors_Call {
_c.Call.Return(run)
return _c
}
// GetByIDs provides a mock function with given fields: ctx, ids, filter
func (_m *SubjectRepo) GetByIDs(ctx context.Context, ids []uint32, filter subject.Filter) (map[uint32]model.Subject, error) {
ret := _m.Called(ctx, ids, filter)
if len(ret) == 0 {
panic("no return value specified for GetByIDs")
}
var r0 map[uint32]model.Subject
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, []uint32, subject.Filter) (map[uint32]model.Subject, error)); ok {
return rf(ctx, ids, filter)
}
if rf, ok := ret.Get(0).(func(context.Context, []uint32, subject.Filter) map[uint32]model.Subject); ok {
r0 = rf(ctx, ids, filter)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[uint32]model.Subject)
}
}
if rf, ok := ret.Get(1).(func(context.Context, []uint32, subject.Filter) error); ok {
r1 = rf(ctx, ids, filter)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SubjectRepo_GetByIDs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByIDs'
type SubjectRepo_GetByIDs_Call struct {
*mock.Call
}
// GetByIDs is a helper method to define mock.On call
// - ctx context.Context
// - ids []uint32
// - filter subject.Filter
func (_e *SubjectRepo_Expecter) GetByIDs(ctx interface{}, ids interface{}, filter interface{}) *SubjectRepo_GetByIDs_Call {
return &SubjectRepo_GetByIDs_Call{Call: _e.mock.On("GetByIDs", ctx, ids, filter)}
}
func (_c *SubjectRepo_GetByIDs_Call) Run(run func(ctx context.Context, ids []uint32, filter subject.Filter)) *SubjectRepo_GetByIDs_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].([]uint32), args[2].(subject.Filter))
})
return _c
}
func (_c *SubjectRepo_GetByIDs_Call) Return(_a0 map[uint32]model.Subject, _a1 error) *SubjectRepo_GetByIDs_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *SubjectRepo_GetByIDs_Call) RunAndReturn(run func(context.Context, []uint32, subject.Filter) (map[uint32]model.Subject, error)) *SubjectRepo_GetByIDs_Call {
_c.Call.Return(run)
return _c
}
// GetCharacterRelated provides a mock function with given fields: ctx, characterID
func (_m *SubjectRepo) GetCharacterRelated(ctx context.Context, characterID uint32) ([]domain.SubjectCharacterRelation, error) {
ret := _m.Called(ctx, characterID)
if len(ret) == 0 {
panic("no return value specified for GetCharacterRelated")
}
var r0 []domain.SubjectCharacterRelation
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) ([]domain.SubjectCharacterRelation, error)); ok {
return rf(ctx, characterID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) []domain.SubjectCharacterRelation); ok {
r0 = rf(ctx, characterID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]domain.SubjectCharacterRelation)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, characterID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SubjectRepo_GetCharacterRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCharacterRelated'
type SubjectRepo_GetCharacterRelated_Call struct {
*mock.Call
}
// GetCharacterRelated is a helper method to define mock.On call
// - ctx context.Context
// - characterID uint32
func (_e *SubjectRepo_Expecter) GetCharacterRelated(ctx interface{}, characterID interface{}) *SubjectRepo_GetCharacterRelated_Call {
return &SubjectRepo_GetCharacterRelated_Call{Call: _e.mock.On("GetCharacterRelated", ctx, characterID)}
}
func (_c *SubjectRepo_GetCharacterRelated_Call) Run(run func(ctx context.Context, characterID uint32)) *SubjectRepo_GetCharacterRelated_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *SubjectRepo_GetCharacterRelated_Call) Return(_a0 []domain.SubjectCharacterRelation, _a1 error) *SubjectRepo_GetCharacterRelated_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *SubjectRepo_GetCharacterRelated_Call) RunAndReturn(run func(context.Context, uint32) ([]domain.SubjectCharacterRelation, error)) *SubjectRepo_GetCharacterRelated_Call {
_c.Call.Return(run)
return _c
}
// GetPersonRelated provides a mock function with given fields: ctx, personID
func (_m *SubjectRepo) GetPersonRelated(ctx context.Context, personID uint32) ([]domain.SubjectPersonRelation, error) {
ret := _m.Called(ctx, personID)
if len(ret) == 0 {
panic("no return value specified for GetPersonRelated")
}
var r0 []domain.SubjectPersonRelation
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) ([]domain.SubjectPersonRelation, error)); ok {
return rf(ctx, personID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) []domain.SubjectPersonRelation); ok {
r0 = rf(ctx, personID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]domain.SubjectPersonRelation)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, personID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SubjectRepo_GetPersonRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetPersonRelated'
type SubjectRepo_GetPersonRelated_Call struct {
*mock.Call
}
// GetPersonRelated is a helper method to define mock.On call
// - ctx context.Context
// - personID uint32
func (_e *SubjectRepo_Expecter) GetPersonRelated(ctx interface{}, personID interface{}) *SubjectRepo_GetPersonRelated_Call {
return &SubjectRepo_GetPersonRelated_Call{Call: _e.mock.On("GetPersonRelated", ctx, personID)}
}
func (_c *SubjectRepo_GetPersonRelated_Call) Run(run func(ctx context.Context, personID uint32)) *SubjectRepo_GetPersonRelated_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *SubjectRepo_GetPersonRelated_Call) Return(_a0 []domain.SubjectPersonRelation, _a1 error) *SubjectRepo_GetPersonRelated_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *SubjectRepo_GetPersonRelated_Call) RunAndReturn(run func(context.Context, uint32) ([]domain.SubjectPersonRelation, error)) *SubjectRepo_GetPersonRelated_Call {
_c.Call.Return(run)
return _c
}
// GetSubjectRelated provides a mock function with given fields: ctx, subjectID
func (_m *SubjectRepo) GetSubjectRelated(ctx context.Context, subjectID uint32) ([]domain.SubjectInternalRelation, error) {
ret := _m.Called(ctx, subjectID)
if len(ret) == 0 {
panic("no return value specified for GetSubjectRelated")
}
var r0 []domain.SubjectInternalRelation
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) ([]domain.SubjectInternalRelation, error)); ok {
return rf(ctx, subjectID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) []domain.SubjectInternalRelation); ok {
r0 = rf(ctx, subjectID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]domain.SubjectInternalRelation)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, subjectID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SubjectRepo_GetSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectRelated'
type SubjectRepo_GetSubjectRelated_Call struct {
*mock.Call
}
// GetSubjectRelated is a helper method to define mock.On call
// - ctx context.Context
// - subjectID uint32
func (_e *SubjectRepo_Expecter) GetSubjectRelated(ctx interface{}, subjectID interface{}) *SubjectRepo_GetSubjectRelated_Call {
return &SubjectRepo_GetSubjectRelated_Call{Call: _e.mock.On("GetSubjectRelated", ctx, subjectID)}
}
func (_c *SubjectRepo_GetSubjectRelated_Call) Run(run func(ctx context.Context, subjectID uint32)) *SubjectRepo_GetSubjectRelated_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *SubjectRepo_GetSubjectRelated_Call) Return(_a0 []domain.SubjectInternalRelation, _a1 error) *SubjectRepo_GetSubjectRelated_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *SubjectRepo_GetSubjectRelated_Call) RunAndReturn(run func(context.Context, uint32) ([]domain.SubjectInternalRelation, error)) *SubjectRepo_GetSubjectRelated_Call {
_c.Call.Return(run)
return _c
}
// NewSubjectRepo creates a new instance of SubjectRepo. 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 NewSubjectRepo(t interface {
mock.TestingT
Cleanup(func())
}) *SubjectRepo {
mock := &SubjectRepo{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}