2020-01-03 10:13:16 +08:00
|
|
|
// Copyright 2020 Kentaro Hibino. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-11-28 06:03:04 +08:00
|
|
|
package asynq
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-11-30 04:48:54 +08:00
|
|
|
"sync"
|
2019-11-28 06:03:04 +08:00
|
|
|
"testing"
|
2019-11-30 04:48:54 +08:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/google/go-cmp/cmp"
|
2019-12-30 01:41:00 +08:00
|
|
|
h "github.com/hibiken/asynq/internal/asynqtest"
|
2019-12-22 23:15:45 +08:00
|
|
|
"github.com/hibiken/asynq/internal/base"
|
2019-12-04 13:01:26 +08:00
|
|
|
"github.com/hibiken/asynq/internal/rdb"
|
2019-11-28 06:03:04 +08:00
|
|
|
)
|
|
|
|
|
2019-11-30 04:48:54 +08:00
|
|
|
func TestProcessorSuccess(t *testing.T) {
|
|
|
|
r := setup(t)
|
2019-12-04 13:01:26 +08:00
|
|
|
rdbClient := rdb.NewRDB(r)
|
2019-11-30 04:48:54 +08:00
|
|
|
|
2019-12-30 01:41:00 +08:00
|
|
|
m1 := h.NewTaskMessage("send_email", nil)
|
|
|
|
m2 := h.NewTaskMessage("gen_thumbnail", nil)
|
|
|
|
m3 := h.NewTaskMessage("reindex", nil)
|
|
|
|
m4 := h.NewTaskMessage("sync", nil)
|
2019-11-30 04:48:54 +08:00
|
|
|
|
2020-01-05 05:13:46 +08:00
|
|
|
t1 := NewTask(m1.Type, m1.Payload)
|
|
|
|
t2 := NewTask(m2.Type, m2.Payload)
|
|
|
|
t3 := NewTask(m3.Type, m3.Payload)
|
|
|
|
t4 := NewTask(m4.Type, m4.Payload)
|
2019-11-30 04:48:54 +08:00
|
|
|
|
|
|
|
tests := []struct {
|
2019-12-30 01:41:00 +08:00
|
|
|
enqueued []*base.TaskMessage // initial default queue state
|
2019-12-22 23:15:45 +08:00
|
|
|
incoming []*base.TaskMessage // tasks to be enqueued during run
|
|
|
|
wait time.Duration // wait duration between starting and stopping processor for this test case
|
|
|
|
wantProcessed []*Task // tasks to be processed at the end
|
2019-11-30 04:48:54 +08:00
|
|
|
}{
|
|
|
|
{
|
2019-12-30 01:41:00 +08:00
|
|
|
enqueued: []*base.TaskMessage{m1},
|
2019-12-22 23:15:45 +08:00
|
|
|
incoming: []*base.TaskMessage{m2, m3, m4},
|
2019-11-30 04:48:54 +08:00
|
|
|
wait: time.Second,
|
|
|
|
wantProcessed: []*Task{t1, t2, t3, t4},
|
|
|
|
},
|
|
|
|
{
|
2019-12-30 01:41:00 +08:00
|
|
|
enqueued: []*base.TaskMessage{},
|
2019-12-22 23:15:45 +08:00
|
|
|
incoming: []*base.TaskMessage{m1},
|
2019-11-30 04:48:54 +08:00
|
|
|
wait: time.Second,
|
|
|
|
wantProcessed: []*Task{t1},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
2019-12-30 01:41:00 +08:00
|
|
|
h.FlushDB(t, r) // clean up db before each test case.
|
|
|
|
h.SeedDefaultQueue(t, r, tc.enqueued) // initialize default queue.
|
|
|
|
|
2019-11-30 04:48:54 +08:00
|
|
|
// instantiate a new processor
|
|
|
|
var mu sync.Mutex
|
|
|
|
var processed []*Task
|
2019-12-30 01:41:00 +08:00
|
|
|
handler := func(task *Task) error {
|
2019-11-30 04:48:54 +08:00
|
|
|
mu.Lock()
|
|
|
|
defer mu.Unlock()
|
|
|
|
processed = append(processed, task)
|
|
|
|
return nil
|
|
|
|
}
|
2019-12-30 09:43:19 +08:00
|
|
|
p := newProcessor(rdbClient, 10, defaultDelayFunc)
|
|
|
|
p.handler = HandlerFunc(handler)
|
2019-11-30 04:48:54 +08:00
|
|
|
p.dequeueTimeout = time.Second // short time out for test purpose
|
|
|
|
|
|
|
|
p.start()
|
|
|
|
for _, msg := range tc.incoming {
|
2019-12-04 13:01:26 +08:00
|
|
|
err := rdbClient.Enqueue(msg)
|
2019-11-30 04:48:54 +08:00
|
|
|
if err != nil {
|
|
|
|
p.terminate()
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
time.Sleep(tc.wait)
|
|
|
|
p.terminate()
|
|
|
|
|
2020-01-05 05:13:46 +08:00
|
|
|
if diff := cmp.Diff(tc.wantProcessed, processed, sortTaskOpt, cmp.AllowUnexported(Payload{})); diff != "" {
|
2019-11-30 04:48:54 +08:00
|
|
|
t.Errorf("mismatch found in processed tasks; (-want, +got)\n%s", diff)
|
|
|
|
}
|
|
|
|
|
2019-12-22 23:15:45 +08:00
|
|
|
if l := r.LLen(base.InProgressQueue).Val(); l != 0 {
|
|
|
|
t.Errorf("%q has %d tasks, want 0", base.InProgressQueue, l)
|
2019-11-30 04:48:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestProcessorRetry(t *testing.T) {
|
|
|
|
r := setup(t)
|
2019-12-04 13:01:26 +08:00
|
|
|
rdbClient := rdb.NewRDB(r)
|
2019-11-30 04:48:54 +08:00
|
|
|
|
2019-12-30 01:41:00 +08:00
|
|
|
m1 := h.NewTaskMessage("send_email", nil)
|
2019-11-30 04:48:54 +08:00
|
|
|
m1.Retried = m1.Retry // m1 has reached its max retry count
|
2019-12-30 01:41:00 +08:00
|
|
|
m2 := h.NewTaskMessage("gen_thumbnail", nil)
|
|
|
|
m3 := h.NewTaskMessage("reindex", nil)
|
|
|
|
m4 := h.NewTaskMessage("sync", nil)
|
2019-11-30 04:48:54 +08:00
|
|
|
|
|
|
|
errMsg := "something went wrong"
|
|
|
|
// r* is m* after retry
|
|
|
|
r1 := *m1
|
|
|
|
r1.ErrorMsg = errMsg
|
|
|
|
r2 := *m2
|
|
|
|
r2.ErrorMsg = errMsg
|
|
|
|
r2.Retried = m2.Retried + 1
|
|
|
|
r3 := *m3
|
|
|
|
r3.ErrorMsg = errMsg
|
|
|
|
r3.Retried = m3.Retried + 1
|
|
|
|
r4 := *m4
|
|
|
|
r4.ErrorMsg = errMsg
|
|
|
|
r4.Retried = m4.Retried + 1
|
|
|
|
|
2019-12-30 09:43:19 +08:00
|
|
|
now := time.Now()
|
|
|
|
|
2019-11-30 04:48:54 +08:00
|
|
|
tests := []struct {
|
2019-12-30 01:41:00 +08:00
|
|
|
enqueued []*base.TaskMessage // initial default queue state
|
2019-12-22 23:15:45 +08:00
|
|
|
incoming []*base.TaskMessage // tasks to be enqueued during run
|
2019-12-30 09:43:19 +08:00
|
|
|
delay time.Duration // retry delay duration
|
2019-12-22 23:15:45 +08:00
|
|
|
wait time.Duration // wait duration between starting and stopping processor for this test case
|
2019-12-30 09:43:19 +08:00
|
|
|
wantRetry []h.ZSetEntry // tasks in retry queue at the end
|
2019-12-22 23:15:45 +08:00
|
|
|
wantDead []*base.TaskMessage // tasks in dead queue at the end
|
2019-11-30 04:48:54 +08:00
|
|
|
}{
|
|
|
|
{
|
2019-12-30 09:43:19 +08:00
|
|
|
enqueued: []*base.TaskMessage{m1, m2},
|
|
|
|
incoming: []*base.TaskMessage{m3, m4},
|
|
|
|
delay: time.Minute,
|
|
|
|
wait: time.Second,
|
|
|
|
wantRetry: []h.ZSetEntry{
|
|
|
|
{Msg: &r2, Score: now.Add(time.Minute).Unix()},
|
|
|
|
{Msg: &r3, Score: now.Add(time.Minute).Unix()},
|
|
|
|
{Msg: &r4, Score: now.Add(time.Minute).Unix()},
|
|
|
|
},
|
|
|
|
wantDead: []*base.TaskMessage{&r1},
|
2019-11-30 04:48:54 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
2019-12-30 01:41:00 +08:00
|
|
|
h.FlushDB(t, r) // clean up db before each test case.
|
|
|
|
h.SeedDefaultQueue(t, r, tc.enqueued) // initialize default queue.
|
|
|
|
|
2019-11-30 04:48:54 +08:00
|
|
|
// instantiate a new processor
|
2019-12-30 09:43:19 +08:00
|
|
|
delayFunc := func(n int, e error, t *Task) time.Duration {
|
|
|
|
return tc.delay
|
|
|
|
}
|
2019-12-30 01:41:00 +08:00
|
|
|
handler := func(task *Task) error {
|
2019-11-30 04:48:54 +08:00
|
|
|
return fmt.Errorf(errMsg)
|
|
|
|
}
|
2019-12-30 09:43:19 +08:00
|
|
|
p := newProcessor(rdbClient, 10, delayFunc)
|
|
|
|
p.handler = HandlerFunc(handler)
|
2019-11-30 04:48:54 +08:00
|
|
|
p.dequeueTimeout = time.Second // short time out for test purpose
|
|
|
|
|
|
|
|
p.start()
|
|
|
|
for _, msg := range tc.incoming {
|
2019-12-04 13:01:26 +08:00
|
|
|
err := rdbClient.Enqueue(msg)
|
2019-11-30 04:48:54 +08:00
|
|
|
if err != nil {
|
|
|
|
p.terminate()
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
time.Sleep(tc.wait)
|
|
|
|
p.terminate()
|
|
|
|
|
2019-12-30 09:43:19 +08:00
|
|
|
gotRetry := h.GetRetryEntries(t, r)
|
|
|
|
if diff := cmp.Diff(tc.wantRetry, gotRetry, h.SortZSetEntryOpt); diff != "" {
|
2019-12-22 23:15:45 +08:00
|
|
|
t.Errorf("mismatch found in %q after running processor; (-want, +got)\n%s", base.RetryQueue, diff)
|
2019-11-30 04:48:54 +08:00
|
|
|
}
|
|
|
|
|
2019-12-30 01:41:00 +08:00
|
|
|
gotDead := h.GetDeadMessages(t, r)
|
|
|
|
if diff := cmp.Diff(tc.wantDead, gotDead, h.SortMsgOpt); diff != "" {
|
2019-12-22 23:15:45 +08:00
|
|
|
t.Errorf("mismatch found in %q after running processor; (-want, +got)\n%s", base.DeadQueue, diff)
|
2019-11-30 04:48:54 +08:00
|
|
|
}
|
|
|
|
|
2019-12-22 23:15:45 +08:00
|
|
|
if l := r.LLen(base.InProgressQueue).Val(); l != 0 {
|
|
|
|
t.Errorf("%q has %d tasks, want 0", base.InProgressQueue, l)
|
2019-11-30 04:48:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-28 06:03:04 +08:00
|
|
|
func TestPerform(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
desc string
|
2019-12-03 12:42:21 +08:00
|
|
|
handler HandlerFunc
|
2019-11-28 06:03:04 +08:00
|
|
|
task *Task
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "handler returns nil",
|
|
|
|
handler: func(t *Task) error {
|
|
|
|
return nil
|
|
|
|
},
|
2020-01-05 05:13:46 +08:00
|
|
|
task: NewTask("gen_thumbnail", map[string]interface{}{"src": "some/img/path"}),
|
2019-11-28 06:03:04 +08:00
|
|
|
wantErr: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "handler returns error",
|
|
|
|
handler: func(t *Task) error {
|
|
|
|
return fmt.Errorf("something went wrong")
|
|
|
|
},
|
2020-01-05 05:13:46 +08:00
|
|
|
task: NewTask("gen_thumbnail", map[string]interface{}{"src": "some/img/path"}),
|
2019-11-28 06:03:04 +08:00
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "handler panics",
|
|
|
|
handler: func(t *Task) error {
|
|
|
|
panic("something went terribly wrong")
|
|
|
|
},
|
2020-01-05 05:13:46 +08:00
|
|
|
task: NewTask("gen_thumbnail", map[string]interface{}{"src": "some/img/path"}),
|
2019-11-28 06:03:04 +08:00
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
got := perform(tc.handler, tc.task)
|
|
|
|
if !tc.wantErr && got != nil {
|
|
|
|
t.Errorf("%s: perform() = %v, want nil", tc.desc, got)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if tc.wantErr && got == nil {
|
|
|
|
t.Errorf("%s: perform() = nil, want non-nil error", tc.desc)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|