-
Notifications
You must be signed in to change notification settings - Fork 46
/
pulse_manager_mock.go
283 lines (235 loc) · 8.81 KB
/
pulse_manager_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
282
283
package testutils
// Code generated by http://github.com/gojuno/minimock (dev). DO NOT EDIT.
import (
"context"
"sync"
mm_atomic "sync/atomic"
mm_time "time"
"github.com/gojuno/minimock/v3"
mm_insolar "github.com/insolar/insolar/insolar"
)
// PulseManagerMock implements insolar.PulseManager
type PulseManagerMock struct {
t minimock.Tester
funcSet func(ctx context.Context, pulse mm_insolar.Pulse) (err error)
inspectFuncSet func(ctx context.Context, pulse mm_insolar.Pulse)
afterSetCounter uint64
beforeSetCounter uint64
SetMock mPulseManagerMockSet
}
// NewPulseManagerMock returns a mock for insolar.PulseManager
func NewPulseManagerMock(t minimock.Tester) *PulseManagerMock {
m := &PulseManagerMock{t: t}
if controller, ok := t.(minimock.MockController); ok {
controller.RegisterMocker(m)
}
m.SetMock = mPulseManagerMockSet{mock: m}
m.SetMock.callArgs = []*PulseManagerMockSetParams{}
return m
}
type mPulseManagerMockSet struct {
mock *PulseManagerMock
defaultExpectation *PulseManagerMockSetExpectation
expectations []*PulseManagerMockSetExpectation
callArgs []*PulseManagerMockSetParams
mutex sync.RWMutex
}
// PulseManagerMockSetExpectation specifies expectation struct of the PulseManager.Set
type PulseManagerMockSetExpectation struct {
mock *PulseManagerMock
params *PulseManagerMockSetParams
results *PulseManagerMockSetResults
Counter uint64
}
// PulseManagerMockSetParams contains parameters of the PulseManager.Set
type PulseManagerMockSetParams struct {
ctx context.Context
pulse mm_insolar.Pulse
}
// PulseManagerMockSetResults contains results of the PulseManager.Set
type PulseManagerMockSetResults struct {
err error
}
// Expect sets up expected params for PulseManager.Set
func (mmSet *mPulseManagerMockSet) Expect(ctx context.Context, pulse mm_insolar.Pulse) *mPulseManagerMockSet {
if mmSet.mock.funcSet != nil {
mmSet.mock.t.Fatalf("PulseManagerMock.Set mock is already set by Set")
}
if mmSet.defaultExpectation == nil {
mmSet.defaultExpectation = &PulseManagerMockSetExpectation{}
}
mmSet.defaultExpectation.params = &PulseManagerMockSetParams{ctx, pulse}
for _, e := range mmSet.expectations {
if minimock.Equal(e.params, mmSet.defaultExpectation.params) {
mmSet.mock.t.Fatalf("Expectation set by When has same params: %#v", *mmSet.defaultExpectation.params)
}
}
return mmSet
}
// Inspect accepts an inspector function that has same arguments as the PulseManager.Set
func (mmSet *mPulseManagerMockSet) Inspect(f func(ctx context.Context, pulse mm_insolar.Pulse)) *mPulseManagerMockSet {
if mmSet.mock.inspectFuncSet != nil {
mmSet.mock.t.Fatalf("Inspect function is already set for PulseManagerMock.Set")
}
mmSet.mock.inspectFuncSet = f
return mmSet
}
// Return sets up results that will be returned by PulseManager.Set
func (mmSet *mPulseManagerMockSet) Return(err error) *PulseManagerMock {
if mmSet.mock.funcSet != nil {
mmSet.mock.t.Fatalf("PulseManagerMock.Set mock is already set by Set")
}
if mmSet.defaultExpectation == nil {
mmSet.defaultExpectation = &PulseManagerMockSetExpectation{mock: mmSet.mock}
}
mmSet.defaultExpectation.results = &PulseManagerMockSetResults{err}
return mmSet.mock
}
//Set uses given function f to mock the PulseManager.Set method
func (mmSet *mPulseManagerMockSet) Set(f func(ctx context.Context, pulse mm_insolar.Pulse) (err error)) *PulseManagerMock {
if mmSet.defaultExpectation != nil {
mmSet.mock.t.Fatalf("Default expectation is already set for the PulseManager.Set method")
}
if len(mmSet.expectations) > 0 {
mmSet.mock.t.Fatalf("Some expectations are already set for the PulseManager.Set method")
}
mmSet.mock.funcSet = f
return mmSet.mock
}
// When sets expectation for the PulseManager.Set which will trigger the result defined by the following
// Then helper
func (mmSet *mPulseManagerMockSet) When(ctx context.Context, pulse mm_insolar.Pulse) *PulseManagerMockSetExpectation {
if mmSet.mock.funcSet != nil {
mmSet.mock.t.Fatalf("PulseManagerMock.Set mock is already set by Set")
}
expectation := &PulseManagerMockSetExpectation{
mock: mmSet.mock,
params: &PulseManagerMockSetParams{ctx, pulse},
}
mmSet.expectations = append(mmSet.expectations, expectation)
return expectation
}
// Then sets up PulseManager.Set return parameters for the expectation previously defined by the When method
func (e *PulseManagerMockSetExpectation) Then(err error) *PulseManagerMock {
e.results = &PulseManagerMockSetResults{err}
return e.mock
}
// Set implements insolar.PulseManager
func (mmSet *PulseManagerMock) Set(ctx context.Context, pulse mm_insolar.Pulse) (err error) {
mm_atomic.AddUint64(&mmSet.beforeSetCounter, 1)
defer mm_atomic.AddUint64(&mmSet.afterSetCounter, 1)
if mmSet.inspectFuncSet != nil {
mmSet.inspectFuncSet(ctx, pulse)
}
mm_params := &PulseManagerMockSetParams{ctx, pulse}
// Record call args
mmSet.SetMock.mutex.Lock()
mmSet.SetMock.callArgs = append(mmSet.SetMock.callArgs, mm_params)
mmSet.SetMock.mutex.Unlock()
for _, e := range mmSet.SetMock.expectations {
if minimock.Equal(e.params, mm_params) {
mm_atomic.AddUint64(&e.Counter, 1)
return e.results.err
}
}
if mmSet.SetMock.defaultExpectation != nil {
mm_atomic.AddUint64(&mmSet.SetMock.defaultExpectation.Counter, 1)
mm_want := mmSet.SetMock.defaultExpectation.params
mm_got := PulseManagerMockSetParams{ctx, pulse}
if mm_want != nil && !minimock.Equal(*mm_want, mm_got) {
mmSet.t.Errorf("PulseManagerMock.Set got unexpected parameters, want: %#v, got: %#v%s\n", *mm_want, mm_got, minimock.Diff(*mm_want, mm_got))
}
mm_results := mmSet.SetMock.defaultExpectation.results
if mm_results == nil {
mmSet.t.Fatal("No results are set for the PulseManagerMock.Set")
}
return (*mm_results).err
}
if mmSet.funcSet != nil {
return mmSet.funcSet(ctx, pulse)
}
mmSet.t.Fatalf("Unexpected call to PulseManagerMock.Set. %v %v", ctx, pulse)
return
}
// SetAfterCounter returns a count of finished PulseManagerMock.Set invocations
func (mmSet *PulseManagerMock) SetAfterCounter() uint64 {
return mm_atomic.LoadUint64(&mmSet.afterSetCounter)
}
// SetBeforeCounter returns a count of PulseManagerMock.Set invocations
func (mmSet *PulseManagerMock) SetBeforeCounter() uint64 {
return mm_atomic.LoadUint64(&mmSet.beforeSetCounter)
}
// Calls returns a list of arguments used in each call to PulseManagerMock.Set.
// The list is in the same order as the calls were made (i.e. recent calls have a higher index)
func (mmSet *mPulseManagerMockSet) Calls() []*PulseManagerMockSetParams {
mmSet.mutex.RLock()
argCopy := make([]*PulseManagerMockSetParams, len(mmSet.callArgs))
copy(argCopy, mmSet.callArgs)
mmSet.mutex.RUnlock()
return argCopy
}
// MinimockSetDone returns true if the count of the Set invocations corresponds
// the number of defined expectations
func (m *PulseManagerMock) MinimockSetDone() bool {
for _, e := range m.SetMock.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.SetMock.defaultExpectation != nil && mm_atomic.LoadUint64(&m.afterSetCounter) < 1 {
return false
}
// if func was set then invocations count should be greater than zero
if m.funcSet != nil && mm_atomic.LoadUint64(&m.afterSetCounter) < 1 {
return false
}
return true
}
// MinimockSetInspect logs each unmet expectation
func (m *PulseManagerMock) MinimockSetInspect() {
for _, e := range m.SetMock.expectations {
if mm_atomic.LoadUint64(&e.Counter) < 1 {
m.t.Errorf("Expected call to PulseManagerMock.Set with params: %#v", *e.params)
}
}
// if default expectation was set then invocations count should be greater than zero
if m.SetMock.defaultExpectation != nil && mm_atomic.LoadUint64(&m.afterSetCounter) < 1 {
if m.SetMock.defaultExpectation.params == nil {
m.t.Error("Expected call to PulseManagerMock.Set")
} else {
m.t.Errorf("Expected call to PulseManagerMock.Set with params: %#v", *m.SetMock.defaultExpectation.params)
}
}
// if func was set then invocations count should be greater than zero
if m.funcSet != nil && mm_atomic.LoadUint64(&m.afterSetCounter) < 1 {
m.t.Error("Expected call to PulseManagerMock.Set")
}
}
// MinimockFinish checks that all mocked methods have been called the expected number of times
func (m *PulseManagerMock) MinimockFinish() {
if !m.minimockDone() {
m.MinimockSetInspect()
m.t.FailNow()
}
}
// MinimockWait waits for all mocked methods to be called the expected number of times
func (m *PulseManagerMock) 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 *PulseManagerMock) minimockDone() bool {
done := true
return done &&
m.MinimockSetDone()
}