-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
904 lines (795 loc) · 26.5 KB
/
main_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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
package main
import (
"context"
"fmt"
"net"
"testing"
"time"
"github.com/golang/protobuf/proto"
pstore "github.com/libp2p/go-libp2p-peerstore"
ma "github.com/multiformats/go-multiaddr"
pbevent "github.com/ethresearch/sharding-p2p-poc/pb/event"
pbmsg "github.com/ethresearch/sharding-p2p-poc/pb/message"
"google.golang.org/grpc"
// gologging "github.com/whyrusleeping/go-logging"
)
var nodeCount int
func makeNodes(t *testing.T, ctx context.Context, number int) []*Node {
nodes := []*Node{}
for i := 0; i < number; i++ {
nodes = append(nodes, makeUnbootstrappedNode(t, ctx, i))
}
time.Sleep(time.Millisecond * 100)
return nodes
}
func makeTestingNode(
t *testing.T,
ctx context.Context,
number int,
doBootstrapping bool,
bootstrapPeers []pstore.PeerInfo) *Node {
// FIXME:
// 1. Use 20000 to avoid conflitcs with the running nodes in the environment
// 2. Avoid reuse of listeningPort in the entire test, to avoid `dial error`s
listeningPort := 20000 + nodeCount
nodeCount++
node, err := makeNode(ctx, defaultIP, listeningPort, number, NewMockEventNotifier(), doBootstrapping, bootstrapPeers)
if err != nil {
t.Error("Failed to create node")
}
return node
}
func protoToBytes(t *testing.T, data proto.Message) []byte {
bytes, err := proto.Marshal(data)
if err != nil {
t.Errorf("error occurred when marshaling proto: %v", err)
}
return bytes
}
func makeUnbootstrappedNode(t *testing.T, ctx context.Context, number int) *Node {
return makeTestingNode(t, ctx, number, false, nil)
}
func connect(t *testing.T, ctx context.Context, a, b *Node) {
peerid := b.ID()
a.Peerstore().AddAddrs(peerid, b.Addrs(), pstore.PermanentAddrTTL)
if err := a.Connect(ctx, a.Peerstore().PeerInfo(peerid)); err != nil {
t.Errorf("Failed to connect to peer %v, err: %v", peerid, err)
}
if !a.IsPeer(b.ID()) || !b.IsPeer(a.ID()) {
t.Error("AddPeer failed")
}
if len(a.Network().ConnsToPeer(b.ID())) == 0 || len(b.Network().ConnsToPeer(a.ID())) == 0 {
t.Errorf("failed to connect %v with %v", a.ID(), b.ID())
}
time.Sleep(time.Millisecond * 100)
}
func connectHub(t *testing.T, ctx context.Context, nodes []*Node, hubIndex int) {
for i := 0; i < len(nodes); i++ {
if i != hubIndex {
connect(t, ctx, nodes[hubIndex], nodes[i])
}
}
}
func connectBarbell(t *testing.T, ctx context.Context, nodes []*Node) {
for i := 0; i < len(nodes)-1; i++ {
connect(t, ctx, nodes[i], nodes[i+1])
}
}
func connectAll(t *testing.T, ctx context.Context, nodes []*Node) {
for i, nodei := range nodes {
for j, nodej := range nodes {
if i < j {
connect(t, ctx, nodei, nodej)
}
}
}
}
func waitForPubSubMeshBuilt() {
time.Sleep(time.Second * 2)
}
func TestAddPeer(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 2)
connect(t, ctx, nodes[0], nodes[1])
}
func TestRouting(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 3)
connectBarbell(t, ctx, nodes)
waitForPubSubMeshBuilt()
// set the logger to DEBUG, to see the process of dht.FindPeer
// we should be able to see something like
// "dht: FindPeer <peer.ID d3wzD2> true routed.go:76", if successfully found the desire peer
// golog.SetAllLoggers(gologging.DEBUG) // Change to DEBUG for extra info
if nodes[0].IsPeer(nodes[2].ID()) {
t.Error("node0 should not be able to reach node2 before routing")
}
nodes[0].Connect(
ctx,
pstore.PeerInfo{
ID: nodes[2].ID(),
},
)
time.Sleep(time.Millisecond * 100)
if !nodes[2].IsPeer(nodes[0].ID()) {
t.Error("node0 should be a peer of node2 now")
}
}
// test if nodes can find each other with ipfs nodes
func TestWithIPFSNodesRouting(t *testing.T) {
// FIXME: skipped by default, since currently our boostrapping nodes are local ipfs nodes
t.Skip()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// golog.SetAllLoggers(gologging.DEBUG) // Change to DEBUG for extra info
ipfsPeers, err := convertPeers([]string{
"/ip4/127.0.0.1/tcp/4001/ipfs/QmXa1ncfGc9RQotUAyN3Gb4ar7WXZ4DEb2wPZsSybkK1sf",
"/ip4/104.131.131.82/tcp/4001/ipfs/QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ",
"/ip4/104.236.179.241/tcp/4001/ipfs/QmSoLPppuBtQSGwKDZT2M73ULpjvfd3aZ6ha4oFGL1KrGM",
"/ip4/128.199.219.111/tcp/4001/ipfs/QmSoLSafTMBsPKadTEgaXctDQVcqN88CNLHXMkTNwMKPnu",
"/ip4/178.62.158.247/tcp/4001/ipfs/QmSoLer265NRgSp2LA3dPaeykiS1J6DifTC88f5uVQKNAd",
})
if err != nil {
t.Error("Failed to convert ipfs peers info")
}
ipfsPeer0 := ipfsPeers[0]
ipfsPeer1 := ipfsPeers[1]
nodes := makeNodes(t, ctx, 2)
nodes[0].Peerstore().AddAddrs(ipfsPeer0.ID, ipfsPeer0.Addrs, pstore.PermanentAddrTTL)
nodes[0].Connect(context.Background(), ipfsPeer0)
if len(nodes[0].Network().ConnsToPeer(ipfsPeer0.ID)) == 0 {
t.Error()
}
nodes[1].Peerstore().AddAddrs(ipfsPeer1.ID, ipfsPeer1.Addrs, pstore.PermanentAddrTTL)
nodes[1].Connect(context.Background(), ipfsPeer1)
if len(nodes[1].Network().ConnsToPeer(ipfsPeer1.ID)) == 0 {
t.Error()
}
// ensure connection: node0 <-> ipfsPeer0 <-> ipfsPeer1 <-> node1
if len(nodes[0].Network().ConnsToPeer(ipfsPeer1.ID)) != 0 {
t.Error()
}
if len(nodes[1].Network().ConnsToPeer(ipfsPeer0.ID)) != 0 {
t.Error()
}
if len(nodes[1].Network().ConnsToPeer(nodes[0].ID())) != 0 {
t.Error()
}
node0PeerInfo := pstore.PeerInfo{
ID: nodes[0].ID(),
Addrs: []ma.Multiaddr{},
}
nodes[1].Connect(context.Background(), node0PeerInfo)
if len(nodes[1].Network().ConnsToPeer(nodes[0].ID())) == 0 {
t.Error()
}
}
func TestDHTBootstrapping(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
bootnode := makeUnbootstrappedNode(t, ctx, 0)
piBootnode := pstore.PeerInfo{
ID: bootnode.ID(),
Addrs: bootnode.Addrs(),
}
node1 := makeUnbootstrappedNode(t, ctx, 1)
connect(t, ctx, bootnode, node1)
node2 := makeTestingNode(t, ctx, 2, true, []pstore.PeerInfo{piBootnode})
time.Sleep(time.Millisecond * 100)
if len(node2.Peerstore().PeerInfo(node1.ID()).Addrs) == 0 {
t.Error("node2 should have known node1 through the bootnode")
}
}
func TestRequestShardPeer(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 2)
connectBarbell(t, ctx, nodes)
shardPeers, err := nodes[0].requestShardPeer(ctx, nodes[1].ID(), []ShardIDType{1})
if err != nil {
t.Errorf("Error occurred when requesting shard peer: %v", err)
}
peerIDs, prs := shardPeers[1]
if !prs {
t.Errorf("node1 should still return a empty peer list of the shard %v", 1)
}
if len(peerIDs) != 0 {
t.Errorf("Wrong shard peer response %v, should be empty peerIDs", peerIDs)
}
numShardPeerToConnect := 1
if err := nodes[1].ListenShard(ctx, numShardPeerToConnect, 1); err != nil {
t.Errorf("Failed to listen to shard 1")
}
if err := nodes[1].ListenShard(ctx, numShardPeerToConnect, 2); err != nil {
t.Errorf("Failed to listen to shard 2")
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
// node1 listens to [1, 2], but we only request shard [1]
shardPeers, err = nodes[0].requestShardPeer(ctx, nodes[1].ID(), []ShardIDType{1})
if err != nil {
t.Errorf("Error occurred when requesting shard peer: %v", err)
}
peerIDs1, prs := shardPeers[1]
if len(peerIDs1) != 1 || peerIDs1[0] != nodes[1].ID() {
t.Errorf("Wrong shard peer response %v, should be nodes[1].ID() only", peerIDs1)
}
// node1 only listens to [1, 2], but we request shard [1, 2, 3]
shardPeers, err = nodes[0].requestShardPeer(ctx, nodes[1].ID(), []ShardIDType{1, 2, 3})
if err != nil {
t.Errorf("Error occurred when requesting shard peer: %v", err)
}
peerIDs1, prs = shardPeers[1]
if len(peerIDs1) != 1 || peerIDs1[0] != nodes[1].ID() {
t.Errorf("Wrong shard peer response %v, should be nodes[1].ID() only", peerIDs1)
}
peerIDs2, prs := shardPeers[2]
if len(peerIDs2) != 1 || peerIDs2[0] != nodes[1].ID() {
t.Errorf("Wrong shard peer response %v, should be nodes[1].ID() only", peerIDs2)
}
peerIDs3, prs := shardPeers[3]
if !prs {
t.Errorf("node1 should still return a empty peer list of the shard %v", 3)
}
if len(peerIDs3) != 0 {
t.Errorf("Wrong shard peer response %v, should be empty peerIDs", peerIDs3)
}
}
func TestPubSub(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 3)
connectBarbell(t, ctx, nodes)
waitForPubSubMeshBuilt()
topic := "iamtopic"
subch0, err := nodes[0].pubsubService.Subscribe(topic)
if err != nil {
t.Error(err)
}
// TODO: This sleep is necessary!!! Find out why
time.Sleep(time.Millisecond * 100)
publishMsg := "789"
err = nodes[1].pubsubService.Publish(topic, []byte(publishMsg))
if err != nil {
t.Error(err)
}
msg0, err := subch0.Next(ctx)
if string(msg0.Data) != publishMsg {
t.Error(err)
}
if msg0.GetFrom() != nodes[1].ID() {
t.Error("Wrong ID")
}
}
func TestConnectShardNodes(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 6)
// Have node 1-5 connect to hub node 0
connectHub(t, ctx, nodes, 0)
waitForPubSubMeshBuilt()
var shardID ShardIDType = 1
numShardPeerToConnect := 0
for i := 1; i < 5; i++ {
if err := nodes[i].ListenShard(ctx, numShardPeerToConnect, shardID); err != nil {
t.Errorf("Failed to listen to shard %v", shardID)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
}
node0ShardPeerCount := len(nodes[5].pubsubService.ListPeers(getCollationsTopic(shardID)))
if node0ShardPeerCount != 0 {
t.Errorf("Node 5 should have no shard peers but it has %v", node0ShardPeerCount)
}
nodes[5].connectShardNodes(ctx, 5, shardID)
time.Sleep(time.Millisecond * 100)
node0ShardPeerCount = len(nodes[5].pubsubService.ListPeers(getCollationsTopic(shardID)))
if node0ShardPeerCount != 4 {
t.Errorf("Node 5 should have 4 shard peers but it has %v", node0ShardPeerCount)
}
for i := 1; i < 5; i++ {
connsToNode5 := len(nodes[i].Network().ConnsToPeer(nodes[5].ID()))
if connsToNode5 == 0 {
t.Errorf("Node %v should have become node 5's peer", i)
}
}
}
func TestListenShardAndUnlistenShard(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 2)
connectBarbell(t, ctx, nodes)
var testingShardID ShardIDType = 42
// test `IsShardListened`
if nodes[0].IsShardListened(testingShardID) {
t.Errorf("Shard %v shoudn't have been listened", testingShardID)
}
// test `ListenShard`
numShardPeerToConnect := 1
if err := nodes[0].ListenShard(ctx, numShardPeerToConnect, testingShardID); err != nil {
t.Errorf("Failed to listen to shard %v", testingShardID)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
if !nodes[0].IsShardListened(testingShardID) {
t.Errorf("Shard %v should have been listened", testingShardID)
}
if !nodes[0].IsCollationSubscribed(testingShardID) {
t.Errorf(
"shardCollations in shard [%v] should be subscribed",
testingShardID,
)
}
if len(nodes[1].pubsubService.ListPeers(fmt.Sprintf("shardCollations_%v", testingShardID))) != 1 {
t.Errorf("nodes[1] did not receive the subscription update")
}
// test `ListenShard` to same shard twice
if err := nodes[0].ListenShard(ctx, numShardPeerToConnect, testingShardID); err != nil {
t.Errorf("Failed to listen to shard %v", testingShardID)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
if !nodes[0].IsShardListened(testingShardID) {
t.Errorf("Shard %v should have been listened", testingShardID)
}
if !nodes[0].IsCollationSubscribed(testingShardID) {
t.Errorf(
"shardCollations in shard [%v] should be subscribed",
testingShardID,
)
}
// test `ListenShard` to another shard
anotherShardID := testingShardID + 1
if err := nodes[0].ListenShard(ctx, numShardPeerToConnect, anotherShardID); err != nil {
t.Errorf("Failed to listen to shard %v", anotherShardID)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
if !nodes[0].IsShardListened(anotherShardID) {
t.Errorf("Shard %v should have been listened", anotherShardID)
}
shardIDs := nodes[0].GetListeningShards()
if len(shardIDs) != 2 {
t.Errorf("We should have 2 shards being listened, instead of %v", len(shardIDs))
}
if len(nodes[1].pubsubService.ListPeers(fmt.Sprintf("shardCollations_%v", anotherShardID))) != 1 {
t.Errorf("nodes[1] did not receive the subscription update")
}
// test `UnlistenShard`
if err := nodes[0].UnlistenShard(ctx, testingShardID); err != nil {
t.Errorf("Failed to unlisten to shard %v", testingShardID)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
if nodes[0].IsShardListened(testingShardID) {
t.Errorf("Shard %v should have been unlistened", testingShardID)
}
if nodes[0].IsCollationSubscribed(testingShardID) {
t.Errorf(
"shardCollations in shard [%v] should be already unsubscribed",
testingShardID,
)
}
if len(nodes[1].pubsubService.ListPeers(fmt.Sprintf("shardCollations_%v", testingShardID))) != 0 {
t.Errorf("nodes[1] did not receive the subscription update")
}
// test `UnlistenShard` same shard twice
if err := nodes[0].UnlistenShard(ctx, testingShardID); err != nil {
t.Errorf("Failed to unlisten to shard %v", testingShardID)
}
if nodes[0].IsShardListened(testingShardID) {
t.Errorf("Shard %v should have been unlistened", testingShardID)
}
if nodes[0].IsCollationSubscribed(testingShardID) {
t.Errorf(
"shardCollations in shard [%v] should be already unsubscribed",
testingShardID,
)
}
// test `UnlistenShard` another shard
if err := nodes[0].UnlistenShard(ctx, anotherShardID); err != nil {
t.Errorf("Failed to unlisten to shard %v", anotherShardID)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
if nodes[0].IsShardListened(anotherShardID) {
t.Errorf("Shard %v should have been unlistened", anotherShardID)
}
if nodes[0].IsCollationSubscribed(anotherShardID) {
t.Errorf(
"shardCollations in shard [%v] should be already unsubscribed",
anotherShardID,
)
}
if len(nodes[1].pubsubService.ListPeers(fmt.Sprintf("shardCollations_%v", anotherShardID))) != 0 {
t.Errorf("nodes[1] did not receive the subscription update")
}
}
func TestListenShardConnectingPeers(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 5)
connectBarbell(t, ctx, nodes)
waitForPubSubMeshBuilt()
// 0 <-> 1 <-> 2 <-> 3 <-> 4
numShardPeerToConnect := 2
if err := nodes[0].ListenShard(ctx, numShardPeerToConnect, 0); err != nil {
t.Errorf("Failed to listen to shard 0, err=%v", err)
}
if err := nodes[4].ListenShard(ctx, numShardPeerToConnect, 42); err != nil {
t.Errorf("Failed to listen to shard 42, err=%v", err)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
connWithNode4 := nodes[0].Network().ConnsToPeer(nodes[4].ID())
if len(connWithNode4) != 0 {
t.Error("Node 0 shouldn't have connection with node 4")
}
// test `connectShardNodes`
if err := nodes[0].ListenShard(ctx, numShardPeerToConnect, 42); err != nil {
t.Errorf("Failed to listen to shard 42, err=%v", err)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
connWithNode4 = nodes[0].Network().ConnsToPeer(nodes[4].ID())
if len(connWithNode4) == 0 {
t.Error("Node 0 should have connected to node 4 after listening to shard 42")
}
for i := 1; i < 4; i++ {
if err := nodes[i].ListenShard(ctx, numShardPeerToConnect, 42); err != nil {
t.Errorf("Failed to listen to shard 42, err=%v", err)
// wait for peer to receive shard subscription update
}
time.Sleep(time.Millisecond * 100)
}
for i := 0; i < 5; i++ {
if len(nodes[i].pubsubService.ListPeers(getCollationsTopic(42))) < numShardPeerToConnect {
t.Errorf("Node %v should have at least %v peers", i, numShardPeerToConnect)
}
}
}
func TestPubSubNotifyListeningShards(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 3)
connectBarbell(t, ctx, nodes)
waitForPubSubMeshBuilt()
numShardPeerToConnect := 2
if err := nodes[0].ListenShard(ctx, numShardPeerToConnect, 42); err != nil {
t.Errorf("Failed to listen to shard 42")
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
if len(nodes[1].shardPrefTable.GetPeerListeningShardSlice(nodes[0].ID())) != 1 {
t.Error("Node 0 should subscribe to exactly one shard")
}
if len(nodes[2].shardPrefTable.GetPeerListeningShardSlice(nodes[0].ID())) != 1 {
t.Error("Node 0 should subscribe to exactly one shard")
}
if err := nodes[1].ListenShard(ctx, numShardPeerToConnect, 42); err != nil {
t.Errorf("Failed to listen to shard 42")
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
shardPeers42 := nodes[2].shardPrefTable.GetPeersInShard(42)
if len(shardPeers42) != 2 {
t.Errorf(
"len(shardPeers42) should be %v, not %v. shardPeers42=%v",
2,
len(shardPeers42),
shardPeers42,
)
}
// test unsetShard with notifying
if err := nodes[0].UnlistenShard(ctx, 42); err != nil {
t.Errorf("Failed to listen to shard 42")
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
if len(nodes[1].shardPrefTable.GetPeerListeningShardSlice(nodes[0].ID())) != 0 {
t.Error("Node 0 should not be subscribing to any shard")
}
}
func TestBroadcastCollation(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 2)
connectBarbell(t, ctx, nodes)
var testingShardID ShardIDType = 42
numShardPeerToConnect := 1
if err := nodes[0].ListenShard(ctx, numShardPeerToConnect, testingShardID); err != nil {
t.Errorf("Failed to listen to shard %v", testingShardID)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
// TODO: fail: if the receiver didn't subscribe the shard, it should ignore the message
if err := nodes[1].ListenShard(ctx, numShardPeerToConnect, testingShardID); err != nil {
t.Errorf("Failed to listen to shard %v", testingShardID)
}
// wait for peer to receive shard subscription update
time.Sleep(time.Millisecond * 100)
// TODO: fail: if the collation's shardID does not correspond to the protocol's shardID,
// receiver should reject it
// success
err := nodes[0].broadcastCollation(
ctx,
testingShardID,
1,
[]byte("123"),
)
if err != nil {
t.Errorf("failed to send collation %v, %v, %v. reason=%v", testingShardID, 1, 123, err)
}
}
type eventTestServer struct {
pbevent.EventServer
receivedData chan []byte
}
func makeEventResponse(success bool) *pbevent.Response {
var status pbevent.Response_Status
var msg string
if success {
status = pbevent.Response_SUCCESS
msg = ""
} else {
status = pbevent.Response_FAILURE
msg = "failed"
}
return &pbevent.Response{Status: status, Message: msg}
}
func (s *eventTestServer) Receive(
ctx context.Context,
req *pbevent.ReceiveRequest) (*pbevent.ReceiveResponse, error) {
go func() {
s.receivedData <- req.Data
}()
resBytes := make([]byte, 0)
success := false
switch int(req.MsgType) {
case typeCollation:
msg := &pbmsg.Collation{}
err := proto.Unmarshal(req.Data, msg)
if err != nil {
break
}
success = true
resBytes = []byte{1} // true
case typeCollationRequest:
msg := &pbmsg.CollationRequest{}
err := proto.Unmarshal(req.Data, msg)
if err != nil {
break
}
// We assume collations in shard 42 are always not found for easier testing
if msg.ShardID != 42 {
collation := &pbmsg.Collation{
ShardID: msg.ShardID,
Period: msg.Period,
Blobs: []byte(fmt.Sprintf("%v:%v:blobssss", msg.ShardID, msg.Period)),
}
resBytes, err = proto.Marshal(collation)
if err != nil {
break
}
success = true
}
default:
success = false
}
return &pbevent.ReceiveResponse{
Response: makeEventResponse(success),
Data: resBytes,
}, nil
}
func runEventServer(ctx context.Context, eventRPCAddr string) (*eventTestServer, error) {
lis, err := net.Listen("tcp", eventRPCAddr)
if err != nil {
return nil, err
}
s := grpc.NewServer()
ets := &eventTestServer{receivedData: make(chan []byte)}
pbevent.RegisterEventServer(
s,
ets,
)
go s.Serve(lis)
go func() {
select {
case <-ctx.Done():
s.Stop()
}
}()
return ets, nil
}
func TestEventRPCNotifier(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
eventRPCPort := 55666
notifierAddr := fmt.Sprintf("127.0.0.1:%v", eventRPCPort)
_, err := runEventServer(ctx, notifierAddr)
if err != nil {
t.Error("failed to run event server")
}
time.Sleep(time.Millisecond * 100)
eventNotifier, err := NewRpcEventNotifier(ctx, notifierAddr)
if err != nil {
t.Error(err)
}
shardID := ShardIDType(1)
period := 2
// send collation to the Host side
collation := &pbmsg.Collation{
ShardID: shardID,
Period: PBInt(period),
Blobs: []byte("123"),
}
collationBytes := protoToBytes(t, collation)
isValidBytes, err := eventNotifier.Receive(ctx, "", typeCollation, collationBytes)
if err != nil {
t.Errorf("something wrong when calling `eventNotifier.Receive`: %v", err)
}
if len(isValidBytes) != 1 || isValidBytes[0] == 0 {
t.Errorf("wrong reponse from `eventNotifier`, isValidBytes=%v", isValidBytes)
}
// request collation
req := &pbmsg.CollationRequest{
ShardID: shardID,
Period: PBInt(period),
Hash: "123",
}
reqBytes := protoToBytes(t, req)
respBytes, err := eventNotifier.Receive(ctx, "", typeCollationRequest, reqBytes)
if err != nil {
t.Errorf("something wrong when calling `eventNotifier.Receive`: %v", err)
}
collationReceived := &pbmsg.Collation{}
err = proto.Unmarshal(respBytes, collationReceived)
if err != nil {
t.Errorf("failed to unmarshal collation bytes")
}
if ShardIDType(collationReceived.ShardID) != shardID &&
int(collationReceived.Period) != period {
t.Errorf("wrong response from `eventNotifier.Receive`")
}
}
func TestBroadcastCollationWithRPCEventNotifier(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 3)
connectBarbell(t, ctx, nodes)
shardID := ShardIDType(1)
numShardPeerToConnect := 2
if err := nodes[0].ListenShard(ctx, numShardPeerToConnect, shardID); err != nil {
t.Errorf("Failed to listen to shard %v", shardID)
}
if err := nodes[1].ListenShard(ctx, numShardPeerToConnect, shardID); err != nil {
t.Errorf("Failed to listen to shard %v", shardID)
}
if err := nodes[2].ListenShard(ctx, numShardPeerToConnect, shardID); err != nil {
t.Errorf("Failed to listen to shard %v", shardID)
}
waitForPubSubMeshBuilt()
// setup 2 event server and notifier(stub), for node1 and node2 respectively
// event server and notifier for node1
eventRPCPort := 55667
notifierAddr := fmt.Sprintf("127.0.0.1:%v", eventRPCPort)
s1, err := runEventServer(ctx, notifierAddr)
if err != nil {
t.Error("failed to run event server")
}
eventNotifier, err := NewRpcEventNotifier(ctx, notifierAddr)
if err != nil {
t.Error("failed to create event notifier")
}
// explicitly set the eventNotifier
nodes[1].eventNotifier = eventNotifier
// event server and notifier for node2
eventRPCPort++
notifierAddr = fmt.Sprintf("127.0.0.1:%v", eventRPCPort)
s2, err := runEventServer(ctx, notifierAddr)
if err != nil {
t.Error("failed to run event server")
}
eventNotifier, err = NewRpcEventNotifier(ctx, notifierAddr)
if err != nil {
t.Error("failed to create event notifier")
}
// explicitly set the eventNotifier
nodes[2].eventNotifier = eventNotifier
// TODO: should be sure when is the validator executed, and how it will affect relaying
if err := nodes[0].broadcastCollation(ctx, shardID, 1, []byte{}); err != nil {
t.Errorf("failed to broadcast collation in nodes[0]: %v", err)
}
select {
case dataBytes := <-s1.receivedData:
collation := &pbmsg.Collation{}
err = proto.Unmarshal(dataBytes, collation)
if err != nil {
t.Errorf("failed to unmarshal collation bytes")
}
if ShardIDType(collation.ShardID) != shardID || int(collation.Period) != 1 {
t.Error("node1 received wrong collations")
}
case <-time.After(time.Second * 5):
t.Error("timeout in node1")
}
select {
case dataBytes := <-s2.receivedData:
collation := &pbmsg.Collation{}
err = proto.Unmarshal(dataBytes, collation)
if err != nil {
t.Errorf("failed to unmarshal collation bytes")
}
if ShardIDType(collation.ShardID) != shardID || int(collation.Period) != 1 {
t.Error("node2 received wrong collations")
}
case <-time.After(time.Second * 5):
t.Error("timeout in node2")
}
}
func TestRequestCollationWithRPCEventNotifier(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
nodes := makeNodes(t, ctx, 2)
connectBarbell(t, ctx, nodes)
shardID := ShardIDType(1)
period := 2
req := &pbmsg.CollationRequest{
ShardID: shardID,
Period: PBInt(period),
Hash: "",
}
reqBytes := protoToBytes(t, req)
// case: with RPCEventNotifier set, db in the event server has the collation
notifierAddr := fmt.Sprintf("127.0.0.1:%v", 55669)
_, err := runEventServer(ctx, notifierAddr)
if err != nil {
t.Error("failed to run event server")
}
eventNotifier, err := NewRpcEventNotifier(ctx, notifierAddr)
if err != nil {
t.Error("failed to create event notifier")
}
// explicitly set the eventNotifier
nodes[1].eventNotifier = eventNotifier
req = &pbmsg.CollationRequest{
ShardID: shardID,
Period: PBInt(period),
Hash: "",
}
reqBytes = protoToBytes(t, req)
respBytes, err := nodes[0].generalRequest(ctx, nodes[1].ID(), typeCollationRequest, reqBytes)
if err != nil {
t.Errorf("request collation failed: %v", err)
}
collation := &pbmsg.Collation{}
err = proto.Unmarshal(respBytes, collation)
if err != nil {
t.Errorf("failed to unmarshal collation bytes")
}
if collation.ShardID != shardID || int(collation.Period) != period {
t.Errorf(
"responded collation does not correspond to the request: collation.ShardID=%v, request.shardID=%v, collation.Period=%v, request.period=%v",
collation.ShardID,
shardID,
collation.Period,
period,
)
}
// case: with RPCEventNotifier set, db in the event server doesn't have the collation
periodNotFound := ShardIDType(42)
req = &pbmsg.CollationRequest{
ShardID: periodNotFound,
Period: PBInt(period),
Hash: "",
}
reqBytes = protoToBytes(t, req)
respBytes, err = nodes[0].generalRequest(ctx, nodes[1].ID(), typeCollationRequest, reqBytes)
if err == nil {
t.Errorf(
"should be unable to unmarshal because nodes[1] should send invalid collation, due to the lack of an eventNotifier",
)
}
}