6 Star 47 Fork 28

Hyperledger/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
policy_checker.go 2.83 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/common/deliver"
cb "github.com/hyperledger/fabric/protos/common"
)
type PolicyChecker struct {
CheckPolicyStub func(envelope *cb.Envelope, channelID string) error
checkPolicyMutex sync.RWMutex
checkPolicyArgsForCall []struct {
envelope *cb.Envelope
channelID string
}
checkPolicyReturns struct {
result1 error
}
checkPolicyReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *PolicyChecker) CheckPolicy(envelope *cb.Envelope, channelID string) error {
fake.checkPolicyMutex.Lock()
ret, specificReturn := fake.checkPolicyReturnsOnCall[len(fake.checkPolicyArgsForCall)]
fake.checkPolicyArgsForCall = append(fake.checkPolicyArgsForCall, struct {
envelope *cb.Envelope
channelID string
}{envelope, channelID})
fake.recordInvocation("CheckPolicy", []interface{}{envelope, channelID})
fake.checkPolicyMutex.Unlock()
if fake.CheckPolicyStub != nil {
return fake.CheckPolicyStub(envelope, channelID)
}
if specificReturn {
return ret.result1
}
return fake.checkPolicyReturns.result1
}
func (fake *PolicyChecker) CheckPolicyCallCount() int {
fake.checkPolicyMutex.RLock()
defer fake.checkPolicyMutex.RUnlock()
return len(fake.checkPolicyArgsForCall)
}
func (fake *PolicyChecker) CheckPolicyArgsForCall(i int) (*cb.Envelope, string) {
fake.checkPolicyMutex.RLock()
defer fake.checkPolicyMutex.RUnlock()
return fake.checkPolicyArgsForCall[i].envelope, fake.checkPolicyArgsForCall[i].channelID
}
func (fake *PolicyChecker) CheckPolicyReturns(result1 error) {
fake.CheckPolicyStub = nil
fake.checkPolicyReturns = struct {
result1 error
}{result1}
}
func (fake *PolicyChecker) CheckPolicyReturnsOnCall(i int, result1 error) {
fake.CheckPolicyStub = nil
if fake.checkPolicyReturnsOnCall == nil {
fake.checkPolicyReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.checkPolicyReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *PolicyChecker) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.checkPolicyMutex.RLock()
defer fake.checkPolicyMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *PolicyChecker) 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 _ deliver.PolicyChecker = new(PolicyChecker)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyperledger/fabric.git
git@gitee.com:hyperledger/fabric.git
hyperledger
fabric
fabric
v1.3.0-rc1

搜索帮助