-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_rpc.go
188 lines (170 loc) · 5.29 KB
/
mock_rpc.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
// Code generated by counterfeiter. DO NOT EDIT.
package mocks
import (
"sync"
"github.com/hyperledger/fabric-protos-go/orderer"
"github.com/hyperledger/fabric/orderer/consensus/etcdraft"
)
type FakeRPC struct {
SendConsensusStub func(uint64, *orderer.ConsensusRequest) error
sendConsensusMutex sync.RWMutex
sendConsensusArgsForCall []struct {
arg1 uint64
arg2 *orderer.ConsensusRequest
}
sendConsensusReturns struct {
result1 error
}
sendConsensusReturnsOnCall map[int]struct {
result1 error
}
SendSubmitStub func(uint64, *orderer.SubmitRequest) error
sendSubmitMutex sync.RWMutex
sendSubmitArgsForCall []struct {
arg1 uint64
arg2 *orderer.SubmitRequest
}
sendSubmitReturns struct {
result1 error
}
sendSubmitReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeRPC) SendConsensus(arg1 uint64, arg2 *orderer.ConsensusRequest) error {
fake.sendConsensusMutex.Lock()
ret, specificReturn := fake.sendConsensusReturnsOnCall[len(fake.sendConsensusArgsForCall)]
fake.sendConsensusArgsForCall = append(fake.sendConsensusArgsForCall, struct {
arg1 uint64
arg2 *orderer.ConsensusRequest
}{arg1, arg2})
fake.recordInvocation("SendConsensus", []interface{}{arg1, arg2})
fake.sendConsensusMutex.Unlock()
if fake.SendConsensusStub != nil {
return fake.SendConsensusStub(arg1, arg2)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.sendConsensusReturns
return fakeReturns.result1
}
func (fake *FakeRPC) SendConsensusCallCount() int {
fake.sendConsensusMutex.RLock()
defer fake.sendConsensusMutex.RUnlock()
return len(fake.sendConsensusArgsForCall)
}
func (fake *FakeRPC) SendConsensusCalls(stub func(uint64, *orderer.ConsensusRequest) error) {
fake.sendConsensusMutex.Lock()
defer fake.sendConsensusMutex.Unlock()
fake.SendConsensusStub = stub
}
func (fake *FakeRPC) SendConsensusArgsForCall(i int) (uint64, *orderer.ConsensusRequest) {
fake.sendConsensusMutex.RLock()
defer fake.sendConsensusMutex.RUnlock()
argsForCall := fake.sendConsensusArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *FakeRPC) SendConsensusReturns(result1 error) {
fake.sendConsensusMutex.Lock()
defer fake.sendConsensusMutex.Unlock()
fake.SendConsensusStub = nil
fake.sendConsensusReturns = struct {
result1 error
}{result1}
}
func (fake *FakeRPC) SendConsensusReturnsOnCall(i int, result1 error) {
fake.sendConsensusMutex.Lock()
defer fake.sendConsensusMutex.Unlock()
fake.SendConsensusStub = nil
if fake.sendConsensusReturnsOnCall == nil {
fake.sendConsensusReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.sendConsensusReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *FakeRPC) SendSubmit(arg1 uint64, arg2 *orderer.SubmitRequest) error {
fake.sendSubmitMutex.Lock()
ret, specificReturn := fake.sendSubmitReturnsOnCall[len(fake.sendSubmitArgsForCall)]
fake.sendSubmitArgsForCall = append(fake.sendSubmitArgsForCall, struct {
arg1 uint64
arg2 *orderer.SubmitRequest
}{arg1, arg2})
fake.recordInvocation("SendSubmit", []interface{}{arg1, arg2})
fake.sendSubmitMutex.Unlock()
if fake.SendSubmitStub != nil {
return fake.SendSubmitStub(arg1, arg2)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.sendSubmitReturns
return fakeReturns.result1
}
func (fake *FakeRPC) SendSubmitCallCount() int {
fake.sendSubmitMutex.RLock()
defer fake.sendSubmitMutex.RUnlock()
return len(fake.sendSubmitArgsForCall)
}
func (fake *FakeRPC) SendSubmitCalls(stub func(uint64, *orderer.SubmitRequest) error) {
fake.sendSubmitMutex.Lock()
defer fake.sendSubmitMutex.Unlock()
fake.SendSubmitStub = stub
}
func (fake *FakeRPC) SendSubmitArgsForCall(i int) (uint64, *orderer.SubmitRequest) {
fake.sendSubmitMutex.RLock()
defer fake.sendSubmitMutex.RUnlock()
argsForCall := fake.sendSubmitArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *FakeRPC) SendSubmitReturns(result1 error) {
fake.sendSubmitMutex.Lock()
defer fake.sendSubmitMutex.Unlock()
fake.SendSubmitStub = nil
fake.sendSubmitReturns = struct {
result1 error
}{result1}
}
func (fake *FakeRPC) SendSubmitReturnsOnCall(i int, result1 error) {
fake.sendSubmitMutex.Lock()
defer fake.sendSubmitMutex.Unlock()
fake.SendSubmitStub = nil
if fake.sendSubmitReturnsOnCall == nil {
fake.sendSubmitReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.sendSubmitReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *FakeRPC) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.sendConsensusMutex.RLock()
defer fake.sendConsensusMutex.RUnlock()
fake.sendSubmitMutex.RLock()
defer fake.sendSubmitMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeRPC) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
var _ etcdraft.RPC = new(FakeRPC)