2019-11-30 12:53:29 +08:00
|
|
|
package asynq
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"sort"
|
|
|
|
"testing"
|
|
|
|
|
2019-12-04 13:01:26 +08:00
|
|
|
"github.com/go-redis/redis/v7"
|
2019-11-30 12:53:29 +08:00
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
"github.com/google/uuid"
|
2019-12-04 13:01:26 +08:00
|
|
|
"github.com/hibiken/asynq/internal/rdb"
|
2019-11-30 12:53:29 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// This file defines test helper functions used by
|
|
|
|
// other test files.
|
|
|
|
|
2019-12-04 13:01:26 +08:00
|
|
|
func setup(t *testing.T) *redis.Client {
|
|
|
|
t.Helper()
|
|
|
|
r := redis.NewClient(&redis.Options{
|
|
|
|
Addr: "localhost:6379",
|
|
|
|
DB: 2,
|
2019-11-30 12:53:29 +08:00
|
|
|
})
|
2019-12-04 13:01:26 +08:00
|
|
|
// Start each test with a clean slate.
|
|
|
|
if err := r.FlushDB().Err(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return r
|
|
|
|
}
|
2019-11-30 12:53:29 +08:00
|
|
|
|
|
|
|
var sortTaskOpt = cmp.Transformer("SortMsg", func(in []*Task) []*Task {
|
|
|
|
out := append([]*Task(nil), in...) // Copy input to avoid mutating it
|
|
|
|
sort.Slice(out, func(i, j int) bool {
|
|
|
|
return out[i].Type < out[j].Type
|
|
|
|
})
|
|
|
|
return out
|
|
|
|
})
|
|
|
|
|
2019-12-04 13:01:26 +08:00
|
|
|
var sortMsgOpt = cmp.Transformer("SortMsg", func(in []*rdb.TaskMessage) []*rdb.TaskMessage {
|
|
|
|
out := append([]*rdb.TaskMessage(nil), in...) // Copy input to avoid mutating it
|
|
|
|
sort.Slice(out, func(i, j int) bool {
|
|
|
|
return out[i].ID.String() < out[j].ID.String()
|
2019-11-30 12:53:29 +08:00
|
|
|
})
|
2019-12-04 13:01:26 +08:00
|
|
|
return out
|
|
|
|
})
|
2019-11-30 12:53:29 +08:00
|
|
|
|
2019-12-04 13:01:26 +08:00
|
|
|
func randomTask(taskType, qname string, payload map[string]interface{}) *rdb.TaskMessage {
|
|
|
|
return &rdb.TaskMessage{
|
2019-11-30 12:53:29 +08:00
|
|
|
ID: uuid.New(),
|
|
|
|
Type: taskType,
|
|
|
|
Queue: qname,
|
2019-12-04 13:01:26 +08:00
|
|
|
Retry: defaultMaxRetry,
|
2019-11-30 12:53:29 +08:00
|
|
|
Payload: make(map[string]interface{}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:01:26 +08:00
|
|
|
func mustMarshal(t *testing.T, task *rdb.TaskMessage) string {
|
2019-11-30 12:53:29 +08:00
|
|
|
t.Helper()
|
|
|
|
data, err := json.Marshal(task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
return string(data)
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:01:26 +08:00
|
|
|
func mustUnmarshal(t *testing.T, data string) *rdb.TaskMessage {
|
2019-11-30 12:53:29 +08:00
|
|
|
t.Helper()
|
2019-12-04 13:01:26 +08:00
|
|
|
var task rdb.TaskMessage
|
2019-11-30 12:53:29 +08:00
|
|
|
err := json.Unmarshal([]byte(data), &task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
return &task
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:01:26 +08:00
|
|
|
func mustMarshalSlice(t *testing.T, tasks []*rdb.TaskMessage) []string {
|
2019-11-30 12:53:29 +08:00
|
|
|
t.Helper()
|
|
|
|
var data []string
|
|
|
|
for _, task := range tasks {
|
|
|
|
data = append(data, mustMarshal(t, task))
|
|
|
|
}
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:01:26 +08:00
|
|
|
func mustUnmarshalSlice(t *testing.T, data []string) []*rdb.TaskMessage {
|
2019-11-30 12:53:29 +08:00
|
|
|
t.Helper()
|
2019-12-04 13:01:26 +08:00
|
|
|
var tasks []*rdb.TaskMessage
|
2019-11-30 12:53:29 +08:00
|
|
|
for _, s := range data {
|
|
|
|
tasks = append(tasks, mustUnmarshal(t, s))
|
|
|
|
}
|
|
|
|
return tasks
|
|
|
|
}
|