63 Star 183 Fork 3

Gitee 极速下载/hyperledger-fabric

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
Clone or Download
channel_support_registrar.go 4.00 KB
Copy Edit Raw Blame History
Jason Yellick authored 2018-11-19 15:03 . FAB-12940 Cleanup orderer tests
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/orderer/common/broadcast"
cb "github.com/hyperledger/fabric/protos/common"
)
type ChannelSupportRegistrar struct {
BroadcastChannelSupportStub func(msg *cb.Envelope) (*cb.ChannelHeader, bool, broadcast.ChannelSupport, error)
broadcastChannelSupportMutex sync.RWMutex
broadcastChannelSupportArgsForCall []struct {
msg *cb.Envelope
}
broadcastChannelSupportReturns struct {
result1 *cb.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
}
broadcastChannelSupportReturnsOnCall map[int]struct {
result1 *cb.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupport(msg *cb.Envelope) (*cb.ChannelHeader, bool, broadcast.ChannelSupport, error) {
fake.broadcastChannelSupportMutex.Lock()
ret, specificReturn := fake.broadcastChannelSupportReturnsOnCall[len(fake.broadcastChannelSupportArgsForCall)]
fake.broadcastChannelSupportArgsForCall = append(fake.broadcastChannelSupportArgsForCall, struct {
msg *cb.Envelope
}{msg})
fake.recordInvocation("BroadcastChannelSupport", []interface{}{msg})
fake.broadcastChannelSupportMutex.Unlock()
if fake.BroadcastChannelSupportStub != nil {
return fake.BroadcastChannelSupportStub(msg)
}
if specificReturn {
return ret.result1, ret.result2, ret.result3, ret.result4
}
return fake.broadcastChannelSupportReturns.result1, fake.broadcastChannelSupportReturns.result2, fake.broadcastChannelSupportReturns.result3, fake.broadcastChannelSupportReturns.result4
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportCallCount() int {
fake.broadcastChannelSupportMutex.RLock()
defer fake.broadcastChannelSupportMutex.RUnlock()
return len(fake.broadcastChannelSupportArgsForCall)
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportArgsForCall(i int) *cb.Envelope {
fake.broadcastChannelSupportMutex.RLock()
defer fake.broadcastChannelSupportMutex.RUnlock()
return fake.broadcastChannelSupportArgsForCall[i].msg
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportReturns(result1 *cb.ChannelHeader, result2 bool, result3 broadcast.ChannelSupport, result4 error) {
fake.BroadcastChannelSupportStub = nil
fake.broadcastChannelSupportReturns = struct {
result1 *cb.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
}{result1, result2, result3, result4}
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportReturnsOnCall(i int, result1 *cb.ChannelHeader, result2 bool, result3 broadcast.ChannelSupport, result4 error) {
fake.BroadcastChannelSupportStub = nil
if fake.broadcastChannelSupportReturnsOnCall == nil {
fake.broadcastChannelSupportReturnsOnCall = make(map[int]struct {
result1 *cb.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
})
}
fake.broadcastChannelSupportReturnsOnCall[i] = struct {
result1 *cb.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
}{result1, result2, result3, result4}
}
func (fake *ChannelSupportRegistrar) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.broadcastChannelSupportMutex.RLock()
defer fake.broadcastChannelSupportMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *ChannelSupportRegistrar) 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 _ broadcast.ChannelSupportRegistrar = new(ChannelSupportRegistrar)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v1.4.0-rc2

Search