1 Star 0 Fork 0

妥協/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tms_tx_processor.go 3.28 KB
一键复制 编辑 原始数据 按行查看 历史
Angelo De Caro 提交于 2018-09-24 15:44 . [FAB-12155] IssuerValidator Impl
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/protos/token"
"github.com/hyperledger/fabric/token/identity"
"github.com/hyperledger/fabric/token/ledger"
"github.com/hyperledger/fabric/token/transaction"
)
type TMSTxProcessor struct {
ProcessTxStub func(txID string, creator identity.PublicInfo, ttx *token.TokenTransaction, simulator ledger.LedgerWriter) error
processTxMutex sync.RWMutex
processTxArgsForCall []struct {
txID string
creator identity.PublicInfo
ttx *token.TokenTransaction
simulator ledger.LedgerWriter
}
processTxReturns struct {
result1 error
}
processTxReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *TMSTxProcessor) ProcessTx(txID string, creator identity.PublicInfo, ttx *token.TokenTransaction, simulator ledger.LedgerWriter) error {
fake.processTxMutex.Lock()
ret, specificReturn := fake.processTxReturnsOnCall[len(fake.processTxArgsForCall)]
fake.processTxArgsForCall = append(fake.processTxArgsForCall, struct {
txID string
creator identity.PublicInfo
ttx *token.TokenTransaction
simulator ledger.LedgerWriter
}{txID, creator, ttx, simulator})
fake.recordInvocation("ProcessTx", []interface{}{txID, creator, ttx, simulator})
fake.processTxMutex.Unlock()
if fake.ProcessTxStub != nil {
return fake.ProcessTxStub(txID, creator, ttx, simulator)
}
if specificReturn {
return ret.result1
}
return fake.processTxReturns.result1
}
func (fake *TMSTxProcessor) ProcessTxCallCount() int {
fake.processTxMutex.RLock()
defer fake.processTxMutex.RUnlock()
return len(fake.processTxArgsForCall)
}
func (fake *TMSTxProcessor) ProcessTxArgsForCall(i int) (string, identity.PublicInfo, *token.TokenTransaction, ledger.LedgerWriter) {
fake.processTxMutex.RLock()
defer fake.processTxMutex.RUnlock()
return fake.processTxArgsForCall[i].txID, fake.processTxArgsForCall[i].creator, fake.processTxArgsForCall[i].ttx, fake.processTxArgsForCall[i].simulator
}
func (fake *TMSTxProcessor) ProcessTxReturns(result1 error) {
fake.ProcessTxStub = nil
fake.processTxReturns = struct {
result1 error
}{result1}
}
func (fake *TMSTxProcessor) ProcessTxReturnsOnCall(i int, result1 error) {
fake.ProcessTxStub = nil
if fake.processTxReturnsOnCall == nil {
fake.processTxReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.processTxReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *TMSTxProcessor) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.processTxMutex.RLock()
defer fake.processTxMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *TMSTxProcessor) 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 _ transaction.TMSTxProcessor = new(TMSTxProcessor)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v1.4.8

搜索帮助