forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtime.go
266 lines (243 loc) · 6.76 KB
/
runtime.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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
sync "sync"
ccprovider "github.com/hyperledger/fabric/core/common/ccprovider"
)
type Runtime struct {
StartStub func(*ccprovider.ChaincodeContainerInfo, []byte) error
startMutex sync.RWMutex
startArgsForCall []struct {
arg1 *ccprovider.ChaincodeContainerInfo
arg2 []byte
}
startReturns struct {
result1 error
}
startReturnsOnCall map[int]struct {
result1 error
}
StopStub func(*ccprovider.ChaincodeContainerInfo) error
stopMutex sync.RWMutex
stopArgsForCall []struct {
arg1 *ccprovider.ChaincodeContainerInfo
}
stopReturns struct {
result1 error
}
stopReturnsOnCall map[int]struct {
result1 error
}
WaitStub func(*ccprovider.ChaincodeContainerInfo) (int, error)
waitMutex sync.RWMutex
waitArgsForCall []struct {
arg1 *ccprovider.ChaincodeContainerInfo
}
waitReturns struct {
result1 int
result2 error
}
waitReturnsOnCall map[int]struct {
result1 int
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Runtime) Start(arg1 *ccprovider.ChaincodeContainerInfo, arg2 []byte) error {
var arg2Copy []byte
if arg2 != nil {
arg2Copy = make([]byte, len(arg2))
copy(arg2Copy, arg2)
}
fake.startMutex.Lock()
ret, specificReturn := fake.startReturnsOnCall[len(fake.startArgsForCall)]
fake.startArgsForCall = append(fake.startArgsForCall, struct {
arg1 *ccprovider.ChaincodeContainerInfo
arg2 []byte
}{arg1, arg2Copy})
fake.recordInvocation("Start", []interface{}{arg1, arg2Copy})
fake.startMutex.Unlock()
if fake.StartStub != nil {
return fake.StartStub(arg1, arg2)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.startReturns
return fakeReturns.result1
}
func (fake *Runtime) StartCallCount() int {
fake.startMutex.RLock()
defer fake.startMutex.RUnlock()
return len(fake.startArgsForCall)
}
func (fake *Runtime) StartCalls(stub func(*ccprovider.ChaincodeContainerInfo, []byte) error) {
fake.startMutex.Lock()
defer fake.startMutex.Unlock()
fake.StartStub = stub
}
func (fake *Runtime) StartArgsForCall(i int) (*ccprovider.ChaincodeContainerInfo, []byte) {
fake.startMutex.RLock()
defer fake.startMutex.RUnlock()
argsForCall := fake.startArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *Runtime) StartReturns(result1 error) {
fake.startMutex.Lock()
defer fake.startMutex.Unlock()
fake.StartStub = nil
fake.startReturns = struct {
result1 error
}{result1}
}
func (fake *Runtime) StartReturnsOnCall(i int, result1 error) {
fake.startMutex.Lock()
defer fake.startMutex.Unlock()
fake.StartStub = nil
if fake.startReturnsOnCall == nil {
fake.startReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.startReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *Runtime) Stop(arg1 *ccprovider.ChaincodeContainerInfo) error {
fake.stopMutex.Lock()
ret, specificReturn := fake.stopReturnsOnCall[len(fake.stopArgsForCall)]
fake.stopArgsForCall = append(fake.stopArgsForCall, struct {
arg1 *ccprovider.ChaincodeContainerInfo
}{arg1})
fake.recordInvocation("Stop", []interface{}{arg1})
fake.stopMutex.Unlock()
if fake.StopStub != nil {
return fake.StopStub(arg1)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.stopReturns
return fakeReturns.result1
}
func (fake *Runtime) StopCallCount() int {
fake.stopMutex.RLock()
defer fake.stopMutex.RUnlock()
return len(fake.stopArgsForCall)
}
func (fake *Runtime) StopCalls(stub func(*ccprovider.ChaincodeContainerInfo) error) {
fake.stopMutex.Lock()
defer fake.stopMutex.Unlock()
fake.StopStub = stub
}
func (fake *Runtime) StopArgsForCall(i int) *ccprovider.ChaincodeContainerInfo {
fake.stopMutex.RLock()
defer fake.stopMutex.RUnlock()
argsForCall := fake.stopArgsForCall[i]
return argsForCall.arg1
}
func (fake *Runtime) StopReturns(result1 error) {
fake.stopMutex.Lock()
defer fake.stopMutex.Unlock()
fake.StopStub = nil
fake.stopReturns = struct {
result1 error
}{result1}
}
func (fake *Runtime) StopReturnsOnCall(i int, result1 error) {
fake.stopMutex.Lock()
defer fake.stopMutex.Unlock()
fake.StopStub = nil
if fake.stopReturnsOnCall == nil {
fake.stopReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.stopReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *Runtime) Wait(arg1 *ccprovider.ChaincodeContainerInfo) (int, error) {
fake.waitMutex.Lock()
ret, specificReturn := fake.waitReturnsOnCall[len(fake.waitArgsForCall)]
fake.waitArgsForCall = append(fake.waitArgsForCall, struct {
arg1 *ccprovider.ChaincodeContainerInfo
}{arg1})
fake.recordInvocation("Wait", []interface{}{arg1})
fake.waitMutex.Unlock()
if fake.WaitStub != nil {
return fake.WaitStub(arg1)
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.waitReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *Runtime) WaitCallCount() int {
fake.waitMutex.RLock()
defer fake.waitMutex.RUnlock()
return len(fake.waitArgsForCall)
}
func (fake *Runtime) WaitCalls(stub func(*ccprovider.ChaincodeContainerInfo) (int, error)) {
fake.waitMutex.Lock()
defer fake.waitMutex.Unlock()
fake.WaitStub = stub
}
func (fake *Runtime) WaitArgsForCall(i int) *ccprovider.ChaincodeContainerInfo {
fake.waitMutex.RLock()
defer fake.waitMutex.RUnlock()
argsForCall := fake.waitArgsForCall[i]
return argsForCall.arg1
}
func (fake *Runtime) WaitReturns(result1 int, result2 error) {
fake.waitMutex.Lock()
defer fake.waitMutex.Unlock()
fake.WaitStub = nil
fake.waitReturns = struct {
result1 int
result2 error
}{result1, result2}
}
func (fake *Runtime) WaitReturnsOnCall(i int, result1 int, result2 error) {
fake.waitMutex.Lock()
defer fake.waitMutex.Unlock()
fake.WaitStub = nil
if fake.waitReturnsOnCall == nil {
fake.waitReturnsOnCall = make(map[int]struct {
result1 int
result2 error
})
}
fake.waitReturnsOnCall[i] = struct {
result1 int
result2 error
}{result1, result2}
}
func (fake *Runtime) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.startMutex.RLock()
defer fake.startMutex.RUnlock()
fake.stopMutex.RLock()
defer fake.stopMutex.RUnlock()
fake.waitMutex.RLock()
defer fake.waitMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Runtime) 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)
}