-
Notifications
You must be signed in to change notification settings - Fork 1
/
deployed_ccinfo_provider.go
294 lines (269 loc) · 10.2 KB
/
deployed_ccinfo_provider.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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/core/ledger"
"github.com/hyperledger/fabric/protos/common"
"github.com/hyperledger/fabric/protos/ledger/rwset/kvrwset"
)
type DeployedChaincodeInfoProvider struct {
NamespacesStub func() []string
namespacesMutex sync.RWMutex
namespacesArgsForCall []struct{}
namespacesReturns struct {
result1 []string
}
namespacesReturnsOnCall map[int]struct {
result1 []string
}
UpdatedChaincodesStub func(stateUpdates map[string][]*kvrwset.KVWrite) ([]*ledger.ChaincodeLifecycleInfo, error)
updatedChaincodesMutex sync.RWMutex
updatedChaincodesArgsForCall []struct {
stateUpdates map[string][]*kvrwset.KVWrite
}
updatedChaincodesReturns struct {
result1 []*ledger.ChaincodeLifecycleInfo
result2 error
}
updatedChaincodesReturnsOnCall map[int]struct {
result1 []*ledger.ChaincodeLifecycleInfo
result2 error
}
ChaincodeInfoStub func(chaincodeName string, qe ledger.SimpleQueryExecutor) (*ledger.DeployedChaincodeInfo, error)
chaincodeInfoMutex sync.RWMutex
chaincodeInfoArgsForCall []struct {
chaincodeName string
qe ledger.SimpleQueryExecutor
}
chaincodeInfoReturns struct {
result1 *ledger.DeployedChaincodeInfo
result2 error
}
chaincodeInfoReturnsOnCall map[int]struct {
result1 *ledger.DeployedChaincodeInfo
result2 error
}
CollectionInfoStub func(chaincodeName, collectionName string, qe ledger.SimpleQueryExecutor) (*common.StaticCollectionConfig, error)
collectionInfoMutex sync.RWMutex
collectionInfoArgsForCall []struct {
chaincodeName string
collectionName string
qe ledger.SimpleQueryExecutor
}
collectionInfoReturns struct {
result1 *common.StaticCollectionConfig
result2 error
}
collectionInfoReturnsOnCall map[int]struct {
result1 *common.StaticCollectionConfig
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *DeployedChaincodeInfoProvider) Namespaces() []string {
fake.namespacesMutex.Lock()
ret, specificReturn := fake.namespacesReturnsOnCall[len(fake.namespacesArgsForCall)]
fake.namespacesArgsForCall = append(fake.namespacesArgsForCall, struct{}{})
fake.recordInvocation("Namespaces", []interface{}{})
fake.namespacesMutex.Unlock()
if fake.NamespacesStub != nil {
return fake.NamespacesStub()
}
if specificReturn {
return ret.result1
}
return fake.namespacesReturns.result1
}
func (fake *DeployedChaincodeInfoProvider) NamespacesCallCount() int {
fake.namespacesMutex.RLock()
defer fake.namespacesMutex.RUnlock()
return len(fake.namespacesArgsForCall)
}
func (fake *DeployedChaincodeInfoProvider) NamespacesReturns(result1 []string) {
fake.NamespacesStub = nil
fake.namespacesReturns = struct {
result1 []string
}{result1}
}
func (fake *DeployedChaincodeInfoProvider) NamespacesReturnsOnCall(i int, result1 []string) {
fake.NamespacesStub = nil
if fake.namespacesReturnsOnCall == nil {
fake.namespacesReturnsOnCall = make(map[int]struct {
result1 []string
})
}
fake.namespacesReturnsOnCall[i] = struct {
result1 []string
}{result1}
}
func (fake *DeployedChaincodeInfoProvider) UpdatedChaincodes(stateUpdates map[string][]*kvrwset.KVWrite) ([]*ledger.ChaincodeLifecycleInfo, error) {
fake.updatedChaincodesMutex.Lock()
ret, specificReturn := fake.updatedChaincodesReturnsOnCall[len(fake.updatedChaincodesArgsForCall)]
fake.updatedChaincodesArgsForCall = append(fake.updatedChaincodesArgsForCall, struct {
stateUpdates map[string][]*kvrwset.KVWrite
}{stateUpdates})
fake.recordInvocation("UpdatedChaincodes", []interface{}{stateUpdates})
fake.updatedChaincodesMutex.Unlock()
if fake.UpdatedChaincodesStub != nil {
return fake.UpdatedChaincodesStub(stateUpdates)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.updatedChaincodesReturns.result1, fake.updatedChaincodesReturns.result2
}
func (fake *DeployedChaincodeInfoProvider) UpdatedChaincodesCallCount() int {
fake.updatedChaincodesMutex.RLock()
defer fake.updatedChaincodesMutex.RUnlock()
return len(fake.updatedChaincodesArgsForCall)
}
func (fake *DeployedChaincodeInfoProvider) UpdatedChaincodesArgsForCall(i int) map[string][]*kvrwset.KVWrite {
fake.updatedChaincodesMutex.RLock()
defer fake.updatedChaincodesMutex.RUnlock()
return fake.updatedChaincodesArgsForCall[i].stateUpdates
}
func (fake *DeployedChaincodeInfoProvider) UpdatedChaincodesReturns(result1 []*ledger.ChaincodeLifecycleInfo, result2 error) {
fake.UpdatedChaincodesStub = nil
fake.updatedChaincodesReturns = struct {
result1 []*ledger.ChaincodeLifecycleInfo
result2 error
}{result1, result2}
}
func (fake *DeployedChaincodeInfoProvider) UpdatedChaincodesReturnsOnCall(i int, result1 []*ledger.ChaincodeLifecycleInfo, result2 error) {
fake.UpdatedChaincodesStub = nil
if fake.updatedChaincodesReturnsOnCall == nil {
fake.updatedChaincodesReturnsOnCall = make(map[int]struct {
result1 []*ledger.ChaincodeLifecycleInfo
result2 error
})
}
fake.updatedChaincodesReturnsOnCall[i] = struct {
result1 []*ledger.ChaincodeLifecycleInfo
result2 error
}{result1, result2}
}
func (fake *DeployedChaincodeInfoProvider) ChaincodeInfo(chaincodeName string, qe ledger.SimpleQueryExecutor) (*ledger.DeployedChaincodeInfo, error) {
fake.chaincodeInfoMutex.Lock()
ret, specificReturn := fake.chaincodeInfoReturnsOnCall[len(fake.chaincodeInfoArgsForCall)]
fake.chaincodeInfoArgsForCall = append(fake.chaincodeInfoArgsForCall, struct {
chaincodeName string
qe ledger.SimpleQueryExecutor
}{chaincodeName, qe})
fake.recordInvocation("ChaincodeInfo", []interface{}{chaincodeName, qe})
fake.chaincodeInfoMutex.Unlock()
if fake.ChaincodeInfoStub != nil {
return fake.ChaincodeInfoStub(chaincodeName, qe)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.chaincodeInfoReturns.result1, fake.chaincodeInfoReturns.result2
}
func (fake *DeployedChaincodeInfoProvider) ChaincodeInfoCallCount() int {
fake.chaincodeInfoMutex.RLock()
defer fake.chaincodeInfoMutex.RUnlock()
return len(fake.chaincodeInfoArgsForCall)
}
func (fake *DeployedChaincodeInfoProvider) ChaincodeInfoArgsForCall(i int) (string, ledger.SimpleQueryExecutor) {
fake.chaincodeInfoMutex.RLock()
defer fake.chaincodeInfoMutex.RUnlock()
return fake.chaincodeInfoArgsForCall[i].chaincodeName, fake.chaincodeInfoArgsForCall[i].qe
}
func (fake *DeployedChaincodeInfoProvider) ChaincodeInfoReturns(result1 *ledger.DeployedChaincodeInfo, result2 error) {
fake.ChaincodeInfoStub = nil
fake.chaincodeInfoReturns = struct {
result1 *ledger.DeployedChaincodeInfo
result2 error
}{result1, result2}
}
func (fake *DeployedChaincodeInfoProvider) ChaincodeInfoReturnsOnCall(i int, result1 *ledger.DeployedChaincodeInfo, result2 error) {
fake.ChaincodeInfoStub = nil
if fake.chaincodeInfoReturnsOnCall == nil {
fake.chaincodeInfoReturnsOnCall = make(map[int]struct {
result1 *ledger.DeployedChaincodeInfo
result2 error
})
}
fake.chaincodeInfoReturnsOnCall[i] = struct {
result1 *ledger.DeployedChaincodeInfo
result2 error
}{result1, result2}
}
func (fake *DeployedChaincodeInfoProvider) CollectionInfo(chaincodeName string, collectionName string, qe ledger.SimpleQueryExecutor) (*common.StaticCollectionConfig, error) {
fake.collectionInfoMutex.Lock()
ret, specificReturn := fake.collectionInfoReturnsOnCall[len(fake.collectionInfoArgsForCall)]
fake.collectionInfoArgsForCall = append(fake.collectionInfoArgsForCall, struct {
chaincodeName string
collectionName string
qe ledger.SimpleQueryExecutor
}{chaincodeName, collectionName, qe})
fake.recordInvocation("CollectionInfo", []interface{}{chaincodeName, collectionName, qe})
fake.collectionInfoMutex.Unlock()
if fake.CollectionInfoStub != nil {
return fake.CollectionInfoStub(chaincodeName, collectionName, qe)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.collectionInfoReturns.result1, fake.collectionInfoReturns.result2
}
func (fake *DeployedChaincodeInfoProvider) CollectionInfoCallCount() int {
fake.collectionInfoMutex.RLock()
defer fake.collectionInfoMutex.RUnlock()
return len(fake.collectionInfoArgsForCall)
}
func (fake *DeployedChaincodeInfoProvider) CollectionInfoArgsForCall(i int) (string, string, ledger.SimpleQueryExecutor) {
fake.collectionInfoMutex.RLock()
defer fake.collectionInfoMutex.RUnlock()
return fake.collectionInfoArgsForCall[i].chaincodeName, fake.collectionInfoArgsForCall[i].collectionName, fake.collectionInfoArgsForCall[i].qe
}
func (fake *DeployedChaincodeInfoProvider) CollectionInfoReturns(result1 *common.StaticCollectionConfig, result2 error) {
fake.CollectionInfoStub = nil
fake.collectionInfoReturns = struct {
result1 *common.StaticCollectionConfig
result2 error
}{result1, result2}
}
func (fake *DeployedChaincodeInfoProvider) CollectionInfoReturnsOnCall(i int, result1 *common.StaticCollectionConfig, result2 error) {
fake.CollectionInfoStub = nil
if fake.collectionInfoReturnsOnCall == nil {
fake.collectionInfoReturnsOnCall = make(map[int]struct {
result1 *common.StaticCollectionConfig
result2 error
})
}
fake.collectionInfoReturnsOnCall[i] = struct {
result1 *common.StaticCollectionConfig
result2 error
}{result1, result2}
}
func (fake *DeployedChaincodeInfoProvider) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.namespacesMutex.RLock()
defer fake.namespacesMutex.RUnlock()
fake.updatedChaincodesMutex.RLock()
defer fake.updatedChaincodesMutex.RUnlock()
fake.chaincodeInfoMutex.RLock()
defer fake.chaincodeInfoMutex.RUnlock()
fake.collectionInfoMutex.RLock()
defer fake.collectionInfoMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *DeployedChaincodeInfoProvider) 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 _ ledger.DeployedChaincodeInfoProvider = new(DeployedChaincodeInfoProvider)