forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
marshaler.go
111 lines (100 loc) · 3.73 KB
/
marshaler.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
108
109
110
111
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/protos/token"
"github.com/hyperledger/fabric/token/server"
)
type Marshaler struct {
MarshalCommandResponseStub func(command []byte, responsePayload interface{}) (*token.SignedCommandResponse, error)
marshalCommandResponseMutex sync.RWMutex
marshalCommandResponseArgsForCall []struct {
command []byte
responsePayload interface{}
}
marshalCommandResponseReturns struct {
result1 *token.SignedCommandResponse
result2 error
}
marshalCommandResponseReturnsOnCall map[int]struct {
result1 *token.SignedCommandResponse
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Marshaler) MarshalCommandResponse(command []byte, responsePayload interface{}) (*token.SignedCommandResponse, error) {
var commandCopy []byte
if command != nil {
commandCopy = make([]byte, len(command))
copy(commandCopy, command)
}
fake.marshalCommandResponseMutex.Lock()
ret, specificReturn := fake.marshalCommandResponseReturnsOnCall[len(fake.marshalCommandResponseArgsForCall)]
fake.marshalCommandResponseArgsForCall = append(fake.marshalCommandResponseArgsForCall, struct {
command []byte
responsePayload interface{}
}{commandCopy, responsePayload})
fake.recordInvocation("MarshalCommandResponse", []interface{}{commandCopy, responsePayload})
fake.marshalCommandResponseMutex.Unlock()
if fake.MarshalCommandResponseStub != nil {
return fake.MarshalCommandResponseStub(command, responsePayload)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.marshalCommandResponseReturns.result1, fake.marshalCommandResponseReturns.result2
}
func (fake *Marshaler) MarshalCommandResponseCallCount() int {
fake.marshalCommandResponseMutex.RLock()
defer fake.marshalCommandResponseMutex.RUnlock()
return len(fake.marshalCommandResponseArgsForCall)
}
func (fake *Marshaler) MarshalCommandResponseArgsForCall(i int) ([]byte, interface{}) {
fake.marshalCommandResponseMutex.RLock()
defer fake.marshalCommandResponseMutex.RUnlock()
return fake.marshalCommandResponseArgsForCall[i].command, fake.marshalCommandResponseArgsForCall[i].responsePayload
}
func (fake *Marshaler) MarshalCommandResponseReturns(result1 *token.SignedCommandResponse, result2 error) {
fake.MarshalCommandResponseStub = nil
fake.marshalCommandResponseReturns = struct {
result1 *token.SignedCommandResponse
result2 error
}{result1, result2}
}
func (fake *Marshaler) MarshalCommandResponseReturnsOnCall(i int, result1 *token.SignedCommandResponse, result2 error) {
fake.MarshalCommandResponseStub = nil
if fake.marshalCommandResponseReturnsOnCall == nil {
fake.marshalCommandResponseReturnsOnCall = make(map[int]struct {
result1 *token.SignedCommandResponse
result2 error
})
}
fake.marshalCommandResponseReturnsOnCall[i] = struct {
result1 *token.SignedCommandResponse
result2 error
}{result1, result2}
}
func (fake *Marshaler) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.marshalCommandResponseMutex.RLock()
defer fake.marshalCommandResponseMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Marshaler) 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 _ server.Marshaler = new(Marshaler)