go_study/fabric-main/orderer/common/follower/mocks/channel_puller.go

258 lines
7.4 KiB
Go

// Code generated by counterfeiter. DO NOT EDIT.
package mocks
import (
"sync"
"github.com/hyperledger/fabric-protos-go/common"
"github.com/hyperledger/fabric/orderer/common/cluster"
"github.com/hyperledger/fabric/orderer/common/follower"
)
type ChannelPuller struct {
CloseStub func()
closeMutex sync.RWMutex
closeArgsForCall []struct {
}
HeightsByEndpointsStub func() (map[string]uint64, error)
heightsByEndpointsMutex sync.RWMutex
heightsByEndpointsArgsForCall []struct {
}
heightsByEndpointsReturns struct {
result1 map[string]uint64
result2 error
}
heightsByEndpointsReturnsOnCall map[int]struct {
result1 map[string]uint64
result2 error
}
PullBlockStub func(uint64) *common.Block
pullBlockMutex sync.RWMutex
pullBlockArgsForCall []struct {
arg1 uint64
}
pullBlockReturns struct {
result1 *common.Block
}
pullBlockReturnsOnCall map[int]struct {
result1 *common.Block
}
UpdateEndpointsStub func([]cluster.EndpointCriteria)
updateEndpointsMutex sync.RWMutex
updateEndpointsArgsForCall []struct {
arg1 []cluster.EndpointCriteria
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *ChannelPuller) Close() {
fake.closeMutex.Lock()
fake.closeArgsForCall = append(fake.closeArgsForCall, struct {
}{})
stub := fake.CloseStub
fake.recordInvocation("Close", []interface{}{})
fake.closeMutex.Unlock()
if stub != nil {
fake.CloseStub()
}
}
func (fake *ChannelPuller) CloseCallCount() int {
fake.closeMutex.RLock()
defer fake.closeMutex.RUnlock()
return len(fake.closeArgsForCall)
}
func (fake *ChannelPuller) CloseCalls(stub func()) {
fake.closeMutex.Lock()
defer fake.closeMutex.Unlock()
fake.CloseStub = stub
}
func (fake *ChannelPuller) HeightsByEndpoints() (map[string]uint64, error) {
fake.heightsByEndpointsMutex.Lock()
ret, specificReturn := fake.heightsByEndpointsReturnsOnCall[len(fake.heightsByEndpointsArgsForCall)]
fake.heightsByEndpointsArgsForCall = append(fake.heightsByEndpointsArgsForCall, struct {
}{})
stub := fake.HeightsByEndpointsStub
fakeReturns := fake.heightsByEndpointsReturns
fake.recordInvocation("HeightsByEndpoints", []interface{}{})
fake.heightsByEndpointsMutex.Unlock()
if stub != nil {
return stub()
}
if specificReturn {
return ret.result1, ret.result2
}
return fakeReturns.result1, fakeReturns.result2
}
func (fake *ChannelPuller) HeightsByEndpointsCallCount() int {
fake.heightsByEndpointsMutex.RLock()
defer fake.heightsByEndpointsMutex.RUnlock()
return len(fake.heightsByEndpointsArgsForCall)
}
func (fake *ChannelPuller) HeightsByEndpointsCalls(stub func() (map[string]uint64, error)) {
fake.heightsByEndpointsMutex.Lock()
defer fake.heightsByEndpointsMutex.Unlock()
fake.HeightsByEndpointsStub = stub
}
func (fake *ChannelPuller) HeightsByEndpointsReturns(result1 map[string]uint64, result2 error) {
fake.heightsByEndpointsMutex.Lock()
defer fake.heightsByEndpointsMutex.Unlock()
fake.HeightsByEndpointsStub = nil
fake.heightsByEndpointsReturns = struct {
result1 map[string]uint64
result2 error
}{result1, result2}
}
func (fake *ChannelPuller) HeightsByEndpointsReturnsOnCall(i int, result1 map[string]uint64, result2 error) {
fake.heightsByEndpointsMutex.Lock()
defer fake.heightsByEndpointsMutex.Unlock()
fake.HeightsByEndpointsStub = nil
if fake.heightsByEndpointsReturnsOnCall == nil {
fake.heightsByEndpointsReturnsOnCall = make(map[int]struct {
result1 map[string]uint64
result2 error
})
}
fake.heightsByEndpointsReturnsOnCall[i] = struct {
result1 map[string]uint64
result2 error
}{result1, result2}
}
func (fake *ChannelPuller) PullBlock(arg1 uint64) *common.Block {
fake.pullBlockMutex.Lock()
ret, specificReturn := fake.pullBlockReturnsOnCall[len(fake.pullBlockArgsForCall)]
fake.pullBlockArgsForCall = append(fake.pullBlockArgsForCall, struct {
arg1 uint64
}{arg1})
stub := fake.PullBlockStub
fakeReturns := fake.pullBlockReturns
fake.recordInvocation("PullBlock", []interface{}{arg1})
fake.pullBlockMutex.Unlock()
if stub != nil {
return stub(arg1)
}
if specificReturn {
return ret.result1
}
return fakeReturns.result1
}
func (fake *ChannelPuller) PullBlockCallCount() int {
fake.pullBlockMutex.RLock()
defer fake.pullBlockMutex.RUnlock()
return len(fake.pullBlockArgsForCall)
}
func (fake *ChannelPuller) PullBlockCalls(stub func(uint64) *common.Block) {
fake.pullBlockMutex.Lock()
defer fake.pullBlockMutex.Unlock()
fake.PullBlockStub = stub
}
func (fake *ChannelPuller) PullBlockArgsForCall(i int) uint64 {
fake.pullBlockMutex.RLock()
defer fake.pullBlockMutex.RUnlock()
argsForCall := fake.pullBlockArgsForCall[i]
return argsForCall.arg1
}
func (fake *ChannelPuller) PullBlockReturns(result1 *common.Block) {
fake.pullBlockMutex.Lock()
defer fake.pullBlockMutex.Unlock()
fake.PullBlockStub = nil
fake.pullBlockReturns = struct {
result1 *common.Block
}{result1}
}
func (fake *ChannelPuller) PullBlockReturnsOnCall(i int, result1 *common.Block) {
fake.pullBlockMutex.Lock()
defer fake.pullBlockMutex.Unlock()
fake.PullBlockStub = nil
if fake.pullBlockReturnsOnCall == nil {
fake.pullBlockReturnsOnCall = make(map[int]struct {
result1 *common.Block
})
}
fake.pullBlockReturnsOnCall[i] = struct {
result1 *common.Block
}{result1}
}
func (fake *ChannelPuller) UpdateEndpoints(arg1 []cluster.EndpointCriteria) {
var arg1Copy []cluster.EndpointCriteria
if arg1 != nil {
arg1Copy = make([]cluster.EndpointCriteria, len(arg1))
copy(arg1Copy, arg1)
}
fake.updateEndpointsMutex.Lock()
fake.updateEndpointsArgsForCall = append(fake.updateEndpointsArgsForCall, struct {
arg1 []cluster.EndpointCriteria
}{arg1Copy})
stub := fake.UpdateEndpointsStub
fake.recordInvocation("UpdateEndpoints", []interface{}{arg1Copy})
fake.updateEndpointsMutex.Unlock()
if stub != nil {
fake.UpdateEndpointsStub(arg1)
}
}
func (fake *ChannelPuller) UpdateEndpointsCallCount() int {
fake.updateEndpointsMutex.RLock()
defer fake.updateEndpointsMutex.RUnlock()
return len(fake.updateEndpointsArgsForCall)
}
func (fake *ChannelPuller) UpdateEndpointsCalls(stub func([]cluster.EndpointCriteria)) {
fake.updateEndpointsMutex.Lock()
defer fake.updateEndpointsMutex.Unlock()
fake.UpdateEndpointsStub = stub
}
func (fake *ChannelPuller) UpdateEndpointsArgsForCall(i int) []cluster.EndpointCriteria {
fake.updateEndpointsMutex.RLock()
defer fake.updateEndpointsMutex.RUnlock()
argsForCall := fake.updateEndpointsArgsForCall[i]
return argsForCall.arg1
}
func (fake *ChannelPuller) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.closeMutex.RLock()
defer fake.closeMutex.RUnlock()
fake.heightsByEndpointsMutex.RLock()
defer fake.heightsByEndpointsMutex.RUnlock()
fake.pullBlockMutex.RLock()
defer fake.pullBlockMutex.RUnlock()
fake.updateEndpointsMutex.RLock()
defer fake.updateEndpointsMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *ChannelPuller) 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 _ follower.ChannelPuller = new(ChannelPuller)