This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnano_test.go
643 lines (560 loc) · 13.2 KB
/
nano_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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
package nano
import (
"context"
"errors"
"fmt"
"strings"
"sync"
"testing"
"time"
)
// testSvc implements the Service interface.
type testSvc struct {
name string
handler func(c *Ctx, req interface{}) (interface{}, error)
}
func (p *testSvc) Name() string {
return p.name
}
func (p *testSvc) Handle(c *Ctx, req interface{}) (interface{}, error) {
return p.handler(c, req)
}
// testSvcInit implements the ServiceInit interface.
type testSvcInit func(cs ClientSet) error
func (f testSvcInit) Init(cs ClientSet) error {
return f(cs)
}
// testSvcInitFinished implements the ServiceInitFinished interface.
type testSvcInitFinished func() error
func (f testSvcInitFinished) InitFinished() error {
return f()
}
// testListener implements the Listener interface.
type testListener struct {
init func(ServiceSet) error
listen func() error
}
func (p *testListener) Init(ss ServiceSet) error {
if p.init == nil {
return nil
}
return p.init(ss)
}
func (p *testListener) Listen() error {
if p.listen == nil {
return nil
}
return p.listen()
}
// eventSetEquals check if the events and want arrays contain the same set of
// strings ignoring the ordering.
func eventSetEquals(t *testing.T, events []string, want ...string) bool {
if len(events) != len(want) {
t.Errorf("event sets differ: events=%v, want=%v", events, want)
return false
}
eventSet := make(map[string]struct{}, len(events))
for _, e := range events {
eventSet[e] = struct{}{}
}
for _, e := range want {
if _, ok := eventSet[e]; !ok {
t.Errorf("event sets differ: events=%v, want=%v", events, want)
return false
}
}
return true
}
// eventSetContains check if the specified subset is contained by the events array.
func eventSetContains(t *testing.T, events []string, subset ...string) bool {
if len(events) < len(subset) {
t.Errorf("event set doesn't contain subset: events=%v, subset=%v", events, subset)
return false
}
eventSet := make(map[string]struct{}, len(events))
for _, e := range events {
eventSet[e] = struct{}{}
}
for _, e := range subset {
if _, ok := eventSet[e]; !ok {
t.Errorf("event set doesn't contain subset: events=%v, subset=%v", events, subset)
return false
}
}
return true
}
func TestNewServiceSet(t *testing.T) {
var events []string
evt := func(e string) {
events = append(events, e)
}
handler := func(c *Ctx, req interface{}) (interface{}, error) {
evt("Handler:" + c.Svc.Name())
return nil, nil
}
svc1 := &testSvc{
name: "svc1",
handler: handler,
}
svc2 := &struct {
testSvc
testSvcInit
}{
testSvc: testSvc{
name: "svc2",
handler: handler,
},
testSvcInit: func(cs ClientSet) error {
evt("Init:svc2")
return nil
},
}
svc3 := &struct {
testSvc
testSvcInitFinished
}{
testSvc: testSvc{
name: "svc3",
handler: handler,
},
testSvcInitFinished: func() error {
evt("InitFinished:svc3")
return nil
},
}
svc4 := &struct {
testSvc
testSvcInit
testSvcInitFinished
}{
testSvc: testSvc{
name: "svc4",
handler: handler,
},
testSvcInit: func(cs ClientSet) error {
evt("Init:svc4")
return nil
},
testSvcInitFinished: func() error {
evt("InitFinished:svc4")
return nil
},
}
// create and initialise the service set
_ = NewServiceSet(svc2, svc4, svc1, svc3)
if v, want := len(events), 4; v != want {
t.Errorf("number of events is %v, want %v - events: %v", v, want, events)
}
eventSetEquals(t, events[0:2], "Init:svc2", "Init:svc4")
eventSetEquals(t, events[2:4], "InitFinished:svc3", "InitFinished:svc4")
}
func TestNewServiceSet_Initialisation_Calls_NewClientSet(t *testing.T) {
var events []string
origNewClientSet := NewClientSet
defer func() {
NewClientSet = origNewClientSet
}()
NewClientSet = func(ss ServiceSet, ownerName string) ClientSet {
events = append(events, ownerName)
return origNewClientSet(ss, ownerName)
}
handler := func(c *Ctx, req interface{}) (interface{}, error) {
return nil, nil
}
init := func(cs ClientSet) error {
return nil
}
svc1 := &struct {
testSvc
testSvcInit
}{
testSvc: testSvc{
name: "svc1",
handler: handler,
},
testSvcInit: init,
}
svc2 := &struct {
testSvc
testSvcInit
}{
testSvc: testSvc{
name: "svc2",
handler: handler,
},
testSvcInit: init,
}
_ = NewServiceSet(svc2, svc1)
// Calling NewServiceSet should involve at least two calls to NewClientSet
// for the svc1 and svc2 services.
eventSetContains(t, events, "svc1", "svc2")
}
func TestClientSet_LookupClient_Calls_NewClient(t *testing.T) {
var svcs []Service
var owners []string
origNewClient := NewClient
defer func() {
NewClient = origNewClient
}()
NewClient = func(svc Service, ownerName string) Client {
svcs = append(svcs, svc)
owners = append(owners, ownerName)
return origNewClient(svc, ownerName)
}
svc1 := &testSvc{
name: "svc1",
}
ss := NewServiceSet(svc1)
cs := NewClientSet(ss, "test")
lenBeforeLookup := len(svcs)
_ = cs.LookupClient("svc1")
found := false
for i := lenBeforeLookup; i < len(svcs); i++ {
if svcs[i] == svc1 && owners[i] == "test" {
found = true
break
}
}
if !found {
t.Error("ClientSet.LookupClient didn't call NewClient")
}
}
func TestServiceSet_LookupService(t *testing.T) {
svc1 := &testSvc{
name: "svc1",
}
svc2 := &testSvc{
name: "svc2",
}
ss := NewServiceSet(svc1, svc2)
_, err := ss.LookupService("svc1")
if err != nil {
t.Errorf("error looking up svc1 :: %v", err)
}
_, err = ss.LookupService("svc2")
if err != nil {
t.Errorf("error looking up svc2 :: %v", err)
}
_, err = ss.LookupService("svc3")
if err == nil {
t.Error("unexpected success while looking up svc3")
}
}
func TestClient_Request_Nil_Ctx(t *testing.T) {
const ownerName = "test"
called := false
var ctx *Ctx
svc1 := &testSvc{
name: "svc1",
handler: func(c *Ctx, req interface{}) (interface{}, error) {
called = true
ctx = c
return nil, nil
},
}
ss := NewServiceSet(svc1)
cs := NewClientSet(ss, ownerName)
client := cs.LookupClient("svc1")
_, _ = client.Request(nil, nil)
if !called {
t.Error("client wasn't called")
t.FailNow()
}
if ctx == nil {
t.Error("ctx is nil")
t.FailNow()
}
if len(ctx.ReqID) != GeneratedReqIDBytesLen*2 {
t.Errorf("len(ctx.ReqID) == %v, want %v", len(ctx.ReqID), GeneratedReqIDBytesLen*2)
}
if ctx.Context == nil {
t.Error("ctx.Context is nil")
}
if ctx.Svc != svc1 {
t.Error("ctx.Svc isn't set correctly")
}
if ctx.ClientName != ownerName {
t.Errorf("ctx.ClientName == %q, want %q", ctx.ClientName, ownerName)
}
}
func TestClient_Request_Empty_Ctx(t *testing.T) {
const ownerName = "test"
called := false
var ctx *Ctx
svc1 := &testSvc{
name: "svc1",
handler: func(c *Ctx, req interface{}) (interface{}, error) {
called = true
ctx = c
return nil, nil
},
}
ss := NewServiceSet(svc1)
cs := NewClientSet(ss, ownerName)
client := cs.LookupClient("svc1")
_, _ = client.Request(&Ctx{}, nil)
if !called {
t.Error("client wasn't called")
t.FailNow()
}
if ctx == nil {
t.Error("ctx is nil")
t.FailNow()
}
if len(ctx.ReqID) != GeneratedReqIDBytesLen*2 {
t.Errorf("len(ctx.ReqID) == %v, want %v", len(ctx.ReqID), GeneratedReqIDBytesLen*2)
}
if ctx.Context == nil {
t.Error("ctx.Context is nil")
}
if ctx.Svc != svc1 {
t.Error("ctx.Svc isn't set correctly")
}
if ctx.ClientName != ownerName {
t.Errorf("ctx.ClientName == %q, want %q", ctx.ClientName, ownerName)
}
}
func TestClient_Request_With_Ctx(t *testing.T) {
const ownerName = "test"
called := false
var ctx *Ctx
svc1 := &testSvc{
name: "svc1",
handler: func(c *Ctx, req interface{}) (interface{}, error) {
called = true
ctx = c
return nil, nil
},
}
ss := NewServiceSet(svc1)
cs := NewClientSet(ss, ownerName)
client := cs.LookupClient("svc1")
myContext := context.Background()
const reqID = "MyReqID"
inputCtx := &Ctx{
ReqID: reqID,
Context: myContext,
Svc: &testSvc{name: "ignored"},
ClientName: "ignored",
}
_, _ = client.Request(inputCtx, nil)
if !called {
t.Error("client wasn't called")
t.FailNow()
}
if ctx == nil {
t.Error("ctx is nil")
t.FailNow()
}
if ctx.ReqID != reqID {
t.Errorf("ctx.ReqID == %q, want %q", ctx.ReqID, reqID)
}
if ctx.Context == nil {
t.Error("ctx.Context is nil")
} else if ctx.Context == myContext {
t.Error("ctx.Context shouldn't be the same as myContext")
}
if ctx.Svc != svc1 {
t.Error("ctx.Svc isn't set correctly")
}
if ctx.ClientName != ownerName {
t.Errorf("ctx.ClientName == %q, want %q", ctx.ClientName, ownerName)
}
}
func testNewReqID(t *testing.T, generatedReqIDBytesLen int) {
origLen := GeneratedReqIDBytesLen
defer func() {
GeneratedReqIDBytesLen = origLen
}()
GeneratedReqIDBytesLen = generatedReqIDBytesLen
reqID, err := NewReqID()
if err != nil {
t.Errorf("NewReqID failed :: %v", err)
t.FailNow()
}
if len(reqID) != GeneratedReqIDBytesLen*2 {
t.Errorf("len(reqID) == %v, want %v", len(reqID), GeneratedReqIDBytesLen*2)
}
}
func TestNewReqID(t *testing.T) {
testNewReqID(t, GeneratedReqIDBytesLen)
}
func TestNewReqID_With_Custom_GeneratedReqIDBytesLen(t *testing.T) {
testNewReqID(t, 5)
}
func isContextCanceled(c context.Context) bool {
select {
case <-c.Done():
return true
default:
return false
}
}
const waitAttempts = 100
const waitDuration = time.Millisecond * 1
func waitForCancel(t *testing.T, c context.Context) bool {
for i := 0; i < waitAttempts; i++ {
if isContextCanceled(c) {
return true
}
time.Sleep(waitDuration)
}
return false
}
func TestNewContext_Nil_Parent(t *testing.T) {
c, origCancel := NewContext(nil)
cancel := func() {
if origCancel != nil {
origCancel()
origCancel = nil
}
}
defer cancel()
if isContextCanceled(c) {
t.Error("context is canceled right after creation")
}
cancel()
if !waitForCancel(t, c) {
t.Error("context isn't canceled after canceling it")
}
}
func TestNewContext_With_Parent(t *testing.T) {
parentContext, parentCancel := context.WithCancel(context.Background())
defer parentCancel()
c, origCancel := NewContext(parentContext)
cancel := func() {
if origCancel != nil {
origCancel()
origCancel = nil
}
}
defer cancel()
if isContextCanceled(c) {
t.Error("context is canceled right after creation")
}
cancel()
if !waitForCancel(t, c) {
t.Error("context isn't canceled after canceling it")
}
if isContextCanceled(parentContext) {
t.Error("parent is canceled")
}
}
func TestNewContext_With_Parent_Cancel(t *testing.T) {
parentContext, parentCancel := context.WithCancel(context.Background())
defer parentCancel()
c, cancel := NewContext(parentContext)
defer cancel()
if isContextCanceled(c) {
t.Error("context is canceled right after creation")
}
parentCancel()
if !waitForCancel(t, c) {
t.Error("context isn't canceled after canceling it")
}
if !waitForCancel(t, parentContext) {
t.Error("parent isn't canceled")
}
}
func TestRunServer(t *testing.T) {
var events []string
var mu sync.Mutex
evt := func(e string) {
// Synchronization is needed because the Listen() method of Listeners
// is called on separate goroutines.
mu.Lock()
defer mu.Unlock()
events = append(events, e)
}
onError := func(l Listener, err error) {
t.Errorf("listener %p failed :: %v", l, err)
}
ss := NewServiceSet(&testSvc{
name: "svc1",
})
listener1 := &testListener{
init: func(s ServiceSet) error {
if _, err := s.LookupService("svc1"); err != nil {
t.Error("error looking up svc1")
}
evt("Init:listener1")
return nil
},
listen: func() error {
evt("Listen:listener1")
return nil
},
}
listener2 := &testListener{
init: func(s ServiceSet) error {
if _, err := s.LookupService("svc1"); err != nil {
t.Error("error looking up svc1")
}
evt("Init:listener2")
return nil
},
listen: func() error {
evt("Listen:listener2")
return nil
},
}
runServer(onError, ss, listener2, listener1)
if v, want := len(events), 4; v != want {
t.Errorf("number of events is %v, want %v - events: %v", v, want, events)
}
eventSetEquals(t, events[0:2], "Init:listener1", "Init:listener2")
eventSetEquals(t, events[2:4], "Listen:listener1", "Listen:listener2")
}
func TestRunServer_Listener_Init_Error(t *testing.T) {
onError := func(l Listener, err error) {
t.Errorf("listener %p failed :: %v", l, err)
}
ss := NewServiceSet(&testSvc{
name: "svc1",
})
e := errors.New("listener init error")
called := false
listener := &testListener{
init: func(s ServiceSet) error {
called = true
return e
},
}
defer func() {
if !called {
t.Error("listener init wasn't called")
}
v := recover()
if v == nil {
t.Error("haven't received the expected panic")
} else {
s := fmt.Sprintf("%v", v)
if !strings.Contains(s, e.Error()) {
t.Error("panic message doesn't contain the error message")
}
}
}()
runServer(onError, ss, listener)
}
func TestRunServer_Listen_Error(t *testing.T) {
e := errors.New("listen error")
called := false
onError := func(l Listener, err error) {
called = true
if err != e {
t.Errorf("listener %p failed with unexpected error :: %v", l, err)
}
}
ss := NewServiceSet(&testSvc{
name: "svc1",
})
listener := &testListener{
listen: func() error {
return e
},
}
runServer(onError, ss, listener)
if !called {
t.Error("onError wasn't called")
}
}