-
Notifications
You must be signed in to change notification settings - Fork 62
/
Generic.go
173 lines (141 loc) · 4.61 KB
/
Generic.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
// Code generated by mockery v2.12.2. DO NOT EDIT.
package mocks
import (
context "context"
testing "testing"
mock "github.com/stretchr/testify/mock"
time "time"
)
// Generic is an autogenerated mock type for the Generic type
type Generic struct {
mock.Mock
}
type Generic_Expecter struct {
mock *mock.Mock
}
func (_m *Generic) EXPECT() *Generic_Expecter {
return &Generic_Expecter{mock: &_m.Mock}
}
// Del provides a mock function with given fields: ctx, keys
func (_m *Generic) 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...)
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
}
// Generic_Del_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Del'
type Generic_Del_Call struct {
*mock.Call
}
// Del is a helper method to define mock.On call
// - ctx context.Context
// - keys ...string
func (_e *Generic_Expecter) Del(ctx interface{}, keys ...interface{}) *Generic_Del_Call {
return &Generic_Del_Call{Call: _e.mock.On("Del",
append([]interface{}{ctx}, keys...)...)}
}
func (_c *Generic_Del_Call) Run(run func(ctx context.Context, keys ...string)) *Generic_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 *Generic_Del_Call) Return(_a0 error) *Generic_Del_Call {
_c.Call.Return(_a0)
return _c
}
// Get provides a mock function with given fields: ctx, key, value
func (_m *Generic) Get(ctx context.Context, key string, value interface{}) (bool, error) {
ret := _m.Called(ctx, key, value)
var r0 bool
if rf, ok := ret.Get(0).(func(context.Context, string, interface{}) bool); ok {
r0 = rf(ctx, key, value)
} else {
r0 = ret.Get(0).(bool)
}
var r1 error
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
}
// Generic_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'
type Generic_Get_Call struct {
*mock.Call
}
// Get is a helper method to define mock.On call
// - ctx context.Context
// - key string
// - value interface{}
func (_e *Generic_Expecter) Get(ctx interface{}, key interface{}, value interface{}) *Generic_Get_Call {
return &Generic_Get_Call{Call: _e.mock.On("Get", ctx, key, value)}
}
func (_c *Generic_Get_Call) Run(run func(ctx context.Context, key string, value interface{})) *Generic_Get_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(string), args[2].(interface{}))
})
return _c
}
func (_c *Generic_Get_Call) Return(_a0 bool, _a1 error) *Generic_Get_Call {
_c.Call.Return(_a0, _a1)
return _c
}
// Set provides a mock function with given fields: ctx, key, value, ttl
func (_m *Generic) Set(ctx context.Context, key string, value interface{}, ttl time.Duration) error {
ret := _m.Called(ctx, key, value, ttl)
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
}
// Generic_Set_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Set'
type Generic_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 *Generic_Expecter) Set(ctx interface{}, key interface{}, value interface{}, ttl interface{}) *Generic_Set_Call {
return &Generic_Set_Call{Call: _e.mock.On("Set", ctx, key, value, ttl)}
}
func (_c *Generic_Set_Call) Run(run func(ctx context.Context, key string, value interface{}, ttl time.Duration)) *Generic_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 *Generic_Set_Call) Return(_a0 error) *Generic_Set_Call {
_c.Call.Return(_a0)
return _c
}
// NewGeneric creates a new instance of Generic. It also registers the testing.TB interface on the mock and a cleanup function to assert the mocks expectations.
func NewGeneric(t testing.TB) *Generic {
mock := &Generic{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}