2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-09-20 11:05:58 +08:00
asynq/asynq_test.go

33 lines
672 B
Go
Raw Normal View History

2019-11-30 12:53:29 +08:00
package asynq
import (
"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"
h "github.com/hibiken/asynq/internal/asynqtest"
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: 14,
2019-11-30 12:53:29 +08:00
})
2019-12-04 13:01:26 +08:00
// Start each test with a clean slate.
h.FlushDB(t, r)
2019-12-04 13:01:26 +08:00
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
})