-
Notifications
You must be signed in to change notification settings - Fork 1
/
legacy_package_provider.go
198 lines (181 loc) · 7.19 KB
/
legacy_package_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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
sync "sync"
chaincode "github.com/hyperledger/fabric/common/chaincode"
ccprovider "github.com/hyperledger/fabric/core/common/ccprovider"
)
type LegacyPackageProvider struct {
GetChaincodeCodePackageStub func(string, string) ([]byte, error)
getChaincodeCodePackageMutex sync.RWMutex
getChaincodeCodePackageArgsForCall []struct {
arg1 string
arg2 string
}
getChaincodeCodePackageReturns struct {
result1 []byte
result2 error
}
getChaincodeCodePackageReturnsOnCall map[int]struct {
result1 []byte
result2 error
}
ListInstalledChaincodesStub func(string, ccprovider.DirEnumerator, ccprovider.ChaincodeExtractor) ([]chaincode.InstalledChaincode, error)
listInstalledChaincodesMutex sync.RWMutex
listInstalledChaincodesArgsForCall []struct {
arg1 string
arg2 ccprovider.DirEnumerator
arg3 ccprovider.ChaincodeExtractor
}
listInstalledChaincodesReturns struct {
result1 []chaincode.InstalledChaincode
result2 error
}
listInstalledChaincodesReturnsOnCall map[int]struct {
result1 []chaincode.InstalledChaincode
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *LegacyPackageProvider) GetChaincodeCodePackage(arg1 string, arg2 string) ([]byte, error) {
fake.getChaincodeCodePackageMutex.Lock()
ret, specificReturn := fake.getChaincodeCodePackageReturnsOnCall[len(fake.getChaincodeCodePackageArgsForCall)]
fake.getChaincodeCodePackageArgsForCall = append(fake.getChaincodeCodePackageArgsForCall, struct {
arg1 string
arg2 string
}{arg1, arg2})
fake.recordInvocation("GetChaincodeCodePackage", []interface{}{arg1, arg2})
fake.getChaincodeCodePackageMutex.Unlock()
if fake.GetChaincodeCodePackageStub != nil {
return fake.GetChaincodeCodePackageStub(arg1, arg2)
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.getChaincodeCodePackageReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *LegacyPackageProvider) GetChaincodeCodePackageCallCount() int {
fake.getChaincodeCodePackageMutex.RLock()
defer fake.getChaincodeCodePackageMutex.RUnlock()
return len(fake.getChaincodeCodePackageArgsForCall)
}
func (fake *LegacyPackageProvider) GetChaincodeCodePackageCalls(stub func(string, string) ([]byte, error)) {
fake.getChaincodeCodePackageMutex.Lock()
defer fake.getChaincodeCodePackageMutex.Unlock()
fake.GetChaincodeCodePackageStub = stub
}
func (fake *LegacyPackageProvider) GetChaincodeCodePackageArgsForCall(i int) (string, string) {
fake.getChaincodeCodePackageMutex.RLock()
defer fake.getChaincodeCodePackageMutex.RUnlock()
argsForCall := fake.getChaincodeCodePackageArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *LegacyPackageProvider) GetChaincodeCodePackageReturns(result1 []byte, result2 error) {
fake.getChaincodeCodePackageMutex.Lock()
defer fake.getChaincodeCodePackageMutex.Unlock()
fake.GetChaincodeCodePackageStub = nil
fake.getChaincodeCodePackageReturns = struct {
result1 []byte
result2 error
}{result1, result2}
}
func (fake *LegacyPackageProvider) GetChaincodeCodePackageReturnsOnCall(i int, result1 []byte, result2 error) {
fake.getChaincodeCodePackageMutex.Lock()
defer fake.getChaincodeCodePackageMutex.Unlock()
fake.GetChaincodeCodePackageStub = nil
if fake.getChaincodeCodePackageReturnsOnCall == nil {
fake.getChaincodeCodePackageReturnsOnCall = make(map[int]struct {
result1 []byte
result2 error
})
}
fake.getChaincodeCodePackageReturnsOnCall[i] = struct {
result1 []byte
result2 error
}{result1, result2}
}
func (fake *LegacyPackageProvider) ListInstalledChaincodes(arg1 string, arg2 ccprovider.DirEnumerator, arg3 ccprovider.ChaincodeExtractor) ([]chaincode.InstalledChaincode, error) {
fake.listInstalledChaincodesMutex.Lock()
ret, specificReturn := fake.listInstalledChaincodesReturnsOnCall[len(fake.listInstalledChaincodesArgsForCall)]
fake.listInstalledChaincodesArgsForCall = append(fake.listInstalledChaincodesArgsForCall, struct {
arg1 string
arg2 ccprovider.DirEnumerator
arg3 ccprovider.ChaincodeExtractor
}{arg1, arg2, arg3})
fake.recordInvocation("ListInstalledChaincodes", []interface{}{arg1, arg2, arg3})
fake.listInstalledChaincodesMutex.Unlock()
if fake.ListInstalledChaincodesStub != nil {
return fake.ListInstalledChaincodesStub(arg1, arg2, arg3)
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.listInstalledChaincodesReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *LegacyPackageProvider) ListInstalledChaincodesCallCount() int {
fake.listInstalledChaincodesMutex.RLock()
defer fake.listInstalledChaincodesMutex.RUnlock()
return len(fake.listInstalledChaincodesArgsForCall)
}
func (fake *LegacyPackageProvider) ListInstalledChaincodesCalls(stub func(string, ccprovider.DirEnumerator, ccprovider.ChaincodeExtractor) ([]chaincode.InstalledChaincode, error)) {
fake.listInstalledChaincodesMutex.Lock()
defer fake.listInstalledChaincodesMutex.Unlock()
fake.ListInstalledChaincodesStub = stub
}
func (fake *LegacyPackageProvider) ListInstalledChaincodesArgsForCall(i int) (string, ccprovider.DirEnumerator, ccprovider.ChaincodeExtractor) {
fake.listInstalledChaincodesMutex.RLock()
defer fake.listInstalledChaincodesMutex.RUnlock()
argsForCall := fake.listInstalledChaincodesArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3
}
func (fake *LegacyPackageProvider) ListInstalledChaincodesReturns(result1 []chaincode.InstalledChaincode, result2 error) {
fake.listInstalledChaincodesMutex.Lock()
defer fake.listInstalledChaincodesMutex.Unlock()
fake.ListInstalledChaincodesStub = nil
fake.listInstalledChaincodesReturns = struct {
result1 []chaincode.InstalledChaincode
result2 error
}{result1, result2}
}
func (fake *LegacyPackageProvider) ListInstalledChaincodesReturnsOnCall(i int, result1 []chaincode.InstalledChaincode, result2 error) {
fake.listInstalledChaincodesMutex.Lock()
defer fake.listInstalledChaincodesMutex.Unlock()
fake.ListInstalledChaincodesStub = nil
if fake.listInstalledChaincodesReturnsOnCall == nil {
fake.listInstalledChaincodesReturnsOnCall = make(map[int]struct {
result1 []chaincode.InstalledChaincode
result2 error
})
}
fake.listInstalledChaincodesReturnsOnCall[i] = struct {
result1 []chaincode.InstalledChaincode
result2 error
}{result1, result2}
}
func (fake *LegacyPackageProvider) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.getChaincodeCodePackageMutex.RLock()
defer fake.getChaincodeCodePackageMutex.RUnlock()
fake.listInstalledChaincodesMutex.RLock()
defer fake.listInstalledChaincodesMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *LegacyPackageProvider) 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)
}