63 Star 183 Fork 3

Gitee 极速下载/hyperledger-fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
lifecycle.go 6.90 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
sync "sync"
ccprovider "github.com/hyperledger/fabric/core/common/ccprovider"
ledger "github.com/hyperledger/fabric/core/ledger"
)
type Lifecycle struct {
ChaincodeContainerInfoStub func(string, ledger.QueryExecutor) (*ccprovider.ChaincodeContainerInfo, error)
chaincodeContainerInfoMutex sync.RWMutex
chaincodeContainerInfoArgsForCall []struct {
arg1 string
arg2 ledger.QueryExecutor
}
chaincodeContainerInfoReturns struct {
result1 *ccprovider.ChaincodeContainerInfo
result2 error
}
chaincodeContainerInfoReturnsOnCall map[int]struct {
result1 *ccprovider.ChaincodeContainerInfo
result2 error
}
ChaincodeDefinitionStub func(string, ledger.QueryExecutor) (ccprovider.ChaincodeDefinition, error)
chaincodeDefinitionMutex sync.RWMutex
chaincodeDefinitionArgsForCall []struct {
arg1 string
arg2 ledger.QueryExecutor
}
chaincodeDefinitionReturns struct {
result1 ccprovider.ChaincodeDefinition
result2 error
}
chaincodeDefinitionReturnsOnCall map[int]struct {
result1 ccprovider.ChaincodeDefinition
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Lifecycle) ChaincodeContainerInfo(arg1 string, arg2 ledger.QueryExecutor) (*ccprovider.ChaincodeContainerInfo, error) {
fake.chaincodeContainerInfoMutex.Lock()
ret, specificReturn := fake.chaincodeContainerInfoReturnsOnCall[len(fake.chaincodeContainerInfoArgsForCall)]
fake.chaincodeContainerInfoArgsForCall = append(fake.chaincodeContainerInfoArgsForCall, struct {
arg1 string
arg2 ledger.QueryExecutor
}{arg1, arg2})
fake.recordInvocation("ChaincodeContainerInfo", []interface{}{arg1, arg2})
fake.chaincodeContainerInfoMutex.Unlock()
if fake.ChaincodeContainerInfoStub != nil {
return fake.ChaincodeContainerInfoStub(arg1, arg2)
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.chaincodeContainerInfoReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *Lifecycle) ChaincodeContainerInfoCallCount() int {
fake.chaincodeContainerInfoMutex.RLock()
defer fake.chaincodeContainerInfoMutex.RUnlock()
return len(fake.chaincodeContainerInfoArgsForCall)
}
func (fake *Lifecycle) ChaincodeContainerInfoCalls(stub func(string, ledger.QueryExecutor) (*ccprovider.ChaincodeContainerInfo, error)) {
fake.chaincodeContainerInfoMutex.Lock()
defer fake.chaincodeContainerInfoMutex.Unlock()
fake.ChaincodeContainerInfoStub = stub
}
func (fake *Lifecycle) ChaincodeContainerInfoArgsForCall(i int) (string, ledger.QueryExecutor) {
fake.chaincodeContainerInfoMutex.RLock()
defer fake.chaincodeContainerInfoMutex.RUnlock()
argsForCall := fake.chaincodeContainerInfoArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *Lifecycle) ChaincodeContainerInfoReturns(result1 *ccprovider.ChaincodeContainerInfo, result2 error) {
fake.chaincodeContainerInfoMutex.Lock()
defer fake.chaincodeContainerInfoMutex.Unlock()
fake.ChaincodeContainerInfoStub = nil
fake.chaincodeContainerInfoReturns = struct {
result1 *ccprovider.ChaincodeContainerInfo
result2 error
}{result1, result2}
}
func (fake *Lifecycle) ChaincodeContainerInfoReturnsOnCall(i int, result1 *ccprovider.ChaincodeContainerInfo, result2 error) {
fake.chaincodeContainerInfoMutex.Lock()
defer fake.chaincodeContainerInfoMutex.Unlock()
fake.ChaincodeContainerInfoStub = nil
if fake.chaincodeContainerInfoReturnsOnCall == nil {
fake.chaincodeContainerInfoReturnsOnCall = make(map[int]struct {
result1 *ccprovider.ChaincodeContainerInfo
result2 error
})
}
fake.chaincodeContainerInfoReturnsOnCall[i] = struct {
result1 *ccprovider.ChaincodeContainerInfo
result2 error
}{result1, result2}
}
func (fake *Lifecycle) ChaincodeDefinition(arg1 string, arg2 ledger.QueryExecutor) (ccprovider.ChaincodeDefinition, error) {
fake.chaincodeDefinitionMutex.Lock()
ret, specificReturn := fake.chaincodeDefinitionReturnsOnCall[len(fake.chaincodeDefinitionArgsForCall)]
fake.chaincodeDefinitionArgsForCall = append(fake.chaincodeDefinitionArgsForCall, struct {
arg1 string
arg2 ledger.QueryExecutor
}{arg1, arg2})
fake.recordInvocation("ChaincodeDefinition", []interface{}{arg1, arg2})
fake.chaincodeDefinitionMutex.Unlock()
if fake.ChaincodeDefinitionStub != nil {
return fake.ChaincodeDefinitionStub(arg1, arg2)
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.chaincodeDefinitionReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *Lifecycle) ChaincodeDefinitionCallCount() int {
fake.chaincodeDefinitionMutex.RLock()
defer fake.chaincodeDefinitionMutex.RUnlock()
return len(fake.chaincodeDefinitionArgsForCall)
}
func (fake *Lifecycle) ChaincodeDefinitionCalls(stub func(string, ledger.QueryExecutor) (ccprovider.ChaincodeDefinition, error)) {
fake.chaincodeDefinitionMutex.Lock()
defer fake.chaincodeDefinitionMutex.Unlock()
fake.ChaincodeDefinitionStub = stub
}
func (fake *Lifecycle) ChaincodeDefinitionArgsForCall(i int) (string, ledger.QueryExecutor) {
fake.chaincodeDefinitionMutex.RLock()
defer fake.chaincodeDefinitionMutex.RUnlock()
argsForCall := fake.chaincodeDefinitionArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *Lifecycle) ChaincodeDefinitionReturns(result1 ccprovider.ChaincodeDefinition, result2 error) {
fake.chaincodeDefinitionMutex.Lock()
defer fake.chaincodeDefinitionMutex.Unlock()
fake.ChaincodeDefinitionStub = nil
fake.chaincodeDefinitionReturns = struct {
result1 ccprovider.ChaincodeDefinition
result2 error
}{result1, result2}
}
func (fake *Lifecycle) ChaincodeDefinitionReturnsOnCall(i int, result1 ccprovider.ChaincodeDefinition, result2 error) {
fake.chaincodeDefinitionMutex.Lock()
defer fake.chaincodeDefinitionMutex.Unlock()
fake.ChaincodeDefinitionStub = nil
if fake.chaincodeDefinitionReturnsOnCall == nil {
fake.chaincodeDefinitionReturnsOnCall = make(map[int]struct {
result1 ccprovider.ChaincodeDefinition
result2 error
})
}
fake.chaincodeDefinitionReturnsOnCall[i] = struct {
result1 ccprovider.ChaincodeDefinition
result2 error
}{result1, result2}
}
func (fake *Lifecycle) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.chaincodeContainerInfoMutex.RLock()
defer fake.chaincodeContainerInfoMutex.RUnlock()
fake.chaincodeDefinitionMutex.RLock()
defer fake.chaincodeDefinitionMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Lifecycle) 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)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v1.4.12

搜索帮助

0d507c66 1850385 C8b1a773 1850385