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
|
diff --git a/pkg/pubsub/regression_test.go b/pkg/pubsub/regression_test.go
new file mode 100644
index 0000000..c595c9b
--- /dev/null
+++ b/pkg/pubsub/regression_test.go
@@ -0,0 +1,408 @@
+package pubsub
+
+import (
+ "bytes"
+ "context"
+ "fmt"
+ "log/slog"
+ "sync"
+ "sync/atomic"
+ "testing"
+ "time"
+)
+
+// TestChannelMessageOrdering verifies that messages are delivered without panics or corruption.
+// This applies to both multicast and round-robin dispatchers.
+func TestChannelMessageOrdering(t *testing.T) {
+ name := "order-test"
+ numMessages := 3
+
+ // Test with Multicast
+ t.Run("Multicast", func(t *testing.T) {
+ cast := NewMulticast(slog.Default())
+ buf := new(Buffer)
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+ syncer := make(chan int)
+
+ // Subscribe
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ syncer <- 0
+ _ = cast.Sub(context.TODO(), "sub", buf, []*Channel{channel}, false)
+ }()
+
+ <-syncer
+
+ // Publish messages
+ for i := 0; i < numMessages; i++ {
+ wg.Add(1)
+ idx := i
+ go func() {
+ defer wg.Done()
+ msg := fmt.Sprintf("msg%d\n", idx)
+ _ = cast.Pub(context.TODO(), "pub", &Buffer{b: *bytes.NewBufferString(msg)}, []*Channel{channel}, false)
+ }()
+ }
+
+ wg.Wait()
+
+ // Verify at least some messages were received
+ content := buf.String()
+ if len(content) == 0 {
+ t.Error("Multicast: no messages received")
+ }
+ })
+
+ // Test with RoundRobin
+ t.Run("RoundRobin", func(t *testing.T) {
+ rr := NewRoundRobin(slog.Default())
+ buf := new(Buffer)
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+ syncer := make(chan int)
+
+ // Subscribe
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ syncer <- 0
+ _ = rr.Sub(context.TODO(), "sub", buf, []*Channel{channel}, false)
+ }()
+
+ <-syncer
+
+ // Publish messages
+ for i := 0; i < numMessages; i++ {
+ wg.Add(1)
+ idx := i
+ go func() {
+ defer wg.Done()
+ msg := fmt.Sprintf("msg%d\n", idx)
+ _ = rr.Pub(context.TODO(), "pub", &Buffer{b: *bytes.NewBufferString(msg)}, []*Channel{channel}, false)
+ }()
+ }
+
+ wg.Wait()
+
+ // Verify at least some messages were received
+ content := buf.String()
+ if len(content) == 0 {
+ t.Error("RoundRobin: no messages received")
+ }
+ })
+}
+
+// TestDispatcherClientDirection verifies that both dispatchers respect client direction.
+// Publishers should not receive messages they publish.
+func TestDispatcherClientDirection(t *testing.T) {
+ name := "direction-test"
+
+ t.Run("Multicast", func(t *testing.T) {
+ cast := NewMulticast(slog.Default())
+ pubBuf := new(Buffer)
+ subBuf := new(Buffer)
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+
+ // Publisher (input only)
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ _ = cast.Pub(context.TODO(), "pub", &Buffer{b: *bytes.NewBufferString("test")}, []*Channel{channel}, false)
+ }()
+
+ // Subscriber (output only)
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ _ = cast.Sub(context.TODO(), "sub", subBuf, []*Channel{channel}, false)
+ }()
+
+ wg.Wait()
+
+ // Publisher should not receive the message
+ if pubBuf.String() != "" {
+ t.Errorf("Publisher received message: %q", pubBuf.String())
+ }
+
+ // Subscriber should receive it
+ if subBuf.String() != "test" {
+ t.Errorf("Subscriber should have received message, got: %q", subBuf.String())
+ }
+ })
+
+ t.Run("RoundRobin", func(t *testing.T) {
+ rr := NewRoundRobin(slog.Default())
+ pubBuf := new(Buffer)
+ subBuf := new(Buffer)
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+
+ // Publisher (input only)
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ _ = rr.Pub(context.TODO(), "pub", &Buffer{b: *bytes.NewBufferString("test")}, []*Channel{channel}, false)
+ }()
+
+ // Subscriber (output only)
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ _ = rr.Sub(context.TODO(), "sub", subBuf, []*Channel{channel}, false)
+ }()
+
+ wg.Wait()
+
+ // Publisher should not receive the message
+ if pubBuf.String() != "" {
+ t.Errorf("Publisher received message: %q", pubBuf.String())
+ }
+
+ // Subscriber should receive it
+ if subBuf.String() != "test" {
+ t.Errorf("Subscriber should have received message, got: %q", subBuf.String())
+ }
+ })
+}
+
+// TestChannelConcurrentPublishes verifies that concurrent publishes don't cause races or data loss.
+func TestChannelConcurrentPublishes(t *testing.T) {
+ name := "concurrent-test"
+ numPublishers := 10
+ msgsPerPublisher := 5
+ numSubscribers := 3
+
+ t.Run("Multicast", func(t *testing.T) {
+ cast := NewMulticast(slog.Default())
+ buffers := make([]*Buffer, numSubscribers)
+ for i := range buffers {
+ buffers[i] = new(Buffer)
+ }
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+
+ // Subscribe
+ for i := range buffers {
+ wg.Add(1)
+ idx := i
+ go func() {
+ defer wg.Done()
+ _ = cast.Sub(context.TODO(), fmt.Sprintf("sub-%d", idx), buffers[idx], []*Channel{channel}, false)
+ }()
+ }
+ time.Sleep(100 * time.Millisecond)
+
+ // Concurrent publishers
+ pubCount := int32(0)
+ for p := 0; p < numPublishers; p++ {
+ pubID := p
+ for m := 0; m < msgsPerPublisher; m++ {
+ wg.Add(1)
+ msgNum := m
+ go func() {
+ defer wg.Done()
+ msg := fmt.Sprintf("pub%d-msg%d\n", pubID, msgNum)
+ _ = cast.Pub(context.TODO(), fmt.Sprintf("pub-%d", pubID), &Buffer{b: *bytes.NewBufferString(msg)}, []*Channel{channel}, false)
+ atomic.AddInt32(&pubCount, 1)
+ }()
+ }
+ }
+
+ wg.Wait()
+
+ // Verify all messages delivered to all subscribers
+ totalExpectedMessages := numPublishers * msgsPerPublisher
+ for i, buf := range buffers {
+ messageCount := bytes.Count([]byte(buf.String()), []byte("\n"))
+ if messageCount != totalExpectedMessages {
+ t.Errorf("Subscriber %d: expected %d messages, got %d", i, totalExpectedMessages, messageCount)
+ }
+ }
+
+ // Verify all publishes completed
+ if pubCount != int32(totalExpectedMessages) {
+ t.Errorf("Expected %d publishes to complete, got %d", totalExpectedMessages, pubCount)
+ }
+ })
+
+ t.Run("RoundRobin", func(t *testing.T) {
+ rr := NewRoundRobin(slog.Default())
+ buffers := make([]*Buffer, numSubscribers)
+ for i := range buffers {
+ buffers[i] = new(Buffer)
+ }
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+
+ // Subscribe
+ for i := range buffers {
+ wg.Add(1)
+ idx := i
+ go func() {
+ defer wg.Done()
+ _ = rr.Sub(context.TODO(), fmt.Sprintf("sub-%d", idx), buffers[idx], []*Channel{channel}, false)
+ }()
+ }
+ time.Sleep(100 * time.Millisecond)
+
+ // Concurrent publishers
+ pubCount := int32(0)
+ for p := 0; p < numPublishers; p++ {
+ pubID := p
+ for m := 0; m < msgsPerPublisher; m++ {
+ wg.Add(1)
+ msgNum := m
+ go func() {
+ defer wg.Done()
+ msg := fmt.Sprintf("pub%d-msg%d\n", pubID, msgNum)
+ _ = rr.Pub(context.TODO(), fmt.Sprintf("pub-%d", pubID), &Buffer{b: *bytes.NewBufferString(msg)}, []*Channel{channel}, false)
+ atomic.AddInt32(&pubCount, 1)
+ }()
+ }
+ }
+
+ wg.Wait()
+
+ // Verify all messages distributed (one to each subscriber per round-robin cycle)
+ // Allow for some timing variance - expect at least 90% of messages
+ totalExpectedMessages := numPublishers * msgsPerPublisher
+ totalDelivered := int32(0)
+ for _, buf := range buffers {
+ messageCount := bytes.Count([]byte(buf.String()), []byte("\n"))
+ totalDelivered += int32(messageCount)
+ }
+ minExpected := int32(float32(totalExpectedMessages) * 0.9)
+ if totalDelivered < minExpected {
+ t.Errorf("Expected at least %d messages, got %d", minExpected, totalDelivered)
+ }
+
+ // Verify all publishes completed
+ if pubCount != int32(totalExpectedMessages) {
+ t.Errorf("Expected %d publishes to complete, got %d", totalExpectedMessages, pubCount)
+ }
+ })
+}
+
+// TestDispatcherEmptySubscribers verifies that dispatchers handle empty subscriber set without panic.
+func TestDispatcherEmptySubscribers(t *testing.T) {
+ name := "empty-subs-test"
+
+ t.Run("Multicast", func(t *testing.T) {
+ cast := NewMulticast(slog.Default())
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+
+ // Publish with no subscribers (should not panic)
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ defer func() {
+ if r := recover(); r != nil {
+ t.Errorf("Multicast panicked with no subscribers: %v", r)
+ }
+ }()
+ _ = cast.Pub(context.TODO(), "pub", &Buffer{b: *bytes.NewBufferString("test")}, []*Channel{channel}, false)
+ }()
+
+ wg.Wait()
+ t.Log("Multicast handled empty subscribers correctly")
+ })
+
+ t.Run("RoundRobin", func(t *testing.T) {
+ rr := NewRoundRobin(slog.Default())
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+
+ // Publish with no subscribers (should not panic)
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ defer func() {
+ if r := recover(); r != nil {
+ t.Errorf("RoundRobin panicked with no subscribers: %v", r)
+ }
+ }()
+ _ = rr.Pub(context.TODO(), "pub", &Buffer{b: *bytes.NewBufferString("test")}, []*Channel{channel}, false)
+ }()
+
+ wg.Wait()
+ t.Log("RoundRobin handled empty subscribers correctly")
+ })
+}
+
+// TestDispatcherSingleSubscriber verifies that both dispatchers work correctly with one subscriber.
+func TestDispatcherSingleSubscriber(t *testing.T) {
+ name := "single-sub-test"
+ message := "single-sub-message"
+
+ t.Run("Multicast", func(t *testing.T) {
+ cast := NewMulticast(slog.Default())
+ buf := new(Buffer)
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+
+ // Subscribe
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ _ = cast.Sub(context.TODO(), "sub", buf, []*Channel{channel}, false)
+ }()
+
+ time.Sleep(100 * time.Millisecond)
+
+ // Publish
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ _ = cast.Pub(context.TODO(), "pub", &Buffer{b: *bytes.NewBufferString(message)}, []*Channel{channel}, false)
+ }()
+
+ wg.Wait()
+
+ if buf.String() != message {
+ t.Errorf("Multicast with single subscriber: expected %q, got %q", message, buf.String())
+ }
+ })
+
+ t.Run("RoundRobin", func(t *testing.T) {
+ rr := NewRoundRobin(slog.Default())
+ buf := new(Buffer)
+ channel := NewChannel(name)
+
+ var wg sync.WaitGroup
+
+ // Subscribe
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ _ = rr.Sub(context.TODO(), "sub", buf, []*Channel{channel}, false)
+ }()
+
+ time.Sleep(100 * time.Millisecond)
+
+ // Publish
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ _ = rr.Pub(context.TODO(), "pub", &Buffer{b: *bytes.NewBufferString(message)}, []*Channel{channel}, false)
+ }()
+
+ wg.Wait()
+
+ if buf.String() != message {
+ t.Errorf("RoundRobin with single subscriber: expected %q, got %q", message, buf.String())
+ }
+ })
+}
|