2
0
mirror of https://github.com/hibiken/asynq.git synced 2026-02-04 17:39:37 +00:00
Files
asynq/asynq_test.go

33 lines
675 B
Go
Raw Normal View History

2019-11-29 20:53:29 -08:00
package asynq
import (
"sort"
"testing"
2019-12-03 21:01:26 -08:00
"github.com/go-redis/redis/v7"
2019-11-29 20:53:29 -08:00
"github.com/google/go-cmp/cmp"
h "github.com/hibiken/asynq/internal/asynqtest"
2019-11-29 20:53:29 -08:00
)
// This file defines test helper functions used by
// other test files.
2019-12-31 12:36:46 -08:00
func setup(tb testing.TB) *redis.Client {
tb.Helper()
2019-12-03 21:01:26 -08:00
r := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
DB: 14,
2019-11-29 20:53:29 -08:00
})
2019-12-03 21:01:26 -08:00
// Start each test with a clean slate.
2019-12-31 12:36:46 -08:00
h.FlushDB(tb, r)
2019-12-03 21:01:26 -08:00
return r
}
2019-11-29 20: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
})