-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue_test.go
More file actions
344 lines (301 loc) · 7.11 KB
/
queue_test.go
File metadata and controls
344 lines (301 loc) · 7.11 KB
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
package microqueue
import (
"fmt"
"sync"
"testing"
"time"
)
func TestPublishConsumeAckManual(t *testing.T) {
m := NewMemoryQueueManager()
defer m.Close()
if err := m.CreateQueue("orders", AckManual); err != nil {
t.Fatal(err)
}
q, _ := m.GetQueue("orders")
msg := Message{ID: "m1", Topic: "orders", Payload: []byte("hello")}
if err := q.Publish(msg); err != nil {
t.Fatalf("publish: %v", err)
}
got, err := q.ConsumeOne("c1", 500*time.Millisecond)
if err != nil {
t.Fatalf("consume: %v", err)
}
if got.ID != "m1" {
t.Fatalf("expect m1 got %s", got.ID)
}
if err := q.Ack("c1", got.ID); err != nil {
t.Fatalf("ack: %v", err)
}
if c := q.PendingCount(); c != 0 {
t.Fatalf("expect pending 0 got %d", c)
}
}
func TestSubscribeAutoAck(t *testing.T) {
m := NewMemoryQueueManager()
defer m.Close()
if err := m.CreateQueue("jobs", AckAuto); err != nil {
t.Fatal(err)
}
q, _ := m.GetQueue("jobs")
var mu sync.Mutex
count := 0
unsub, err := q.Subscribe("worker-1", func(m Message) error {
mu.Lock()
count++
mu.Unlock()
return nil
})
if err != nil {
t.Fatal(err)
}
defer unsub()
N := 100
for i := 0; i < N; i++ {
id := "j-" + itoa(i)
if err := q.Publish(Message{ID: id, Topic: "jobs"}); err != nil {
t.Fatal(err)
}
}
// wait until processed or timeout
deadline := time.Now().Add(2 * time.Second)
for time.Now().Before(deadline) {
mu.Lock()
if count >= N {
mu.Unlock()
break
}
mu.Unlock()
time.Sleep(10 * time.Millisecond)
}
mu.Lock()
defer mu.Unlock()
if count != N {
t.Fatalf("expect %d processed, got %d", N, count)
}
}
func TestDelayedDelivery(t *testing.T) {
m := NewMemoryQueueManager()
defer m.Close()
if err := m.CreateQueue("delay", AckManual); err != nil {
t.Fatal(err)
}
q, _ := m.GetQueue("delay")
start := time.Now()
if err := q.PublishWithDelay(Message{ID: "d1", Topic: "delay"}, 200*time.Millisecond); err != nil {
t.Fatal(err)
}
got, err := q.ConsumeOne("c1", 1*time.Second)
if err != nil {
t.Fatalf("consume: %v", err)
}
if got.ID != "d1" {
t.Fatalf("expect d1 got %s", got.ID)
}
if time.Since(start) < 200*time.Millisecond {
t.Fatalf("delivered too early: %v", time.Since(start))
}
if err := q.Ack("c1", "d1"); err != nil {
t.Fatalf("ack: %v", err)
}
}
func TestNackRequeue(t *testing.T) {
m := NewMemoryQueueManager()
defer m.Close()
if err := m.CreateQueue("nackq", AckManual); err != nil {
t.Fatal(err)
}
q, _ := m.GetQueue("nackq")
if err := q.Publish(Message{ID: "x1", Topic: "nackq"}); err != nil {
t.Fatal(err)
}
msg, err := q.ConsumeOne("c1", 500*time.Millisecond)
if err != nil {
t.Fatal(err)
}
if msg.ID != "x1" {
t.Fatalf("expect x1 got %s", msg.ID)
}
// Nack with requeue
if err := q.Nack("c1", "x1", true); err != nil {
t.Fatalf("nack: %v", err)
}
// Should come again
msg2, err := q.ConsumeOne("c2", 500*time.Millisecond)
if err != nil {
t.Fatal(err)
}
if msg2.ID != "x1" {
t.Fatalf("expect x1 got %s", msg2.ID)
}
if msg2.Retry != 1 {
t.Fatalf("expect retry 1 got %d", msg2.Retry)
}
if err := q.Ack("c2", "x1"); err != nil {
t.Fatalf("ack: %v", err)
}
}
func TestConcurrentProducersConsumers_NoBlockOnFull(t *testing.T) {
m := NewMemoryQueueManager()
defer m.Close()
// Create queue with small buffer to trigger full condition
if err := m.CreateQueue("concurrent", AckManual, WithBuffer(100)); err != nil {
t.Fatal(err)
}
q, _ := m.GetQueue("concurrent")
total := 5000
producers := 5
consumers := 10
var mu sync.Mutex
received := 0
prodWG := sync.WaitGroup{}
consWG := sync.WaitGroup{}
stop := make(chan struct{})
// Producers
prodWG.Add(producers)
for p := 0; p < producers; p++ {
go func(pi int) {
defer prodWG.Done()
start := pi * (total / producers)
end := start + (total / producers)
for i := start; i < end; i++ {
id := "m-" + itoa(i)
if err := q.Publish(Message{ID: id, Topic: "concurrent"}); err != nil && err != ErrClosed {
t.Error(err)
return
}
}
}(p)
}
// Consumers
consWG.Add(consumers)
for c := 0; c < consumers; c++ {
go func(ci int) {
defer consWG.Done()
for {
select {
case <-stop:
return
default:
}
msg, err := q.ConsumeOne("c-"+itoa(ci), 50*time.Millisecond)
if err == ErrTimeout {
continue
}
if err != nil {
return
}
_ = q.Ack("c-"+itoa(ci), msg.ID)
mu.Lock()
received++
mu.Unlock()
}
}(c)
}
// Wait for producers to finish
prodWG.Wait()
// Wait until all messages are drained
time.Sleep(500 * time.Millisecond)
// Stop consumers
close(stop)
consWG.Wait()
t.Logf("Received %d messages (some may be dropped due to full queue)", received)
}
// small integer to ascii helper without fmt for speed in tight loops
func itoa(n int) string {
if n == 0 {
return "0"
}
neg := n < 0
if neg {
n = -n
}
buf := [20]byte{}
i := len(buf)
for n > 0 {
i--
buf[i] = byte('0' + n%10)
n /= 10
}
if neg {
i--
buf[i] = '-'
}
return string(buf[i:])
}
func TestDroppedCount(t *testing.T) {
m := NewMemoryQueueManager()
defer m.Close()
if err := m.CreateQueue("dropq", AckManual, WithBuffer(3)); err != nil {
t.Fatal(err)
}
q, _ := m.GetQueue("dropq")
// Fill queue
for i := 0; i < 3; i++ {
_ = q.Publish(Message{ID: itoa(i), Topic: "dropq"})
}
// Push extra messages; should drop oldest
_ = q.Publish(Message{ID: "extra1", Topic: "dropq"})
_ = q.Publish(Message{ID: "extra2", Topic: "dropq"})
if dropped := q.DroppedCount(); dropped != 2 {
t.Fatalf("expected 2 dropped messages, got %d", dropped)
}
}
func TestMultiProducerMultiSubscriber(t *testing.T) {
m := NewMemoryQueueManager()
defer m.Close()
queueName := "multi"
bufSize := 20000 // small buffer to force drops
if err := m.CreateQueue(queueName, AckManual, WithBuffer(bufSize)); err != nil {
t.Fatal(err)
}
q, _ := m.GetQueue(queueName)
totalMessages := 20000
producers := 50
subscribers := 40
var mu sync.Mutex
processed := 0
unsubs := make([]func(), 0, subscribers)
for s := 0; s < subscribers; s++ {
unsub, err := q.Subscribe(fmt.Sprintf("sub-%d", s), func(m Message) error {
// simulate processing
time.Sleep(time.Millisecond)
mu.Lock()
processed++
mu.Unlock()
_ = q.Ack(fmt.Sprintf("sub-%d", s), m.ID)
return nil
})
if err != nil {
t.Fatal(err)
}
unsubs = append(unsubs, unsub)
}
defer func() {
for _, u := range unsubs {
u()
}
}()
var wg sync.WaitGroup
wg.Add(producers)
for p := 0; p < producers; p++ {
go func(pid int) {
defer wg.Done()
start := pid * (totalMessages / producers)
end := start + (totalMessages / producers)
for i := start; i < end; i++ {
id := fmt.Sprintf("msg-%d", i)
_ = q.Publish(Message{ID: id, Topic: queueName, Payload: []byte("data")})
}
}(p)
}
wg.Wait()
time.Sleep(2 * time.Second)
dropped := q.DroppedCount()
totalSeen := processed + int(dropped)
t.Logf("Processed: %d, Dropped: %d, Total Seen: %d, Expected ~ %d",
processed, dropped, totalSeen, totalMessages)
if totalSeen < totalMessages*9/10 { // allow 10% deviation due to timing
t.Fatalf("too many messages lost: processed=%d dropped=%d total=%d expected=%d",
processed, dropped, totalSeen, totalMessages)
}
}