-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecho_service.go
165 lines (150 loc) · 4.56 KB
/
echo_service.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// Code generated by counterfeiter. DO NOT EDIT.
package fakes
import (
"sync"
"github.com/hyperledger/fabric/common/grpcmetrics/testpb"
"golang.org/x/net/context"
)
type EchoServiceServer struct {
EchoStub func(context.Context, *testpb.Message) (*testpb.Message, error)
echoMutex sync.RWMutex
echoArgsForCall []struct {
arg1 context.Context
arg2 *testpb.Message
}
echoReturns struct {
result1 *testpb.Message
result2 error
}
echoReturnsOnCall map[int]struct {
result1 *testpb.Message
result2 error
}
EchoStreamStub func(testpb.EchoService_EchoStreamServer) error
echoStreamMutex sync.RWMutex
echoStreamArgsForCall []struct {
arg1 testpb.EchoService_EchoStreamServer
}
echoStreamReturns struct {
result1 error
}
echoStreamReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *EchoServiceServer) Echo(arg1 context.Context, arg2 *testpb.Message) (*testpb.Message, error) {
fake.echoMutex.Lock()
ret, specificReturn := fake.echoReturnsOnCall[len(fake.echoArgsForCall)]
fake.echoArgsForCall = append(fake.echoArgsForCall, struct {
arg1 context.Context
arg2 *testpb.Message
}{arg1, arg2})
fake.recordInvocation("Echo", []interface{}{arg1, arg2})
fake.echoMutex.Unlock()
if fake.EchoStub != nil {
return fake.EchoStub(arg1, arg2)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.echoReturns.result1, fake.echoReturns.result2
}
func (fake *EchoServiceServer) EchoCallCount() int {
fake.echoMutex.RLock()
defer fake.echoMutex.RUnlock()
return len(fake.echoArgsForCall)
}
func (fake *EchoServiceServer) EchoArgsForCall(i int) (context.Context, *testpb.Message) {
fake.echoMutex.RLock()
defer fake.echoMutex.RUnlock()
return fake.echoArgsForCall[i].arg1, fake.echoArgsForCall[i].arg2
}
func (fake *EchoServiceServer) EchoReturns(result1 *testpb.Message, result2 error) {
fake.EchoStub = nil
fake.echoReturns = struct {
result1 *testpb.Message
result2 error
}{result1, result2}
}
func (fake *EchoServiceServer) EchoReturnsOnCall(i int, result1 *testpb.Message, result2 error) {
fake.EchoStub = nil
if fake.echoReturnsOnCall == nil {
fake.echoReturnsOnCall = make(map[int]struct {
result1 *testpb.Message
result2 error
})
}
fake.echoReturnsOnCall[i] = struct {
result1 *testpb.Message
result2 error
}{result1, result2}
}
func (fake *EchoServiceServer) EchoStream(arg1 testpb.EchoService_EchoStreamServer) error {
fake.echoStreamMutex.Lock()
ret, specificReturn := fake.echoStreamReturnsOnCall[len(fake.echoStreamArgsForCall)]
fake.echoStreamArgsForCall = append(fake.echoStreamArgsForCall, struct {
arg1 testpb.EchoService_EchoStreamServer
}{arg1})
fake.recordInvocation("EchoStream", []interface{}{arg1})
fake.echoStreamMutex.Unlock()
if fake.EchoStreamStub != nil {
return fake.EchoStreamStub(arg1)
}
if specificReturn {
return ret.result1
}
return fake.echoStreamReturns.result1
}
func (fake *EchoServiceServer) EchoStreamCallCount() int {
fake.echoStreamMutex.RLock()
defer fake.echoStreamMutex.RUnlock()
return len(fake.echoStreamArgsForCall)
}
func (fake *EchoServiceServer) EchoStreamArgsForCall(i int) testpb.EchoService_EchoStreamServer {
fake.echoStreamMutex.RLock()
defer fake.echoStreamMutex.RUnlock()
return fake.echoStreamArgsForCall[i].arg1
}
func (fake *EchoServiceServer) EchoStreamReturns(result1 error) {
fake.EchoStreamStub = nil
fake.echoStreamReturns = struct {
result1 error
}{result1}
}
func (fake *EchoServiceServer) EchoStreamReturnsOnCall(i int, result1 error) {
fake.EchoStreamStub = nil
if fake.echoStreamReturnsOnCall == nil {
fake.echoStreamReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.echoStreamReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *EchoServiceServer) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.echoMutex.RLock()
defer fake.echoMutex.RUnlock()
fake.echoStreamMutex.RLock()
defer fake.echoStreamMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *EchoServiceServer) 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)
}