-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats_handler_mock_test.go
490 lines (425 loc) · 15.3 KB
/
stats_handler_mock_test.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
// Code generated by github.com/efritz/go-mockgen 0.1.0; DO NOT EDIT.
// This file was generated by robots at
// 2019-06-24T19:52:05-05:00
// using the command
// $ go-mockgen -f google.golang.org/grpc/stats -i Handler -o stats_handler_mock_test.go
package grpcbase
import (
"context"
stats "google.golang.org/grpc/stats"
"sync"
)
// MockHandler is a mock implementation of the Handler interface (from the
// package google.golang.org/grpc/stats) used for unit testing.
type MockHandler struct {
// HandleConnFunc is an instance of a mock function object controlling
// the behavior of the method HandleConn.
HandleConnFunc *HandlerHandleConnFunc
// HandleRPCFunc is an instance of a mock function object controlling
// the behavior of the method HandleRPC.
HandleRPCFunc *HandlerHandleRPCFunc
// TagConnFunc is an instance of a mock function object controlling the
// behavior of the method TagConn.
TagConnFunc *HandlerTagConnFunc
// TagRPCFunc is an instance of a mock function object controlling the
// behavior of the method TagRPC.
TagRPCFunc *HandlerTagRPCFunc
}
// NewMockHandler creates a new mock of the Handler interface. All methods
// return zero values for all results, unless overwritten.
func NewMockHandler() *MockHandler {
return &MockHandler{
HandleConnFunc: &HandlerHandleConnFunc{
defaultHook: func(context.Context, stats.ConnStats) {
return
},
},
HandleRPCFunc: &HandlerHandleRPCFunc{
defaultHook: func(context.Context, stats.RPCStats) {
return
},
},
TagConnFunc: &HandlerTagConnFunc{
defaultHook: func(context.Context, *stats.ConnTagInfo) context.Context {
return nil
},
},
TagRPCFunc: &HandlerTagRPCFunc{
defaultHook: func(context.Context, *stats.RPCTagInfo) context.Context {
return nil
},
},
}
}
// NewMockHandlerFrom creates a new mock of the MockHandler interface. All
// methods delegate to the given implementation, unless overwritten.
func NewMockHandlerFrom(i stats.Handler) *MockHandler {
return &MockHandler{
HandleConnFunc: &HandlerHandleConnFunc{
defaultHook: i.HandleConn,
},
HandleRPCFunc: &HandlerHandleRPCFunc{
defaultHook: i.HandleRPC,
},
TagConnFunc: &HandlerTagConnFunc{
defaultHook: i.TagConn,
},
TagRPCFunc: &HandlerTagRPCFunc{
defaultHook: i.TagRPC,
},
}
}
// HandlerHandleConnFunc describes the behavior when the HandleConn method
// of the parent MockHandler instance is invoked.
type HandlerHandleConnFunc struct {
defaultHook func(context.Context, stats.ConnStats)
hooks []func(context.Context, stats.ConnStats)
history []HandlerHandleConnFuncCall
mutex sync.Mutex
}
// HandleConn delegates to the next hook function in the queue and stores
// the parameter and result values of this invocation.
func (m *MockHandler) HandleConn(v0 context.Context, v1 stats.ConnStats) {
m.HandleConnFunc.nextHook()(v0, v1)
m.HandleConnFunc.appendCall(HandlerHandleConnFuncCall{v0, v1})
return
}
// SetDefaultHook sets function that is called when the HandleConn method of
// the parent MockHandler instance is invoked and the hook queue is empty.
func (f *HandlerHandleConnFunc) SetDefaultHook(hook func(context.Context, stats.ConnStats)) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// HandleConn method of the parent MockHandler instance invokes the hook at
// the front of the queue and discards it. After the queue is empty, the
// default hook function is invoked for any future action.
func (f *HandlerHandleConnFunc) PushHook(hook func(context.Context, stats.ConnStats)) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultDefaultHook with a function that returns
// the given values.
func (f *HandlerHandleConnFunc) SetDefaultReturn() {
f.SetDefaultHook(func(context.Context, stats.ConnStats) {
return
})
}
// PushReturn calls PushDefaultHook with a function that returns the given
// values.
func (f *HandlerHandleConnFunc) PushReturn() {
f.PushHook(func(context.Context, stats.ConnStats) {
return
})
}
func (f *HandlerHandleConnFunc) nextHook() func(context.Context, stats.ConnStats) {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *HandlerHandleConnFunc) appendCall(r0 HandlerHandleConnFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of HandlerHandleConnFuncCall objects
// describing the invocations of this function.
func (f *HandlerHandleConnFunc) History() []HandlerHandleConnFuncCall {
f.mutex.Lock()
history := make([]HandlerHandleConnFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// HandlerHandleConnFuncCall is an object that describes an invocation of
// method HandleConn on an instance of MockHandler.
type HandlerHandleConnFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Arg1 is the value of the 2nd argument passed to this method
// invocation.
Arg1 stats.ConnStats
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c HandlerHandleConnFuncCall) Args() []interface{} {
return []interface{}{c.Arg0, c.Arg1}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c HandlerHandleConnFuncCall) Results() []interface{} {
return []interface{}{}
}
// HandlerHandleRPCFunc describes the behavior when the HandleRPC method of
// the parent MockHandler instance is invoked.
type HandlerHandleRPCFunc struct {
defaultHook func(context.Context, stats.RPCStats)
hooks []func(context.Context, stats.RPCStats)
history []HandlerHandleRPCFuncCall
mutex sync.Mutex
}
// HandleRPC delegates to the next hook function in the queue and stores the
// parameter and result values of this invocation.
func (m *MockHandler) HandleRPC(v0 context.Context, v1 stats.RPCStats) {
m.HandleRPCFunc.nextHook()(v0, v1)
m.HandleRPCFunc.appendCall(HandlerHandleRPCFuncCall{v0, v1})
return
}
// SetDefaultHook sets function that is called when the HandleRPC method of
// the parent MockHandler instance is invoked and the hook queue is empty.
func (f *HandlerHandleRPCFunc) SetDefaultHook(hook func(context.Context, stats.RPCStats)) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// HandleRPC method of the parent MockHandler instance invokes the hook at
// the front of the queue and discards it. After the queue is empty, the
// default hook function is invoked for any future action.
func (f *HandlerHandleRPCFunc) PushHook(hook func(context.Context, stats.RPCStats)) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultDefaultHook with a function that returns
// the given values.
func (f *HandlerHandleRPCFunc) SetDefaultReturn() {
f.SetDefaultHook(func(context.Context, stats.RPCStats) {
return
})
}
// PushReturn calls PushDefaultHook with a function that returns the given
// values.
func (f *HandlerHandleRPCFunc) PushReturn() {
f.PushHook(func(context.Context, stats.RPCStats) {
return
})
}
func (f *HandlerHandleRPCFunc) nextHook() func(context.Context, stats.RPCStats) {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *HandlerHandleRPCFunc) appendCall(r0 HandlerHandleRPCFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of HandlerHandleRPCFuncCall objects describing
// the invocations of this function.
func (f *HandlerHandleRPCFunc) History() []HandlerHandleRPCFuncCall {
f.mutex.Lock()
history := make([]HandlerHandleRPCFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// HandlerHandleRPCFuncCall is an object that describes an invocation of
// method HandleRPC on an instance of MockHandler.
type HandlerHandleRPCFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Arg1 is the value of the 2nd argument passed to this method
// invocation.
Arg1 stats.RPCStats
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c HandlerHandleRPCFuncCall) Args() []interface{} {
return []interface{}{c.Arg0, c.Arg1}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c HandlerHandleRPCFuncCall) Results() []interface{} {
return []interface{}{}
}
// HandlerTagConnFunc describes the behavior when the TagConn method of the
// parent MockHandler instance is invoked.
type HandlerTagConnFunc struct {
defaultHook func(context.Context, *stats.ConnTagInfo) context.Context
hooks []func(context.Context, *stats.ConnTagInfo) context.Context
history []HandlerTagConnFuncCall
mutex sync.Mutex
}
// TagConn delegates to the next hook function in the queue and stores the
// parameter and result values of this invocation.
func (m *MockHandler) TagConn(v0 context.Context, v1 *stats.ConnTagInfo) context.Context {
r0 := m.TagConnFunc.nextHook()(v0, v1)
m.TagConnFunc.appendCall(HandlerTagConnFuncCall{v0, v1, r0})
return r0
}
// SetDefaultHook sets function that is called when the TagConn method of
// the parent MockHandler instance is invoked and the hook queue is empty.
func (f *HandlerTagConnFunc) SetDefaultHook(hook func(context.Context, *stats.ConnTagInfo) context.Context) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// TagConn method of the parent MockHandler instance invokes the hook at the
// front of the queue and discards it. After the queue is empty, the default
// hook function is invoked for any future action.
func (f *HandlerTagConnFunc) PushHook(hook func(context.Context, *stats.ConnTagInfo) context.Context) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultDefaultHook with a function that returns
// the given values.
func (f *HandlerTagConnFunc) SetDefaultReturn(r0 context.Context) {
f.SetDefaultHook(func(context.Context, *stats.ConnTagInfo) context.Context {
return r0
})
}
// PushReturn calls PushDefaultHook with a function that returns the given
// values.
func (f *HandlerTagConnFunc) PushReturn(r0 context.Context) {
f.PushHook(func(context.Context, *stats.ConnTagInfo) context.Context {
return r0
})
}
func (f *HandlerTagConnFunc) nextHook() func(context.Context, *stats.ConnTagInfo) context.Context {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *HandlerTagConnFunc) appendCall(r0 HandlerTagConnFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of HandlerTagConnFuncCall objects describing
// the invocations of this function.
func (f *HandlerTagConnFunc) History() []HandlerTagConnFuncCall {
f.mutex.Lock()
history := make([]HandlerTagConnFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// HandlerTagConnFuncCall is an object that describes an invocation of
// method TagConn on an instance of MockHandler.
type HandlerTagConnFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Arg1 is the value of the 2nd argument passed to this method
// invocation.
Arg1 *stats.ConnTagInfo
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 context.Context
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c HandlerTagConnFuncCall) Args() []interface{} {
return []interface{}{c.Arg0, c.Arg1}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c HandlerTagConnFuncCall) Results() []interface{} {
return []interface{}{c.Result0}
}
// HandlerTagRPCFunc describes the behavior when the TagRPC method of the
// parent MockHandler instance is invoked.
type HandlerTagRPCFunc struct {
defaultHook func(context.Context, *stats.RPCTagInfo) context.Context
hooks []func(context.Context, *stats.RPCTagInfo) context.Context
history []HandlerTagRPCFuncCall
mutex sync.Mutex
}
// TagRPC delegates to the next hook function in the queue and stores the
// parameter and result values of this invocation.
func (m *MockHandler) TagRPC(v0 context.Context, v1 *stats.RPCTagInfo) context.Context {
r0 := m.TagRPCFunc.nextHook()(v0, v1)
m.TagRPCFunc.appendCall(HandlerTagRPCFuncCall{v0, v1, r0})
return r0
}
// SetDefaultHook sets function that is called when the TagRPC method of the
// parent MockHandler instance is invoked and the hook queue is empty.
func (f *HandlerTagRPCFunc) SetDefaultHook(hook func(context.Context, *stats.RPCTagInfo) context.Context) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// TagRPC method of the parent MockHandler instance invokes the hook at the
// front of the queue and discards it. After the queue is empty, the default
// hook function is invoked for any future action.
func (f *HandlerTagRPCFunc) PushHook(hook func(context.Context, *stats.RPCTagInfo) context.Context) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultDefaultHook with a function that returns
// the given values.
func (f *HandlerTagRPCFunc) SetDefaultReturn(r0 context.Context) {
f.SetDefaultHook(func(context.Context, *stats.RPCTagInfo) context.Context {
return r0
})
}
// PushReturn calls PushDefaultHook with a function that returns the given
// values.
func (f *HandlerTagRPCFunc) PushReturn(r0 context.Context) {
f.PushHook(func(context.Context, *stats.RPCTagInfo) context.Context {
return r0
})
}
func (f *HandlerTagRPCFunc) nextHook() func(context.Context, *stats.RPCTagInfo) context.Context {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *HandlerTagRPCFunc) appendCall(r0 HandlerTagRPCFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of HandlerTagRPCFuncCall objects describing
// the invocations of this function.
func (f *HandlerTagRPCFunc) History() []HandlerTagRPCFuncCall {
f.mutex.Lock()
history := make([]HandlerTagRPCFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// HandlerTagRPCFuncCall is an object that describes an invocation of method
// TagRPC on an instance of MockHandler.
type HandlerTagRPCFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Arg1 is the value of the 2nd argument passed to this method
// invocation.
Arg1 *stats.RPCTagInfo
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 context.Context
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c HandlerTagRPCFuncCall) Args() []interface{} {
return []interface{}{c.Arg0, c.Arg1}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c HandlerTagRPCFuncCall) Results() []interface{} {
return []interface{}{c.Result0}
}