-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbroker_test.go
856 lines (680 loc) · 18.4 KB
/
broker_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
package pubsub_test
import (
"context"
"errors"
"fmt"
"sync"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"go.uber.org/goleak"
"github.com/mdawar/pubsub"
)
// Message is an alias for [pubsub.Message] with a string type for fields.
type Message = pubsub.Message[string, string, string]
func TestMain(m *testing.M) {
goleak.VerifyTestMain(m)
}
func TestBrokerInitialNumTopics(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
want := 0
if got := broker.NumTopics(); want != got {
t.Errorf("want %d topics, got %d", want, got)
}
}
func TestBrokerInitialTopics(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
topics := broker.Topics()
want := 0
if got := len(topics); want != got {
t.Errorf("want %d topics length, got %d", want, got)
}
}
func TestBrokerSubscribeOnSameTopicReturnsNewChannel(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, int, string]()
topic := "testing"
sub1 := broker.Subscribe(topic)
sub2 := broker.Subscribe(topic)
if sub1 == sub2 {
t.Error("want new subscription channel, got same channel")
}
}
func TestBrokerSubscribeWithCapacityOnSameTopicReturnsNewChannel(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, int, string]()
topic := "testing"
sub1 := broker.SubscribeWithCapacity(1, topic)
sub2 := broker.SubscribeWithCapacity(1, topic)
if sub1 == sub2 {
t.Error("want new subscription channel, got same channel")
}
}
func TestBrokerSubscribeUnbufferedChannelCapacity(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, int, string]()
sub := broker.Subscribe("testing")
wantCap := 0
if got := cap(sub); wantCap != got {
t.Errorf("want channel capacity %d, got %d", wantCap, got)
}
}
func TestBrokerSubscribeBufferedChannelCapacity(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, int, string]()
wantCap := 10
sub := broker.SubscribeWithCapacity(wantCap, "testing")
if got := cap(sub); wantCap != got {
t.Errorf("want channel capacity %d, got %d", wantCap, got)
}
}
func TestBrokerTopics(t *testing.T) {
t.Parallel()
cases := map[string]struct {
subscribe []string // The topics to subscribe on.
want []string // The expected topics to be returned.
}{
"no topics": {
subscribe: nil,
want: nil,
},
"single topic": {
subscribe: []string{"a"},
want: []string{"a"},
},
"multiple topics": {
subscribe: []string{"a", "b", "c"},
want: []string{"a", "b", "c"},
},
"single topic multiple subscriptions": {
subscribe: []string{"a", "a", "a"},
want: []string{"a"},
},
"multiple topics multiple subscriptions": {
subscribe: []string{"a", "b", "c", "a", "b", "c"},
want: []string{"a", "b", "c"},
},
}
for name, tc := range cases {
t.Run(name, func(t *testing.T) {
broker := pubsub.NewBroker[string, string, string]()
// Loop to create multiple subscriptions.
for _, topic := range tc.subscribe {
broker.Subscribe(topic)
}
got := broker.Topics()
if !cmp.Equal(tc.want, got, sortStringSlices) {
t.Errorf("topics do not match (-want, +got):\n%s", cmp.Diff(tc.want, got, sortStringSlices))
}
})
}
}
func TestBrokerNumTopicsAfterSubscriptions(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, int, string]()
wantTopics := 10
for i := range wantTopics {
broker.Subscribe(fmt.Sprint(i))
}
if got := broker.NumTopics(); wantTopics != got {
t.Errorf("want %d topics, got %d", wantTopics, got)
}
// Subscriptions on the same topics should not affect the count.
for i := range wantTopics {
broker.Subscribe(fmt.Sprint(i))
}
if got := broker.NumTopics(); wantTopics != got {
t.Errorf("want %d topics after multiple subs on same topic, got %d", wantTopics, got)
}
}
func TestBrokerNumTopicsDecreasesAfterUnsubscribe(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, int, string]()
assertTopics := func(want int) {
t.Helper()
if got := broker.NumTopics(); want != got {
t.Fatalf("want topics count %d, got %d", want, got)
}
}
assertTopics(0)
sub := broker.Subscribe("a", "b", "c")
assertTopics(3)
broker.Unsubscribe(sub, "a")
assertTopics(2)
broker.Unsubscribe(sub, "b")
assertTopics(1)
broker.Unsubscribe(sub, "c")
assertTopics(0)
}
func TestBrokerNumTopicsWithSubscribersOnSameTopic(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
assertTopics := func(want int) {
t.Helper()
if got := broker.NumTopics(); want != got {
t.Fatalf("want topics count %d, got %d", want, got)
}
}
assertTopics(0)
var subs []<-chan pubsub.Message[string, string, string]
topic := "testing"
count := 10
// Subscribe on the same topic.
for range count {
sub := broker.Subscribe(topic)
subs = append(subs, sub)
assertTopics(1)
}
lastSubIndex := len(subs) - 1
// Remove all of the subscriptions and keep 1.
for _, sub := range subs[:lastSubIndex] {
broker.Unsubscribe(sub, topic)
assertTopics(1)
}
// Remove the last subscription.
lastSub := subs[lastSubIndex]
broker.Unsubscribe(lastSub, topic)
assertTopics(0)
}
func TestBrokerSubscribers(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
assertSubs := func(topic string, want int) {
t.Helper()
if got := broker.Subscribers(topic); want != got {
t.Fatalf("want %d subscriptions on topic %q, got %d", want, topic, got)
}
}
t1 := "a"
t2 := "b"
assertSubs(t1, 0)
assertSubs(t2, 0)
sub1 := broker.Subscribe(t1, t2)
assertSubs(t1, 1)
assertSubs(t2, 1)
sub2 := broker.Subscribe(t1, t2)
assertSubs(t1, 2)
assertSubs(t2, 2)
broker.Unsubscribe(sub1, t1)
assertSubs(t1, 1)
broker.Unsubscribe(sub2, t1)
assertSubs(t1, 0)
broker.Unsubscribe(sub1, t2)
assertSubs(t2, 1)
broker.Unsubscribe(sub2, t2)
assertSubs(t2, 0)
}
// assertEqual asserts that the messages want and got are equal.
func assertEqual(t testing.TB, want, got Message) {
t.Helper()
if want.Topic != got.Topic {
t.Errorf("want message topic %q, got %q", want.Topic, got.Topic)
}
if want.Payload != got.Payload {
t.Errorf("want message payload %q, got %q", want.Payload, got.Payload)
}
if want.Sender != got.Sender {
t.Errorf("want message sender %q, got %q", want.Sender, got.Sender)
}
}
func TestBrokerPublish(t *testing.T) {
t.Parallel()
cases := []int{1, 2, 10, 100}
for _, count := range cases {
t.Run(fmt.Sprint(count), func(t *testing.T) {
broker := pubsub.NewBroker[string, string, string]()
want := Message{
Topic: "testing",
Payload: "Test Message",
Sender: "test-sender",
}
// Subscriptions.
var subs []<-chan pubsub.Message[string, string, string]
// Create the subscriptions.
for range count {
sub := broker.Subscribe(want.Topic)
subs = append(subs, sub)
}
result := make(chan error)
go func() {
// Blocks until all subscribers receive the message.
result <- broker.Publish(context.Background(), want)
}()
// Wait for messages to be received on the subscription channels.
for _, sub := range subs {
select {
case got := <-sub:
assertEqual(t, want, got)
case <-time.After(time.Second):
t.Error("timed out waiting for message")
}
}
// Wait for Publish to return.
select {
case err := <-result:
if err != nil {
t.Errorf("want nil error, got %q", err)
}
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
})
}
}
func TestBrokerPublishWithoutSubscriptions(t *testing.T) {
t.Parallel()
cases := map[string]Message{
"with topic": {
Topic: "testing",
Payload: "Message",
},
"without topic": {
Payload: "Message without a topic",
},
}
for name, msg := range cases {
t.Run(name, func(t *testing.T) {
broker := pubsub.NewBroker[string, string, string]()
result := make(chan error)
go func() {
// A publish without any subscriptions should not block.
result <- broker.Publish(context.Background(), msg)
}()
select {
case err := <-result:
if err != nil {
t.Errorf("want nil error, got %q", err)
}
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
})
}
}
func TestBrokerPublishWithCanceledContext(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
topic := "testing"
// A subscription that we don't receive on.
broker.Subscribe(topic)
ctx, cancel := context.WithCancel(context.Background())
cancel()
result := make(chan error)
go func() {
// Publish with a canceled context.
result <- broker.Publish(ctx, Message{Topic: topic, Payload: "Test"})
}()
select {
case err := <-result:
if !errors.Is(err, context.Canceled) {
t.Errorf(`want error %q, got "%v"`, context.Canceled, err)
}
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
}
func TestBrokerPublishWithCanceledContextAndWithoutSubscriptions(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
ctx, cancel := context.WithCancel(context.Background())
cancel()
result := make(chan error)
go func() {
// A publish without any subscriptions should not block.
result <- broker.Publish(ctx, Message{Topic: "testing", Payload: "Message"})
}()
select {
case err := <-result:
if !errors.Is(err, context.Canceled) {
t.Errorf(`want error %q, got "%v"`, context.Canceled, err)
}
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
}
func TestBrokerPublishWithBufferedSubscription(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
want := Message{
Topic: "testing",
Payload: "Test Message",
Sender: "test-sender",
}
// Subscription with buffer size of 1.
sub := broker.SubscribeWithCapacity(1, want.Topic)
result := make(chan error)
go func() {
// Publish with a buffered subscription should not block.
result <- broker.Publish(context.Background(), want)
}()
select {
case err := <-result:
if err != nil {
t.Errorf("want nil error, got %q", err)
}
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
got := <-sub
assertEqual(t, want, got)
}
func TestBrokerPublishAfterUnsubscribe(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
msg := Message{
Topic: "testing",
Payload: "Test Message",
}
sub := broker.Subscribe(msg.Topic)
// Unsubscribe from the specified topic.
broker.Unsubscribe(sub, msg.Topic)
result := make(chan error)
go func() {
// Should not block after unsubscribe.
result <- broker.Publish(context.Background(), msg)
}()
// Wait for Publish to return.
select {
case err := <-result:
if err != nil {
t.Errorf("want nil error, got %q", err)
}
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
// Make sure the message is not delivered after unsubscribe.
select {
case <-sub:
t.Error("received unexpected message after unsubscribe")
default:
}
}
func TestBrokerPublishAfterUnsubscribeAllTopics(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
msg := Message{
Topic: "testing",
Payload: "Test Message",
}
sub := broker.Subscribe(msg.Topic)
// Unsubscribe from all topics.
broker.Unsubscribe(sub)
result := make(chan error)
go func() {
// Should not block after unsubscribe.
result <- broker.Publish(context.Background(), msg)
}()
// Wait for Publish to return.
select {
case err := <-result:
if err != nil {
t.Errorf("want nil error, got %q", err)
}
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
}
func TestBrokerPublishSlowSubscriber(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
want := Message{
Topic: "testing",
Payload: "Test Message",
Sender: "test-sender",
}
// Slow subscriber that will not be ready to receive the message.
// We will not receive on this channel to simulate a slow subscriber.
broker.Subscribe(want.Topic)
// Subscriptions that will receive the message.
var subs []<-chan pubsub.Message[string, string, string]
// Create subscriptions that will receive the message after the slow subscriber.
// This way the channels will be stored after the slow subscriber internally.
for range 10 {
subs = append(subs, broker.Subscribe(want.Topic))
}
ctx, cancel := context.WithCancel(context.Background())
result := make(chan error)
go func() {
result <- broker.Publish(ctx, want)
}()
// Wait for messages to be received on the subscription channels.
for _, sub := range subs {
select {
case got := <-sub:
assertEqual(t, want, got)
case <-time.After(time.Second):
t.Fatal("timed out waiting for message")
}
}
// Cancel publishing.
cancel()
// Wait for Publish to return.
select {
case err := <-result:
if !errors.Is(err, context.Canceled) {
t.Errorf(`want error %q, got "%v"`, context.Canceled, err)
}
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
}
func TestBrokerTryPublishWithoutSubscriptions(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
done := make(chan struct{})
go func() {
defer close(done)
broker.TryPublish(Message{Topic: "testing", Payload: "Message"})
}()
select {
case <-done:
case <-time.After(time.Second):
t.Error("timed out waiting for TryPublish to return")
}
}
func TestBrokerTryPublishWithUnbufferedSubscription(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
want := Message{
Topic: "testing",
Payload: "Test Message",
Sender: "test-sender",
}
// Unbuffered subscription.
sub := broker.Subscribe(want.Topic)
result := make(chan pubsub.Message[string, string, string])
ready := make(chan struct{})
go func() {
close(ready)
result <- <-sub
}()
// Wait until the subscription is ready to receive.
<-ready
done := make(chan struct{})
go func() {
defer close(done)
broker.TryPublish(want)
}()
// Wait for TryPublish to return.
select {
case <-done:
case <-time.After(time.Second):
t.Fatal("timed out waiting for TryPublish to return")
}
// Check the received message.
select {
case got := <-result:
assertEqual(t, want, got)
case <-time.After(time.Second):
t.Error("timed out waiting for message")
}
}
func TestBrokerTryPublishWithUnbufferedSubscriptionNotReady(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
topic := "testing"
// Unbuffered subscription that we don't receive on.
sub := broker.Subscribe(topic)
done := make(chan struct{})
go func() {
defer close(done)
// Should not block if the subscription channel is not ready to receive.
broker.TryPublish(Message{Topic: topic, Payload: "Message"})
}()
select {
case <-done:
case <-time.After(time.Second):
t.Fatal("timed out waiting for TryPublish to return")
}
// The message should not be delivered.
select {
case <-sub:
t.Error("received unexpected message")
default:
}
}
func TestBrokerTryPublishWithBufferedSubscription(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
want := Message{
Topic: "testing",
Payload: "Test Message",
Sender: "test-sender",
}
// Subscription with buffer size of 1.
sub := broker.SubscribeWithCapacity(1, want.Topic)
done := make(chan struct{})
go func() {
defer close(done)
broker.TryPublish(want)
}()
select {
case <-done:
case <-time.After(time.Second):
t.Error("timed out waiting for Publish to return")
}
got := <-sub
assertEqual(t, want, got)
}
func TestBrokerConcurrentPublishSubscribe(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
// Topics to subscribe on.
topics := []string{"a", "b", "c"}
// Number of subscriptions to create per topic.
topicSubsCount := 10
// Total number of expected subscriptions.
totalSubsCount := topicSubsCount * len(topics)
var wg sync.WaitGroup
// Subscriber goroutines.
for range topicSubsCount {
wg.Add(1)
go func() {
defer wg.Done()
// Create a new subscription for each topic.
for _, topic := range topics {
wg.Add(1)
// Subscribe and wait for message in a new goroutine.
go func() {
defer wg.Done()
<-broker.Subscribe(topic)
}()
}
}()
}
// Wait for all of the subscriptions to be ready.
// This is required to make sure all of the subscriptions receive the messages.
waitUntil(time.Second, func() bool {
var total int
for _, topic := range topics {
total += broker.Subscribers(topic)
}
return total == totalSubsCount
})
// Publish return values.
results := make(chan error, len(topics))
// Publisher goroutines.
for _, topic := range topics {
wg.Add(1)
go func() {
defer wg.Done()
// Blocks until all the subscribers receive the message.
results <- broker.Publish(context.Background(), Message{Topic: topic})
}()
}
wg.Wait()
for range len(topics) {
select {
case err := <-results:
if err != nil {
t.Errorf("want nil error, got %q", err)
}
case <-time.After(time.Second):
t.Error("timed out waiting to receive Publish return value")
}
}
}
func TestBrokerConcurrentTryPublishSubscribe(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
// Topics to subscribe on.
topics := []string{"a", "b", "c"}
var wg sync.WaitGroup
// Subscriber goroutines.
for range 10 {
wg.Add(1)
go func() {
defer wg.Done()
for _, topic := range topics {
wg.Add(1)
// Subscribe and wait for message in a new goroutine.
go func() {
defer wg.Done()
// Try to subscribe and receive without waiting.
select {
case <-broker.Subscribe(topic):
default:
}
}()
}
}()
}
// Publisher goroutines.
for _, topic := range topics {
wg.Add(1)
go func() {
defer wg.Done()
// Does not wait for the subscribers to be ready.
broker.TryPublish(Message{Topic: topic})
}()
}
wg.Wait()
}
func TestBrokerConcurrentSubscribeUnsubscribe(t *testing.T) {
t.Parallel()
broker := pubsub.NewBroker[string, string, string]()
topic := "testing"
totalSubs := 10
var wg sync.WaitGroup
subs := make(chan (<-chan pubsub.Message[string, string, string]))
// Subscribe goroutines.
for range totalSubs {
wg.Add(1)
go func() {
defer wg.Done()
subs <- broker.Subscribe(topic)
}()
}
// Unsubscribe goroutines.
for range totalSubs {
wg.Add(1)
go func() {
defer wg.Done()
sub := <-subs
broker.Unsubscribe(sub)
}()
}
wg.Wait()
}