1 Star 0 Fork 0

妥協 / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
block_reader.go 4.73 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric-protos-go/orderer"
"github.com/hyperledger/fabric/common/ledger/blockledger"
)
type BlockReader struct {
HeightStub func() uint64
heightMutex sync.RWMutex
heightArgsForCall []struct {
}
heightReturns struct {
result1 uint64
}
heightReturnsOnCall map[int]struct {
result1 uint64
}
IteratorStub func(*orderer.SeekPosition) (blockledger.Iterator, uint64)
iteratorMutex sync.RWMutex
iteratorArgsForCall []struct {
arg1 *orderer.SeekPosition
}
iteratorReturns struct {
result1 blockledger.Iterator
result2 uint64
}
iteratorReturnsOnCall map[int]struct {
result1 blockledger.Iterator
result2 uint64
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *BlockReader) Height() uint64 {
fake.heightMutex.Lock()
ret, specificReturn := fake.heightReturnsOnCall[len(fake.heightArgsForCall)]
fake.heightArgsForCall = append(fake.heightArgsForCall, struct {
}{})
fake.recordInvocation("Height", []interface{}{})
fake.heightMutex.Unlock()
if fake.HeightStub != nil {
return fake.HeightStub()
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.heightReturns
return fakeReturns.result1
}
func (fake *BlockReader) HeightCallCount() int {
fake.heightMutex.RLock()
defer fake.heightMutex.RUnlock()
return len(fake.heightArgsForCall)
}
func (fake *BlockReader) HeightCalls(stub func() uint64) {
fake.heightMutex.Lock()
defer fake.heightMutex.Unlock()
fake.HeightStub = stub
}
func (fake *BlockReader) HeightReturns(result1 uint64) {
fake.heightMutex.Lock()
defer fake.heightMutex.Unlock()
fake.HeightStub = nil
fake.heightReturns = struct {
result1 uint64
}{result1}
}
func (fake *BlockReader) HeightReturnsOnCall(i int, result1 uint64) {
fake.heightMutex.Lock()
defer fake.heightMutex.Unlock()
fake.HeightStub = nil
if fake.heightReturnsOnCall == nil {
fake.heightReturnsOnCall = make(map[int]struct {
result1 uint64
})
}
fake.heightReturnsOnCall[i] = struct {
result1 uint64
}{result1}
}
func (fake *BlockReader) Iterator(arg1 *orderer.SeekPosition) (blockledger.Iterator, uint64) {
fake.iteratorMutex.Lock()
ret, specificReturn := fake.iteratorReturnsOnCall[len(fake.iteratorArgsForCall)]
fake.iteratorArgsForCall = append(fake.iteratorArgsForCall, struct {
arg1 *orderer.SeekPosition
}{arg1})
fake.recordInvocation("Iterator", []interface{}{arg1})
fake.iteratorMutex.Unlock()
if fake.IteratorStub != nil {
return fake.IteratorStub(arg1)
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.iteratorReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *BlockReader) IteratorCallCount() int {
fake.iteratorMutex.RLock()
defer fake.iteratorMutex.RUnlock()
return len(fake.iteratorArgsForCall)
}
func (fake *BlockReader) IteratorCalls(stub func(*orderer.SeekPosition) (blockledger.Iterator, uint64)) {
fake.iteratorMutex.Lock()
defer fake.iteratorMutex.Unlock()
fake.IteratorStub = stub
}
func (fake *BlockReader) IteratorArgsForCall(i int) *orderer.SeekPosition {
fake.iteratorMutex.RLock()
defer fake.iteratorMutex.RUnlock()
argsForCall := fake.iteratorArgsForCall[i]
return argsForCall.arg1
}
func (fake *BlockReader) IteratorReturns(result1 blockledger.Iterator, result2 uint64) {
fake.iteratorMutex.Lock()
defer fake.iteratorMutex.Unlock()
fake.IteratorStub = nil
fake.iteratorReturns = struct {
result1 blockledger.Iterator
result2 uint64
}{result1, result2}
}
func (fake *BlockReader) IteratorReturnsOnCall(i int, result1 blockledger.Iterator, result2 uint64) {
fake.iteratorMutex.Lock()
defer fake.iteratorMutex.Unlock()
fake.IteratorStub = nil
if fake.iteratorReturnsOnCall == nil {
fake.iteratorReturnsOnCall = make(map[int]struct {
result1 blockledger.Iterator
result2 uint64
})
}
fake.iteratorReturnsOnCall[i] = struct {
result1 blockledger.Iterator
result2 uint64
}{result1, result2}
}
func (fake *BlockReader) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.heightMutex.RLock()
defer fake.heightMutex.RUnlock()
fake.iteratorMutex.RLock()
defer fake.iteratorMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *BlockReader) 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)
}
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v2.1.1

搜索帮助