-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstable_interface_test.go
610 lines (528 loc) · 14.7 KB
/
stable_interface_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
package stableinterfaces
import (
"context"
"errors"
"fmt"
"testing"
"time"
)
var (
testError = errors.New("test error")
errUnknownInstruction = errors.New("test error")
)
const (
testInstructionReturnError = "err"
testInstructionReturnInternalID = "return internal id"
testInstructionDefault = "default response"
testMetaKey = "instruction"
testInstructionReject = "reject"
testInstructionAccept = "accept"
testInstructionClose = "close"
testInstructionDoAlarm = "alarm"
testInstructionShutdown = "shutdown"
testAlarmChannelKey = "alarmChan"
testAlarmRetry = "retry"
testAlarmRetryForever = "retry forever"
)
type (
TestInterface struct {
internalID string
conn *InterfaceConnection
}
)
func (ti *TestInterface) OnRequest(c InterfaceContext, payload any) (any, error) {
if s, ok := payload.(string); ok {
switch s {
case testInstructionReturnError:
return nil, testError
case testInstructionShutdown:
go c.Shutdown(c.Context)
return nil, nil
case testInstructionReturnInternalID:
return ti.internalID, nil
case testInstructionDoAlarm:
responseChan1 := make(chan any)
responseChan2 := make(chan any)
responseChan3 := make(chan any)
responseChan4 := make(chan any)
alarmID := genRandomID("")
err := c.SetAlarm(c.Context, alarmID+"_0", map[string]any{
testAlarmChannelKey: responseChan1,
}, time.Now().Add(time.Millisecond*300))
if err != nil {
return nil, fmt.Errorf("error in SetAlarm: %w", err)
}
// Ensure they are sequential by ID
err = c.SetAlarm(c.Context, alarmID+"_1", map[string]any{
testAlarmChannelKey: responseChan2,
}, time.Now().Add(time.Millisecond*300))
if err != nil {
return nil, fmt.Errorf("error in SetAlarm: %w", err)
}
// Queue another for retried
err = c.SetAlarm(c.Context, alarmID+"_2", map[string]any{
testAlarmRetry: true,
testAlarmChannelKey: responseChan3,
}, time.Now().Add(time.Millisecond*300))
if err != nil {
return nil, fmt.Errorf("error in SetAlarm: %w", err)
}
// Queue another for timeout
err = c.SetAlarm(c.Context, alarmID+"_3", map[string]any{
testAlarmRetryForever: true,
testAlarmChannelKey: responseChan4,
}, time.Now().Add(time.Millisecond*300))
if err != nil {
return nil, fmt.Errorf("error in SetAlarm: %w", err)
}
return []chan any{responseChan1, responseChan2, responseChan3, responseChan4}, nil
default:
return testInstructionDefault, nil
}
}
return nil, errUnknownInstruction
}
type TestInterfaceWithConnect struct {
TestInterface
}
func (ti *TestInterfaceWithConnect) OnConnect(c InterfaceContext, ic IncomingConnection) {
switch ic.Meta[testMetaKey] {
case testInstructionReject:
ic.Reject(testError)
case testInstructionAccept:
conn := ic.Accept()
conn.OnRecv = func(payload any) {
ctx, cancel := context.WithTimeout(context.Background(), time.Millisecond)
defer cancel()
fmt.Printf("Test interface %s (%s) received message: %+v\n", ic.instanceID, ic.ConnectionID, payload)
if s, ok := payload.(string); ok && s == testInstructionClose {
err := conn.Close()
if err != nil {
fmt.Printf("Test interface %s (%s) PANICKING on message: %+v\n", ic.instanceID, ic.ConnectionID, payload)
panic(err)
}
fmt.Printf("Test interface %s (%s) closed connection on message: %+v\n", ic.instanceID, ic.ConnectionID, payload)
// Try sending, this should error
if err := conn.Send(ctx, "blah"); !errors.Is(err, ErrConnectionClosed) {
panic(err)
}
return
}
err := conn.Send(ctx, "Thanks for the message!")
if errors.Is(err, ErrConnectionClosed) {
fmt.Printf("Test interface %s (%s) tried to send back but was closed on message: %+v (this is ok if it's the second message, that's just concurrency)\n", ic.instanceID, ic.ConnectionID, payload)
} else if err != nil {
fmt.Printf("Test interface %s (%s) PANICKING on message: %+v\n", ic.instanceID, conn.ID, payload)
panic(err)
}
if c, ok := payload.(chan any); ok {
// The test is waiting us to verify we got it
c <- nil
}
}
default:
// Do nothing by default
}
}
type TestInterfaceWithAlarm struct {
TestInterface
}
func (tia *TestInterfaceWithAlarm) OnAlarm(c InterfaceContextWithAttempt, alarmID string, alarmMeta map[string]any) error {
fmt.Printf("Test interface %s got alarm %s with attempt %d\n", tia.internalID, alarmID, c.Attempt)
if _, exists := alarmMeta[testAlarmRetryForever]; exists {
return testError
}
if _, exists := alarmMeta[testAlarmRetry]; exists {
if c.Attempt < 4 {
return testError
}
}
resChan := alarmMeta[testAlarmChannelKey].(chan any)
resChan <- nil
return nil
}
func TestRequest(t *testing.T) {
host := "host-0"
id := "wrgh9uierhguhrhgierhughe"
im, err := NewInterfaceManager(host, "host-{0..1}", 1024, func(internalID string) StableInterface {
return &TestInterface{
internalID: internalID,
}
})
if err != nil {
t.Fatal(err)
}
im2, err := NewInterfaceManager("host-1", "host-{0..1}", 1024, func(internalID string) StableInterface {
return &TestInterface{
internalID: internalID,
}
})
if err != nil {
t.Fatal(err)
}
t.Logf("My shards: %+v", im.myShards)
// Check hosts
internalID, err := im.GetInternalID(id)
if err != nil {
t.Fatal(err)
}
instanceHost, err := im.GetHostForInternalID(internalID)
if err != nil {
t.Fatal(err)
}
if instanceHost != host {
t.Fatalf("got mismatched hosts %s and %s", host, instanceHost)
}
// Verify the other host says the same
instanceHost, err = im2.GetHostForInternalID(internalID)
if err != nil {
t.Fatal(err)
}
if instanceHost != host {
t.Fatalf("got mismatched hosts %s and %s", host, instanceHost)
}
res, err := im.Request(context.Background(), id, testInstructionReturnInternalID)
if err != nil {
t.Fatal(err)
}
if s, ok := res.(string); !ok || s != internalID {
t.Fatalf("did not get matching internal ID, got: %+v", s)
}
// Check error handling
res, err = im.Request(context.Background(), id, testInstructionReturnError)
if err != nil {
if !errors.Is(err, testError) || !errors.Is(err, StableInterfaceHandlerErr) {
t.Fatal()
}
}
if err == nil {
t.Fatal("was expecting error")
}
// Test wrong host
_, err = im.Request(context.Background(), "afefe", nil)
if !errors.Is(err, ErrHostDoesNotOwnShard) {
t.Fatal("did not get host does not own shard")
}
// Shut it down
ctx, cancel := context.WithTimeout(context.Background(), time.Millisecond*5)
defer cancel()
err = im.ShutdownInstance(ctx, internalID)
if err != nil {
t.Fatal(err)
}
}
func TestConnect(t *testing.T) {
host := "host-0"
id := "wrgh9uierhguhrhgierhughe"
im, err := NewInterfaceManager(host, "host-{0..1}", 1024, func(internalID string) StableInterface {
return &TestInterfaceWithConnect{
TestInterface{
internalID: internalID,
},
}
}, WithConnect())
if err != nil {
t.Fatal(err)
}
// Test do nothing
ic, err := im.Connect(context.Background(), id, nil)
if !errors.Is(err, ErrIncomingConnectionNotHandled) {
t.Fatalf("did not get not handled error, got \n\tIC: %+v\n\tErr: %+v", ic, err)
}
// Test rejection
ic, err = im.Connect(context.Background(), id, map[string]any{
testMetaKey: testInstructionReject,
})
if !errors.Is(err, ErrIncomingConnectionRejected) {
t.Fatalf("did not get rejected error, got \n\tIC: %+v\n\tErr: %+v", ic, err)
}
// Test handling accept
ic, err = im.Connect(context.Background(), id, map[string]any{
testMetaKey: testInstructionAccept,
})
if err != nil {
t.Fatal(err)
}
closeChan := make(chan any)
ic.AddOnCloseListener(func() {
closeChan <- nil
})
ic.OnRecv = func(payload any) {
fmt.Println("Test function got message from test interface:", payload)
}
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
c1 := make(chan any)
c2 := make(chan any)
err = ic.Send(ctx, c1)
if err != nil {
t.Fatal(err)
}
<-c1
err = ic.Send(ctx, c2)
if err != nil {
t.Fatal(err)
}
<-c2
t.Log("got messages on channels")
// Close test
err = ic.Close()
if err != nil {
t.Fatal(err)
}
// Verify shuttingDown again doesn't work
err = ic.Close()
if !errors.Is(err, ErrConnectionClosed) {
t.Fatal("did not get ErrConnectionClosed, got", err)
}
err = ic.Send(ctx, "blah")
if !errors.Is(err, ErrConnectionClosed) {
t.Fatal("did not get ErrConnectionClosed, got", err)
}
// Make another to test remote close
ic, err = im.Connect(context.Background(), id, map[string]any{
testMetaKey: testInstructionAccept,
})
if err != nil {
t.Fatal(err)
}
err = ic.Send(ctx, testInstructionClose)
if err != nil {
t.Fatal(err)
}
// Let's sleep to prevent hitting the context deadline due to optimistic shuttingDown
time.Sleep(time.Millisecond)
// need to wait because this might happen before it's closed
err = ic.Send(ctx, testInstructionClose)
if errors.Is(err, context.DeadlineExceeded) {
t.Log("Concurrency resulted in the send finding closed after deadline!")
}
if !errors.Is(err, ErrConnectionClosed) {
t.Fatal("did not get ErrConnectionClosed, got", err)
}
select {
case <-closeChan:
t.Log("got close chan")
case <-ctx.Done():
t.Fatal(ctx.Err())
}
fmt.Println("----------")
// Test shutdown
ic, err = im.Connect(context.Background(), id, map[string]any{
testMetaKey: testInstructionAccept,
})
if err != nil {
t.Fatal(err)
}
t.Log("got new conn", ic.ID, ic.closed.Load())
closeChan = make(chan any)
ic.AddOnCloseListener(func() {
closeChan <- nil
})
ic.OnRecv = func(payload any) {
fmt.Println("Test function got message from test interface:", payload)
}
// Shut it down
ctx, cancel = context.WithTimeout(context.Background(), time.Millisecond*5)
defer cancel()
internalID, err := im.GetInternalID(id)
if err != nil {
t.Fatal(err)
}
err = im.ShutdownInstance(ctx, internalID)
if err != nil {
t.Fatal(err)
}
// Verify already closed
err = ic.Close()
if !errors.Is(err, ErrConnectionClosed) {
t.Fatal("did not get ErrConnectionClosed, got", err)
}
select {
case <-closeChan:
t.Log("got close chan")
case <-ctx.Done():
t.Fatal(ctx.Err())
}
// Verify it's gone
_, exists := im.instanceManagers.Load(internalID)
if exists {
t.Fatal("exists!")
}
}
func TestWithAlarm(t *testing.T) {
host := "host-0"
id := "wrgh9uierhguhrhgierhughe"
alarmManager := NewMemAlarmManager()
// Verify that the alarm interface creates correctly
im, err := NewInterfaceManager(host, "host-{0..1}", 1024, func(internalID string) StableInterface {
return &TestInterfaceWithAlarm{
TestInterface{
internalID: internalID,
},
}
}, WithAlarm(&alarmManager))
if err != nil {
t.Fatal(err)
}
// Verify that it works without alarm
_, err = NewInterfaceManager(host, "host-{0..1}", 1024, func(internalID string) StableInterface {
return &TestInterfaceWithAlarm{
TestInterface{
internalID: internalID,
},
}
})
if err != nil {
t.Fatal(err)
}
// Verify that error throws if not alarm
_, err = NewInterfaceManager(host, "host-{0..1}", 1024, func(internalID string) StableInterface {
return &TestInterface{
internalID: internalID,
}
}, WithAlarm(nil))
if !errors.Is(err, ErrInterfaceNotWithAlarm) {
t.Fatal("did not get ErrInterfaceNotWithAlarm, got:", err)
}
// List the alarms
internalID, err := im.GetInternalID(id)
if err != nil {
t.Fatal(err)
}
shard := instanceInternalIDToShard(internalID, 1024)
iam, exists := im.internalAlarmManagers.Load(shard)
if !exists {
t.Fatal("alarm manager did not exist")
}
// verify there are no active alarms
activeAlarms := iam.listAlarmsForInstance(internalID)
if len(activeAlarms) != 0 {
for _, aa := range activeAlarms {
t.Log(aa.ID)
}
t.Fatalf("Got incorrect number of active alarms: %d", len(activeAlarms))
}
// Test alarm firing
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
res, err := im.Request(ctx, id, testInstructionDoAlarm)
if err != nil {
t.Fatal(err)
}
activeAlarms = iam.listAlarmsForInstance(internalID)
if len(activeAlarms) != 4 {
for _, aa := range activeAlarms {
t.Log(aa.ID)
}
t.Fatalf("Got incorrect number of active alarms: %d", len(activeAlarms))
}
alarmChans, ok := res.([]chan any)
if !ok {
t.Fatal("did not get back a chan any")
}
select {
case <-alarmChans[0]:
break
case <-ctx.Done():
t.Fatal(ctx.Err())
}
// Listen on the second one, should fire immediately because of immediate second firing for alert
ctx, cancel = context.WithTimeout(context.Background(), time.Millisecond*5)
defer cancel()
select {
case <-alarmChans[1]:
break
case <-ctx.Done():
t.Fatal(ctx.Err())
}
ctx, cancel = context.WithTimeout(context.Background(), time.Second)
defer cancel()
select {
case <-alarmChans[2]:
break
case <-ctx.Done():
t.Fatal(ctx.Err())
}
// This isn't the greatest test or checking max backoff
ctx, cancel = context.WithTimeout(context.Background(), time.Second*2)
defer cancel()
select {
case <-alarmChans[3]:
t.Fatal("got the alarm?")
case <-ctx.Done():
err = ctx.Err()
if !errors.Is(err, context.DeadlineExceeded) {
t.Fatal("got some other error:", err)
}
}
// Test if an alarm after shutdown will wake it back up
// Verify it's running
_, exists = im.instanceManagers.Load(internalID)
if !exists {
t.Fatal("instance did not exist")
}
// Send alarm
_, err = im.Request(ctx, id, testInstructionDoAlarm)
if err != nil {
t.Fatal(err)
}
// Let it shut down
_, err = im.Request(context.Background(), id, testInstructionShutdown)
if err != nil {
t.Fatal(err)
}
time.Sleep(time.Millisecond)
// Verify it's not running
_, exists = im.instanceManagers.Load(internalID)
if exists {
t.Fatal("instance exists")
}
// Wait for alarm
time.Sleep(time.Second)
// Verify it's running
_, exists = im.instanceManagers.Load(internalID)
if !exists {
t.Fatal("instance did not exist")
}
}
func TestShutdown(t *testing.T) {
host := "host-0"
id := "wrgh9uierhguhrhgierhughe"
alarmManager := NewMemAlarmManager()
// Verify that the alarm interface creates correctly
im, err := NewInterfaceManager(host, "host-{0..1}", 1024, func(internalID string) StableInterface {
return &TestInterfaceWithAlarm{
TestInterface{
internalID: internalID,
},
}
}, WithAlarm(&alarmManager))
if err != nil {
t.Fatal(err)
}
internalID, err := im.GetInternalID(id)
if err != nil {
t.Fatal(err)
}
_, err = im.Request(context.Background(), id, testInstructionDefault)
if err != nil {
t.Fatal(err)
}
// Verify it's running
_, exists := im.instanceManagers.Load(internalID)
if !exists {
t.Fatal("instance did not exist")
}
_, err = im.Request(context.Background(), id, testInstructionShutdown)
if err != nil {
t.Fatal(err)
}
// Let it shut down
time.Sleep(time.Millisecond)
// Verify it's not running
_, exists = im.instanceManagers.Load(internalID)
if exists {
t.Fatal("instance exists")
}
}