-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathPersonRepo.go
273 lines (223 loc) · 8.2 KB
/
PersonRepo.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
// 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"
)
// PersonRepo is an autogenerated mock type for the Repo type
type PersonRepo struct {
mock.Mock
}
type PersonRepo_Expecter struct {
mock *mock.Mock
}
func (_m *PersonRepo) EXPECT() *PersonRepo_Expecter {
return &PersonRepo_Expecter{mock: &_m.Mock}
}
// Get provides a mock function with given fields: ctx, id
func (_m *PersonRepo) Get(ctx context.Context, id uint32) (model.Person, error) {
ret := _m.Called(ctx, id)
if len(ret) == 0 {
panic("no return value specified for Get")
}
var r0 model.Person
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) (model.Person, error)); ok {
return rf(ctx, id)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) model.Person); ok {
r0 = rf(ctx, id)
} else {
r0 = ret.Get(0).(model.Person)
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, id)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// PersonRepo_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'
type PersonRepo_Get_Call struct {
*mock.Call
}
// Get is a helper method to define mock.On call
// - ctx context.Context
// - id uint32
func (_e *PersonRepo_Expecter) Get(ctx interface{}, id interface{}) *PersonRepo_Get_Call {
return &PersonRepo_Get_Call{Call: _e.mock.On("Get", ctx, id)}
}
func (_c *PersonRepo_Get_Call) Run(run func(ctx context.Context, id uint32)) *PersonRepo_Get_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *PersonRepo_Get_Call) Return(_a0 model.Person, _a1 error) *PersonRepo_Get_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *PersonRepo_Get_Call) RunAndReturn(run func(context.Context, uint32) (model.Person, error)) *PersonRepo_Get_Call {
_c.Call.Return(run)
return _c
}
// GetByIDs provides a mock function with given fields: ctx, ids
func (_m *PersonRepo) GetByIDs(ctx context.Context, ids []uint32) (map[uint32]model.Person, error) {
ret := _m.Called(ctx, ids)
if len(ret) == 0 {
panic("no return value specified for GetByIDs")
}
var r0 map[uint32]model.Person
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, []uint32) (map[uint32]model.Person, error)); ok {
return rf(ctx, ids)
}
if rf, ok := ret.Get(0).(func(context.Context, []uint32) map[uint32]model.Person); ok {
r0 = rf(ctx, ids)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[uint32]model.Person)
}
}
if rf, ok := ret.Get(1).(func(context.Context, []uint32) error); ok {
r1 = rf(ctx, ids)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// PersonRepo_GetByIDs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByIDs'
type PersonRepo_GetByIDs_Call struct {
*mock.Call
}
// GetByIDs is a helper method to define mock.On call
// - ctx context.Context
// - ids []uint32
func (_e *PersonRepo_Expecter) GetByIDs(ctx interface{}, ids interface{}) *PersonRepo_GetByIDs_Call {
return &PersonRepo_GetByIDs_Call{Call: _e.mock.On("GetByIDs", ctx, ids)}
}
func (_c *PersonRepo_GetByIDs_Call) Run(run func(ctx context.Context, ids []uint32)) *PersonRepo_GetByIDs_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].([]uint32))
})
return _c
}
func (_c *PersonRepo_GetByIDs_Call) Return(_a0 map[uint32]model.Person, _a1 error) *PersonRepo_GetByIDs_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *PersonRepo_GetByIDs_Call) RunAndReturn(run func(context.Context, []uint32) (map[uint32]model.Person, error)) *PersonRepo_GetByIDs_Call {
_c.Call.Return(run)
return _c
}
// GetCharacterRelated provides a mock function with given fields: ctx, subjectID
func (_m *PersonRepo) GetCharacterRelated(ctx context.Context, subjectID uint32) ([]domain.PersonCharacterRelation, error) {
ret := _m.Called(ctx, subjectID)
if len(ret) == 0 {
panic("no return value specified for GetCharacterRelated")
}
var r0 []domain.PersonCharacterRelation
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) ([]domain.PersonCharacterRelation, error)); ok {
return rf(ctx, subjectID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) []domain.PersonCharacterRelation); ok {
r0 = rf(ctx, subjectID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]domain.PersonCharacterRelation)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, subjectID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// PersonRepo_GetCharacterRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetCharacterRelated'
type PersonRepo_GetCharacterRelated_Call struct {
*mock.Call
}
// GetCharacterRelated is a helper method to define mock.On call
// - ctx context.Context
// - subjectID uint32
func (_e *PersonRepo_Expecter) GetCharacterRelated(ctx interface{}, subjectID interface{}) *PersonRepo_GetCharacterRelated_Call {
return &PersonRepo_GetCharacterRelated_Call{Call: _e.mock.On("GetCharacterRelated", ctx, subjectID)}
}
func (_c *PersonRepo_GetCharacterRelated_Call) Run(run func(ctx context.Context, subjectID uint32)) *PersonRepo_GetCharacterRelated_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *PersonRepo_GetCharacterRelated_Call) Return(_a0 []domain.PersonCharacterRelation, _a1 error) *PersonRepo_GetCharacterRelated_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *PersonRepo_GetCharacterRelated_Call) RunAndReturn(run func(context.Context, uint32) ([]domain.PersonCharacterRelation, error)) *PersonRepo_GetCharacterRelated_Call {
_c.Call.Return(run)
return _c
}
// GetSubjectRelated provides a mock function with given fields: ctx, subjectID
func (_m *PersonRepo) GetSubjectRelated(ctx context.Context, subjectID uint32) ([]domain.SubjectPersonRelation, error) {
ret := _m.Called(ctx, subjectID)
if len(ret) == 0 {
panic("no return value specified for GetSubjectRelated")
}
var r0 []domain.SubjectPersonRelation
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) ([]domain.SubjectPersonRelation, error)); ok {
return rf(ctx, subjectID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) []domain.SubjectPersonRelation); ok {
r0 = rf(ctx, subjectID)
} 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, subjectID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// PersonRepo_GetSubjectRelated_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSubjectRelated'
type PersonRepo_GetSubjectRelated_Call struct {
*mock.Call
}
// GetSubjectRelated is a helper method to define mock.On call
// - ctx context.Context
// - subjectID uint32
func (_e *PersonRepo_Expecter) GetSubjectRelated(ctx interface{}, subjectID interface{}) *PersonRepo_GetSubjectRelated_Call {
return &PersonRepo_GetSubjectRelated_Call{Call: _e.mock.On("GetSubjectRelated", ctx, subjectID)}
}
func (_c *PersonRepo_GetSubjectRelated_Call) Run(run func(ctx context.Context, subjectID uint32)) *PersonRepo_GetSubjectRelated_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *PersonRepo_GetSubjectRelated_Call) Return(_a0 []domain.SubjectPersonRelation, _a1 error) *PersonRepo_GetSubjectRelated_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *PersonRepo_GetSubjectRelated_Call) RunAndReturn(run func(context.Context, uint32) ([]domain.SubjectPersonRelation, error)) *PersonRepo_GetSubjectRelated_Call {
_c.Call.Return(run)
return _c
}
// NewPersonRepo creates a new instance of PersonRepo. 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 NewPersonRepo(t interface {
mock.TestingT
Cleanup(func())
}) *PersonRepo {
mock := &PersonRepo{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}