-
Notifications
You must be signed in to change notification settings - Fork 0
/
discovery_node_mock.go
561 lines (433 loc) · 16 KB
/
discovery_node_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
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
package testutils
/*
DO NOT EDIT!
This code was generated automatically using github.com/gojuno/minimock v1.9
The original interface "DiscoveryNode" can be found in github.com/insolar/insolar/core
*/
import (
crypto "crypto"
"sync/atomic"
"time"
"github.com/gojuno/minimock"
core "github.com/insolar/insolar/core"
)
//DiscoveryNodeMock implements github.com/insolar/insolar/core.DiscoveryNode
type DiscoveryNodeMock struct {
t minimock.Tester
GetHostFunc func() (r string)
GetHostCounter uint64
GetHostPreCounter uint64
GetHostMock mDiscoveryNodeMockGetHost
GetNodeRefFunc func() (r *core.RecordRef)
GetNodeRefCounter uint64
GetNodeRefPreCounter uint64
GetNodeRefMock mDiscoveryNodeMockGetNodeRef
GetPublicKeyFunc func() (r crypto.PublicKey)
GetPublicKeyCounter uint64
GetPublicKeyPreCounter uint64
GetPublicKeyMock mDiscoveryNodeMockGetPublicKey
}
//NewDiscoveryNodeMock returns a mock for github.com/insolar/insolar/core.DiscoveryNode
func NewDiscoveryNodeMock(t minimock.Tester) *DiscoveryNodeMock {
m := &DiscoveryNodeMock{t: t}
if controller, ok := t.(minimock.MockController); ok {
controller.RegisterMocker(m)
}
m.GetHostMock = mDiscoveryNodeMockGetHost{mock: m}
m.GetNodeRefMock = mDiscoveryNodeMockGetNodeRef{mock: m}
m.GetPublicKeyMock = mDiscoveryNodeMockGetPublicKey{mock: m}
return m
}
type mDiscoveryNodeMockGetHost struct {
mock *DiscoveryNodeMock
mainExpectation *DiscoveryNodeMockGetHostExpectation
expectationSeries []*DiscoveryNodeMockGetHostExpectation
}
type DiscoveryNodeMockGetHostExpectation struct {
result *DiscoveryNodeMockGetHostResult
}
type DiscoveryNodeMockGetHostResult struct {
r string
}
//Expect specifies that invocation of DiscoveryNode.GetHost is expected from 1 to Infinity times
func (m *mDiscoveryNodeMockGetHost) Expect() *mDiscoveryNodeMockGetHost {
m.mock.GetHostFunc = nil
m.expectationSeries = nil
if m.mainExpectation == nil {
m.mainExpectation = &DiscoveryNodeMockGetHostExpectation{}
}
return m
}
//Return specifies results of invocation of DiscoveryNode.GetHost
func (m *mDiscoveryNodeMockGetHost) Return(r string) *DiscoveryNodeMock {
m.mock.GetHostFunc = nil
m.expectationSeries = nil
if m.mainExpectation == nil {
m.mainExpectation = &DiscoveryNodeMockGetHostExpectation{}
}
m.mainExpectation.result = &DiscoveryNodeMockGetHostResult{r}
return m.mock
}
//ExpectOnce specifies that invocation of DiscoveryNode.GetHost is expected once
func (m *mDiscoveryNodeMockGetHost) ExpectOnce() *DiscoveryNodeMockGetHostExpectation {
m.mock.GetHostFunc = nil
m.mainExpectation = nil
expectation := &DiscoveryNodeMockGetHostExpectation{}
m.expectationSeries = append(m.expectationSeries, expectation)
return expectation
}
func (e *DiscoveryNodeMockGetHostExpectation) Return(r string) {
e.result = &DiscoveryNodeMockGetHostResult{r}
}
//Set uses given function f as a mock of DiscoveryNode.GetHost method
func (m *mDiscoveryNodeMockGetHost) Set(f func() (r string)) *DiscoveryNodeMock {
m.mainExpectation = nil
m.expectationSeries = nil
m.mock.GetHostFunc = f
return m.mock
}
//GetHost implements github.com/insolar/insolar/core.DiscoveryNode interface
func (m *DiscoveryNodeMock) GetHost() (r string) {
counter := atomic.AddUint64(&m.GetHostPreCounter, 1)
defer atomic.AddUint64(&m.GetHostCounter, 1)
if len(m.GetHostMock.expectationSeries) > 0 {
if counter > uint64(len(m.GetHostMock.expectationSeries)) {
m.t.Fatalf("Unexpected call to DiscoveryNodeMock.GetHost.")
return
}
result := m.GetHostMock.expectationSeries[counter-1].result
if result == nil {
m.t.Fatal("No results are set for the DiscoveryNodeMock.GetHost")
return
}
r = result.r
return
}
if m.GetHostMock.mainExpectation != nil {
result := m.GetHostMock.mainExpectation.result
if result == nil {
m.t.Fatal("No results are set for the DiscoveryNodeMock.GetHost")
}
r = result.r
return
}
if m.GetHostFunc == nil {
m.t.Fatalf("Unexpected call to DiscoveryNodeMock.GetHost.")
return
}
return m.GetHostFunc()
}
//GetHostMinimockCounter returns a count of DiscoveryNodeMock.GetHostFunc invocations
func (m *DiscoveryNodeMock) GetHostMinimockCounter() uint64 {
return atomic.LoadUint64(&m.GetHostCounter)
}
//GetHostMinimockPreCounter returns the value of DiscoveryNodeMock.GetHost invocations
func (m *DiscoveryNodeMock) GetHostMinimockPreCounter() uint64 {
return atomic.LoadUint64(&m.GetHostPreCounter)
}
//GetHostFinished returns true if mock invocations count is ok
func (m *DiscoveryNodeMock) GetHostFinished() bool {
// if expectation series were set then invocations count should be equal to expectations count
if len(m.GetHostMock.expectationSeries) > 0 {
return atomic.LoadUint64(&m.GetHostCounter) == uint64(len(m.GetHostMock.expectationSeries))
}
// if main expectation was set then invocations count should be greater than zero
if m.GetHostMock.mainExpectation != nil {
return atomic.LoadUint64(&m.GetHostCounter) > 0
}
// if func was set then invocations count should be greater than zero
if m.GetHostFunc != nil {
return atomic.LoadUint64(&m.GetHostCounter) > 0
}
return true
}
type mDiscoveryNodeMockGetNodeRef struct {
mock *DiscoveryNodeMock
mainExpectation *DiscoveryNodeMockGetNodeRefExpectation
expectationSeries []*DiscoveryNodeMockGetNodeRefExpectation
}
type DiscoveryNodeMockGetNodeRefExpectation struct {
result *DiscoveryNodeMockGetNodeRefResult
}
type DiscoveryNodeMockGetNodeRefResult struct {
r *core.RecordRef
}
//Expect specifies that invocation of DiscoveryNode.GetNodeRef is expected from 1 to Infinity times
func (m *mDiscoveryNodeMockGetNodeRef) Expect() *mDiscoveryNodeMockGetNodeRef {
m.mock.GetNodeRefFunc = nil
m.expectationSeries = nil
if m.mainExpectation == nil {
m.mainExpectation = &DiscoveryNodeMockGetNodeRefExpectation{}
}
return m
}
//Return specifies results of invocation of DiscoveryNode.GetNodeRef
func (m *mDiscoveryNodeMockGetNodeRef) Return(r *core.RecordRef) *DiscoveryNodeMock {
m.mock.GetNodeRefFunc = nil
m.expectationSeries = nil
if m.mainExpectation == nil {
m.mainExpectation = &DiscoveryNodeMockGetNodeRefExpectation{}
}
m.mainExpectation.result = &DiscoveryNodeMockGetNodeRefResult{r}
return m.mock
}
//ExpectOnce specifies that invocation of DiscoveryNode.GetNodeRef is expected once
func (m *mDiscoveryNodeMockGetNodeRef) ExpectOnce() *DiscoveryNodeMockGetNodeRefExpectation {
m.mock.GetNodeRefFunc = nil
m.mainExpectation = nil
expectation := &DiscoveryNodeMockGetNodeRefExpectation{}
m.expectationSeries = append(m.expectationSeries, expectation)
return expectation
}
func (e *DiscoveryNodeMockGetNodeRefExpectation) Return(r *core.RecordRef) {
e.result = &DiscoveryNodeMockGetNodeRefResult{r}
}
//Set uses given function f as a mock of DiscoveryNode.GetNodeRef method
func (m *mDiscoveryNodeMockGetNodeRef) Set(f func() (r *core.RecordRef)) *DiscoveryNodeMock {
m.mainExpectation = nil
m.expectationSeries = nil
m.mock.GetNodeRefFunc = f
return m.mock
}
//GetNodeRef implements github.com/insolar/insolar/core.DiscoveryNode interface
func (m *DiscoveryNodeMock) GetNodeRef() (r *core.RecordRef) {
counter := atomic.AddUint64(&m.GetNodeRefPreCounter, 1)
defer atomic.AddUint64(&m.GetNodeRefCounter, 1)
if len(m.GetNodeRefMock.expectationSeries) > 0 {
if counter > uint64(len(m.GetNodeRefMock.expectationSeries)) {
m.t.Fatalf("Unexpected call to DiscoveryNodeMock.GetNodeRef.")
return
}
result := m.GetNodeRefMock.expectationSeries[counter-1].result
if result == nil {
m.t.Fatal("No results are set for the DiscoveryNodeMock.GetNodeRef")
return
}
r = result.r
return
}
if m.GetNodeRefMock.mainExpectation != nil {
result := m.GetNodeRefMock.mainExpectation.result
if result == nil {
m.t.Fatal("No results are set for the DiscoveryNodeMock.GetNodeRef")
}
r = result.r
return
}
if m.GetNodeRefFunc == nil {
m.t.Fatalf("Unexpected call to DiscoveryNodeMock.GetNodeRef.")
return
}
return m.GetNodeRefFunc()
}
//GetNodeRefMinimockCounter returns a count of DiscoveryNodeMock.GetNodeRefFunc invocations
func (m *DiscoveryNodeMock) GetNodeRefMinimockCounter() uint64 {
return atomic.LoadUint64(&m.GetNodeRefCounter)
}
//GetNodeRefMinimockPreCounter returns the value of DiscoveryNodeMock.GetNodeRef invocations
func (m *DiscoveryNodeMock) GetNodeRefMinimockPreCounter() uint64 {
return atomic.LoadUint64(&m.GetNodeRefPreCounter)
}
//GetNodeRefFinished returns true if mock invocations count is ok
func (m *DiscoveryNodeMock) GetNodeRefFinished() bool {
// if expectation series were set then invocations count should be equal to expectations count
if len(m.GetNodeRefMock.expectationSeries) > 0 {
return atomic.LoadUint64(&m.GetNodeRefCounter) == uint64(len(m.GetNodeRefMock.expectationSeries))
}
// if main expectation was set then invocations count should be greater than zero
if m.GetNodeRefMock.mainExpectation != nil {
return atomic.LoadUint64(&m.GetNodeRefCounter) > 0
}
// if func was set then invocations count should be greater than zero
if m.GetNodeRefFunc != nil {
return atomic.LoadUint64(&m.GetNodeRefCounter) > 0
}
return true
}
type mDiscoveryNodeMockGetPublicKey struct {
mock *DiscoveryNodeMock
mainExpectation *DiscoveryNodeMockGetPublicKeyExpectation
expectationSeries []*DiscoveryNodeMockGetPublicKeyExpectation
}
type DiscoveryNodeMockGetPublicKeyExpectation struct {
result *DiscoveryNodeMockGetPublicKeyResult
}
type DiscoveryNodeMockGetPublicKeyResult struct {
r crypto.PublicKey
}
//Expect specifies that invocation of DiscoveryNode.GetPublicKey is expected from 1 to Infinity times
func (m *mDiscoveryNodeMockGetPublicKey) Expect() *mDiscoveryNodeMockGetPublicKey {
m.mock.GetPublicKeyFunc = nil
m.expectationSeries = nil
if m.mainExpectation == nil {
m.mainExpectation = &DiscoveryNodeMockGetPublicKeyExpectation{}
}
return m
}
//Return specifies results of invocation of DiscoveryNode.GetPublicKey
func (m *mDiscoveryNodeMockGetPublicKey) Return(r crypto.PublicKey) *DiscoveryNodeMock {
m.mock.GetPublicKeyFunc = nil
m.expectationSeries = nil
if m.mainExpectation == nil {
m.mainExpectation = &DiscoveryNodeMockGetPublicKeyExpectation{}
}
m.mainExpectation.result = &DiscoveryNodeMockGetPublicKeyResult{r}
return m.mock
}
//ExpectOnce specifies that invocation of DiscoveryNode.GetPublicKey is expected once
func (m *mDiscoveryNodeMockGetPublicKey) ExpectOnce() *DiscoveryNodeMockGetPublicKeyExpectation {
m.mock.GetPublicKeyFunc = nil
m.mainExpectation = nil
expectation := &DiscoveryNodeMockGetPublicKeyExpectation{}
m.expectationSeries = append(m.expectationSeries, expectation)
return expectation
}
func (e *DiscoveryNodeMockGetPublicKeyExpectation) Return(r crypto.PublicKey) {
e.result = &DiscoveryNodeMockGetPublicKeyResult{r}
}
//Set uses given function f as a mock of DiscoveryNode.GetPublicKey method
func (m *mDiscoveryNodeMockGetPublicKey) Set(f func() (r crypto.PublicKey)) *DiscoveryNodeMock {
m.mainExpectation = nil
m.expectationSeries = nil
m.mock.GetPublicKeyFunc = f
return m.mock
}
//GetPublicKey implements github.com/insolar/insolar/core.DiscoveryNode interface
func (m *DiscoveryNodeMock) GetPublicKey() (r crypto.PublicKey) {
counter := atomic.AddUint64(&m.GetPublicKeyPreCounter, 1)
defer atomic.AddUint64(&m.GetPublicKeyCounter, 1)
if len(m.GetPublicKeyMock.expectationSeries) > 0 {
if counter > uint64(len(m.GetPublicKeyMock.expectationSeries)) {
m.t.Fatalf("Unexpected call to DiscoveryNodeMock.GetPublicKey.")
return
}
result := m.GetPublicKeyMock.expectationSeries[counter-1].result
if result == nil {
m.t.Fatal("No results are set for the DiscoveryNodeMock.GetPublicKey")
return
}
r = result.r
return
}
if m.GetPublicKeyMock.mainExpectation != nil {
result := m.GetPublicKeyMock.mainExpectation.result
if result == nil {
m.t.Fatal("No results are set for the DiscoveryNodeMock.GetPublicKey")
}
r = result.r
return
}
if m.GetPublicKeyFunc == nil {
m.t.Fatalf("Unexpected call to DiscoveryNodeMock.GetPublicKey.")
return
}
return m.GetPublicKeyFunc()
}
//GetPublicKeyMinimockCounter returns a count of DiscoveryNodeMock.GetPublicKeyFunc invocations
func (m *DiscoveryNodeMock) GetPublicKeyMinimockCounter() uint64 {
return atomic.LoadUint64(&m.GetPublicKeyCounter)
}
//GetPublicKeyMinimockPreCounter returns the value of DiscoveryNodeMock.GetPublicKey invocations
func (m *DiscoveryNodeMock) GetPublicKeyMinimockPreCounter() uint64 {
return atomic.LoadUint64(&m.GetPublicKeyPreCounter)
}
//GetPublicKeyFinished returns true if mock invocations count is ok
func (m *DiscoveryNodeMock) GetPublicKeyFinished() bool {
// if expectation series were set then invocations count should be equal to expectations count
if len(m.GetPublicKeyMock.expectationSeries) > 0 {
return atomic.LoadUint64(&m.GetPublicKeyCounter) == uint64(len(m.GetPublicKeyMock.expectationSeries))
}
// if main expectation was set then invocations count should be greater than zero
if m.GetPublicKeyMock.mainExpectation != nil {
return atomic.LoadUint64(&m.GetPublicKeyCounter) > 0
}
// if func was set then invocations count should be greater than zero
if m.GetPublicKeyFunc != nil {
return atomic.LoadUint64(&m.GetPublicKeyCounter) > 0
}
return true
}
//ValidateCallCounters checks that all mocked methods of the interface have been called at least once
//Deprecated: please use MinimockFinish method or use Finish method of minimock.Controller
func (m *DiscoveryNodeMock) ValidateCallCounters() {
if !m.GetHostFinished() {
m.t.Fatal("Expected call to DiscoveryNodeMock.GetHost")
}
if !m.GetNodeRefFinished() {
m.t.Fatal("Expected call to DiscoveryNodeMock.GetNodeRef")
}
if !m.GetPublicKeyFinished() {
m.t.Fatal("Expected call to DiscoveryNodeMock.GetPublicKey")
}
}
//CheckMocksCalled checks that all mocked methods of the interface have been called at least once
//Deprecated: please use MinimockFinish method or use Finish method of minimock.Controller
func (m *DiscoveryNodeMock) CheckMocksCalled() {
m.Finish()
}
//Finish checks that all mocked methods of the interface have been called at least once
//Deprecated: please use MinimockFinish or use Finish method of minimock.Controller
func (m *DiscoveryNodeMock) Finish() {
m.MinimockFinish()
}
//MinimockFinish checks that all mocked methods of the interface have been called at least once
func (m *DiscoveryNodeMock) MinimockFinish() {
if !m.GetHostFinished() {
m.t.Fatal("Expected call to DiscoveryNodeMock.GetHost")
}
if !m.GetNodeRefFinished() {
m.t.Fatal("Expected call to DiscoveryNodeMock.GetNodeRef")
}
if !m.GetPublicKeyFinished() {
m.t.Fatal("Expected call to DiscoveryNodeMock.GetPublicKey")
}
}
//Wait waits for all mocked methods to be called at least once
//Deprecated: please use MinimockWait or use Wait method of minimock.Controller
func (m *DiscoveryNodeMock) Wait(timeout time.Duration) {
m.MinimockWait(timeout)
}
//MinimockWait waits for all mocked methods to be called at least once
//this method is called by minimock.Controller
func (m *DiscoveryNodeMock) MinimockWait(timeout time.Duration) {
timeoutCh := time.After(timeout)
for {
ok := true
ok = ok && m.GetHostFinished()
ok = ok && m.GetNodeRefFinished()
ok = ok && m.GetPublicKeyFinished()
if ok {
return
}
select {
case <-timeoutCh:
if !m.GetHostFinished() {
m.t.Error("Expected call to DiscoveryNodeMock.GetHost")
}
if !m.GetNodeRefFinished() {
m.t.Error("Expected call to DiscoveryNodeMock.GetNodeRef")
}
if !m.GetPublicKeyFinished() {
m.t.Error("Expected call to DiscoveryNodeMock.GetPublicKey")
}
m.t.Fatalf("Some mocks were not called on time: %s", timeout)
return
default:
time.Sleep(time.Millisecond)
}
}
}
//AllMocksCalled returns true if all mocked methods were called before the execution of AllMocksCalled,
//it can be used with assert/require, i.e. assert.True(mock.AllMocksCalled())
func (m *DiscoveryNodeMock) AllMocksCalled() bool {
if !m.GetHostFinished() {
return false
}
if !m.GetNodeRefFinished() {
return false
}
if !m.GetPublicKeyFinished() {
return false
}
return true
}