-
Notifications
You must be signed in to change notification settings - Fork 4
/
work_test.go
616 lines (521 loc) · 12.3 KB
/
work_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
package qg_test
import (
"context"
"database/sql"
"fmt"
"sync"
"testing"
"time"
"github.com/jackc/pgx/v5"
"github.com/kanmu/qg/v5"
)
func TestLockJob(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j.Conn() == nil {
t.Fatal("want non-nil conn on locked Job")
}
if j.TestGetClient() == nil {
t.Fatal("want non-nil c on locked Job")
}
defer j.Done()
// check values of returned Job
if j.ID == 0 {
t.Errorf("want non-zero ID")
}
if want := ""; j.Queue != want {
t.Errorf("want Queue=%q, got %q", want, j.Queue)
}
if want := int16(100); j.Priority != want {
t.Errorf("want Priority=%d, got %d", want, j.Priority)
}
if j.RunAt.IsZero() {
t.Error("want non-zero RunAt")
}
if want := "MyJob"; j.Type != want {
t.Errorf("want Type=%q, got %q", want, j.Type)
}
if want, got := "[]", string(j.Args); got != want {
t.Errorf("want Args=%s, got %s", want, got)
}
if want := int32(0); j.ErrorCount != want {
t.Errorf("want ErrorCount=%d, got %d", want, j.ErrorCount)
}
if j.LastError.Valid {
t.Errorf("want no LastError, got %v", j.LastError)
}
// check for advisory lock
var count int64
query := "SELECT count(*) FROM pg_locks WHERE locktype=$1 AND objid=$2::bigint"
if err = j.TestGetClient().TestGetPool().QueryRow(query, "advisory", j.ID).Scan(&count); err != nil {
t.Fatal(err)
}
if count != 1 {
t.Errorf("want 1 advisory lock, got %d", count)
}
// make sure conn was checked out of pool
openedConn := 2 // one is for locking job, the other is for counting pg_locks
stat := c.TestGetPool().Stats()
available := stat.OpenConnections
if want := openedConn; available != want {
t.Errorf("want available=%d, got %d", want, available)
}
if err = j.Delete(); err != nil {
t.Fatal(err)
}
}
func TestLockJobAlreadyLocked(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j == nil {
t.Fatal("wanted job, got none")
}
defer j.Done()
j2, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j2 != nil {
defer j2.Done()
t.Fatalf("wanted no job, got %+v", j2)
}
}
func TestLockJobNoJob(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j != nil {
t.Errorf("want no job, got %v", j)
}
}
func TestLockJobCustomQueue(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
if err := c.Enqueue(&qg.Job{Type: "MyJob", Queue: "extra_priority"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j != nil {
j.Done()
t.Errorf("expected no job to be found with empty queue name, got %+v", j)
}
j, err = c.LockJob("extra_priority")
if err != nil {
t.Fatal(err)
}
defer j.Done()
if j == nil {
t.Fatal("wanted job, got none")
}
if err = j.Delete(); err != nil {
t.Fatal(err)
}
}
func TestJobConnRace(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j == nil {
t.Fatal("wanted job, got none")
}
defer j.Done()
var wg sync.WaitGroup
wg.Add(2)
// call Conn and Done in different goroutines to make sure they are safe from
// races.
go func() {
_ = j.Conn()
wg.Done()
}()
go func() {
j.Done()
wg.Done()
}()
wg.Wait()
}
// Test the race condition in LockJob
func TestLockJobAdvisoryRace(t *testing.T) {
c := openTestClientMaxConns(t, 4, sql.OpenDB)
defer truncateAndClose(c)
ctx := context.Background()
// We use two jobs: the first one is concurrently deleted, and the second
// one is returned by LockJob after recovering from the race condition.
for i := 0; i < 2; i++ {
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
}
// helper functions
newConn := func() *pgx.Conn {
conn, err := pgx.ConnectConfig(ctx, testConnConfig)
if err != nil {
panic(err)
}
return conn
}
getBackendID := func(conn *pgx.Conn) int32 {
var backendID int32
err := conn.QueryRow(ctx, `
SELECT pg_backend_pid()
`).Scan(&backendID)
if err != nil {
panic(err)
}
return backendID
}
waitUntilBackendIsWaiting := func(backendID int32, name string) {
conn := newConn()
i := 0
for {
var waiting bool
err := conn.QueryRow(ctx, `SELECT wait_event is not null from pg_stat_activity where pid=$1`, backendID).Scan(&waiting)
if err != nil {
panic(err)
}
if waiting {
break
} else {
i++
if i >= 10000/50 {
panic(fmt.Sprintf("timed out while waiting for %s", name))
}
time.Sleep(50 * time.Millisecond)
}
}
}
// Reproducing the race condition is a bit tricky. The idea is to form a
// lock queue on the relation that looks like this:
//
// AccessExclusive <- AccessShare <- AccessExclusive ( <- AccessShare )
//
// where the leftmost AccessShare lock is the one implicitly taken by the
// sqlLockJob query. Once we release the leftmost AccessExclusive lock
// without releasing the rightmost one, the session holding the rightmost
// AccessExclusiveLock can run the necessary DELETE before the sqlCheckJob
// query runs (since it'll be blocked behind the rightmost AccessExclusive
// Lock).
//
deletedJobIDChan := make(chan int64, 1)
lockJobBackendIDChan := make(chan int32)
secondAccessExclusiveBackendIDChan := make(chan int32)
go func() {
conn := newConn()
defer conn.Close(ctx)
tx, err := conn.Begin(ctx)
if err != nil {
panic(err)
}
_, err = tx.Exec(ctx, `LOCK TABLE que_jobs IN ACCESS EXCLUSIVE MODE`)
if err != nil {
panic(err)
}
// first wait for LockJob to appear behind us
backendID := <-lockJobBackendIDChan
waitUntilBackendIsWaiting(backendID, "LockJob")
// then for the AccessExclusive lock to appear behind that one
backendID = <-secondAccessExclusiveBackendIDChan
waitUntilBackendIsWaiting(backendID, "second access exclusive lock")
err = tx.Rollback(ctx)
if err != nil {
panic(err)
}
}()
go func() {
conn := newConn()
defer conn.Close(ctx)
// synchronization point
secondAccessExclusiveBackendIDChan <- getBackendID(conn)
tx, err := conn.Begin(ctx)
if err != nil {
panic(err)
}
_, err = tx.Exec(ctx, `LOCK TABLE que_jobs IN ACCESS EXCLUSIVE MODE`)
if err != nil {
panic(err)
}
// Fake a concurrent transaction grabbing the job
var jid int64
err = tx.QueryRow(ctx, `
DELETE FROM que_jobs
WHERE job_id =
(SELECT min(job_id)
FROM que_jobs)
RETURNING job_id
`).Scan(&jid)
if err != nil {
panic(err)
}
deletedJobIDChan <- jid
err = tx.Commit(ctx)
if err != nil {
panic(err)
}
}()
var ourBackendID int32
conn, err := c.TestGetPool().Conn(ctx)
if err != nil {
panic(err)
}
qg.RawConn(conn, func(pgxConn *pgx.Conn) error {
ourBackendID = getBackendID(pgxConn)
return nil
})
conn.Close()
// synchronization point
lockJobBackendIDChan <- ourBackendID
job, err := c.LockJob("")
if err != nil {
panic(err)
}
defer job.Done()
deletedJobID := <-deletedJobIDChan
t.Logf("Got id %d", job.ID)
t.Logf("Concurrently deleted id %d", deletedJobID)
if deletedJobID >= job.ID {
t.Fatalf("deleted job id %d must be smaller than job.ID %d", deletedJobID, job.ID)
}
}
func TestJobDelete(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j == nil {
t.Fatal("wanted job, got none")
}
defer j.Done()
if err = j.Delete(); err != nil {
t.Fatal(err)
}
// make sure job was deleted
j2, err := findOneJob(c.TestGetPool())
if err != nil {
t.Fatal(err)
}
if j2 != nil {
t.Errorf("job was not deleted: %+v", j2)
}
}
func TestJobDone(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j == nil {
t.Fatal("wanted job, got none")
}
j.Done()
// make sure conn and pool were cleared
if j.Conn() != nil {
t.Errorf("want nil conn, got %+v", j.Conn())
}
if j.TestGetClient() != nil {
t.Errorf("want nil c, got %+v", j.TestGetClient())
}
// make sure lock was released
var count int64
query := "SELECT count(*) FROM pg_locks WHERE locktype=$1 AND objid=$2::bigint"
if err = c.TestGetPool().QueryRow(query, "advisory", j.ID).Scan(&count); err != nil {
t.Fatal(err)
}
if count != 0 {
t.Error("advisory lock was not released")
}
// make sure conn was returned to pool
openedConn := 1
stat := c.TestGetPool().Stats()
available := stat.OpenConnections
if openedConn != available {
t.Errorf("want available=total, got available=%d total=%d", available, openedConn)
}
}
func TestJobDoneMultiple(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j == nil {
t.Fatal("wanted job, got none")
}
j.Done()
// try calling Done() again
j.Done()
}
func TestJobDeleteFromTx(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
ctx := context.Background()
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j == nil {
t.Fatal("wanted job, got none")
}
// get the job's database connection
conn := j.Conn()
if conn == nil {
t.Fatal("wanted conn, got nil")
}
// start a transaction
tx, err := conn.BeginTx(ctx, nil)
if err != nil {
t.Fatal(err)
}
// delete the job
if err = j.Delete(); err != nil {
t.Fatal(err)
}
if err = tx.Commit(); err != nil {
t.Fatal(err)
}
// mark as done
j.Done()
// make sure the job is gone
j2, err := findOneJob(c.TestGetPool())
if err != nil {
t.Fatal(err)
}
if j2 != nil {
t.Errorf("wanted no job, got %+v", j2)
}
}
func TestJobDeleteFromTxRollback(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
ctx := context.Background()
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j1, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j1 == nil {
t.Fatal("wanted job, got none")
}
// get the job's database connection
conn := j1.Conn()
if conn == nil {
t.Fatal("wanted conn, got nil")
}
// start a transaction
tx, err := conn.BeginTx(ctx, nil)
if err != nil {
t.Fatal(err)
}
// delete the job
if err = j1.Delete(); err != nil {
t.Fatal(err)
}
if err = tx.Rollback(); err != nil {
t.Fatal(err)
}
// mark as done
j1.Done()
// make sure the job still exists and matches j1
j2, err := findOneJob(c.TestGetPool())
if err != nil {
t.Fatal(err)
}
t.Logf("j1=%+v", j1)
t.Logf("j2=%+v", j2)
if j1.ID != j2.ID {
t.Errorf("want job %d, got %d", j1.ID, j2.ID)
}
}
func TestJobError(t *testing.T) {
c := openTestClient(t)
defer truncateAndClose(c)
if err := c.Enqueue(&qg.Job{Type: "MyJob"}); err != nil {
t.Fatal(err)
}
j, err := c.LockJob("")
if err != nil {
t.Fatal(err)
}
if j == nil {
t.Fatal("wanted job, got none")
}
defer j.Done()
msg := "world\nended"
if err = j.Error(msg); err != nil {
t.Fatal(err)
}
j.Done()
// make sure job was not deleted
j2, err := findOneJob(c.TestGetPool())
if err != nil {
t.Fatal(err)
}
if j2 == nil {
t.Fatal("job was not found")
}
defer j2.Done()
if !j2.LastError.Valid || j2.LastError.String != msg {
t.Errorf("want LastError=%q, got %q", msg, j2.LastError.String)
}
if j2.ErrorCount != 1 {
t.Errorf("want ErrorCount=%d, got %d", 1, j2.ErrorCount)
}
// make sure lock was released
var count int64
query := "SELECT count(*) FROM pg_locks WHERE locktype=$1 AND objid=$2::bigint"
if err = c.TestGetPool().QueryRow(query, "advisory", j.ID).Scan(&count); err != nil {
t.Fatal(err)
}
if count != 0 {
t.Error("advisory lock was not released")
}
// make sure conn was returned to pool
openedConn := 1
stat := c.TestGetPool().Stats()
available := stat.OpenConnections
if openedConn != available {
t.Errorf("want available=total, got available=%d total=%d", available, openedConn)
}
}