119 lines
3.4 KiB
Go
119 lines
3.4 KiB
Go
// Code generated by counterfeiter. DO NOT EDIT.
|
|
package mock
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/hyperledger/fabric-protos-go/peer"
|
|
"github.com/hyperledger/fabric/core/common/ccprovider"
|
|
)
|
|
|
|
type Invoker struct {
|
|
InvokeStub func(*ccprovider.TransactionParams, string, *peer.ChaincodeInput) (*peer.ChaincodeMessage, error)
|
|
invokeMutex sync.RWMutex
|
|
invokeArgsForCall []struct {
|
|
arg1 *ccprovider.TransactionParams
|
|
arg2 string
|
|
arg3 *peer.ChaincodeInput
|
|
}
|
|
invokeReturns struct {
|
|
result1 *peer.ChaincodeMessage
|
|
result2 error
|
|
}
|
|
invokeReturnsOnCall map[int]struct {
|
|
result1 *peer.ChaincodeMessage
|
|
result2 error
|
|
}
|
|
invocations map[string][][]interface{}
|
|
invocationsMutex sync.RWMutex
|
|
}
|
|
|
|
func (fake *Invoker) Invoke(arg1 *ccprovider.TransactionParams, arg2 string, arg3 *peer.ChaincodeInput) (*peer.ChaincodeMessage, error) {
|
|
fake.invokeMutex.Lock()
|
|
ret, specificReturn := fake.invokeReturnsOnCall[len(fake.invokeArgsForCall)]
|
|
fake.invokeArgsForCall = append(fake.invokeArgsForCall, struct {
|
|
arg1 *ccprovider.TransactionParams
|
|
arg2 string
|
|
arg3 *peer.ChaincodeInput
|
|
}{arg1, arg2, arg3})
|
|
fake.recordInvocation("Invoke", []interface{}{arg1, arg2, arg3})
|
|
fake.invokeMutex.Unlock()
|
|
if fake.InvokeStub != nil {
|
|
return fake.InvokeStub(arg1, arg2, arg3)
|
|
}
|
|
if specificReturn {
|
|
return ret.result1, ret.result2
|
|
}
|
|
fakeReturns := fake.invokeReturns
|
|
return fakeReturns.result1, fakeReturns.result2
|
|
}
|
|
|
|
func (fake *Invoker) InvokeCallCount() int {
|
|
fake.invokeMutex.RLock()
|
|
defer fake.invokeMutex.RUnlock()
|
|
return len(fake.invokeArgsForCall)
|
|
}
|
|
|
|
func (fake *Invoker) InvokeCalls(stub func(*ccprovider.TransactionParams, string, *peer.ChaincodeInput) (*peer.ChaincodeMessage, error)) {
|
|
fake.invokeMutex.Lock()
|
|
defer fake.invokeMutex.Unlock()
|
|
fake.InvokeStub = stub
|
|
}
|
|
|
|
func (fake *Invoker) InvokeArgsForCall(i int) (*ccprovider.TransactionParams, string, *peer.ChaincodeInput) {
|
|
fake.invokeMutex.RLock()
|
|
defer fake.invokeMutex.RUnlock()
|
|
argsForCall := fake.invokeArgsForCall[i]
|
|
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3
|
|
}
|
|
|
|
func (fake *Invoker) InvokeReturns(result1 *peer.ChaincodeMessage, result2 error) {
|
|
fake.invokeMutex.Lock()
|
|
defer fake.invokeMutex.Unlock()
|
|
fake.InvokeStub = nil
|
|
fake.invokeReturns = struct {
|
|
result1 *peer.ChaincodeMessage
|
|
result2 error
|
|
}{result1, result2}
|
|
}
|
|
|
|
func (fake *Invoker) InvokeReturnsOnCall(i int, result1 *peer.ChaincodeMessage, result2 error) {
|
|
fake.invokeMutex.Lock()
|
|
defer fake.invokeMutex.Unlock()
|
|
fake.InvokeStub = nil
|
|
if fake.invokeReturnsOnCall == nil {
|
|
fake.invokeReturnsOnCall = make(map[int]struct {
|
|
result1 *peer.ChaincodeMessage
|
|
result2 error
|
|
})
|
|
}
|
|
fake.invokeReturnsOnCall[i] = struct {
|
|
result1 *peer.ChaincodeMessage
|
|
result2 error
|
|
}{result1, result2}
|
|
}
|
|
|
|
func (fake *Invoker) Invocations() map[string][][]interface{} {
|
|
fake.invocationsMutex.RLock()
|
|
defer fake.invocationsMutex.RUnlock()
|
|
fake.invokeMutex.RLock()
|
|
defer fake.invokeMutex.RUnlock()
|
|
copiedInvocations := map[string][][]interface{}{}
|
|
for key, value := range fake.invocations {
|
|
copiedInvocations[key] = value
|
|
}
|
|
return copiedInvocations
|
|
}
|
|
|
|
func (fake *Invoker) 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)
|
|
}
|