-
Notifications
You must be signed in to change notification settings - Fork 0
/
decrypter_mock.go
281 lines (233 loc) · 9.08 KB
/
decrypter_mock.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
package crypt
// Code generated by http://github.com/gojuno/minimock (dev). DO NOT EDIT.
import (
"sync"
mm_atomic "sync/atomic"
mm_time "time"
"github.com/gojuno/minimock/v3"
)
// DecrypterMock implements Decrypter
type DecrypterMock struct {
t minimock.Tester
funcDecrypt func(encrypted []byte) (ba1 []byte, err error)
inspectFuncDecrypt func(encrypted []byte)
afterDecryptCounter uint64
beforeDecryptCounter uint64
DecryptMock mDecrypterMockDecrypt
}
// NewDecrypterMock returns a mock for Decrypter
func NewDecrypterMock(t minimock.Tester) *DecrypterMock {
m := &DecrypterMock{t: t}
if controller, ok := t.(minimock.MockController); ok {
controller.RegisterMocker(m)
}
m.DecryptMock = mDecrypterMockDecrypt{mock: m}
m.DecryptMock.callArgs = []*DecrypterMockDecryptParams{}
return m
}
type mDecrypterMockDecrypt struct {
mock *DecrypterMock
defaultExpectation *DecrypterMockDecryptExpectation
expectations []*DecrypterMockDecryptExpectation
callArgs []*DecrypterMockDecryptParams
mutex sync.RWMutex
}
// DecrypterMockDecryptExpectation specifies expectation struct of the Decrypter.Decrypt
type DecrypterMockDecryptExpectation struct {
mock *DecrypterMock
params *DecrypterMockDecryptParams
results *DecrypterMockDecryptResults
Counter uint64
}
// DecrypterMockDecryptParams contains parameters of the Decrypter.Decrypt
type DecrypterMockDecryptParams struct {
encrypted []byte
}
// DecrypterMockDecryptResults contains results of the Decrypter.Decrypt
type DecrypterMockDecryptResults struct {
ba1 []byte
err error
}
// Expect sets up expected params for Decrypter.Decrypt
func (mmDecrypt *mDecrypterMockDecrypt) Expect(encrypted []byte) *mDecrypterMockDecrypt {
if mmDecrypt.mock.funcDecrypt != nil {
mmDecrypt.mock.t.Fatalf("DecrypterMock.Decrypt mock is already set by Set")
}
if mmDecrypt.defaultExpectation == nil {
mmDecrypt.defaultExpectation = &DecrypterMockDecryptExpectation{}
}
mmDecrypt.defaultExpectation.params = &DecrypterMockDecryptParams{encrypted}
for _, e := range mmDecrypt.expectations {
if minimock.Equal(e.params, mmDecrypt.defaultExpectation.params) {
mmDecrypt.mock.t.Fatalf("Expectation set by When has same params: %#v", *mmDecrypt.defaultExpectation.params)
}
}
return mmDecrypt
}
// Inspect accepts an inspector function that has same arguments as the Decrypter.Decrypt
func (mmDecrypt *mDecrypterMockDecrypt) Inspect(f func(encrypted []byte)) *mDecrypterMockDecrypt {
if mmDecrypt.mock.inspectFuncDecrypt != nil {
mmDecrypt.mock.t.Fatalf("Inspect function is already set for DecrypterMock.Decrypt")
}
mmDecrypt.mock.inspectFuncDecrypt = f
return mmDecrypt
}
// Return sets up results that will be returned by Decrypter.Decrypt
func (mmDecrypt *mDecrypterMockDecrypt) Return(ba1 []byte, err error) *DecrypterMock {
if mmDecrypt.mock.funcDecrypt != nil {
mmDecrypt.mock.t.Fatalf("DecrypterMock.Decrypt mock is already set by Set")
}
if mmDecrypt.defaultExpectation == nil {
mmDecrypt.defaultExpectation = &DecrypterMockDecryptExpectation{mock: mmDecrypt.mock}
}
mmDecrypt.defaultExpectation.results = &DecrypterMockDecryptResults{ba1, err}
return mmDecrypt.mock
}
//Set uses given function f to mock the Decrypter.Decrypt method
func (mmDecrypt *mDecrypterMockDecrypt) Set(f func(encrypted []byte) (ba1 []byte, err error)) *DecrypterMock {
if mmDecrypt.defaultExpectation != nil {
mmDecrypt.mock.t.Fatalf("Default expectation is already set for the Decrypter.Decrypt method")
}
if len(mmDecrypt.expectations) > 0 {
mmDecrypt.mock.t.Fatalf("Some expectations are already set for the Decrypter.Decrypt method")
}
mmDecrypt.mock.funcDecrypt = f
return mmDecrypt.mock
}
// When sets expectation for the Decrypter.Decrypt which will trigger the result defined by the following
// Then helper
func (mmDecrypt *mDecrypterMockDecrypt) When(encrypted []byte) *DecrypterMockDecryptExpectation {
if mmDecrypt.mock.funcDecrypt != nil {
mmDecrypt.mock.t.Fatalf("DecrypterMock.Decrypt mock is already set by Set")
}
expectation := &DecrypterMockDecryptExpectation{
mock: mmDecrypt.mock,
params: &DecrypterMockDecryptParams{encrypted},
}
mmDecrypt.expectations = append(mmDecrypt.expectations, expectation)
return expectation
}
// Then sets up Decrypter.Decrypt return parameters for the expectation previously defined by the When method
func (e *DecrypterMockDecryptExpectation) Then(ba1 []byte, err error) *DecrypterMock {
e.results = &DecrypterMockDecryptResults{ba1, err}
return e.mock
}
// Decrypt implements Decrypter
func (mmDecrypt *DecrypterMock) Decrypt(encrypted []byte) (ba1 []byte, err error) {
mm_atomic.AddUint64(&mmDecrypt.beforeDecryptCounter, 1)
defer mm_atomic.AddUint64(&mmDecrypt.afterDecryptCounter, 1)
if mmDecrypt.inspectFuncDecrypt != nil {
mmDecrypt.inspectFuncDecrypt(encrypted)
}
mm_params := &DecrypterMockDecryptParams{encrypted}
// Record call args
mmDecrypt.DecryptMock.mutex.Lock()
mmDecrypt.DecryptMock.callArgs = append(mmDecrypt.DecryptMock.callArgs, mm_params)
mmDecrypt.DecryptMock.mutex.Unlock()
for _, e := range mmDecrypt.DecryptMock.expectations {
if minimock.Equal(e.params, mm_params) {
mm_atomic.AddUint64(&e.Counter, 1)
return e.results.ba1, e.results.err
}
}
if mmDecrypt.DecryptMock.defaultExpectation != nil {
mm_atomic.AddUint64(&mmDecrypt.DecryptMock.defaultExpectation.Counter, 1)
mm_want := mmDecrypt.DecryptMock.defaultExpectation.params
mm_got := DecrypterMockDecryptParams{encrypted}
if mm_want != nil && !minimock.Equal(*mm_want, mm_got) {
mmDecrypt.t.Errorf("DecrypterMock.Decrypt got unexpected parameters, want: %#v, got: %#v%s\n", *mm_want, mm_got, minimock.Diff(*mm_want, mm_got))
}
mm_results := mmDecrypt.DecryptMock.defaultExpectation.results
if mm_results == nil {
mmDecrypt.t.Fatal("No results are set for the DecrypterMock.Decrypt")
}
return (*mm_results).ba1, (*mm_results).err
}
if mmDecrypt.funcDecrypt != nil {
return mmDecrypt.funcDecrypt(encrypted)
}
mmDecrypt.t.Fatalf("Unexpected call to DecrypterMock.Decrypt. %v", encrypted)
return
}
// DecryptAfterCounter returns a count of finished DecrypterMock.Decrypt invocations
func (mmDecrypt *DecrypterMock) DecryptAfterCounter() uint64 {
return mm_atomic.LoadUint64(&mmDecrypt.afterDecryptCounter)
}
// DecryptBeforeCounter returns a count of DecrypterMock.Decrypt invocations
func (mmDecrypt *DecrypterMock) DecryptBeforeCounter() uint64 {
return mm_atomic.LoadUint64(&mmDecrypt.beforeDecryptCounter)
}
// Calls returns a list of arguments used in each call to DecrypterMock.Decrypt.
// The list is in the same order as the calls were made (i.e. recent calls have a higher index)
func (mmDecrypt *mDecrypterMockDecrypt) Calls() []*DecrypterMockDecryptParams {
mmDecrypt.mutex.RLock()
argCopy := make([]*DecrypterMockDecryptParams, len(mmDecrypt.callArgs))
copy(argCopy, mmDecrypt.callArgs)
mmDecrypt.mutex.RUnlock()
return argCopy
}
// MinimockDecryptDone returns true if the count of the Decrypt invocations corresponds
// the number of defined expectations
func (m *DecrypterMock) MinimockDecryptDone() bool {
for _, e := range m.DecryptMock.expectations {
if mm_atomic.LoadUint64(&e.Counter) < 1 {
return false
}
}
// if default expectation was set then invocations count should be greater than zero
if m.DecryptMock.defaultExpectation != nil && mm_atomic.LoadUint64(&m.afterDecryptCounter) < 1 {
return false
}
// if func was set then invocations count should be greater than zero
if m.funcDecrypt != nil && mm_atomic.LoadUint64(&m.afterDecryptCounter) < 1 {
return false
}
return true
}
// MinimockDecryptInspect logs each unmet expectation
func (m *DecrypterMock) MinimockDecryptInspect() {
for _, e := range m.DecryptMock.expectations {
if mm_atomic.LoadUint64(&e.Counter) < 1 {
m.t.Errorf("Expected call to DecrypterMock.Decrypt with params: %#v", *e.params)
}
}
// if default expectation was set then invocations count should be greater than zero
if m.DecryptMock.defaultExpectation != nil && mm_atomic.LoadUint64(&m.afterDecryptCounter) < 1 {
if m.DecryptMock.defaultExpectation.params == nil {
m.t.Error("Expected call to DecrypterMock.Decrypt")
} else {
m.t.Errorf("Expected call to DecrypterMock.Decrypt with params: %#v", *m.DecryptMock.defaultExpectation.params)
}
}
// if func was set then invocations count should be greater than zero
if m.funcDecrypt != nil && mm_atomic.LoadUint64(&m.afterDecryptCounter) < 1 {
m.t.Error("Expected call to DecrypterMock.Decrypt")
}
}
// MinimockFinish checks that all mocked methods have been called the expected number of times
func (m *DecrypterMock) MinimockFinish() {
if !m.minimockDone() {
m.MinimockDecryptInspect()
m.t.FailNow()
}
}
// MinimockWait waits for all mocked methods to be called the expected number of times
func (m *DecrypterMock) MinimockWait(timeout mm_time.Duration) {
timeoutCh := mm_time.After(timeout)
for {
if m.minimockDone() {
return
}
select {
case <-timeoutCh:
m.MinimockFinish()
return
case <-mm_time.After(10 * mm_time.Millisecond):
}
}
}
func (m *DecrypterMock) minimockDone() bool {
done := true
return done &&
m.MinimockDecryptDone()
}