-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue_edge_test.go
More file actions
463 lines (412 loc) · 13.2 KB
/
Copy pathqueue_edge_test.go
File metadata and controls
463 lines (412 loc) · 13.2 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
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
package chat_test
import (
"context"
"log/slog"
"net/http"
"strings"
"sync"
"testing"
"time"
"github.com/coder/chat"
)
func newQueueRuntime(t *testing.T, state chat.State, adapter chat.Adapter, logs *syncBuffer, mutate ...func(*chat.RuntimeOptions)) *chat.Chat {
t.Helper()
options := chat.RuntimeOptions{
DedupeTTL: time.Hour,
ThreadLockTTL: 40 * time.Millisecond,
Concurrency: chat.ConcurrencyQueue,
Dispatch: chat.DispatchDeferred,
MaxDetached: 1024,
DetachTimeout: 5 * time.Second,
}
for _, m := range mutate {
m(&options)
}
bot, err := chat.New(context.Background(),
chat.WithState(state),
chat.WithAdapter(adapter),
chat.WithLogger(slog.New(slog.NewTextHandler(logs, &slog.HandlerOptions{Level: slog.LevelDebug}))),
chat.WithRuntimeOptions(options),
)
if err != nil {
t.Fatalf("new queue runtime: %v", err)
}
return bot
}
func TestQueueSingleFollowUpRunsAfterInflightHandler(t *testing.T) {
t.Parallel()
state := newFakeState()
adapter := newFakeAdapter("fake")
var logs syncBuffer
bot := newQueueRuntime(t, state, adapter, &logs)
firstStarted := make(chan struct{})
releaseFirst := make(chan struct{})
var mu sync.Mutex
var handled []string
bot.OnNewMention(func(ctx context.Context, ev *chat.MessageEvent) error {
mu.Lock()
first := len(handled) == 0
handled = append(handled, ev.Event.ID)
mu.Unlock()
if first {
close(firstStarted)
<-releaseFirst
}
return nil
})
if status := postEvent(t, bot, "fake", mentionEvent("first", "fake:v1:thread-1")); status != http.StatusOK {
t.Fatalf("first status = %d", status)
}
select {
case <-firstStarted:
case <-time.After(time.Second):
t.Fatal("first handler did not start")
}
// One follow-up arrives while the first handler holds the lock. It must
// queue, not drop.
followDone := make(chan postEventResult, 1)
go func() { followDone <- postEventResultFor(bot, "fake", mentionEvent("follow", "fake:v1:thread-1")) }()
// Give the follow-up time to register as a queued waiter, then release first.
time.Sleep(30 * time.Millisecond)
close(releaseFirst)
select {
case res := <-followDone:
if res.err != nil || res.status != http.StatusOK {
t.Fatalf("follow-up result status=%d err=%v", res.status, res.err)
}
case <-time.After(2 * time.Second):
t.Fatal("follow-up dispatch did not return")
}
deadline := time.After(2 * time.Second)
for {
mu.Lock()
n := len(handled)
mu.Unlock()
if n >= 2 {
break
}
select {
case <-deadline:
mu.Lock()
got := append([]string(nil), handled...)
mu.Unlock()
t.Fatalf("follow-up did not run after in-flight handler, handled = %v", got)
case <-time.After(5 * time.Millisecond):
}
}
time.Sleep(40 * time.Millisecond)
mu.Lock()
defer mu.Unlock()
if len(handled) != 2 {
t.Fatalf("handled = %v, want exactly first then follow", handled)
}
if handled[0] != "first" || handled[1] != "follow" {
t.Fatalf("handled order = %v, want [first follow]", handled)
}
// A lone follow-up was never superseded, so no supersession should be logged.
if strings.Contains(logs.String(), "chat queue superseded") {
t.Fatalf("lone follow-up should not be superseded; logs:\n%s", logs.String())
}
}
func TestQueueSupersededEventSurfacesSupersededByObservation(t *testing.T) {
t.Parallel()
state := newFakeState()
adapter := newFakeAdapter("fake")
var logs syncBuffer
bot := newQueueRuntime(t, state, adapter, &logs, func(o *chat.RuntimeOptions) {
o.ThreadLockTTL = 60 * time.Millisecond
})
firstStarted := make(chan struct{})
releaseFirst := make(chan struct{})
var mu sync.Mutex
var handled []string
bot.OnNewMention(func(ctx context.Context, ev *chat.MessageEvent) error {
mu.Lock()
first := len(handled) == 0
handled = append(handled, ev.Event.ID)
mu.Unlock()
if first {
close(firstStarted)
<-releaseFirst
}
return nil
})
if status := postEvent(t, bot, "fake", mentionEvent("first", "fake:v1:thread-1")); status != http.StatusOK {
t.Fatalf("first status = %d", status)
}
select {
case <-firstStarted:
case <-time.After(time.Second):
t.Fatal("first handler did not start")
}
// "older" queues first, then "newer" supersedes it.
var wg sync.WaitGroup
for _, id := range []string{"older", "newer"} {
wg.Add(1)
go func(id string) {
defer wg.Done()
res := postEventResultFor(bot, "fake", mentionEvent(id, "fake:v1:thread-1"))
if res.err != nil || res.status != http.StatusOK {
t.Errorf("follow-up %s status=%d err=%v", id, res.status, res.err)
}
}(id)
time.Sleep(15 * time.Millisecond)
}
close(releaseFirst)
wg.Wait()
deadline := time.After(2 * time.Second)
for {
mu.Lock()
n := len(handled)
mu.Unlock()
if n >= 2 {
break
}
select {
case <-deadline:
t.Fatalf("queued winner did not run, handled = %v", handled)
case <-time.After(5 * time.Millisecond):
}
}
time.Sleep(40 * time.Millisecond)
mu.Lock()
defer mu.Unlock()
if len(handled) != 2 {
t.Fatalf("handled = %v, want first then the newest follow-up only", handled)
}
if handled[1] != "newer" {
t.Fatalf("queued winner = %q, want newer (most recent)", handled[1])
}
out := logs.String()
if !strings.Contains(out, "chat queue superseded") {
t.Fatalf("superseded event not surfaced via observation; logs:\n%s", out)
}
// The displacing event id must be carried on superseded_by.
if !strings.Contains(out, "superseded_by=newer") {
t.Fatalf("supersession did not carry superseded_by=newer; logs:\n%s", out)
}
}
func TestQueueDropRemainsDefaultRegression(t *testing.T) {
t.Parallel()
state := newFakeState()
adapter := newFakeAdapter("fake")
var logs syncBuffer
// Deferred dispatch but Concurrency left as the zero value (ConcurrencyDrop).
bot, err := chat.New(context.Background(),
chat.WithState(state),
chat.WithAdapter(adapter),
chat.WithLogger(slog.New(slog.NewTextHandler(&logs, &slog.HandlerOptions{Level: slog.LevelDebug}))),
chat.WithRuntimeOptions(chat.RuntimeOptions{
DedupeTTL: time.Hour,
ThreadLockTTL: time.Hour,
Dispatch: chat.DispatchDeferred,
MaxDetached: 1024,
DetachTimeout: 5 * time.Second,
}),
)
if err != nil {
t.Fatalf("new runtime: %v", err)
}
firstStarted := make(chan struct{})
releaseFirst := make(chan struct{})
var mu sync.Mutex
var handled []string
bot.OnNewMention(func(ctx context.Context, ev *chat.MessageEvent) error {
mu.Lock()
first := len(handled) == 0
handled = append(handled, ev.Event.ID)
mu.Unlock()
if first {
close(firstStarted)
<-releaseFirst
}
return nil
})
if status := postEvent(t, bot, "fake", mentionEvent("first", "fake:v1:thread-1")); status != http.StatusOK {
t.Fatalf("first status = %d", status)
}
select {
case <-firstStarted:
case <-time.After(time.Second):
t.Fatal("first handler did not start")
}
// Follow-up under drop: acked and dropped, never queued.
if status := postEvent(t, bot, "fake", mentionEvent("dropped", "fake:v1:thread-1")); status != http.StatusOK {
t.Fatalf("dropped follow-up status = %d", status)
}
mu.Lock()
if len(handled) != 1 {
got := append([]string(nil), handled...)
mu.Unlock()
t.Fatalf("drop strategy ran a follow-up: handled = %v", got)
}
mu.Unlock()
out := logs.String()
if !strings.Contains(out, "chat lock conflict dropped") {
t.Fatalf("drop did not surface a lock-conflict-dropped observation; logs:\n%s", out)
}
if strings.Contains(out, "chat queue superseded") || strings.Contains(out, "chat queue wait abandoned") {
t.Fatalf("queue observations leaked under the drop default; logs:\n%s", out)
}
close(releaseFirst)
// Let the first handler finish; no second handler should ever run.
deadline := time.Now().Add(200 * time.Millisecond)
for time.Now().Before(deadline) {
mu.Lock()
n := len(handled)
mu.Unlock()
if n > 1 {
t.Fatalf("dropped follow-up ran after first completed")
}
time.Sleep(10 * time.Millisecond)
}
}
func TestQueueWaitAbandonedSurfacesObservation(t *testing.T) {
t.Parallel()
state := newFakeState()
adapter := newFakeAdapter("fake")
var logs syncBuffer
bot := newQueueRuntime(t, state, adapter, &logs, func(o *chat.RuntimeOptions) {
o.ThreadLockTTL = time.Hour
// The detached waiter abandons at DetachTimeout; keep it short so the
// abandonment fires quickly without relying on the request lifetime.
o.DetachTimeout = 80 * time.Millisecond
})
var mu sync.Mutex
var calls int
bot.OnNewMention(func(ctx context.Context, ev *chat.MessageEvent) error {
mu.Lock()
calls++
mu.Unlock()
return nil
})
// Hold the lock with an outside token that never releases.
if _, acquired, err := state.AcquireLock(context.Background(), "fake:v1:thread-1", time.Hour); err != nil || !acquired {
t.Fatalf("seed lock acquired=%v err=%v", acquired, err)
}
// Ack is prompt (ack-then-work): the post returns 200 well before the
// detached waiter abandons at DetachTimeout.
if status := postEvent(t, bot, "fake", mentionEvent("abandoned", "fake:v1:thread-1")); status != http.StatusOK {
t.Fatalf("abandoned queue wait status = %d, want 200", status)
}
// The abandonment must be observable once the Detached Work Context expires.
deadline := time.After(2 * time.Second)
for !strings.Contains(logs.String(), "chat queue wait abandoned") {
select {
case <-deadline:
t.Fatalf("abandonment not surfaced via observation; logs:\n%s", logs.String())
case <-time.After(5 * time.Millisecond):
}
}
mu.Lock()
defer mu.Unlock()
if calls != 0 {
t.Fatalf("handler ran despite never acquiring the lock, calls = %d", calls)
}
}
func TestQueueDeferredFollowUpAcksPromptlyWhileInflightWorks(t *testing.T) {
t.Parallel()
state := newFakeState()
adapter := newFakeAdapter("fake")
var logs syncBuffer
bot := newQueueRuntime(t, state, adapter, &logs, func(o *chat.RuntimeOptions) {
o.ThreadLockTTL = time.Hour
o.DetachTimeout = 5 * time.Second
})
firstStarted := make(chan struct{})
releaseFirst := make(chan struct{})
defer close(releaseFirst)
var mu sync.Mutex
var handled []string
bot.OnNewMention(func(ctx context.Context, ev *chat.MessageEvent) error {
mu.Lock()
first := len(handled) == 0
handled = append(handled, ev.Event.ID)
mu.Unlock()
if first {
close(firstStarted)
<-releaseFirst // hold the lock indefinitely
}
return nil
})
if status := postEvent(t, bot, "fake", mentionEvent("first", "fake:v1:thread-1")); status != http.StatusOK {
t.Fatalf("first status = %d", status)
}
select {
case <-firstStarted:
case <-time.After(time.Second):
t.Fatal("first handler did not start")
}
// The follow-up's post (ack) must return promptly even though the in-flight
// handler still holds the lock and never releases it. If the queue wait still
// blocked the request, this post would not return until releaseFirst (never).
acked := make(chan int, 1)
go func() { acked <- postEvent(t, bot, "fake", mentionEvent("follow", "fake:v1:thread-1")) }()
select {
case status := <-acked:
if status != http.StatusOK {
t.Fatalf("queued follow-up ack status = %d, want 200", status)
}
case <-time.After(500 * time.Millisecond):
t.Fatal("queued follow-up ack blocked on the in-flight handler (not ack-then-work)")
}
// The follow-up's handler must NOT have run yet: it is waiting on the detached
// context for the lock the first handler still holds.
mu.Lock()
if len(handled) != 1 {
got := append([]string(nil), handled...)
mu.Unlock()
t.Fatalf("queued follow-up ran before the in-flight handler released, handled = %v", got)
}
mu.Unlock()
}
func TestQueueDeferredWaiterDrainedAndCancelledByShutdown(t *testing.T) {
t.Parallel()
state := newFakeState()
adapter := newFakeAdapter("fake")
var logs syncBuffer
bot := newQueueRuntime(t, state, adapter, &logs, func(o *chat.RuntimeOptions) {
o.ThreadLockTTL = time.Hour
// Long enough that only Shutdown (not the timeout) can end the wait.
o.DetachTimeout = time.Hour
})
var mu sync.Mutex
var calls int
bot.OnNewMention(func(ctx context.Context, ev *chat.MessageEvent) error {
mu.Lock()
calls++
mu.Unlock()
return nil
})
// Hold the lock with an outside token that never releases, so the queued
// waiter can only ever be ended by Shutdown.
if _, acquired, err := state.AcquireLock(context.Background(), "fake:v1:thread-1", time.Hour); err != nil || !acquired {
t.Fatalf("seed lock acquired=%v err=%v", acquired, err)
}
if status := postEvent(t, bot, "fake", mentionEvent("waiter", "fake:v1:thread-1")); status != http.StatusOK {
t.Fatalf("waiter status = %d", status)
}
// Give the detached waiter time to enter its poll loop.
time.Sleep(40 * time.Millisecond)
// Shutdown must return (drain completes) even though the lock never frees,
// because baseCancel cancels the waiter's detached context and the inflight
// WaitGroup tracks it.
done := make(chan error, 1)
go func() { done <- bot.Shutdown(context.Background()) }()
select {
case err := <-done:
if err != nil {
t.Fatalf("shutdown error: %v", err)
}
case <-time.After(2 * time.Second):
t.Fatal("shutdown did not drain the queued waiter (not cancelled by baseCancel / not tracked by inflight)")
}
if !strings.Contains(logs.String(), "chat queue wait abandoned") {
t.Fatalf("shutdown-cancelled waiter not surfaced as abandoned; logs:\n%s", logs.String())
}
mu.Lock()
defer mu.Unlock()
if calls != 0 {
t.Fatalf("handler ran despite the lock never freeing, calls = %d", calls)
}
}