-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
tms_tx_processor.go
107 lines (96 loc) · 3.28 KB
/
tms_tx_processor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
// 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)