2016-03-16 17:57:24 +03:00
|
|
|
package redis_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"strconv"
|
2018-03-08 11:16:53 +03:00
|
|
|
"sync/atomic"
|
2016-03-16 17:57:24 +03:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2023-01-27 18:00:49 +03:00
|
|
|
. "github.com/bsm/ginkgo/v2"
|
|
|
|
. "github.com/bsm/gomega"
|
2021-09-08 16:00:52 +03:00
|
|
|
|
2023-01-23 09:48:54 +03:00
|
|
|
"github.com/redis/go-redis/v9"
|
2016-03-16 17:57:24 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("races", func() {
|
|
|
|
var client *redis.Client
|
2016-03-17 19:00:47 +03:00
|
|
|
var C, N int
|
2016-03-16 17:57:24 +03:00
|
|
|
|
|
|
|
BeforeEach(func() {
|
|
|
|
client = redis.NewClient(redisOptions())
|
2020-03-11 17:26:42 +03:00
|
|
|
Expect(client.FlushDB(ctx).Err()).To(BeNil())
|
2016-03-17 19:00:47 +03:00
|
|
|
|
|
|
|
C, N = 10, 1000
|
|
|
|
if testing.Short() {
|
|
|
|
C = 4
|
|
|
|
N = 100
|
|
|
|
}
|
2016-03-16 17:57:24 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
|
|
|
err := client.Close()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should echo", func() {
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
|
|
|
msg := fmt.Sprintf("echo %d %d", id, i)
|
2020-03-11 17:26:42 +03:00
|
|
|
echo, err := client.Echo(ctx, msg).Result()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(echo).To(Equal(msg))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should incr", func() {
|
|
|
|
key := "TestIncrFromGoroutines"
|
|
|
|
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Incr(ctx, key).Err()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, key).Int64()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal(int64(C * N)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should handle many keys", func() {
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
|
|
|
err := client.Set(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx,
|
2016-03-16 17:57:24 +03:00
|
|
|
fmt.Sprintf("keys.key-%d-%d", id, i),
|
|
|
|
fmt.Sprintf("hello-%d-%d", id, i),
|
|
|
|
0,
|
|
|
|
).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys := client.Keys(ctx, "keys.*")
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(keys.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(len(keys.Val())).To(Equal(C * N))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should handle many keys 2", func() {
|
|
|
|
perform(C, func(id int) {
|
|
|
|
keys := []string{"non-existent-key"}
|
|
|
|
for i := 0; i < N; i++ {
|
|
|
|
key := fmt.Sprintf("keys.key-%d", i)
|
|
|
|
keys = append(keys, key)
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, key, fmt.Sprintf("hello-%d", i), 0).Err()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
keys = append(keys, "non-existent-key")
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.MGet(ctx, keys...).Result()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(len(vals)).To(Equal(N + 2))
|
|
|
|
|
|
|
|
for i := 0; i < N; i++ {
|
|
|
|
Expect(vals[i+1]).To(Equal(fmt.Sprintf("hello-%d", i)))
|
|
|
|
}
|
|
|
|
|
|
|
|
Expect(vals[0]).To(BeNil())
|
|
|
|
Expect(vals[N+1]).To(BeNil())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should handle big vals in Get", func() {
|
2016-11-09 11:04:37 +03:00
|
|
|
C, N = 4, 100
|
|
|
|
|
2017-09-30 09:21:59 +03:00
|
|
|
bigVal := bigVal()
|
2016-03-16 17:57:24 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key", bigVal, 0).Err()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
// Reconnect to get new connection.
|
|
|
|
Expect(client.Close()).To(BeNil())
|
|
|
|
client = redis.NewClient(redisOptions())
|
|
|
|
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
got, err := client.Get(ctx, "key").Bytes()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(got).To(Equal(bigVal))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should handle big vals in Set", func() {
|
2016-03-17 19:00:47 +03:00
|
|
|
C, N = 4, 100
|
2016-11-09 11:04:37 +03:00
|
|
|
|
2017-09-30 09:21:59 +03:00
|
|
|
bigVal := bigVal()
|
2016-03-16 17:57:24 +03:00
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key", bigVal, 0).Err()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2024-01-01 23:19:22 +03:00
|
|
|
It("should select db", Label("NonRedisEnterprise"), func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "db", 1, 0).Err()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
perform(C, func(id int) {
|
|
|
|
opt := redisOptions()
|
2016-06-05 12:45:39 +03:00
|
|
|
opt.DB = id
|
2016-03-16 17:57:24 +03:00
|
|
|
client := redis.NewClient(opt)
|
|
|
|
for i := 0; i < N; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "db", id, 0).Err()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.Get(ctx, "db").Int64()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(id)))
|
|
|
|
}
|
|
|
|
err := client.Close()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.Get(ctx, "db").Int64()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should select DB with read timeout", func() {
|
|
|
|
perform(C, func(id int) {
|
|
|
|
opt := redisOptions()
|
2016-06-05 12:45:39 +03:00
|
|
|
opt.DB = id
|
2016-03-16 17:57:24 +03:00
|
|
|
opt.ReadTimeout = time.Nanosecond
|
|
|
|
client := redis.NewClient(opt)
|
|
|
|
|
|
|
|
perform(C, func(id int) {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Ping(ctx).Err()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(err.(net.Error).Timeout()).To(BeTrue())
|
|
|
|
})
|
|
|
|
|
|
|
|
err := client.Close()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
})
|
2016-04-09 11:23:58 +03:00
|
|
|
|
|
|
|
It("should Watch/Unwatch", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key", "0", 0).Err()
|
2016-04-09 11:23:58 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Watch(ctx, func(tx *redis.Tx) error {
|
|
|
|
val, err := tx.Get(ctx, "key").Result()
|
2016-05-02 15:54:15 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).NotTo(Equal(redis.Nil))
|
2016-04-09 11:23:58 +03:00
|
|
|
|
2016-05-02 15:54:15 +03:00
|
|
|
num, err := strconv.ParseInt(val, 10, 64)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-04-09 11:23:58 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
cmds, err := tx.TxPipelined(ctx, func(pipe redis.Pipeliner) error {
|
|
|
|
pipe.Set(ctx, "key", strconv.FormatInt(num+1, 10), 0)
|
2016-05-02 15:54:15 +03:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
Expect(cmds).To(HaveLen(1))
|
|
|
|
return err
|
|
|
|
}, "key")
|
2016-04-09 11:23:58 +03:00
|
|
|
if err == redis.TxFailedErr {
|
|
|
|
i--
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, "key").Int64()
|
2016-04-09 11:23:58 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal(int64(C * N)))
|
|
|
|
})
|
|
|
|
|
2021-01-26 12:57:16 +03:00
|
|
|
PIt("should BLPop", func() {
|
2018-03-08 11:16:53 +03:00
|
|
|
var received uint32
|
2020-06-05 09:30:21 +03:00
|
|
|
|
2018-03-08 11:16:53 +03:00
|
|
|
wg := performAsync(C, func(id int) {
|
|
|
|
for {
|
2021-01-24 12:01:48 +03:00
|
|
|
v, err := client.BLPop(ctx, 5*time.Second, "list").Result()
|
2018-03-08 11:16:53 +03:00
|
|
|
if err != nil {
|
2020-06-05 09:30:21 +03:00
|
|
|
if err == redis.Nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-08 11:16:53 +03:00
|
|
|
}
|
|
|
|
Expect(v).To(Equal([]string{"list", "hello"}))
|
|
|
|
atomic.AddUint32(&received, 1)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.LPush(ctx, "list", "hello").Err()
|
2018-03-08 11:16:53 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
wg.Wait()
|
2020-06-05 09:30:21 +03:00
|
|
|
Expect(atomic.LoadUint32(&received)).To(Equal(uint32(C * N)))
|
2018-03-08 11:16:53 +03:00
|
|
|
})
|
2016-03-16 17:57:24 +03:00
|
|
|
})
|
2017-09-30 09:21:59 +03:00
|
|
|
|
2024-01-01 23:19:22 +03:00
|
|
|
var _ = Describe("cluster races", Label("NonRedisEnterprise"), func() {
|
2018-03-08 14:50:16 +03:00
|
|
|
var client *redis.ClusterClient
|
|
|
|
var C, N int
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
|
|
|
opt := redisClusterOptions()
|
2020-03-11 17:26:42 +03:00
|
|
|
client = cluster.newClusterClient(ctx, opt)
|
2018-03-08 14:50:16 +03:00
|
|
|
|
|
|
|
C, N = 10, 1000
|
|
|
|
if testing.Short() {
|
|
|
|
C = 4
|
|
|
|
N = 100
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
|
|
|
err := client.Close()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should echo", func() {
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
|
|
|
msg := fmt.Sprintf("echo %d %d", id, i)
|
2020-03-11 17:26:42 +03:00
|
|
|
echo, err := client.Echo(ctx, msg).Result()
|
2018-03-08 14:50:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(echo).To(Equal(msg))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-17 14:36:51 +03:00
|
|
|
It("should get", func() {
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
|
|
|
key := fmt.Sprintf("key_%d_%d", id, i)
|
2020-03-11 17:26:42 +03:00
|
|
|
_, err := client.Get(ctx, key).Result()
|
2018-05-17 14:36:51 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-03-08 14:50:16 +03:00
|
|
|
It("should incr", func() {
|
|
|
|
key := "TestIncrFromGoroutines"
|
|
|
|
|
|
|
|
perform(C, func(id int) {
|
|
|
|
for i := 0; i < N; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Incr(ctx, key).Err()
|
2018-03-08 14:50:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, key).Int64()
|
2018-03-08 14:50:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal(int64(C * N)))
|
|
|
|
})
|
2021-09-03 12:57:34 +03:00
|
|
|
|
|
|
|
It("write cmd data-race", func() {
|
|
|
|
pubsub := client.Subscribe(ctx)
|
|
|
|
defer pubsub.Close()
|
|
|
|
|
|
|
|
pubsub.Channel(redis.WithChannelHealthCheckInterval(time.Millisecond))
|
|
|
|
for i := 0; i < 100; i++ {
|
|
|
|
key := fmt.Sprintf("channel_%d", i)
|
|
|
|
pubsub.Subscribe(ctx, key)
|
|
|
|
pubsub.Unsubscribe(ctx, key)
|
|
|
|
}
|
|
|
|
})
|
2018-03-08 14:50:16 +03:00
|
|
|
})
|
|
|
|
|
2017-09-30 09:21:59 +03:00
|
|
|
func bigVal() []byte {
|
|
|
|
return bytes.Repeat([]byte{'*'}, 1<<17) // 128kb
|
|
|
|
}
|