3 Star 6 Fork 7

Gitee 极速下载 / Hyperledger fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
capability_checker.go 2.72 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/token/server"
)
type CapabilityChecker struct {
FabTokenStub func(channelId string) (bool, error)
fabTokenMutex sync.RWMutex
fabTokenArgsForCall []struct {
channelId string
}
fabTokenReturns struct {
result1 bool
result2 error
}
fabTokenReturnsOnCall map[int]struct {
result1 bool
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *CapabilityChecker) FabToken(channelId string) (bool, error) {
fake.fabTokenMutex.Lock()
ret, specificReturn := fake.fabTokenReturnsOnCall[len(fake.fabTokenArgsForCall)]
fake.fabTokenArgsForCall = append(fake.fabTokenArgsForCall, struct {
channelId string
}{channelId})
fake.recordInvocation("FabToken", []interface{}{channelId})
fake.fabTokenMutex.Unlock()
if fake.FabTokenStub != nil {
return fake.FabTokenStub(channelId)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.fabTokenReturns.result1, fake.fabTokenReturns.result2
}
func (fake *CapabilityChecker) FabTokenCallCount() int {
fake.fabTokenMutex.RLock()
defer fake.fabTokenMutex.RUnlock()
return len(fake.fabTokenArgsForCall)
}
func (fake *CapabilityChecker) FabTokenArgsForCall(i int) string {
fake.fabTokenMutex.RLock()
defer fake.fabTokenMutex.RUnlock()
return fake.fabTokenArgsForCall[i].channelId
}
func (fake *CapabilityChecker) FabTokenReturns(result1 bool, result2 error) {
fake.FabTokenStub = nil
fake.fabTokenReturns = struct {
result1 bool
result2 error
}{result1, result2}
}
func (fake *CapabilityChecker) FabTokenReturnsOnCall(i int, result1 bool, result2 error) {
fake.FabTokenStub = nil
if fake.fabTokenReturnsOnCall == nil {
fake.fabTokenReturnsOnCall = make(map[int]struct {
result1 bool
result2 error
})
}
fake.fabTokenReturnsOnCall[i] = struct {
result1 bool
result2 error
}{result1, result2}
}
func (fake *CapabilityChecker) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.fabTokenMutex.RLock()
defer fake.fabTokenMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *CapabilityChecker) 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 _ server.CapabilityChecker = new(CapabilityChecker)
1
https://gitee.com/mirrors/fabric.git
git@gitee.com:mirrors/fabric.git
mirrors
fabric
Hyperledger fabric
v1.4.12

搜索帮助