-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathAuthRepo.go
452 lines (370 loc) · 13.5 KB
/
AuthRepo.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
// Code generated by mockery v2.43.0. DO NOT EDIT.
package mocks
import (
context "context"
auth "github.com/bangumi/server/internal/auth"
mock "github.com/stretchr/testify/mock"
time "time"
)
// AuthRepo is an autogenerated mock type for the Repo type
type AuthRepo struct {
mock.Mock
}
type AuthRepo_Expecter struct {
mock *mock.Mock
}
func (_m *AuthRepo) EXPECT() *AuthRepo_Expecter {
return &AuthRepo_Expecter{mock: &_m.Mock}
}
// CreateAccessToken provides a mock function with given fields: ctx, userID, name, expiration
func (_m *AuthRepo) CreateAccessToken(ctx context.Context, userID uint32, name string, expiration time.Duration) (string, error) {
ret := _m.Called(ctx, userID, name, expiration)
if len(ret) == 0 {
panic("no return value specified for CreateAccessToken")
}
var r0 string
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32, string, time.Duration) (string, error)); ok {
return rf(ctx, userID, name, expiration)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32, string, time.Duration) string); ok {
r0 = rf(ctx, userID, name, expiration)
} else {
r0 = ret.Get(0).(string)
}
if rf, ok := ret.Get(1).(func(context.Context, uint32, string, time.Duration) error); ok {
r1 = rf(ctx, userID, name, expiration)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// AuthRepo_CreateAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CreateAccessToken'
type AuthRepo_CreateAccessToken_Call struct {
*mock.Call
}
// CreateAccessToken is a helper method to define mock.On call
// - ctx context.Context
// - userID uint32
// - name string
// - expiration time.Duration
func (_e *AuthRepo_Expecter) CreateAccessToken(ctx interface{}, userID interface{}, name interface{}, expiration interface{}) *AuthRepo_CreateAccessToken_Call {
return &AuthRepo_CreateAccessToken_Call{Call: _e.mock.On("CreateAccessToken", ctx, userID, name, expiration)}
}
func (_c *AuthRepo_CreateAccessToken_Call) Run(run func(ctx context.Context, userID uint32, name string, expiration time.Duration)) *AuthRepo_CreateAccessToken_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32), args[2].(string), args[3].(time.Duration))
})
return _c
}
func (_c *AuthRepo_CreateAccessToken_Call) Return(token string, err error) *AuthRepo_CreateAccessToken_Call {
_c.Call.Return(token, err)
return _c
}
func (_c *AuthRepo_CreateAccessToken_Call) RunAndReturn(run func(context.Context, uint32, string, time.Duration) (string, error)) *AuthRepo_CreateAccessToken_Call {
_c.Call.Return(run)
return _c
}
// DeleteAccessToken provides a mock function with given fields: ctx, tokenID
func (_m *AuthRepo) DeleteAccessToken(ctx context.Context, tokenID uint32) (bool, error) {
ret := _m.Called(ctx, tokenID)
if len(ret) == 0 {
panic("no return value specified for DeleteAccessToken")
}
var r0 bool
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) (bool, error)); ok {
return rf(ctx, tokenID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) bool); ok {
r0 = rf(ctx, tokenID)
} else {
r0 = ret.Get(0).(bool)
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, tokenID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// AuthRepo_DeleteAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DeleteAccessToken'
type AuthRepo_DeleteAccessToken_Call struct {
*mock.Call
}
// DeleteAccessToken is a helper method to define mock.On call
// - ctx context.Context
// - tokenID uint32
func (_e *AuthRepo_Expecter) DeleteAccessToken(ctx interface{}, tokenID interface{}) *AuthRepo_DeleteAccessToken_Call {
return &AuthRepo_DeleteAccessToken_Call{Call: _e.mock.On("DeleteAccessToken", ctx, tokenID)}
}
func (_c *AuthRepo_DeleteAccessToken_Call) Run(run func(ctx context.Context, tokenID uint32)) *AuthRepo_DeleteAccessToken_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *AuthRepo_DeleteAccessToken_Call) Return(_a0 bool, _a1 error) *AuthRepo_DeleteAccessToken_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *AuthRepo_DeleteAccessToken_Call) RunAndReturn(run func(context.Context, uint32) (bool, error)) *AuthRepo_DeleteAccessToken_Call {
_c.Call.Return(run)
return _c
}
// GetByEmail provides a mock function with given fields: ctx, email
func (_m *AuthRepo) GetByEmail(ctx context.Context, email string) (auth.UserInfo, []byte, error) {
ret := _m.Called(ctx, email)
if len(ret) == 0 {
panic("no return value specified for GetByEmail")
}
var r0 auth.UserInfo
var r1 []byte
var r2 error
if rf, ok := ret.Get(0).(func(context.Context, string) (auth.UserInfo, []byte, error)); ok {
return rf(ctx, email)
}
if rf, ok := ret.Get(0).(func(context.Context, string) auth.UserInfo); ok {
r0 = rf(ctx, email)
} else {
r0 = ret.Get(0).(auth.UserInfo)
}
if rf, ok := ret.Get(1).(func(context.Context, string) []byte); ok {
r1 = rf(ctx, email)
} else {
if ret.Get(1) != nil {
r1 = ret.Get(1).([]byte)
}
}
if rf, ok := ret.Get(2).(func(context.Context, string) error); ok {
r2 = rf(ctx, email)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}
// AuthRepo_GetByEmail_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByEmail'
type AuthRepo_GetByEmail_Call struct {
*mock.Call
}
// GetByEmail is a helper method to define mock.On call
// - ctx context.Context
// - email string
func (_e *AuthRepo_Expecter) GetByEmail(ctx interface{}, email interface{}) *AuthRepo_GetByEmail_Call {
return &AuthRepo_GetByEmail_Call{Call: _e.mock.On("GetByEmail", ctx, email)}
}
func (_c *AuthRepo_GetByEmail_Call) Run(run func(ctx context.Context, email string)) *AuthRepo_GetByEmail_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(string))
})
return _c
}
func (_c *AuthRepo_GetByEmail_Call) Return(_a0 auth.UserInfo, _a1 []byte, _a2 error) *AuthRepo_GetByEmail_Call {
_c.Call.Return(_a0, _a1, _a2)
return _c
}
func (_c *AuthRepo_GetByEmail_Call) RunAndReturn(run func(context.Context, string) (auth.UserInfo, []byte, error)) *AuthRepo_GetByEmail_Call {
_c.Call.Return(run)
return _c
}
// GetByToken provides a mock function with given fields: ctx, token
func (_m *AuthRepo) GetByToken(ctx context.Context, token string) (auth.UserInfo, error) {
ret := _m.Called(ctx, token)
if len(ret) == 0 {
panic("no return value specified for GetByToken")
}
var r0 auth.UserInfo
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, string) (auth.UserInfo, error)); ok {
return rf(ctx, token)
}
if rf, ok := ret.Get(0).(func(context.Context, string) auth.UserInfo); ok {
r0 = rf(ctx, token)
} else {
r0 = ret.Get(0).(auth.UserInfo)
}
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, token)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// AuthRepo_GetByToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetByToken'
type AuthRepo_GetByToken_Call struct {
*mock.Call
}
// GetByToken is a helper method to define mock.On call
// - ctx context.Context
// - token string
func (_e *AuthRepo_Expecter) GetByToken(ctx interface{}, token interface{}) *AuthRepo_GetByToken_Call {
return &AuthRepo_GetByToken_Call{Call: _e.mock.On("GetByToken", ctx, token)}
}
func (_c *AuthRepo_GetByToken_Call) Run(run func(ctx context.Context, token string)) *AuthRepo_GetByToken_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(string))
})
return _c
}
func (_c *AuthRepo_GetByToken_Call) Return(_a0 auth.UserInfo, _a1 error) *AuthRepo_GetByToken_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *AuthRepo_GetByToken_Call) RunAndReturn(run func(context.Context, string) (auth.UserInfo, error)) *AuthRepo_GetByToken_Call {
_c.Call.Return(run)
return _c
}
// GetPermission provides a mock function with given fields: ctx, groupID
func (_m *AuthRepo) GetPermission(ctx context.Context, groupID uint8) (auth.Permission, error) {
ret := _m.Called(ctx, groupID)
if len(ret) == 0 {
panic("no return value specified for GetPermission")
}
var r0 auth.Permission
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint8) (auth.Permission, error)); ok {
return rf(ctx, groupID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint8) auth.Permission); ok {
r0 = rf(ctx, groupID)
} else {
r0 = ret.Get(0).(auth.Permission)
}
if rf, ok := ret.Get(1).(func(context.Context, uint8) error); ok {
r1 = rf(ctx, groupID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// AuthRepo_GetPermission_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetPermission'
type AuthRepo_GetPermission_Call struct {
*mock.Call
}
// GetPermission is a helper method to define mock.On call
// - ctx context.Context
// - groupID uint8
func (_e *AuthRepo_Expecter) GetPermission(ctx interface{}, groupID interface{}) *AuthRepo_GetPermission_Call {
return &AuthRepo_GetPermission_Call{Call: _e.mock.On("GetPermission", ctx, groupID)}
}
func (_c *AuthRepo_GetPermission_Call) Run(run func(ctx context.Context, groupID uint8)) *AuthRepo_GetPermission_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint8))
})
return _c
}
func (_c *AuthRepo_GetPermission_Call) Return(_a0 auth.Permission, _a1 error) *AuthRepo_GetPermission_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *AuthRepo_GetPermission_Call) RunAndReturn(run func(context.Context, uint8) (auth.Permission, error)) *AuthRepo_GetPermission_Call {
_c.Call.Return(run)
return _c
}
// GetTokenByID provides a mock function with given fields: ctx, id
func (_m *AuthRepo) GetTokenByID(ctx context.Context, id uint32) (auth.AccessToken, error) {
ret := _m.Called(ctx, id)
if len(ret) == 0 {
panic("no return value specified for GetTokenByID")
}
var r0 auth.AccessToken
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) (auth.AccessToken, error)); ok {
return rf(ctx, id)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) auth.AccessToken); ok {
r0 = rf(ctx, id)
} else {
r0 = ret.Get(0).(auth.AccessToken)
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, id)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// AuthRepo_GetTokenByID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetTokenByID'
type AuthRepo_GetTokenByID_Call struct {
*mock.Call
}
// GetTokenByID is a helper method to define mock.On call
// - ctx context.Context
// - id uint32
func (_e *AuthRepo_Expecter) GetTokenByID(ctx interface{}, id interface{}) *AuthRepo_GetTokenByID_Call {
return &AuthRepo_GetTokenByID_Call{Call: _e.mock.On("GetTokenByID", ctx, id)}
}
func (_c *AuthRepo_GetTokenByID_Call) Run(run func(ctx context.Context, id uint32)) *AuthRepo_GetTokenByID_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *AuthRepo_GetTokenByID_Call) Return(_a0 auth.AccessToken, _a1 error) *AuthRepo_GetTokenByID_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *AuthRepo_GetTokenByID_Call) RunAndReturn(run func(context.Context, uint32) (auth.AccessToken, error)) *AuthRepo_GetTokenByID_Call {
_c.Call.Return(run)
return _c
}
// ListAccessToken provides a mock function with given fields: ctx, userID
func (_m *AuthRepo) ListAccessToken(ctx context.Context, userID uint32) ([]auth.AccessToken, error) {
ret := _m.Called(ctx, userID)
if len(ret) == 0 {
panic("no return value specified for ListAccessToken")
}
var r0 []auth.AccessToken
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) ([]auth.AccessToken, error)); ok {
return rf(ctx, userID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) []auth.AccessToken); ok {
r0 = rf(ctx, userID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]auth.AccessToken)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, userID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// AuthRepo_ListAccessToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListAccessToken'
type AuthRepo_ListAccessToken_Call struct {
*mock.Call
}
// ListAccessToken is a helper method to define mock.On call
// - ctx context.Context
// - userID uint32
func (_e *AuthRepo_Expecter) ListAccessToken(ctx interface{}, userID interface{}) *AuthRepo_ListAccessToken_Call {
return &AuthRepo_ListAccessToken_Call{Call: _e.mock.On("ListAccessToken", ctx, userID)}
}
func (_c *AuthRepo_ListAccessToken_Call) Run(run func(ctx context.Context, userID uint32)) *AuthRepo_ListAccessToken_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *AuthRepo_ListAccessToken_Call) Return(_a0 []auth.AccessToken, _a1 error) *AuthRepo_ListAccessToken_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *AuthRepo_ListAccessToken_Call) RunAndReturn(run func(context.Context, uint32) ([]auth.AccessToken, error)) *AuthRepo_ListAccessToken_Call {
_c.Call.Return(run)
return _c
}
// NewAuthRepo creates a new instance of AuthRepo. 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 NewAuthRepo(t interface {
mock.TestingT
Cleanup(func())
}) *AuthRepo {
mock := &AuthRepo{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}