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-12-29 12:12:14 +08:00
|
|
|
// Package asynqtest defines test helpers for asynq and its internal packages.
|
|
|
|
package asynqtest
|
|
|
|
|
|
|
|
import (
|
2020-08-28 21:04:17 +08:00
|
|
|
"math"
|
2019-12-29 12:12:14 +08:00
|
|
|
"sort"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/go-redis/redis/v7"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
2019-12-30 01:41:00 +08:00
|
|
|
"github.com/google/go-cmp/cmp/cmpopts"
|
2020-07-02 21:21:20 +08:00
|
|
|
"github.com/google/uuid"
|
2019-12-29 12:12:14 +08:00
|
|
|
"github.com/hibiken/asynq/internal/base"
|
|
|
|
)
|
|
|
|
|
2020-08-28 21:04:17 +08:00
|
|
|
// EquateInt64Approx returns a Comparer option that treats int64 values
|
|
|
|
// to be equal if they are within the given margin.
|
|
|
|
func EquateInt64Approx(margin int64) cmp.Option {
|
|
|
|
return cmp.Comparer(func(a, b int64) bool {
|
2020-08-29 21:54:08 +08:00
|
|
|
return math.Abs(float64(a-b)) <= float64(margin)
|
2020-08-28 21:04:17 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-29 12:12:14 +08:00
|
|
|
// SortMsgOpt is a cmp.Option to sort base.TaskMessage for comparing slice of task messages.
|
|
|
|
var SortMsgOpt = cmp.Transformer("SortTaskMessages", func(in []*base.TaskMessage) []*base.TaskMessage {
|
|
|
|
out := append([]*base.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()
|
|
|
|
})
|
|
|
|
return out
|
|
|
|
})
|
|
|
|
|
|
|
|
// SortZSetEntryOpt is an cmp.Option to sort ZSetEntry for comparing slice of zset entries.
|
2020-07-13 21:29:41 +08:00
|
|
|
var SortZSetEntryOpt = cmp.Transformer("SortZSetEntries", func(in []base.Z) []base.Z {
|
|
|
|
out := append([]base.Z(nil), in...) // Copy input to avoid mutating it
|
2019-12-29 12:12:14 +08:00
|
|
|
sort.Slice(out, func(i, j int) bool {
|
2020-07-13 21:29:41 +08:00
|
|
|
return out[i].Message.ID.String() < out[j].Message.ID.String()
|
2019-12-29 12:12:14 +08:00
|
|
|
})
|
|
|
|
return out
|
|
|
|
})
|
|
|
|
|
2020-04-13 07:42:11 +08:00
|
|
|
// SortServerInfoOpt is a cmp.Option to sort base.ServerInfo for comparing slice of process info.
|
|
|
|
var SortServerInfoOpt = cmp.Transformer("SortServerInfo", func(in []*base.ServerInfo) []*base.ServerInfo {
|
|
|
|
out := append([]*base.ServerInfo(nil), in...) // Copy input to avoid mutating it
|
2020-02-02 14:22:48 +08:00
|
|
|
sort.Slice(out, func(i, j int) bool {
|
|
|
|
if out[i].Host != out[j].Host {
|
|
|
|
return out[i].Host < out[j].Host
|
|
|
|
}
|
|
|
|
return out[i].PID < out[j].PID
|
|
|
|
})
|
|
|
|
return out
|
|
|
|
})
|
|
|
|
|
2020-02-23 12:42:53 +08:00
|
|
|
// SortWorkerInfoOpt is a cmp.Option to sort base.WorkerInfo for comparing slice of worker info.
|
|
|
|
var SortWorkerInfoOpt = cmp.Transformer("SortWorkerInfo", func(in []*base.WorkerInfo) []*base.WorkerInfo {
|
|
|
|
out := append([]*base.WorkerInfo(nil), in...) // Copy input to avoid mutating it
|
|
|
|
sort.Slice(out, func(i, j int) bool {
|
2020-05-19 11:47:35 +08:00
|
|
|
return out[i].ID < out[j].ID
|
2020-02-23 12:42:53 +08:00
|
|
|
})
|
|
|
|
return out
|
|
|
|
})
|
|
|
|
|
2020-09-27 08:33:29 +08:00
|
|
|
// SortSchedulerEntryOpt is a cmp.Option to sort base.SchedulerEntry for comparing slice of entries.
|
|
|
|
var SortSchedulerEntryOpt = cmp.Transformer("SortSchedulerEntry", func(in []*base.SchedulerEntry) []*base.SchedulerEntry {
|
|
|
|
out := append([]*base.SchedulerEntry(nil), in...) // Copy input to avoid mutating it
|
|
|
|
sort.Slice(out, func(i, j int) bool {
|
|
|
|
return out[i].Spec < out[j].Spec
|
|
|
|
})
|
|
|
|
return out
|
|
|
|
})
|
|
|
|
|
|
|
|
// SortSchedulerEnqueueEventOpt is a cmp.Option to sort base.SchedulerEnqueueEvent for comparing slice of events.
|
|
|
|
var SortSchedulerEnqueueEventOpt = cmp.Transformer("SortSchedulerEnqueueEvent", func(in []*base.SchedulerEnqueueEvent) []*base.SchedulerEnqueueEvent {
|
|
|
|
out := append([]*base.SchedulerEnqueueEvent(nil), in...)
|
|
|
|
sort.Slice(out, func(i, j int) bool {
|
|
|
|
return out[i].EnqueuedAt.Unix() < out[j].EnqueuedAt.Unix()
|
|
|
|
})
|
|
|
|
return out
|
|
|
|
})
|
|
|
|
|
2020-02-23 06:30:24 +08:00
|
|
|
// SortStringSliceOpt is a cmp.Option to sort string slice.
|
|
|
|
var SortStringSliceOpt = cmp.Transformer("SortStringSlice", func(in []string) []string {
|
|
|
|
out := append([]string(nil), in...)
|
|
|
|
sort.Strings(out)
|
|
|
|
return out
|
|
|
|
})
|
|
|
|
|
2019-12-30 01:41:00 +08:00
|
|
|
// IgnoreIDOpt is an cmp.Option to ignore ID field in task messages when comparing.
|
|
|
|
var IgnoreIDOpt = cmpopts.IgnoreFields(base.TaskMessage{}, "ID")
|
|
|
|
|
2019-12-29 12:12:14 +08:00
|
|
|
// NewTaskMessage returns a new instance of TaskMessage given a task type and payload.
|
|
|
|
func NewTaskMessage(taskType string, payload map[string]interface{}) *base.TaskMessage {
|
2020-08-19 12:21:05 +08:00
|
|
|
return NewTaskMessageWithQueue(taskType, payload, base.DefaultQueueName)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewTaskMessageWithQueue returns a new instance of TaskMessage given a
|
|
|
|
// task type, payload and queue name.
|
|
|
|
func NewTaskMessageWithQueue(taskType string, payload map[string]interface{}, qname string) *base.TaskMessage {
|
2019-12-29 12:12:14 +08:00
|
|
|
return &base.TaskMessage{
|
2020-07-02 21:21:20 +08:00
|
|
|
ID: uuid.New(),
|
2020-06-17 12:11:54 +08:00
|
|
|
Type: taskType,
|
2020-08-19 12:21:05 +08:00
|
|
|
Queue: qname,
|
2020-06-17 12:11:54 +08:00
|
|
|
Retry: 25,
|
|
|
|
Payload: payload,
|
|
|
|
Timeout: 1800, // default timeout of 30 mins
|
|
|
|
Deadline: 0, // no deadline
|
2020-01-10 22:56:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 22:05:57 +08:00
|
|
|
// TaskMessageAfterRetry returns an updated copy of t after retry.
|
|
|
|
// It increments retry count and sets the error message.
|
|
|
|
func TaskMessageAfterRetry(t base.TaskMessage, errMsg string) *base.TaskMessage {
|
|
|
|
t.Retried = t.Retried + 1
|
|
|
|
t.ErrorMsg = errMsg
|
|
|
|
return &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// TaskMessageWithError returns an updated copy of t with the given error message.
|
|
|
|
func TaskMessageWithError(t base.TaskMessage, errMsg string) *base.TaskMessage {
|
|
|
|
t.ErrorMsg = errMsg
|
|
|
|
return &t
|
|
|
|
}
|
|
|
|
|
2019-12-29 12:12:14 +08:00
|
|
|
// MustMarshal marshals given task message and returns a json string.
|
|
|
|
// Calling test will fail if marshaling errors out.
|
2019-12-31 12:10:34 +08:00
|
|
|
func MustMarshal(tb testing.TB, msg *base.TaskMessage) string {
|
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
data, err := base.EncodeMessage(msg)
|
2019-12-29 12:12:14 +08:00
|
|
|
if err != nil {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Fatal(err)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
return string(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustUnmarshal unmarshals given string into task message struct.
|
|
|
|
// Calling test will fail if unmarshaling errors out.
|
2019-12-31 12:10:34 +08:00
|
|
|
func MustUnmarshal(tb testing.TB, data string) *base.TaskMessage {
|
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
msg, err := base.DecodeMessage([]byte(data))
|
2019-12-29 12:12:14 +08:00
|
|
|
if err != nil {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Fatal(err)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
2021-03-13 08:23:08 +08:00
|
|
|
return msg
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// FlushDB deletes all the keys of the currently selected DB.
|
2020-08-28 20:40:16 +08:00
|
|
|
func FlushDB(tb testing.TB, r redis.UniversalClient) {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2020-08-29 21:54:08 +08:00
|
|
|
switch r := r.(type) {
|
|
|
|
case *redis.Client:
|
|
|
|
if err := r.FlushDB().Err(); err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
|
|
|
case *redis.ClusterClient:
|
|
|
|
err := r.ForEachMaster(func(c *redis.Client) error {
|
|
|
|
if err := c.FlushAll().Err(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-05 22:03:43 +08:00
|
|
|
// SeedPendingQueue initializes the specified queue with the given messages.
|
|
|
|
func SeedPendingQueue(tb testing.TB, r redis.UniversalClient, msgs []*base.TaskMessage, qname string) {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2020-08-07 21:31:02 +08:00
|
|
|
r.SAdd(base.AllQueues, qname)
|
2021-03-13 08:23:08 +08:00
|
|
|
seedRedisList(tb, r, base.PendingKey(qname), msgs)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2020-09-06 03:43:15 +08:00
|
|
|
// SeedActiveQueue initializes the active queue with the given messages.
|
|
|
|
func SeedActiveQueue(tb testing.TB, r redis.UniversalClient, msgs []*base.TaskMessage, qname string) {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2020-08-21 21:00:49 +08:00
|
|
|
r.SAdd(base.AllQueues, qname)
|
2020-09-06 03:43:15 +08:00
|
|
|
seedRedisList(tb, r, base.ActiveKey(qname), msgs)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// SeedScheduledQueue initializes the scheduled queue with the given messages.
|
2020-08-28 20:40:16 +08:00
|
|
|
func SeedScheduledQueue(tb testing.TB, r redis.UniversalClient, entries []base.Z, qname string) {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2020-08-21 21:00:49 +08:00
|
|
|
r.SAdd(base.AllQueues, qname)
|
2020-08-08 21:48:49 +08:00
|
|
|
seedRedisZSet(tb, r, base.ScheduledKey(qname), entries)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// SeedRetryQueue initializes the retry queue with the given messages.
|
2020-08-28 20:40:16 +08:00
|
|
|
func SeedRetryQueue(tb testing.TB, r redis.UniversalClient, entries []base.Z, qname string) {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2020-08-21 21:00:49 +08:00
|
|
|
r.SAdd(base.AllQueues, qname)
|
2020-08-08 21:48:49 +08:00
|
|
|
seedRedisZSet(tb, r, base.RetryKey(qname), entries)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2021-01-13 03:01:21 +08:00
|
|
|
// SeedArchivedQueue initializes the archived queue with the given messages.
|
|
|
|
func SeedArchivedQueue(tb testing.TB, r redis.UniversalClient, entries []base.Z, qname string) {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2020-08-21 21:00:49 +08:00
|
|
|
r.SAdd(base.AllQueues, qname)
|
2021-01-13 03:01:21 +08:00
|
|
|
seedRedisZSet(tb, r, base.ArchivedKey(qname), entries)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2020-06-18 22:10:57 +08:00
|
|
|
// SeedDeadlines initializes the deadlines set with the given entries.
|
2020-08-28 20:40:16 +08:00
|
|
|
func SeedDeadlines(tb testing.TB, r redis.UniversalClient, entries []base.Z, qname string) {
|
2020-06-18 22:10:57 +08:00
|
|
|
tb.Helper()
|
2020-08-21 21:00:49 +08:00
|
|
|
r.SAdd(base.AllQueues, qname)
|
2020-08-08 21:48:49 +08:00
|
|
|
seedRedisZSet(tb, r, base.DeadlinesKey(qname), entries)
|
|
|
|
}
|
|
|
|
|
2020-09-05 22:03:43 +08:00
|
|
|
// SeedAllPendingQueues initializes all of the specified queues with the given messages.
|
2020-08-08 21:48:49 +08:00
|
|
|
//
|
2020-09-05 22:03:43 +08:00
|
|
|
// pending maps a queue name to a list of messages.
|
|
|
|
func SeedAllPendingQueues(tb testing.TB, r redis.UniversalClient, pending map[string][]*base.TaskMessage) {
|
2021-03-13 08:23:08 +08:00
|
|
|
tb.Helper()
|
2020-09-05 22:03:43 +08:00
|
|
|
for q, msgs := range pending {
|
|
|
|
SeedPendingQueue(tb, r, msgs, q)
|
2020-08-08 21:48:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 03:43:15 +08:00
|
|
|
// SeedAllActiveQueues initializes all of the specified active queues with the given messages.
|
|
|
|
func SeedAllActiveQueues(tb testing.TB, r redis.UniversalClient, active map[string][]*base.TaskMessage) {
|
2021-03-13 08:23:08 +08:00
|
|
|
tb.Helper()
|
2020-09-06 03:43:15 +08:00
|
|
|
for q, msgs := range active {
|
|
|
|
SeedActiveQueue(tb, r, msgs, q)
|
2020-08-08 21:48:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SeedAllScheduledQueues initializes all of the specified scheduled queues with the given entries.
|
2020-08-28 20:40:16 +08:00
|
|
|
func SeedAllScheduledQueues(tb testing.TB, r redis.UniversalClient, scheduled map[string][]base.Z) {
|
2021-03-13 08:23:08 +08:00
|
|
|
tb.Helper()
|
2020-08-08 21:48:49 +08:00
|
|
|
for q, entries := range scheduled {
|
|
|
|
SeedScheduledQueue(tb, r, entries, q)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SeedAllRetryQueues initializes all of the specified retry queues with the given entries.
|
2020-08-28 20:40:16 +08:00
|
|
|
func SeedAllRetryQueues(tb testing.TB, r redis.UniversalClient, retry map[string][]base.Z) {
|
2021-03-13 08:23:08 +08:00
|
|
|
tb.Helper()
|
2020-08-08 21:48:49 +08:00
|
|
|
for q, entries := range retry {
|
|
|
|
SeedRetryQueue(tb, r, entries, q)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-13 03:01:21 +08:00
|
|
|
// SeedAllArchivedQueues initializes all of the specified archived queues with the given entries.
|
|
|
|
func SeedAllArchivedQueues(tb testing.TB, r redis.UniversalClient, archived map[string][]base.Z) {
|
2021-03-13 08:23:08 +08:00
|
|
|
tb.Helper()
|
2021-01-13 03:01:21 +08:00
|
|
|
for q, entries := range archived {
|
|
|
|
SeedArchivedQueue(tb, r, entries, q)
|
2020-08-08 21:48:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SeedAllDeadlines initializes all of the deadlines with the given entries.
|
2020-08-28 20:40:16 +08:00
|
|
|
func SeedAllDeadlines(tb testing.TB, r redis.UniversalClient, deadlines map[string][]base.Z) {
|
2021-03-13 08:23:08 +08:00
|
|
|
tb.Helper()
|
2020-08-08 21:48:49 +08:00
|
|
|
for q, entries := range deadlines {
|
|
|
|
SeedDeadlines(tb, r, entries, q)
|
|
|
|
}
|
2020-06-18 22:10:57 +08:00
|
|
|
}
|
|
|
|
|
2020-08-28 20:40:16 +08:00
|
|
|
func seedRedisList(tb testing.TB, c redis.UniversalClient, key string, msgs []*base.TaskMessage) {
|
2021-03-13 08:23:08 +08:00
|
|
|
tb.Helper()
|
|
|
|
for _, msg := range msgs {
|
|
|
|
encoded := MustMarshal(tb, msg)
|
|
|
|
if err := c.LPush(key, msg.ID.String()).Err(); err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
|
|
|
key := base.TaskKey(msg.Queue, msg.ID.String())
|
|
|
|
data := map[string]interface{}{
|
|
|
|
"msg": encoded,
|
|
|
|
"timeout": msg.Timeout,
|
|
|
|
"deadline": msg.Deadline,
|
|
|
|
}
|
|
|
|
if err := c.HSet(key, data).Err(); err != nil {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Fatal(err)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-28 20:40:16 +08:00
|
|
|
func seedRedisZSet(tb testing.TB, c redis.UniversalClient, key string, items []base.Z) {
|
2021-03-13 08:23:08 +08:00
|
|
|
tb.Helper()
|
2019-12-29 12:12:14 +08:00
|
|
|
for _, item := range items {
|
2021-03-13 08:23:08 +08:00
|
|
|
msg := item.Message
|
|
|
|
encoded := MustMarshal(tb, msg)
|
|
|
|
z := &redis.Z{Member: msg.ID.String(), Score: float64(item.Score)}
|
2019-12-29 12:12:14 +08:00
|
|
|
if err := c.ZAdd(key, z).Err(); err != nil {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Fatal(err)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
2021-03-13 08:23:08 +08:00
|
|
|
key := base.TaskKey(msg.Queue, msg.ID.String())
|
|
|
|
data := map[string]interface{}{
|
|
|
|
"msg": encoded,
|
|
|
|
"timeout": msg.Timeout,
|
|
|
|
"deadline": msg.Deadline,
|
|
|
|
}
|
|
|
|
if err := c.HSet(key, data).Err(); err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-05 22:03:43 +08:00
|
|
|
// GetPendingMessages returns all pending messages in the given queue.
|
|
|
|
func GetPendingMessages(tb testing.TB, r redis.UniversalClient, qname string) []*base.TaskMessage {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromList(tb, r, qname, base.PendingKey)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2020-09-06 03:43:15 +08:00
|
|
|
// GetActiveMessages returns all active messages in the given queue.
|
|
|
|
func GetActiveMessages(tb testing.TB, r redis.UniversalClient, qname string) []*base.TaskMessage {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromList(tb, r, qname, base.ActiveKey)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2020-08-07 21:31:02 +08:00
|
|
|
// GetScheduledMessages returns all scheduled task messages in the given queue.
|
2020-08-28 20:40:16 +08:00
|
|
|
func GetScheduledMessages(tb testing.TB, r redis.UniversalClient, qname string) []*base.TaskMessage {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromZSet(tb, r, qname, base.ScheduledKey)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2020-08-07 21:31:02 +08:00
|
|
|
// GetRetryMessages returns all retry messages in the given queue.
|
2020-08-28 20:40:16 +08:00
|
|
|
func GetRetryMessages(tb testing.TB, r redis.UniversalClient, qname string) []*base.TaskMessage {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromZSet(tb, r, qname, base.RetryKey)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2021-01-13 03:01:21 +08:00
|
|
|
// GetArchivedMessages returns all archived messages in the given queue.
|
|
|
|
func GetArchivedMessages(tb testing.TB, r redis.UniversalClient, qname string) []*base.TaskMessage {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromZSet(tb, r, qname, base.ArchivedKey)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2020-08-07 21:31:02 +08:00
|
|
|
// GetScheduledEntries returns all scheduled messages and its score in the given queue.
|
2020-08-28 20:40:16 +08:00
|
|
|
func GetScheduledEntries(tb testing.TB, r redis.UniversalClient, qname string) []base.Z {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromZSetWithScores(tb, r, qname, base.ScheduledKey)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2020-08-07 21:31:02 +08:00
|
|
|
// GetRetryEntries returns all retry messages and its score in the given queue.
|
2020-08-28 20:40:16 +08:00
|
|
|
func GetRetryEntries(tb testing.TB, r redis.UniversalClient, qname string) []base.Z {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromZSetWithScores(tb, r, qname, base.RetryKey)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2021-01-13 03:01:21 +08:00
|
|
|
// GetArchivedEntries returns all archived messages and its score in the given queue.
|
|
|
|
func GetArchivedEntries(tb testing.TB, r redis.UniversalClient, qname string) []base.Z {
|
2019-12-31 12:10:34 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromZSetWithScores(tb, r, qname, base.ArchivedKey)
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2020-08-07 21:31:02 +08:00
|
|
|
// GetDeadlinesEntries returns all task messages and its score in the deadlines set for the given queue.
|
2020-08-28 20:40:16 +08:00
|
|
|
func GetDeadlinesEntries(tb testing.TB, r redis.UniversalClient, qname string) []base.Z {
|
2020-06-17 21:46:54 +08:00
|
|
|
tb.Helper()
|
2021-03-13 08:23:08 +08:00
|
|
|
return getMessagesFromZSetWithScores(tb, r, qname, base.DeadlinesKey)
|
2020-06-17 21:46:54 +08:00
|
|
|
}
|
|
|
|
|
2021-03-13 08:23:08 +08:00
|
|
|
// Retrieves all messages stored under `keyFn(qname)` key in redis list.
|
|
|
|
func getMessagesFromList(tb testing.TB, r redis.UniversalClient, qname string, keyFn func(qname string) string) []*base.TaskMessage {
|
|
|
|
tb.Helper()
|
|
|
|
ids := r.LRange(keyFn(qname), 0, -1).Val()
|
|
|
|
var msgs []*base.TaskMessage
|
|
|
|
for _, id := range ids {
|
|
|
|
data := r.HGet(base.TaskKey(qname, id), "msg").Val()
|
|
|
|
msgs = append(msgs, MustUnmarshal(tb, data))
|
|
|
|
}
|
|
|
|
return msgs
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-13 08:23:08 +08:00
|
|
|
// Retrieves all messages stored under `keyFn(qname)` key in redis zset (sorted-set).
|
|
|
|
func getMessagesFromZSet(tb testing.TB, r redis.UniversalClient, qname string, keyFn func(qname string) string) []*base.TaskMessage {
|
|
|
|
tb.Helper()
|
|
|
|
ids := r.ZRange(keyFn(qname), 0, -1).Val()
|
|
|
|
var msgs []*base.TaskMessage
|
|
|
|
for _, id := range ids {
|
|
|
|
msg := r.HGet(base.TaskKey(qname, id), "msg").Val()
|
|
|
|
msgs = append(msgs, MustUnmarshal(tb, msg))
|
|
|
|
}
|
|
|
|
return msgs
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-13 08:23:08 +08:00
|
|
|
// Retrieves all messages along with their scores stored under `keyFn(qname)` key in redis zset (sorted-set).
|
|
|
|
func getMessagesFromZSetWithScores(tb testing.TB, r redis.UniversalClient, qname string, keyFn func(qname string) string) []base.Z {
|
|
|
|
tb.Helper()
|
|
|
|
zs := r.ZRangeWithScores(keyFn(qname), 0, -1).Val()
|
|
|
|
var res []base.Z
|
|
|
|
for _, z := range zs {
|
|
|
|
msg := r.HGet(base.TaskKey(qname, z.Member.(string)), "msg").Val()
|
|
|
|
res = append(res, base.Z{Message: MustUnmarshal(tb, msg), Score: int64(z.Score)})
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|
2021-03-13 08:23:08 +08:00
|
|
|
return res
|
2019-12-29 12:12:14 +08:00
|
|
|
}
|