-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathRedisCache.go
253 lines (207 loc) · 7.01 KB
/
RedisCache.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
// Code generated by mockery v2.43.0. DO NOT EDIT.
package mocks
import (
context "context"
time "time"
mock "github.com/stretchr/testify/mock"
)
// RedisCache is an autogenerated mock type for the RedisCache type
type RedisCache struct {
mock.Mock
}
type RedisCache_Expecter struct {
mock *mock.Mock
}
func (_m *RedisCache) EXPECT() *RedisCache_Expecter {
return &RedisCache_Expecter{mock: &_m.Mock}
}
// Del provides a mock function with given fields: ctx, keys
func (_m *RedisCache) Del(ctx context.Context, keys ...string) error {
_va := make([]interface{}, len(keys))
for _i := range keys {
_va[_i] = keys[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for Del")
}
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, ...string) error); ok {
r0 = rf(ctx, keys...)
} else {
r0 = ret.Error(0)
}
return r0
}
// RedisCache_Del_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Del'
type RedisCache_Del_Call struct {
*mock.Call
}
// Del is a helper method to define mock.On call
// - ctx context.Context
// - keys ...string
func (_e *RedisCache_Expecter) Del(ctx interface{}, keys ...interface{}) *RedisCache_Del_Call {
return &RedisCache_Del_Call{Call: _e.mock.On("Del",
append([]interface{}{ctx}, keys...)...)}
}
func (_c *RedisCache_Del_Call) Run(run func(ctx context.Context, keys ...string)) *RedisCache_Del_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]string, len(args)-1)
for i, a := range args[1:] {
if a != nil {
variadicArgs[i] = a.(string)
}
}
run(args[0].(context.Context), variadicArgs...)
})
return _c
}
func (_c *RedisCache_Del_Call) Return(_a0 error) *RedisCache_Del_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *RedisCache_Del_Call) RunAndReturn(run func(context.Context, ...string) error) *RedisCache_Del_Call {
_c.Call.Return(run)
return _c
}
// Get provides a mock function with given fields: ctx, key, value
func (_m *RedisCache) Get(ctx context.Context, key string, value interface{}) (bool, error) {
ret := _m.Called(ctx, key, value)
if len(ret) == 0 {
panic("no return value specified for Get")
}
var r0 bool
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, string, interface{}) (bool, error)); ok {
return rf(ctx, key, value)
}
if rf, ok := ret.Get(0).(func(context.Context, string, interface{}) bool); ok {
r0 = rf(ctx, key, value)
} else {
r0 = ret.Get(0).(bool)
}
if rf, ok := ret.Get(1).(func(context.Context, string, interface{}) error); ok {
r1 = rf(ctx, key, value)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// RedisCache_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'
type RedisCache_Get_Call struct {
*mock.Call
}
// Get is a helper method to define mock.On call
// - ctx context.Context
// - key string
// - value interface{}
func (_e *RedisCache_Expecter) Get(ctx interface{}, key interface{}, value interface{}) *RedisCache_Get_Call {
return &RedisCache_Get_Call{Call: _e.mock.On("Get", ctx, key, value)}
}
func (_c *RedisCache_Get_Call) Run(run func(ctx context.Context, key string, value interface{})) *RedisCache_Get_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(string), args[2].(interface{}))
})
return _c
}
func (_c *RedisCache_Get_Call) Return(_a0 bool, _a1 error) *RedisCache_Get_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *RedisCache_Get_Call) RunAndReturn(run func(context.Context, string, interface{}) (bool, error)) *RedisCache_Get_Call {
_c.Call.Return(run)
return _c
}
// MGet provides a mock function with given fields: ctx, key, result
func (_m *RedisCache) MGet(ctx context.Context, key []string, result interface{}) error {
ret := _m.Called(ctx, key, result)
if len(ret) == 0 {
panic("no return value specified for MGet")
}
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, []string, interface{}) error); ok {
r0 = rf(ctx, key, result)
} else {
r0 = ret.Error(0)
}
return r0
}
// RedisCache_MGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MGet'
type RedisCache_MGet_Call struct {
*mock.Call
}
// MGet is a helper method to define mock.On call
// - ctx context.Context
// - key []string
// - result interface{}
func (_e *RedisCache_Expecter) MGet(ctx interface{}, key interface{}, result interface{}) *RedisCache_MGet_Call {
return &RedisCache_MGet_Call{Call: _e.mock.On("MGet", ctx, key, result)}
}
func (_c *RedisCache_MGet_Call) Run(run func(ctx context.Context, key []string, result interface{})) *RedisCache_MGet_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].([]string), args[2].(interface{}))
})
return _c
}
func (_c *RedisCache_MGet_Call) Return(_a0 error) *RedisCache_MGet_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *RedisCache_MGet_Call) RunAndReturn(run func(context.Context, []string, interface{}) error) *RedisCache_MGet_Call {
_c.Call.Return(run)
return _c
}
// Set provides a mock function with given fields: ctx, key, value, ttl
func (_m *RedisCache) Set(ctx context.Context, key string, value interface{}, ttl time.Duration) error {
ret := _m.Called(ctx, key, value, ttl)
if len(ret) == 0 {
panic("no return value specified for Set")
}
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, interface{}, time.Duration) error); ok {
r0 = rf(ctx, key, value, ttl)
} else {
r0 = ret.Error(0)
}
return r0
}
// RedisCache_Set_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Set'
type RedisCache_Set_Call struct {
*mock.Call
}
// Set is a helper method to define mock.On call
// - ctx context.Context
// - key string
// - value interface{}
// - ttl time.Duration
func (_e *RedisCache_Expecter) Set(ctx interface{}, key interface{}, value interface{}, ttl interface{}) *RedisCache_Set_Call {
return &RedisCache_Set_Call{Call: _e.mock.On("Set", ctx, key, value, ttl)}
}
func (_c *RedisCache_Set_Call) Run(run func(ctx context.Context, key string, value interface{}, ttl time.Duration)) *RedisCache_Set_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(string), args[2].(interface{}), args[3].(time.Duration))
})
return _c
}
func (_c *RedisCache_Set_Call) Return(_a0 error) *RedisCache_Set_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *RedisCache_Set_Call) RunAndReturn(run func(context.Context, string, interface{}, time.Duration) error) *RedisCache_Set_Call {
_c.Call.Return(run)
return _c
}
// NewRedisCache creates a new instance of RedisCache. 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 NewRedisCache(t interface {
mock.TestingT
Cleanup(func())
}) *RedisCache {
mock := &RedisCache{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}