2015-01-15 18:51:22 +03:00
|
|
|
package redis_test
|
|
|
|
|
|
|
|
import (
|
2020-03-11 17:26:42 +03:00
|
|
|
"context"
|
2015-05-28 15:51:19 +03:00
|
|
|
"encoding/json"
|
2015-01-15 18:51:22 +03:00
|
|
|
"fmt"
|
2015-05-28 15:51:19 +03:00
|
|
|
"reflect"
|
2015-01-15 18:51:22 +03:00
|
|
|
"time"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2015-05-14 15:19:29 +03:00
|
|
|
|
2022-06-04 17:39:21 +03:00
|
|
|
"github.com/go-redis/redis/v9"
|
|
|
|
"github.com/go-redis/redis/v9/internal/proto"
|
2015-01-15 18:51:22 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Commands", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx := context.TODO()
|
2015-01-15 18:51:22 +03:00
|
|
|
var client *redis.Client
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
2016-03-16 17:57:24 +03:00
|
|
|
client = redis.NewClient(redisOptions())
|
2020-03-11 17:26:42 +03:00
|
|
|
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("server", func() {
|
2016-11-30 13:39:14 +03:00
|
|
|
It("should Auth", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
cmds, err := client.Pipelined(ctx, func(pipe redis.Pipeliner) error {
|
|
|
|
pipe.Auth(ctx, "password")
|
|
|
|
pipe.Auth(ctx, "")
|
2016-11-30 13:39:14 +03:00
|
|
|
return nil
|
|
|
|
})
|
2020-06-05 09:30:21 +03:00
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(err.Error()).To(ContainSubstring("ERR AUTH"))
|
|
|
|
Expect(cmds[0].Err().Error()).To(ContainSubstring("ERR AUTH"))
|
|
|
|
Expect(cmds[1].Err().Error()).To(ContainSubstring("ERR AUTH"))
|
2017-08-31 15:22:47 +03:00
|
|
|
|
2017-09-22 12:23:46 +03:00
|
|
|
stats := client.PoolStats()
|
2017-08-31 15:22:47 +03:00
|
|
|
Expect(stats.Hits).To(Equal(uint32(1)))
|
2017-09-22 12:23:46 +03:00
|
|
|
Expect(stats.Misses).To(Equal(uint32(1)))
|
2017-08-31 15:22:47 +03:00
|
|
|
Expect(stats.Timeouts).To(Equal(uint32(0)))
|
|
|
|
Expect(stats.TotalConns).To(Equal(uint32(1)))
|
2018-08-12 10:08:21 +03:00
|
|
|
Expect(stats.IdleConns).To(Equal(uint32(1)))
|
2016-11-30 13:39:14 +03:00
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-04-27 10:04:46 +03:00
|
|
|
It("should hello", func() {
|
|
|
|
cmds, err := client.Pipelined(ctx, func(pipe redis.Pipeliner) error {
|
|
|
|
pipe.Hello(ctx, 3, "", "", "")
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
m, err := cmds[0].(*redis.MapStringInterfaceCmd).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(m["proto"]).To(Equal(int64(3)))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should Echo", func() {
|
2016-11-30 13:39:14 +03:00
|
|
|
pipe := client.Pipeline()
|
2020-03-11 17:26:42 +03:00
|
|
|
echo := pipe.Echo(ctx, "hello")
|
|
|
|
_, err := pipe.Exec(ctx)
|
2016-11-30 13:39:14 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(echo.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(echo.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Ping", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
ping := client.Ping(ctx)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ping.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ping.Val()).To(Equal("PONG"))
|
|
|
|
})
|
|
|
|
|
2017-02-16 19:15:34 +03:00
|
|
|
It("should Wait", func() {
|
2018-02-22 16:01:48 +03:00
|
|
|
const wait = 3 * time.Second
|
|
|
|
|
2017-02-16 19:15:34 +03:00
|
|
|
// assume testing on single redis instance
|
2017-02-24 12:03:21 +03:00
|
|
|
start := time.Now()
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Wait(ctx, 1, wait).Result()
|
2018-02-22 16:01:48 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal(int64(0)))
|
2018-11-21 12:09:21 +03:00
|
|
|
Expect(time.Now()).To(BeTemporally("~", start.Add(wait), 3*time.Second))
|
2017-02-16 19:15:34 +03:00
|
|
|
})
|
|
|
|
|
2016-11-30 13:39:14 +03:00
|
|
|
It("should Select", func() {
|
|
|
|
pipe := client.Pipeline()
|
2020-03-11 17:26:42 +03:00
|
|
|
sel := pipe.Select(ctx, 1)
|
|
|
|
_, err := pipe.Exec(ctx)
|
2016-11-30 13:39:14 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
Expect(sel.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sel.Val()).To(Equal("OK"))
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2018-02-14 07:42:19 +03:00
|
|
|
It("should SwapDB", func() {
|
|
|
|
pipe := client.Pipeline()
|
2020-03-11 17:26:42 +03:00
|
|
|
sel := pipe.SwapDB(ctx, 1, 2)
|
|
|
|
_, err := pipe.Exec(ctx)
|
2018-02-14 07:42:19 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
Expect(sel.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sel.Val()).To(Equal("OK"))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should BgRewriteAOF", func() {
|
2016-03-14 17:51:46 +03:00
|
|
|
Skip("flaky test")
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.BgRewriteAOF(ctx).Result()
|
2016-03-14 17:51:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(ContainSubstring("Background append only file rewriting"))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should BgSave", func() {
|
2016-03-14 17:51:46 +03:00
|
|
|
Skip("flaky test")
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
// workaround for "ERR Can't BGSAVE while AOF log rewriting is in progress"
|
|
|
|
Eventually(func() string {
|
2020-03-11 17:26:42 +03:00
|
|
|
return client.BgSave(ctx).Val()
|
2016-03-14 17:51:46 +03:00
|
|
|
}, "30s").Should(Equal("Background saving started"))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ClientKill", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
r := client.ClientKill(ctx, "1.1.1.1:1111")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(r.Err()).To(MatchError("ERR No such client"))
|
|
|
|
Expect(r.Val()).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
2018-07-23 14:12:20 +03:00
|
|
|
It("should ClientKillByFilter", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
r := client.ClientKillByFilter(ctx, "TYPE", "test")
|
2018-07-23 14:12:20 +03:00
|
|
|
Expect(r.Err()).To(MatchError("ERR Unknown client type 'test'"))
|
|
|
|
Expect(r.Val()).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
2018-12-11 14:17:41 +03:00
|
|
|
It("should ClientID", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.ClientID(ctx).Err()
|
2018-12-11 13:43:54 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
Expect(client.ClientID(ctx).Val()).To(BeNumerically(">=", 0))
|
2018-12-11 13:43:54 +03:00
|
|
|
})
|
|
|
|
|
2018-12-11 23:26:48 +03:00
|
|
|
It("should ClientUnblock", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
id := client.ClientID(ctx).Val()
|
|
|
|
r, err := client.ClientUnblock(ctx, id).Result()
|
2018-12-14 17:46:15 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(r).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ClientUnblockWithError", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
id := client.ClientID(ctx).Val()
|
|
|
|
r, err := client.ClientUnblockWithError(ctx, id).Result()
|
2018-12-11 23:26:48 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(r).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
2015-05-15 15:11:22 +03:00
|
|
|
It("should ClientPause", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.ClientPause(ctx, time.Second).Err()
|
2015-05-15 15:11:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2015-11-22 15:44:38 +03:00
|
|
|
start := time.Now()
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Ping(ctx).Err()
|
2015-11-22 15:44:38 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(time.Now()).To(BeTemporally("~", start.Add(time.Second), 800*time.Millisecond))
|
2015-05-15 15:11:22 +03:00
|
|
|
})
|
|
|
|
|
2015-10-22 14:15:47 +03:00
|
|
|
It("should ClientSetName and ClientGetName", func() {
|
2016-11-30 13:39:14 +03:00
|
|
|
pipe := client.Pipeline()
|
2020-03-11 17:26:42 +03:00
|
|
|
set := pipe.ClientSetName(ctx, "theclientname")
|
|
|
|
get := pipe.ClientGetName(ctx)
|
|
|
|
_, err := pipe.Exec(ctx)
|
2015-10-20 22:21:58 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2016-11-30 13:39:14 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(BeTrue())
|
|
|
|
|
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("theclientname"))
|
2015-10-20 22:21:58 +03:00
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ConfigGet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.ConfigGet(ctx, "*").Result()
|
2017-05-24 15:53:41 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).NotTo(BeEmpty())
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ConfigResetStat", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
r := client.ConfigResetStat(ctx)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(r.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(r.Val()).To(Equal("OK"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ConfigSet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
configGet := client.ConfigGet(ctx, "maxmemory")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(configGet.Err()).NotTo(HaveOccurred())
|
2021-04-27 10:04:46 +03:00
|
|
|
Expect(configGet.Val()).To(HaveLen(1))
|
|
|
|
_, ok := configGet.Val()["maxmemory"]
|
|
|
|
Expect(ok).To(BeTrue())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-04-27 10:04:46 +03:00
|
|
|
configSet := client.ConfigSet(ctx, "maxmemory", configGet.Val()["maxmemory"])
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(configSet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(configSet.Val()).To(Equal("OK"))
|
|
|
|
})
|
|
|
|
|
2018-03-01 11:37:51 +03:00
|
|
|
It("should ConfigRewrite", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
configRewrite := client.ConfigRewrite(ctx)
|
2018-03-01 11:37:51 +03:00
|
|
|
Expect(configRewrite.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(configRewrite.Val()).To(Equal("OK"))
|
|
|
|
})
|
|
|
|
|
2017-08-15 10:34:05 +03:00
|
|
|
It("should DBSize", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err := client.DBSize(ctx).Result()
|
2017-08-15 10:34:05 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(0)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should Info", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
info := client.Info(ctx)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(info.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(info.Val()).NotTo(Equal(""))
|
|
|
|
})
|
|
|
|
|
2016-01-08 16:03:34 +03:00
|
|
|
It("should Info cpu", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
info := client.Info(ctx, "cpu")
|
2016-01-08 16:03:34 +03:00
|
|
|
Expect(info.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(info.Val()).NotTo(Equal(""))
|
|
|
|
Expect(info.Val()).To(ContainSubstring(`used_cpu_sys`))
|
|
|
|
})
|
|
|
|
|
2022-10-07 22:40:51 +03:00
|
|
|
It("should Info cpu and memory", func() {
|
|
|
|
info := client.Info(ctx, "cpu", "memory")
|
|
|
|
Expect(info.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(info.Val()).NotTo(Equal(""))
|
|
|
|
Expect(info.Val()).To(ContainSubstring(`used_cpu_sys`))
|
|
|
|
Expect(info.Val()).To(ContainSubstring(`memory`))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should LastSave", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
lastSave := client.LastSave(ctx)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lastSave.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lastSave.Val()).NotTo(Equal(0))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Save", func() {
|
|
|
|
// workaround for "ERR Background save already in progress"
|
|
|
|
Eventually(func() string {
|
2020-03-11 17:26:42 +03:00
|
|
|
return client.Save(ctx).Val()
|
2015-01-24 15:12:48 +03:00
|
|
|
}, "10s").Should(Equal("OK"))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should SlaveOf", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
slaveOf := client.SlaveOf(ctx, "localhost", "8888")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(slaveOf.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(slaveOf.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
slaveOf = client.SlaveOf(ctx, "NO", "ONE")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(slaveOf.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(slaveOf.Val()).To(Equal("OK"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Time", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
tm, err := client.Time(ctx).Result()
|
2016-10-14 14:39:02 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(tm).To(BeTemporally("~", time.Now(), 3*time.Second))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2018-12-11 13:43:54 +03:00
|
|
|
It("should Command", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
cmds, err := client.Command(ctx).Result()
|
2017-08-31 15:22:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2022-06-04 17:25:12 +03:00
|
|
|
Expect(len(cmds)).To(BeNumerically("~", 240, 25))
|
2017-08-31 15:22:47 +03:00
|
|
|
|
|
|
|
cmd := cmds["mget"]
|
|
|
|
Expect(cmd.Name).To(Equal("mget"))
|
|
|
|
Expect(cmd.Arity).To(Equal(int8(-2)))
|
|
|
|
Expect(cmd.Flags).To(ContainElement("readonly"))
|
|
|
|
Expect(cmd.FirstKeyPos).To(Equal(int8(1)))
|
|
|
|
Expect(cmd.LastKeyPos).To(Equal(int8(-1)))
|
|
|
|
Expect(cmd.StepCount).To(Equal(int8(1)))
|
|
|
|
|
|
|
|
cmd = cmds["ping"]
|
|
|
|
Expect(cmd.Name).To(Equal("ping"))
|
|
|
|
Expect(cmd.Arity).To(Equal(int8(-1)))
|
|
|
|
Expect(cmd.Flags).To(ContainElement("fast"))
|
|
|
|
Expect(cmd.FirstKeyPos).To(Equal(int8(0)))
|
|
|
|
Expect(cmd.LastKeyPos).To(Equal(int8(0)))
|
|
|
|
Expect(cmd.StepCount).To(Equal(int8(0)))
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
Describe("debugging", func() {
|
2022-06-04 17:25:12 +03:00
|
|
|
PIt("should DebugObject", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.DebugObject(ctx, "foo").Err()
|
2018-07-22 09:46:29 +03:00
|
|
|
Expect(err).To(MatchError("ERR no such key"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Set(ctx, "foo", "bar", 0).Err()
|
2018-07-22 09:46:29 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
s, err := client.DebugObject(ctx, "foo").Result()
|
2018-07-22 09:46:29 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(s).To(ContainSubstring("serializedlength:4"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should MemoryUsage", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.MemoryUsage(ctx, "foo").Err()
|
2018-07-22 09:46:29 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Set(ctx, "foo", "bar", 0).Err()
|
2018-07-22 09:46:29 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.MemoryUsage(ctx, "foo").Result()
|
2018-07-22 09:46:29 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-10 16:15:54 +03:00
|
|
|
Expect(n).NotTo(BeZero())
|
2018-07-22 09:46:29 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err = client.MemoryUsage(ctx, "foo", 0).Result()
|
2018-07-22 09:46:29 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-10 16:15:54 +03:00
|
|
|
Expect(n).NotTo(BeZero())
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("keys", func() {
|
|
|
|
It("should Del", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key1", "Hello", 0).Err()
|
2016-12-22 14:42:05 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Set(ctx, "key2", "World", 0).Err()
|
2016-12-22 14:42:05 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.Del(ctx, "key1", "key2", "key3").Result()
|
2016-12-22 14:42:05 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Unlink", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key1", "Hello", 0).Err()
|
2016-12-22 14:42:05 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Set(ctx, "key2", "World", 0).Err()
|
2016-12-22 14:42:05 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.Unlink(ctx, "key1", "key2", "key3").Result()
|
2016-12-22 14:42:05 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should Dump", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
dump := client.Dump(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(dump.Err()).NotTo(HaveOccurred())
|
2015-09-28 11:13:32 +03:00
|
|
|
Expect(dump.Val()).NotTo(BeEmpty())
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should Exists", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key1", "Hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.Exists(ctx, "key1").Result()
|
2017-02-18 17:32:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err = client.Exists(ctx, "key2").Result()
|
2017-02-18 17:32:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(0)))
|
2017-02-10 13:15:25 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err = client.Exists(ctx, "key1", "key2").Result()
|
2017-02-18 17:32:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
2017-02-10 13:15:25 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err = client.Exists(ctx, "key1", "key1").Result()
|
2017-02-18 17:32:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should Expire", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "Hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
expire := client.Expire(ctx, "key", 10*time.Second)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(expire.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(expire.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl := client.TTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).To(Equal(10 * time.Second))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set = client.Set(ctx, "key", "Hello World", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl = client.TTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
2019-05-31 13:16:10 +03:00
|
|
|
Expect(ttl.Val()).To(Equal(time.Duration(-1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl = client.TTL(ctx, "nonexistent_key")
|
2019-05-31 13:16:10 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).To(Equal(time.Duration(-2)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ExpireAt", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "Hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.Exists(ctx, "key").Result()
|
2017-02-18 17:32:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
expireAt := client.ExpireAt(ctx, "key", time.Now().Add(-time.Hour))
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(expireAt.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(expireAt.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err = client.Exists(ctx, "key").Result()
|
2017-02-18 17:32:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(0)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should Keys", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
mset := client.MSet(ctx, "one", "1", "two", "2", "three", "3", "four", "4")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(mset.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(mset.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys := client.Keys(ctx, "*o*")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(keys.Err()).NotTo(HaveOccurred())
|
2015-02-09 11:14:41 +03:00
|
|
|
Expect(keys.Val()).To(ConsistOf([]string{"four", "one", "two"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys = client.Keys(ctx, "t??")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(keys.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(keys.Val()).To(Equal([]string{"two"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys = client.Keys(ctx, "*")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(keys.Err()).NotTo(HaveOccurred())
|
2015-02-09 11:14:41 +03:00
|
|
|
Expect(keys.Val()).To(ConsistOf([]string{"four", "one", "three", "two"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should Migrate", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
migrate := client.Migrate(ctx, "localhost", redisSecondaryPort, "key", 0, 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(migrate.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(migrate.Val()).To(Equal("NOKEY"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
migrate = client.Migrate(ctx, "localhost", redisSecondaryPort, "key", 0, 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(migrate.Err()).To(MatchError("IOERR error or timeout writing to target instance"))
|
|
|
|
Expect(migrate.Val()).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Move", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
move := client.Move(ctx, "key", 2)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(move.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(move.Val()).To(Equal(false))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
move = client.Move(ctx, "key", 2)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(move.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(move.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).To(Equal(redis.Nil))
|
|
|
|
Expect(get.Val()).To(Equal(""))
|
|
|
|
|
2016-06-05 12:45:39 +03:00
|
|
|
pipe := client.Pipeline()
|
2020-03-11 17:26:42 +03:00
|
|
|
pipe.Select(ctx, 2)
|
|
|
|
get = pipe.Get(ctx, "key")
|
|
|
|
pipe.FlushDB(ctx)
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
_, err := pipe.Exec(ctx)
|
2016-06-05 12:45:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Object", func() {
|
2021-03-13 13:40:04 +03:00
|
|
|
start := time.Now()
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
refCount := client.ObjectRefCount(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(refCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(refCount.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.ObjectEncoding(ctx, "key").Err()
|
2015-05-14 16:13:45 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
idleTime := client.ObjectIdleTime(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(idleTime.Err()).NotTo(HaveOccurred())
|
2021-03-13 13:40:04 +03:00
|
|
|
|
chore: sync master (#2051)
* Upgrade redis-server version (#1833)
* Upgrade redis-server version
Signed-off-by: monkey <golang@88.com>
* XAutoClaim changed the return value
Signed-off-by: monkey <golang@88.com>
* add cmd: geosearch, geosearchstore (#1836)
* add cmd: geosearch, geosearchstore
Signed-off-by: monkey92t <golang@88.com>
* GeoSearchQuery and GeoSearchLocationQuery changed to pointer passing
Signed-off-by: monkey92t <golang@88.com>
* Added missing method XInfoStreamFull to Cmdable interface
* Run go mod tidy in redisotel
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
* Revert "ConnPool check fd for bad conns (#1824)" (#1849)
This reverts commit 346bfafddd36dd52d51b064033048de5552ee91e.
* Automate release process (#1852)
* Bump github.com/onsi/gomega from 1.10.5 to 1.14.0 (#1832)
* Bump github.com/onsi/gomega from 1.10.5 to 1.14.0
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.10.5 to 1.14.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.10.5...v1.14.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* Upgrade gomega to v1.15.0
Signed-off-by: monkey92t <golang@88.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: monkey92t <golang@88.com>
* Add version.go
* Fix otel example
* Fix package name in release script
* More fixes for otel example
* And more
* Fix release.sh
* Release v8.11.3 (release.sh)
* Create an annotated tag to give release.yml chance to run
* Tweak tag.sh
* Add Cmd.Slice helper to cast to []interface{} (#1859)
* after the connection pool is closed, no new connections should be added (#1863)
* after the connection pool is closed, no new connections should be added
Signed-off-by: monkey92t <golang@88.com>
* remove runGoroutine
Signed-off-by: monkey92t <golang@88.com>
* pool.popIdle add p.closed check
Signed-off-by: monkey92t <golang@88.com>
* upgrade golangci-lint v1.42.0
Signed-off-by: monkey92t <golang@88.com>
* Bump github.com/onsi/gomega from 1.15.0 to 1.16.0 (#1865)
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.15.0 to 1.16.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.15.0...v1.16.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Add go 1.17 to the build matrix
* Remove go 1.15 from build matrix
* Add scan struct example (#1870)
* Replace release job
* Bump github.com/cespare/xxhash/v2 from 2.1.1 to 2.1.2 (#1872)
Bumps [github.com/cespare/xxhash/v2](https://github.com/cespare/xxhash) from 2.1.1 to 2.1.2.
- [Release notes](https://github.com/cespare/xxhash/releases)
- [Commits](https://github.com/cespare/xxhash/compare/v2.1.1...v2.1.2)
---
updated-dependencies:
- dependency-name: github.com/cespare/xxhash/v2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Fix tag script to push tag by tag
* Fix releasing.md
* Fix/pubsub ping mutex (#1878)
* Fix PubSub.Ping to hold the lock
* Fix PubSub.Ping to hold the lock
* add write cmd data-race test
Signed-off-by: monkey92t <golang@88.com>
Co-authored-by: monkey92t <golang@88.com>
* chore: cleanup OpenTelemetry example
* chore: gofmt all code
* Refactor TestParseURL
This is in preparation for supporting query parameters
in ParseURL:
- use an expected *Options instance to execute assertions on
- extract assertions into helper function
- enable parallel testing
- condense test table
* Add query parameter parsing to ParseURL()
Before this change, ParseURL would only accept a very restricted
set of URLs (it returned an error, if it encountered any parameter).
This commit introduces the ability to process URLs like
redis://localhost/1?dial_timeout=10s
and similar.
Go programs which were providing a configuration tunable (e.g.
CLI flag, config entry or environment variable) to configure
the Redis connection now don't need to perform this task
themselves.
* chore: add links to readme
* chore: fix discussions link
* empty hooks.withContext removed
* chore: gofmt
* chore: use conventional commits and auto-generate changelog
* feat: add acl auth support for sentinels
* chore: swap to acl auth at the test-level
* Add support for BLMove command
* chore: update dependencies
* chore: update link
* feat: add SetVal method for each command
* feat: add Cmd.{String,Int,Float,Bool}Slice helpers and an example
* chore: tweak GH actions to run all jobs
* chore: add Lua scripting example
* Fix Redis Cluster issue during roll outs of new nodes with same addr (#1914)
* fix: recycle connections in some Redis Cluster scenarios
This issue was surfaced in a Cloud Provider solution that used for
rolling out new nodes using the same address (hostname) of the nodes
that will be replaced in a Redis Cluster, while the former ones once
depromoted as Slaves would continue in service during some mintues
for redirecting traffic.
The solution basically identifies when the connection could be stale
since a MOVED response will be returned using the same address (hostname)
that is being used by the connection. At that moment we consider the
connection as no longer usable forcing to recycle the connection.
* chore: lazy reload when moved or ask
* chore: use conv commit message
* chore: release v8.11.4 (release.sh)
* fix: add whitespace for avoid unlikely colisions
* fix: format
* chore: fix links
* chore: use ctx parameter in cmdInfo
* Bump github.com/onsi/ginkgo from 1.16.4 to 1.16.5 (#1925)
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.16.4 to 1.16.5.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v1.16.4...v1.16.5)
---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: add support for time.Duration write and scan
* test: add test case for setting and scanning durations
* chore: fix linter
* fix(extra/redisotel): set span.kind attribute to client
According to the opentelemetry specification this should always be set to client for database client
libraries.
I've also removed the SetAttributes call and instead set the attributes during creation of the span.
This is what the library SHOULD be doing according to the opentelemetry api specification.
* chore: update otel example
* fix: update some argument counts in pre-allocs
In some cases number of pre-allocated places in
argument array is missing 1 or 2 elements,
which results in re-allocation of twice as large array
* chore: add example how to delete keys without a ttl
* chore: don't enable all lints
* chore(deps): bump github.com/onsi/gomega from 1.16.0 to 1.17.0
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.16.0 to 1.17.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.16.0...v1.17.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* feat: Add redis v7's NX, XX, GT, LT expire variants
* chore: add missing readme
* chore: tweak feature links
* chore: remove Discord
* fix: set timeout for WAIT command. Fixes #1963
* build: update `go` directive in `go.mod` to 1.17
This commit enables support for module graph pruning and lazy module
loading for projects that are at Go 1.17 or higher.
Reference: https://go.dev/ref/mod#go-mod-file-go
Reference: https://go.dev/ref/mod#graph-pruning
Reference: https://go.dev/ref/mod#lazy-loading
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
* chore: update link
* chore: export cmder.SetFirstKeyPos to support build module commands
* feat(redisotel): ability to override TracerProvider (#1998)
* fix: add missing Expire methods to Cmdable
This is a followup to https://github.com/go-redis/redis/pull/1928
* chore(deps): bump github.com/onsi/gomega from 1.17.0 to 1.18.1
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.17.0 to 1.18.1.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.17.0...v1.18.1)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* Update README.md (#2011)
chore: add fmt library in example code
* chore: instrumentation name and version (#2012)
* fix: invalid type assert in stringArg
* chore: cleanup
* fix: example/otel compile error (#2028)
* fix: rename Golang to Go (#2030)
https://go.dev/doc/faq#go_or_golang
* feat: add support for passing extra attributes added to spans
* feat: set net.peer.name and net.peer.port in otel example
* chore: tweak Uptrace copy
* feat: add support for COPY command (#2016)
* feat: add support for acl sentinel auth in universal client
* chore(deps): bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* chore: add hll example
* chore: tweak release script
* chore: release v8.11.5 (release.sh)
* chore: add discord back
Co-authored-by: Eugene Ponizovsky <ponizovsky@gmail.com>
Co-authored-by: Bogdan Drutu <bogdandrutu@gmail.com>
Co-authored-by: Vladimir Mihailenco <vladimir.webdev@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kishan B <kishancs46@gmail.com>
Co-authored-by: Dominik Menke <dom@digineo.de>
Co-authored-by: Gökhan Özeloğlu <gozeloglu@gmail.com>
Co-authored-by: Justin Sievenpiper <justin@sievenpiper.co>
Co-authored-by: Алексей Романовский <aromanovsky@epiphan.com>
Co-authored-by: Stavros Panakakakis <stavrospanakakis@gmail.com>
Co-authored-by: Pau Freixes <pfreixes@gmail.com>
Co-authored-by: Ethan Hur <ethan0311@gmail.com>
Co-authored-by: Jackie <18378976+Pyrodash@users.noreply.github.com>
Co-authored-by: Kristinn Björgvin Árdal <kristinnardalsecondary@gmail.com>
Co-authored-by: ffenix113 <razerer@bigmir.net>
Co-authored-by: Bastien Penavayre <bastienPenava@gmail.com>
Co-authored-by: James3 Li(李麒傑) <james3_li@asus.com>
Co-authored-by: Eng Zer Jun <engzerjun@gmail.com>
Co-authored-by: gzjiangtao2014 <gzjiangtao2014@corp.netease.com>
Co-authored-by: Nelz <nelz9999@users.noreply.github.com>
Co-authored-by: Daniel Richter <Nexyz9@gmail.com>
Co-authored-by: Seyed Ali Ghaffari <ali.ghaffari@outlook.com>
Co-authored-by: lintanghui <lintanghui@bilibili.com>
Co-authored-by: hidu <duv123+github@gmail.com>
Co-authored-by: Jonas Lergell <jonas.lergell@volvocars.com>
Co-authored-by: Alex Kahn <alexanderkahn@gmail.com>
2022-03-19 07:40:31 +03:00
|
|
|
// Redis returned milliseconds/1000, which may cause ObjectIdleTime to be at a critical value,
|
|
|
|
// should be +1s to deal with the critical value problem.
|
|
|
|
// if too much time (>1s) is used during command execution, it may also cause the test to fail.
|
|
|
|
// so the ObjectIdleTime result should be <=now-start+1s
|
|
|
|
// link: https://github.com/redis/redis/blob/5b48d900498c85bbf4772c1d466c214439888115/src/object.c#L1265-L1272
|
2021-03-26 12:13:22 +03:00
|
|
|
Expect(idleTime.Val()).To(BeNumerically("<=", time.Now().Sub(start)+time.Second))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should Persist", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "Hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
expire := client.Expire(ctx, "key", 10*time.Second)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(expire.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(expire.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl := client.TTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).To(Equal(10 * time.Second))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
persist := client.Persist(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(persist.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(persist.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl = client.TTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val() < 0).To(Equal(true))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should PExpire", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "Hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
expiration := 900 * time.Millisecond
|
2020-03-11 17:26:42 +03:00
|
|
|
pexpire := client.PExpire(ctx, "key", expiration)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(pexpire.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(pexpire.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl := client.TTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).To(Equal(time.Second))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pttl := client.PTTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(pttl.Err()).NotTo(HaveOccurred())
|
2018-02-12 17:15:40 +03:00
|
|
|
Expect(pttl.Val()).To(BeNumerically("~", expiration, 100*time.Millisecond))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should PExpireAt", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "Hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
expiration := 900 * time.Millisecond
|
2020-03-11 17:26:42 +03:00
|
|
|
pexpireat := client.PExpireAt(ctx, "key", time.Now().Add(expiration))
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(pexpireat.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(pexpireat.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl := client.TTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).To(Equal(time.Second))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pttl := client.PTTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(pttl.Err()).NotTo(HaveOccurred())
|
2018-02-12 17:15:40 +03:00
|
|
|
Expect(pttl.Val()).To(BeNumerically("~", expiration, 100*time.Millisecond))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should PTTL", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "Hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
expiration := time.Second
|
2020-03-11 17:26:42 +03:00
|
|
|
expire := client.Expire(ctx, "key", expiration)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(expire.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pttl := client.PTTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(pttl.Err()).NotTo(HaveOccurred())
|
2018-02-12 17:15:40 +03:00
|
|
|
Expect(pttl.Val()).To(BeNumerically("~", expiration, 100*time.Millisecond))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should RandomKey", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
randomKey := client.RandomKey(ctx)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(randomKey.Err()).To(Equal(redis.Nil))
|
|
|
|
Expect(randomKey.Val()).To(Equal(""))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
randomKey = client.RandomKey(ctx)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(randomKey.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(randomKey.Val()).To(Equal("key"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Rename", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
status := client.Rename(ctx, "key", "key1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(status.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(status.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should RenameNX", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
renameNX := client.RenameNX(ctx, "key", "key1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(renameNX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(renameNX.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Restore", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key", "hello", 0).Err()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
dump := client.Dump(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(dump.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Del(ctx, "key").Err()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
restore, err := client.Restore(ctx, "key", 0, dump.Val()).Result()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(restore).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
type_, err := client.Type(ctx, "key").Result()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(type_).To(Equal("string"))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, "key").Result()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2015-07-11 12:23:04 +03:00
|
|
|
It("should RestoreReplace", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key", "hello", 0).Err()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
dump := client.Dump(ctx, "key")
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(dump.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
restore, err := client.RestoreReplace(ctx, "key", 0, dump.Val()).Result()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(restore).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
type_, err := client.Type(ctx, "key").Result()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(type_).To(Equal("string"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, "key").Result()
|
2015-07-11 12:23:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should Sort", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err := client.LPush(ctx, "list", "1").Result()
|
2016-01-22 13:29:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err = client.LPush(ctx, "list", "3").Result()
|
2016-01-22 13:29:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err = client.LPush(ctx, "list", "2").Result()
|
2016-01-22 13:29:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(3)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
els, err := client.Sort(ctx, "list", &redis.Sort{
|
2016-01-22 13:29:23 +03:00
|
|
|
Offset: 0,
|
|
|
|
Count: 2,
|
|
|
|
Order: "ASC",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(els).To(Equal([]string{"1", "2"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Sort and Get", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err := client.LPush(ctx, "list", "1").Result()
|
2016-01-22 13:29:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err = client.LPush(ctx, "list", "3").Result()
|
2016-01-22 13:29:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err = client.LPush(ctx, "list", "2").Result()
|
2016-01-22 13:29:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(3)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Set(ctx, "object_2", "value2", 0).Err()
|
2016-01-22 13:29:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
{
|
2020-03-11 17:26:42 +03:00
|
|
|
els, err := client.Sort(ctx, "list", &redis.Sort{
|
2016-01-22 13:29:23 +03:00
|
|
|
Get: []string{"object_*"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(els).To(Equal([]string{"", "value2", ""}))
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2020-03-11 17:26:42 +03:00
|
|
|
els, err := client.SortInterfaces(ctx, "list", &redis.Sort{
|
2016-01-22 13:29:23 +03:00
|
|
|
Get: []string{"object_*"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(els).To(Equal([]interface{}{nil, "value2", nil}))
|
|
|
|
}
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2018-02-13 17:08:11 +03:00
|
|
|
It("should Sort and Store", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err := client.LPush(ctx, "list", "1").Result()
|
2018-02-13 17:08:11 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err = client.LPush(ctx, "list", "3").Result()
|
2018-02-13 17:08:11 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
size, err = client.LPush(ctx, "list", "2").Result()
|
2018-02-13 17:08:11 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(size).To(Equal(int64(3)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.SortStore(ctx, "list", "list2", &redis.Sort{
|
2018-02-13 17:08:11 +03:00
|
|
|
Offset: 0,
|
|
|
|
Count: 2,
|
|
|
|
Order: "ASC",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
els, err := client.LRange(ctx, "list2", 0, -1).Result()
|
2018-02-13 17:08:11 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(els).To(Equal([]string{"1", "2"}))
|
|
|
|
})
|
|
|
|
|
2018-02-14 07:42:19 +03:00
|
|
|
It("should Touch", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set1 := client.Set(ctx, "touch1", "hello", 0)
|
2018-02-14 07:42:19 +03:00
|
|
|
Expect(set1.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set1.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set2 := client.Set(ctx, "touch2", "hello", 0)
|
2018-02-14 07:42:19 +03:00
|
|
|
Expect(set2.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set2.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
touch := client.Touch(ctx, "touch1", "touch2", "touch3")
|
2018-02-14 07:42:19 +03:00
|
|
|
Expect(touch.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(touch.Val()).To(Equal(int64(2)))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should TTL", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl := client.TTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val() < 0).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
expire := client.Expire(ctx, "key", 60*time.Second)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(expire.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(expire.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ttl = client.TTL(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).To(Equal(60 * time.Second))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Type", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
type_ := client.Type(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(type_.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(type_.Val()).To(Equal("string"))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("scanning", func() {
|
|
|
|
It("should Scan", func() {
|
|
|
|
for i := 0; i < 1000; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, fmt.Sprintf("key%d", i), "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys, cursor, err := client.Scan(ctx, 0, "", 0).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-04-09 13:07:42 +03:00
|
|
|
Expect(keys).NotTo(BeEmpty())
|
|
|
|
Expect(cursor).NotTo(BeZero())
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2021-01-08 22:36:20 +03:00
|
|
|
It("should ScanType", func() {
|
|
|
|
for i := 0; i < 1000; i++ {
|
|
|
|
set := client.Set(ctx, fmt.Sprintf("key%d", i), "hello", 0)
|
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
|
|
|
|
keys, cursor, err := client.ScanType(ctx, 0, "", 0, "string").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(keys).NotTo(BeEmpty())
|
|
|
|
Expect(cursor).NotTo(BeZero())
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should SScan", func() {
|
|
|
|
for i := 0; i < 1000; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
sadd := client.SAdd(ctx, "myset", fmt.Sprintf("member%d", i))
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sadd.Err()).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys, cursor, err := client.SScan(ctx, "myset", 0, "", 0).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-04-09 13:07:42 +03:00
|
|
|
Expect(keys).NotTo(BeEmpty())
|
|
|
|
Expect(cursor).NotTo(BeZero())
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should HScan", func() {
|
|
|
|
for i := 0; i < 1000; i++ {
|
2020-03-11 17:26:42 +03:00
|
|
|
sadd := client.HSet(ctx, "myhash", fmt.Sprintf("key%d", i), "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sadd.Err()).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys, cursor, err := client.HScan(ctx, "myhash", 0, "", 0).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-04-09 13:07:42 +03:00
|
|
|
Expect(keys).NotTo(BeEmpty())
|
|
|
|
Expect(cursor).NotTo(BeZero())
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZScan", func() {
|
|
|
|
for i := 0; i < 1000; i++ {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "myset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: float64(i),
|
|
|
|
Member: fmt.Sprintf("member%d", i),
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys, cursor, err := client.ZScan(ctx, "myset", 0, "", 0).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-04-09 13:07:42 +03:00
|
|
|
Expect(keys).NotTo(BeEmpty())
|
|
|
|
Expect(cursor).NotTo(BeZero())
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("strings", func() {
|
|
|
|
It("should Append", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.Exists(ctx, "key").Result()
|
2017-02-18 17:32:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(0)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
appendRes := client.Append(ctx, "key", "Hello")
|
|
|
|
Expect(appendRes.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(appendRes.Val()).To(Equal(int64(5)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
appendRes = client.Append(ctx, "key", " World")
|
|
|
|
Expect(appendRes.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(appendRes.Val()).To(Equal(int64(11)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("Hello World"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BitCount", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "foobar", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bitCount := client.BitCount(ctx, "key", nil)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bitCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bitCount.Val()).To(Equal(int64(26)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bitCount = client.BitCount(ctx, "key", &redis.BitCount{
|
2018-03-07 12:56:24 +03:00
|
|
|
Start: 0,
|
|
|
|
End: 0,
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bitCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bitCount.Val()).To(Equal(int64(4)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bitCount = client.BitCount(ctx, "key", &redis.BitCount{
|
2018-03-07 12:56:24 +03:00
|
|
|
Start: 1,
|
|
|
|
End: 1,
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bitCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bitCount.Val()).To(Equal(int64(6)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BitOpAnd", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key1", "1", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set = client.Set(ctx, "key2", "0", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bitOpAnd := client.BitOpAnd(ctx, "dest", "key1", "key2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bitOpAnd.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bitOpAnd.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "dest")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("0"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BitOpOr", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key1", "1", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set = client.Set(ctx, "key2", "0", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bitOpOr := client.BitOpOr(ctx, "dest", "key1", "key2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bitOpOr.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bitOpOr.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "dest")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("1"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BitOpXor", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key1", "\xff", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set = client.Set(ctx, "key2", "\x0f", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bitOpXor := client.BitOpXor(ctx, "dest", "key1", "key2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bitOpXor.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bitOpXor.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "dest")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("\xf0"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BitOpNot", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key1", "\x00", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bitOpNot := client.BitOpNot(ctx, "dest", "key1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bitOpNot.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bitOpNot.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "dest")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("\xff"))
|
|
|
|
})
|
|
|
|
|
2014-10-07 14:54:43 +04:00
|
|
|
It("should BitPos", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "mykey", "\xff\xf0\x00", 0).Err()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err := client.BitPos(ctx, "mykey", 0).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(12)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err = client.BitPos(ctx, "mykey", 1).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err = client.BitPos(ctx, "mykey", 0, 2).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(16)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err = client.BitPos(ctx, "mykey", 1, 2).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(-1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err = client.BitPos(ctx, "mykey", 0, -1).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(16)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err = client.BitPos(ctx, "mykey", 1, -1).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(-1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err = client.BitPos(ctx, "mykey", 0, 2, 1).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(-1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err = client.BitPos(ctx, "mykey", 0, 0, -3).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(-1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err = client.BitPos(ctx, "mykey", 0, 0, 0).Result()
|
2014-10-07 14:54:43 +04:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(pos).To(Equal(int64(-1)))
|
|
|
|
})
|
|
|
|
|
2019-06-26 14:45:38 +03:00
|
|
|
It("should BitField", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
nn, err := client.BitField(ctx, "mykey", "INCRBY", "i5", 100, 1, "GET", "u4", 0).Result()
|
2019-06-26 14:45:38 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(nn).To(Equal([]int64{1, 0}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should Decr", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "10", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
decr := client.Decr(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(decr.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(decr.Val()).To(Equal(int64(9)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set = client.Set(ctx, "key", "234293482390480948029348230948", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
decr = client.Decr(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(decr.Err()).To(MatchError("ERR value is not an integer or out of range"))
|
|
|
|
Expect(decr.Val()).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should DecrBy", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "10", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
decrBy := client.DecrBy(ctx, "key", 5)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(decrBy.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(decrBy.Val()).To(Equal(int64(5)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should Get", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "_")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).To(Equal(redis.Nil))
|
|
|
|
Expect(get.Val()).To(Equal(""))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get = client.Get(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should GetBit", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
setBit := client.SetBit(ctx, "key", 7, 1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(setBit.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(setBit.Val()).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
getBit := client.GetBit(ctx, "key", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(getBit.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getBit.Val()).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
getBit = client.GetBit(ctx, "key", 7)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(getBit.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getBit.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
getBit = client.GetBit(ctx, "key", 100)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(getBit.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getBit.Val()).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should GetRange", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "This is a string", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
getRange := client.GetRange(ctx, "key", 0, 3)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(getRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getRange.Val()).To(Equal("This"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
getRange = client.GetRange(ctx, "key", -3, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(getRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getRange.Val()).To(Equal("ing"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
getRange = client.GetRange(ctx, "key", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(getRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getRange.Val()).To(Equal("This is a string"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
getRange = client.GetRange(ctx, "key", 10, 100)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(getRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getRange.Val()).To(Equal("string"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should GetSet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
incr := client.Incr(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(incr.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(incr.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
getSet := client.GetSet(ctx, "key", "0")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(getSet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getSet.Val()).To(Equal("1"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("0"))
|
|
|
|
})
|
|
|
|
|
2021-03-26 12:13:22 +03:00
|
|
|
It("should GetEX", func() {
|
|
|
|
set := client.Set(ctx, "key", "value", 100*time.Second)
|
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
ttl := client.TTL(ctx, "key")
|
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).To(BeNumerically("~", 100*time.Second, 3*time.Second))
|
|
|
|
|
2021-03-27 18:22:10 +03:00
|
|
|
getEX := client.GetEx(ctx, "key", 200*time.Second)
|
2021-03-26 12:13:22 +03:00
|
|
|
Expect(getEX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getEX.Val()).To(Equal("value"))
|
|
|
|
|
|
|
|
ttl = client.TTL(ctx, "key")
|
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).To(BeNumerically("~", 200*time.Second, 3*time.Second))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should GetDel", func() {
|
|
|
|
set := client.Set(ctx, "key", "value", 0)
|
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
getDel := client.GetDel(ctx, "key")
|
|
|
|
Expect(getDel.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getDel.Val()).To(Equal("value"))
|
|
|
|
|
|
|
|
get := client.Get(ctx, "key")
|
|
|
|
Expect(get.Err()).To(Equal(redis.Nil))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should Incr", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "10", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
incr := client.Incr(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(incr.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(incr.Val()).To(Equal(int64(11)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("11"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should IncrBy", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "10", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
incrBy := client.IncrBy(ctx, "key", 5)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(incrBy.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(incrBy.Val()).To(Equal(int64(15)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should IncrByFloat", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "10.50", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
incrByFloat := client.IncrByFloat(ctx, "key", 0.1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(incrByFloat.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(incrByFloat.Val()).To(Equal(10.6))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
set = client.Set(ctx, "key", "5.0e3", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
incrByFloat = client.IncrByFloat(ctx, "key", 2.0e2)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(incrByFloat.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(incrByFloat.Val()).To(Equal(float64(5200)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should IncrByFloatOverflow", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
incrByFloat := client.IncrByFloat(ctx, "key", 996945661)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(incrByFloat.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(incrByFloat.Val()).To(Equal(float64(996945661)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should MSetMGet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
mSet := client.MSet(ctx, "key1", "hello1", "key2", "hello2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(mSet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(mSet.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
mGet := client.MGet(ctx, "key1", "key2", "_")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(mGet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(mGet.Val()).To(Equal([]interface{}{"hello1", "hello2", nil}))
|
|
|
|
})
|
|
|
|
|
2021-02-03 14:40:01 +03:00
|
|
|
It("should scan Mget", func() {
|
|
|
|
err := client.MSet(ctx, "key1", "hello1", "key2", 123).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
res := client.MGet(ctx, "key1", "key2", "_")
|
|
|
|
Expect(res.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
type data struct {
|
|
|
|
Key1 string `redis:"key1"`
|
|
|
|
Key2 int `redis:"key2"`
|
|
|
|
}
|
|
|
|
var d data
|
|
|
|
Expect(res.Scan(&d)).NotTo(HaveOccurred())
|
|
|
|
Expect(d).To(Equal(data{Key1: "hello1", Key2: 123}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should MSetNX", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
mSetNX := client.MSetNX(ctx, "key1", "hello1", "key2", "hello2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(mSetNX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(mSetNX.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
mSetNX = client.MSetNX(ctx, "key2", "hello1", "key3", "hello2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(mSetNX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(mSetNX.Val()).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
2021-02-17 15:48:47 +03:00
|
|
|
It("should SetWithArgs with TTL", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
TTL: 500 * time.Millisecond,
|
|
|
|
}
|
|
|
|
err := client.SetArgs(ctx, "key", "hello", args).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
val, err := client.Get(ctx, "key").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
|
|
|
|
Eventually(func() error {
|
|
|
|
return client.Get(ctx, "key").Err()
|
|
|
|
}, "2s", "100ms").Should(Equal(redis.Nil))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with expiration date", func() {
|
|
|
|
expireAt := time.Now().AddDate(1, 1, 1)
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
ExpireAt: expireAt,
|
|
|
|
}
|
|
|
|
err := client.SetArgs(ctx, "key", "hello", args).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
val, err := client.Get(ctx, "key").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
|
|
|
|
// check the key has an expiration date
|
|
|
|
// (so a TTL value different of -1)
|
|
|
|
ttl := client.TTL(ctx, "key")
|
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val()).ToNot(Equal(-1))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with negative expiration date", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
ExpireAt: time.Now().AddDate(-3, 1, 1),
|
|
|
|
}
|
|
|
|
// redis accepts a timestamp less than the current date
|
|
|
|
// but returns nil when trying to get the key
|
|
|
|
err := client.SetArgs(ctx, "key", "hello", args).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
val, err := client.Get(ctx, "key").Result()
|
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with keepttl", func() {
|
|
|
|
// Set with ttl
|
2021-02-17 16:12:10 +03:00
|
|
|
argsWithTTL := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
TTL: 5 * time.Second,
|
|
|
|
}
|
|
|
|
set := client.SetArgs(ctx, "key", "hello", argsWithTTL)
|
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Result()).To(Equal("OK"))
|
|
|
|
|
|
|
|
// Set with keepttl
|
2021-02-17 16:12:10 +03:00
|
|
|
argsWithKeepTTL := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
KeepTTL: true,
|
|
|
|
}
|
|
|
|
set = client.SetArgs(ctx, "key", "hello", argsWithKeepTTL)
|
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Result()).To(Equal("OK"))
|
|
|
|
|
|
|
|
ttl := client.TTL(ctx, "key")
|
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
// set keepttl will Retain the ttl associated with the key
|
|
|
|
Expect(ttl.Val().Nanoseconds()).NotTo(Equal(-1))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with NX mode and key exists", func() {
|
|
|
|
err := client.Set(ctx, "key", "hello", 0).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Mode: "nx",
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "hello", args).Result()
|
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with NX mode and key does not exist", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Mode: "nx",
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "hello", args).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("OK"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with NX mode and GET option", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Mode: "nx",
|
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "hello", args).Result()
|
2022-06-04 17:25:12 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
2021-02-17 15:48:47 +03:00
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with expiration, NX mode, and key does not exist", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
TTL: 500 * time.Millisecond,
|
|
|
|
Mode: "nx",
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "hello", args).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("OK"))
|
|
|
|
|
|
|
|
Eventually(func() error {
|
|
|
|
return client.Get(ctx, "key").Err()
|
|
|
|
}, "1s", "100ms").Should(Equal(redis.Nil))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with expiration, NX mode, and key exists", func() {
|
|
|
|
e := client.Set(ctx, "key", "hello", 0)
|
|
|
|
Expect(e.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
TTL: 500 * time.Millisecond,
|
|
|
|
Mode: "nx",
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "world", args).Result()
|
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with expiration, NX mode, and GET option", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
TTL: 500 * time.Millisecond,
|
|
|
|
Mode: "nx",
|
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "hello", args).Result()
|
2022-06-04 17:25:12 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
2021-02-17 15:48:47 +03:00
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with XX mode and key does not exist", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Mode: "xx",
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "world", args).Result()
|
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with XX mode and key exists", func() {
|
|
|
|
e := client.Set(ctx, "key", "hello", 0).Err()
|
|
|
|
Expect(e).NotTo(HaveOccurred())
|
|
|
|
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Mode: "xx",
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "world", args).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("OK"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with XX mode and GET option, and key exists", func() {
|
|
|
|
e := client.Set(ctx, "key", "hello", 0).Err()
|
|
|
|
Expect(e).NotTo(HaveOccurred())
|
|
|
|
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Mode: "xx",
|
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
val, err := client.SetArgs(ctx, "key", "world", args).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with XX mode and GET option, and key does not exist", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Mode: "xx",
|
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := client.SetArgs(ctx, "key", "world", args).Result()
|
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with expiration, XX mode, GET option, and key does not exist", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
TTL: 500 * time.Millisecond,
|
|
|
|
Mode: "xx",
|
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := client.SetArgs(ctx, "key", "world", args).Result()
|
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with expiration, XX mode, GET option, and key exists", func() {
|
|
|
|
e := client.Set(ctx, "key", "hello", 0)
|
|
|
|
Expect(e.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
TTL: 500 * time.Millisecond,
|
|
|
|
Mode: "xx",
|
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := client.SetArgs(ctx, "key", "world", args).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
|
|
|
|
Eventually(func() error {
|
|
|
|
return client.Get(ctx, "key").Err()
|
|
|
|
}, "1s", "100ms").Should(Equal(redis.Nil))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with Get and key does not exist yet", func() {
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := client.SetArgs(ctx, "key", "hello", args).Result()
|
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(val).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetWithArgs with Get and key exists", func() {
|
|
|
|
e := client.Set(ctx, "key", "hello", 0)
|
|
|
|
Expect(e.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2021-02-17 16:12:10 +03:00
|
|
|
args := redis.SetArgs{
|
2021-02-17 15:48:47 +03:00
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := client.SetArgs(ctx, "key", "world", args).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
2021-03-04 06:24:29 +03:00
|
|
|
It("should Pipelined SetArgs with Get and key exists", func() {
|
|
|
|
e := client.Set(ctx, "key", "hello", 0)
|
|
|
|
Expect(e.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
args := redis.SetArgs{
|
|
|
|
Get: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
pipe := client.Pipeline()
|
|
|
|
setArgs := pipe.SetArgs(ctx, "key", "world", args)
|
|
|
|
_, err := pipe.Exec(ctx)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
Expect(setArgs.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(setArgs.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
2015-01-31 12:08:56 +03:00
|
|
|
It("should Set with expiration", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key", "hello", 100*time.Millisecond).Err()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, "key").Result()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
|
|
|
|
Eventually(func() error {
|
2021-02-17 15:48:47 +03:00
|
|
|
return client.Get(ctx, "key").Err()
|
2015-01-31 12:08:56 +03:00
|
|
|
}, "1s", "100ms").Should(Equal(redis.Nil))
|
|
|
|
})
|
|
|
|
|
2020-09-18 14:49:12 +03:00
|
|
|
It("should Set with keepttl", func() {
|
|
|
|
// set with ttl
|
2020-10-22 21:38:36 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 5*time.Second)
|
2020-09-18 14:49:12 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
// set with keepttl
|
|
|
|
set = client.Set(ctx, "key", "hello1", redis.KeepTTL)
|
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
ttl := client.TTL(ctx, "key")
|
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
// set keepttl will Retain the ttl associated with the key
|
|
|
|
Expect(ttl.Val().Nanoseconds()).NotTo(Equal(-1))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should SetGet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
2020-10-22 21:38:36 +03:00
|
|
|
It("should SetEX", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.SetEx(ctx, "key", "hello", 1*time.Second).Err()
|
2020-10-22 21:38:36 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
val, err := client.Get(ctx, "key").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
|
|
|
|
Eventually(func() error {
|
|
|
|
return client.Get(ctx, "foo").Err()
|
2021-03-13 18:07:57 +03:00
|
|
|
}, "2s", "100ms").Should(Equal(redis.Nil))
|
2020-10-22 21:38:36 +03:00
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should SetNX", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
setNX := client.SetNX(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(setNX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(setNX.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
setNX = client.SetNX(ctx, "key", "hello2", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(setNX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(setNX.Val()).To(Equal(false))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
2015-01-31 12:08:56 +03:00
|
|
|
It("should SetNX with expiration", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
isSet, err := client.SetNX(ctx, "key", "hello", time.Second).Result()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
isSet, err = client.SetNX(ctx, "key", "hello2", time.Second).Result()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(false))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, "key").Result()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
2020-09-18 14:49:12 +03:00
|
|
|
It("should SetNX with keepttl", func() {
|
|
|
|
isSet, err := client.SetNX(ctx, "key", "hello1", redis.KeepTTL).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(true))
|
|
|
|
|
|
|
|
ttl := client.TTL(ctx, "key")
|
|
|
|
Expect(ttl.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl.Val().Nanoseconds()).To(Equal(int64(-1)))
|
|
|
|
})
|
|
|
|
|
2015-01-31 12:08:56 +03:00
|
|
|
It("should SetXX", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
isSet, err := client.SetXX(ctx, "key", "hello2", 0).Result()
|
2016-10-21 17:14:51 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(false))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Set(ctx, "key", "hello", 0).Err()
|
2016-10-21 17:14:51 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
isSet, err = client.SetXX(ctx, "key", "hello2", 0).Result()
|
2016-10-21 17:14:51 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, "key").Result()
|
2016-10-21 17:14:51 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello2"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SetXX with expiration", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
isSet, err := client.SetXX(ctx, "key", "hello2", time.Second).Result()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(false))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Set(ctx, "key", "hello", time.Second).Err()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
isSet, err = client.SetXX(ctx, "key", "hello2", time.Second).Result()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.Get(ctx, "key").Result()
|
2015-01-31 12:08:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello2"))
|
|
|
|
})
|
|
|
|
|
2020-09-18 14:49:12 +03:00
|
|
|
It("should SetXX with keepttl", func() {
|
|
|
|
isSet, err := client.SetXX(ctx, "key", "hello2", time.Second).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(false))
|
|
|
|
|
|
|
|
err = client.Set(ctx, "key", "hello", time.Second).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
isSet, err = client.SetXX(ctx, "key", "hello2", 5*time.Second).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(true))
|
|
|
|
|
|
|
|
isSet, err = client.SetXX(ctx, "key", "hello3", redis.KeepTTL).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(isSet).To(Equal(true))
|
|
|
|
|
|
|
|
val, err := client.Get(ctx, "key").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("hello3"))
|
|
|
|
|
|
|
|
// set keepttl will Retain the ttl associated with the key
|
|
|
|
ttl, err := client.TTL(ctx, "key").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(ttl).NotTo(Equal(-1))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should SetRange", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "Hello World", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
range_ := client.SetRange(ctx, "key", 6, "Redis")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(range_.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(range_.Val()).To(Equal(int64(11)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
get := client.Get(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("Hello Redis"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should StrLen", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
strLen := client.StrLen(ctx, "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(strLen.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(strLen.Val()).To(Equal(int64(5)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
strLen = client.StrLen(ctx, "_")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(strLen.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(strLen.Val()).To(Equal(int64(0)))
|
|
|
|
})
|
chore: sync master (#2051)
* Upgrade redis-server version (#1833)
* Upgrade redis-server version
Signed-off-by: monkey <golang@88.com>
* XAutoClaim changed the return value
Signed-off-by: monkey <golang@88.com>
* add cmd: geosearch, geosearchstore (#1836)
* add cmd: geosearch, geosearchstore
Signed-off-by: monkey92t <golang@88.com>
* GeoSearchQuery and GeoSearchLocationQuery changed to pointer passing
Signed-off-by: monkey92t <golang@88.com>
* Added missing method XInfoStreamFull to Cmdable interface
* Run go mod tidy in redisotel
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
* Revert "ConnPool check fd for bad conns (#1824)" (#1849)
This reverts commit 346bfafddd36dd52d51b064033048de5552ee91e.
* Automate release process (#1852)
* Bump github.com/onsi/gomega from 1.10.5 to 1.14.0 (#1832)
* Bump github.com/onsi/gomega from 1.10.5 to 1.14.0
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.10.5 to 1.14.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.10.5...v1.14.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* Upgrade gomega to v1.15.0
Signed-off-by: monkey92t <golang@88.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: monkey92t <golang@88.com>
* Add version.go
* Fix otel example
* Fix package name in release script
* More fixes for otel example
* And more
* Fix release.sh
* Release v8.11.3 (release.sh)
* Create an annotated tag to give release.yml chance to run
* Tweak tag.sh
* Add Cmd.Slice helper to cast to []interface{} (#1859)
* after the connection pool is closed, no new connections should be added (#1863)
* after the connection pool is closed, no new connections should be added
Signed-off-by: monkey92t <golang@88.com>
* remove runGoroutine
Signed-off-by: monkey92t <golang@88.com>
* pool.popIdle add p.closed check
Signed-off-by: monkey92t <golang@88.com>
* upgrade golangci-lint v1.42.0
Signed-off-by: monkey92t <golang@88.com>
* Bump github.com/onsi/gomega from 1.15.0 to 1.16.0 (#1865)
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.15.0 to 1.16.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.15.0...v1.16.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Add go 1.17 to the build matrix
* Remove go 1.15 from build matrix
* Add scan struct example (#1870)
* Replace release job
* Bump github.com/cespare/xxhash/v2 from 2.1.1 to 2.1.2 (#1872)
Bumps [github.com/cespare/xxhash/v2](https://github.com/cespare/xxhash) from 2.1.1 to 2.1.2.
- [Release notes](https://github.com/cespare/xxhash/releases)
- [Commits](https://github.com/cespare/xxhash/compare/v2.1.1...v2.1.2)
---
updated-dependencies:
- dependency-name: github.com/cespare/xxhash/v2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Fix tag script to push tag by tag
* Fix releasing.md
* Fix/pubsub ping mutex (#1878)
* Fix PubSub.Ping to hold the lock
* Fix PubSub.Ping to hold the lock
* add write cmd data-race test
Signed-off-by: monkey92t <golang@88.com>
Co-authored-by: monkey92t <golang@88.com>
* chore: cleanup OpenTelemetry example
* chore: gofmt all code
* Refactor TestParseURL
This is in preparation for supporting query parameters
in ParseURL:
- use an expected *Options instance to execute assertions on
- extract assertions into helper function
- enable parallel testing
- condense test table
* Add query parameter parsing to ParseURL()
Before this change, ParseURL would only accept a very restricted
set of URLs (it returned an error, if it encountered any parameter).
This commit introduces the ability to process URLs like
redis://localhost/1?dial_timeout=10s
and similar.
Go programs which were providing a configuration tunable (e.g.
CLI flag, config entry or environment variable) to configure
the Redis connection now don't need to perform this task
themselves.
* chore: add links to readme
* chore: fix discussions link
* empty hooks.withContext removed
* chore: gofmt
* chore: use conventional commits and auto-generate changelog
* feat: add acl auth support for sentinels
* chore: swap to acl auth at the test-level
* Add support for BLMove command
* chore: update dependencies
* chore: update link
* feat: add SetVal method for each command
* feat: add Cmd.{String,Int,Float,Bool}Slice helpers and an example
* chore: tweak GH actions to run all jobs
* chore: add Lua scripting example
* Fix Redis Cluster issue during roll outs of new nodes with same addr (#1914)
* fix: recycle connections in some Redis Cluster scenarios
This issue was surfaced in a Cloud Provider solution that used for
rolling out new nodes using the same address (hostname) of the nodes
that will be replaced in a Redis Cluster, while the former ones once
depromoted as Slaves would continue in service during some mintues
for redirecting traffic.
The solution basically identifies when the connection could be stale
since a MOVED response will be returned using the same address (hostname)
that is being used by the connection. At that moment we consider the
connection as no longer usable forcing to recycle the connection.
* chore: lazy reload when moved or ask
* chore: use conv commit message
* chore: release v8.11.4 (release.sh)
* fix: add whitespace for avoid unlikely colisions
* fix: format
* chore: fix links
* chore: use ctx parameter in cmdInfo
* Bump github.com/onsi/ginkgo from 1.16.4 to 1.16.5 (#1925)
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.16.4 to 1.16.5.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v1.16.4...v1.16.5)
---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: add support for time.Duration write and scan
* test: add test case for setting and scanning durations
* chore: fix linter
* fix(extra/redisotel): set span.kind attribute to client
According to the opentelemetry specification this should always be set to client for database client
libraries.
I've also removed the SetAttributes call and instead set the attributes during creation of the span.
This is what the library SHOULD be doing according to the opentelemetry api specification.
* chore: update otel example
* fix: update some argument counts in pre-allocs
In some cases number of pre-allocated places in
argument array is missing 1 or 2 elements,
which results in re-allocation of twice as large array
* chore: add example how to delete keys without a ttl
* chore: don't enable all lints
* chore(deps): bump github.com/onsi/gomega from 1.16.0 to 1.17.0
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.16.0 to 1.17.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.16.0...v1.17.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* feat: Add redis v7's NX, XX, GT, LT expire variants
* chore: add missing readme
* chore: tweak feature links
* chore: remove Discord
* fix: set timeout for WAIT command. Fixes #1963
* build: update `go` directive in `go.mod` to 1.17
This commit enables support for module graph pruning and lazy module
loading for projects that are at Go 1.17 or higher.
Reference: https://go.dev/ref/mod#go-mod-file-go
Reference: https://go.dev/ref/mod#graph-pruning
Reference: https://go.dev/ref/mod#lazy-loading
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
* chore: update link
* chore: export cmder.SetFirstKeyPos to support build module commands
* feat(redisotel): ability to override TracerProvider (#1998)
* fix: add missing Expire methods to Cmdable
This is a followup to https://github.com/go-redis/redis/pull/1928
* chore(deps): bump github.com/onsi/gomega from 1.17.0 to 1.18.1
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.17.0 to 1.18.1.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.17.0...v1.18.1)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* Update README.md (#2011)
chore: add fmt library in example code
* chore: instrumentation name and version (#2012)
* fix: invalid type assert in stringArg
* chore: cleanup
* fix: example/otel compile error (#2028)
* fix: rename Golang to Go (#2030)
https://go.dev/doc/faq#go_or_golang
* feat: add support for passing extra attributes added to spans
* feat: set net.peer.name and net.peer.port in otel example
* chore: tweak Uptrace copy
* feat: add support for COPY command (#2016)
* feat: add support for acl sentinel auth in universal client
* chore(deps): bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* chore: add hll example
* chore: tweak release script
* chore: release v8.11.5 (release.sh)
* chore: add discord back
Co-authored-by: Eugene Ponizovsky <ponizovsky@gmail.com>
Co-authored-by: Bogdan Drutu <bogdandrutu@gmail.com>
Co-authored-by: Vladimir Mihailenco <vladimir.webdev@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kishan B <kishancs46@gmail.com>
Co-authored-by: Dominik Menke <dom@digineo.de>
Co-authored-by: Gökhan Özeloğlu <gozeloglu@gmail.com>
Co-authored-by: Justin Sievenpiper <justin@sievenpiper.co>
Co-authored-by: Алексей Романовский <aromanovsky@epiphan.com>
Co-authored-by: Stavros Panakakakis <stavrospanakakis@gmail.com>
Co-authored-by: Pau Freixes <pfreixes@gmail.com>
Co-authored-by: Ethan Hur <ethan0311@gmail.com>
Co-authored-by: Jackie <18378976+Pyrodash@users.noreply.github.com>
Co-authored-by: Kristinn Björgvin Árdal <kristinnardalsecondary@gmail.com>
Co-authored-by: ffenix113 <razerer@bigmir.net>
Co-authored-by: Bastien Penavayre <bastienPenava@gmail.com>
Co-authored-by: James3 Li(李麒傑) <james3_li@asus.com>
Co-authored-by: Eng Zer Jun <engzerjun@gmail.com>
Co-authored-by: gzjiangtao2014 <gzjiangtao2014@corp.netease.com>
Co-authored-by: Nelz <nelz9999@users.noreply.github.com>
Co-authored-by: Daniel Richter <Nexyz9@gmail.com>
Co-authored-by: Seyed Ali Ghaffari <ali.ghaffari@outlook.com>
Co-authored-by: lintanghui <lintanghui@bilibili.com>
Co-authored-by: hidu <duv123+github@gmail.com>
Co-authored-by: Jonas Lergell <jonas.lergell@volvocars.com>
Co-authored-by: Alex Kahn <alexanderkahn@gmail.com>
2022-03-19 07:40:31 +03:00
|
|
|
|
|
|
|
It("should Copy", func() {
|
|
|
|
set := client.Set(ctx, "key", "hello", 0)
|
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
copy := client.Copy(ctx, "key", "newKey", redisOptions().DB, false)
|
|
|
|
Expect(copy.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(copy.Val()).To(Equal(int64(1)))
|
|
|
|
|
|
|
|
// Value is available by both keys now
|
|
|
|
getOld := client.Get(ctx, "key")
|
|
|
|
Expect(getOld.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getOld.Val()).To(Equal("hello"))
|
|
|
|
getNew := client.Get(ctx, "newKey")
|
|
|
|
Expect(getNew.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(getNew.Val()).To(Equal("hello"))
|
|
|
|
|
|
|
|
// Overwriting an existing key should not succeed
|
|
|
|
overwrite := client.Copy(ctx, "newKey", "key", redisOptions().DB, false)
|
|
|
|
Expect(overwrite.Val()).To(Equal(int64(0)))
|
|
|
|
|
|
|
|
// Overwrite is allowed when replace=rue
|
|
|
|
replace := client.Copy(ctx, "newKey", "key", redisOptions().DB, true)
|
|
|
|
Expect(replace.Val()).To(Equal(int64(1)))
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
Describe("hashes", func() {
|
|
|
|
It("should HDel", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet := client.HSet(ctx, "hash", "key", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hDel := client.HDel(ctx, "hash", "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hDel.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hDel.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hDel = client.HDel(ctx, "hash", "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hDel.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hDel.Val()).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HExists", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet := client.HSet(ctx, "hash", "key", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hExists := client.HExists(ctx, "hash", "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hExists.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hExists.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hExists = client.HExists(ctx, "hash", "key1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hExists.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hExists.Val()).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HGet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet := client.HSet(ctx, "hash", "key", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hGet := client.HGet(ctx, "hash", "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hGet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hGet.Val()).To(Equal("hello"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hGet = client.HGet(ctx, "hash", "key1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hGet.Err()).To(Equal(redis.Nil))
|
|
|
|
Expect(hGet.Val()).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HGetAll", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.HSet(ctx, "hash", "key1", "hello1").Err()
|
2016-05-02 14:50:59 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.HSet(ctx, "hash", "key2", "hello2").Err()
|
2016-05-02 14:50:59 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
m, err := client.HGetAll(ctx, "hash").Result()
|
2016-05-02 14:50:59 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(m).To(Equal(map[string]string{"key1": "hello1", "key2": "hello2"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2021-02-02 13:58:10 +03:00
|
|
|
It("should scan", func() {
|
|
|
|
err := client.HMSet(ctx, "hash", "key1", "hello1", "key2", 123).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
res := client.HGetAll(ctx, "hash")
|
|
|
|
Expect(res.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
type data struct {
|
|
|
|
Key1 string `redis:"key1"`
|
|
|
|
Key2 int `redis:"key2"`
|
|
|
|
}
|
|
|
|
var d data
|
|
|
|
Expect(res.Scan(&d)).NotTo(HaveOccurred())
|
|
|
|
Expect(d).To(Equal(data{Key1: "hello1", Key2: 123}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should HIncrBy", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet := client.HSet(ctx, "hash", "key", "5")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hIncrBy := client.HIncrBy(ctx, "hash", "key", 1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hIncrBy.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hIncrBy.Val()).To(Equal(int64(6)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hIncrBy = client.HIncrBy(ctx, "hash", "key", -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hIncrBy.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hIncrBy.Val()).To(Equal(int64(5)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hIncrBy = client.HIncrBy(ctx, "hash", "key", -10)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hIncrBy.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hIncrBy.Val()).To(Equal(int64(-5)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HIncrByFloat", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet := client.HSet(ctx, "hash", "field", "10.50")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
2020-02-19 16:14:18 +03:00
|
|
|
Expect(hSet.Val()).To(Equal(int64(1)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hIncrByFloat := client.HIncrByFloat(ctx, "hash", "field", 0.1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hIncrByFloat.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hIncrByFloat.Val()).To(Equal(10.6))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet = client.HSet(ctx, "hash", "field", "5.0e3")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
2020-02-19 16:14:18 +03:00
|
|
|
Expect(hSet.Val()).To(Equal(int64(0)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hIncrByFloat = client.HIncrByFloat(ctx, "hash", "field", 2.0e2)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hIncrByFloat.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hIncrByFloat.Val()).To(Equal(float64(5200)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HKeys", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hkeys := client.HKeys(ctx, "hash")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hkeys.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hkeys.Val()).To(Equal([]string{}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hset := client.HSet(ctx, "hash", "key1", "hello1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hset.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
hset = client.HSet(ctx, "hash", "key2", "hello2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hset.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hkeys = client.HKeys(ctx, "hash")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hkeys.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hkeys.Val()).To(Equal([]string{"key1", "key2"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HLen", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet := client.HSet(ctx, "hash", "key1", "hello1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet = client.HSet(ctx, "hash", "key2", "hello2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hLen := client.HLen(ctx, "hash")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hLen.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hLen.Val()).To(Equal(int64(2)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HMGet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.HSet(ctx, "hash", "key1", "hello1", "key2", "hello2").Err()
|
2016-05-02 14:50:59 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.HMGet(ctx, "hash", "key1", "key2", "_").Result()
|
2016-05-02 14:50:59 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]interface{}{"hello1", "hello2", nil}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2020-02-19 16:14:18 +03:00
|
|
|
It("should HSet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
ok, err := client.HSet(ctx, "hash", map[string]interface{}{
|
2016-05-02 14:50:59 +03:00
|
|
|
"key1": "hello1",
|
|
|
|
"key2": "hello2",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2019-12-24 13:23:32 +03:00
|
|
|
Expect(ok).To(Equal(int64(2)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
v, err := client.HGet(ctx, "hash", "key1").Result()
|
2016-05-02 14:50:59 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal("hello1"))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
v, err = client.HGet(ctx, "hash", "key2").Result()
|
2016-05-02 14:50:59 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal("hello2"))
|
2019-12-24 13:23:32 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
keys, err := client.HKeys(ctx, "hash").Result()
|
2019-12-24 13:23:32 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(keys).To(ConsistOf([]string{"key1", "key2"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should HSet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hSet := client.HSet(ctx, "hash", "key", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSet.Err()).NotTo(HaveOccurred())
|
2020-02-19 16:14:18 +03:00
|
|
|
Expect(hSet.Val()).To(Equal(int64(1)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hGet := client.HGet(ctx, "hash", "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hGet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hGet.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HSetNX", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hSetNX := client.HSetNX(ctx, "hash", "key", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSetNX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hSetNX.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hSetNX = client.HSetNX(ctx, "hash", "key", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hSetNX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hSetNX.Val()).To(Equal(false))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
hGet := client.HGet(ctx, "hash", "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(hGet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(hGet.Val()).To(Equal("hello"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should HVals", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.HSet(ctx, "hash", "key1", "hello1").Err()
|
2017-02-18 13:10:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.HSet(ctx, "hash", "key2", "hello2").Err()
|
2017-02-18 13:10:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
v, err := client.HVals(ctx, "hash").Result()
|
2017-02-18 13:10:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal([]string{"hello1", "hello2"}))
|
|
|
|
|
|
|
|
var slice []string
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.HVals(ctx, "hash").ScanSlice(&slice)
|
2017-02-18 13:10:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(slice).To(Equal([]string{"hello1", "hello2"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
2021-03-27 05:37:44 +03:00
|
|
|
|
|
|
|
It("should HRandField", func() {
|
|
|
|
err := client.HSet(ctx, "hash", "key1", "hello1").Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
err = client.HSet(ctx, "hash", "key2", "hello2").Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2021-04-27 10:04:46 +03:00
|
|
|
v := client.HRandField(ctx, "hash", 1)
|
2021-03-27 05:37:44 +03:00
|
|
|
Expect(v.Err()).NotTo(HaveOccurred())
|
2021-03-27 12:49:55 +03:00
|
|
|
Expect(v.Val()).To(Or(Equal([]string{"key1"}), Equal([]string{"key2"})))
|
|
|
|
|
2021-04-27 10:04:46 +03:00
|
|
|
v = client.HRandField(ctx, "hash", 0)
|
2021-03-27 12:49:55 +03:00
|
|
|
Expect(v.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(v.Val()).To(HaveLen(0))
|
2021-03-27 05:37:44 +03:00
|
|
|
|
2021-04-27 10:04:46 +03:00
|
|
|
kv, err := client.HRandFieldWithValues(ctx, "hash", 1).Result()
|
2021-03-27 05:37:44 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-04-27 10:04:46 +03:00
|
|
|
Expect(kv).To(Or(
|
|
|
|
Equal([]redis.KeyValue{{Key: "key1", Value: "hello1"}}),
|
|
|
|
Equal([]redis.KeyValue{{Key: "key2", Value: "hello2"}}),
|
|
|
|
))
|
2021-03-27 05:37:44 +03:00
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2015-11-04 10:34:58 +03:00
|
|
|
Describe("hyperloglog", func() {
|
|
|
|
It("should PFMerge", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
pfAdd := client.PFAdd(ctx, "hll1", "1", "2", "3", "4", "5")
|
2015-11-04 10:34:58 +03:00
|
|
|
Expect(pfAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pfCount := client.PFCount(ctx, "hll1")
|
2015-11-04 10:34:58 +03:00
|
|
|
Expect(pfCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(pfCount.Val()).To(Equal(int64(5)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pfAdd = client.PFAdd(ctx, "hll2", "a", "b", "c", "d", "e")
|
2015-11-04 10:34:58 +03:00
|
|
|
Expect(pfAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pfMerge := client.PFMerge(ctx, "hllMerged", "hll1", "hll2")
|
2015-11-04 10:34:58 +03:00
|
|
|
Expect(pfMerge.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pfCount = client.PFCount(ctx, "hllMerged")
|
2015-11-04 10:34:58 +03:00
|
|
|
Expect(pfCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(pfCount.Val()).To(Equal(int64(10)))
|
2015-12-24 01:24:42 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
pfCount = client.PFCount(ctx, "hll1", "hll2")
|
2015-12-24 01:24:42 +03:00
|
|
|
Expect(pfCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(pfCount.Val()).To(Equal(int64(10)))
|
2015-11-04 10:34:58 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
Describe("lists", func() {
|
|
|
|
It("should BLPop", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list1", "a", "b", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bLPop := client.BLPop(ctx, 0, "list1", "list2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bLPop.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bLPop.Val()).To(Equal([]string{"list1", "a"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BLPopBlocks", func() {
|
|
|
|
started := make(chan bool)
|
|
|
|
done := make(chan bool)
|
|
|
|
go func() {
|
2015-01-31 16:20:37 +03:00
|
|
|
defer GinkgoRecover()
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
started <- true
|
2020-03-11 17:26:42 +03:00
|
|
|
bLPop := client.BLPop(ctx, 0, "list")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bLPop.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bLPop.Val()).To(Equal([]string{"list", "a"}))
|
|
|
|
done <- true
|
|
|
|
}()
|
|
|
|
<-started
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
Fail("BLPop is not blocked")
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
// ok
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "a")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
// ok
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
Fail("BLPop is still blocked")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BLPop timeout", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.BLPop(ctx, time.Second, "list1").Result()
|
2016-03-17 19:00:47 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(val).To(BeNil())
|
2016-03-09 14:38:33 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
Expect(client.Ping(ctx).Err()).NotTo(HaveOccurred())
|
2016-03-17 19:00:47 +03:00
|
|
|
|
|
|
|
stats := client.PoolStats()
|
2019-05-31 17:54:30 +03:00
|
|
|
Expect(stats.Hits).To(Equal(uint32(2)))
|
|
|
|
Expect(stats.Misses).To(Equal(uint32(1)))
|
2016-03-17 19:00:47 +03:00
|
|
|
Expect(stats.Timeouts).To(Equal(uint32(0)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should BRPop", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list1", "a", "b", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
bRPop := client.BRPop(ctx, 0, "list1", "list2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(bRPop.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(bRPop.Val()).To(Equal([]string{"list1", "c"}))
|
|
|
|
})
|
|
|
|
|
2015-04-07 12:42:16 +03:00
|
|
|
It("should BRPop blocks", func() {
|
2015-01-15 18:51:22 +03:00
|
|
|
started := make(chan bool)
|
|
|
|
done := make(chan bool)
|
|
|
|
go func() {
|
2015-01-31 16:20:37 +03:00
|
|
|
defer GinkgoRecover()
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
started <- true
|
2020-03-11 17:26:42 +03:00
|
|
|
brpop := client.BRPop(ctx, 0, "list")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(brpop.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(brpop.Val()).To(Equal([]string{"list", "a"}))
|
|
|
|
done <- true
|
|
|
|
}()
|
|
|
|
<-started
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
Fail("BRPop is not blocked")
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
// ok
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "a")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
// ok
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
Fail("BRPop is still blocked")
|
|
|
|
// ok
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BRPopLPush", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
_, err := client.BRPopLPush(ctx, "list1", "list2", time.Second).Result()
|
2015-12-22 12:02:18 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.RPush(ctx, "list1", "a", "b", "c").Err()
|
2015-12-22 12:02:18 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
v, err := client.BRPopLPush(ctx, "list1", "list2", 0).Result()
|
2015-12-22 12:02:18 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal("c"))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should LIndex", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
lPush := client.LPush(ctx, "list", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
lPush = client.LPush(ctx, "list", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lIndex := client.LIndex(ctx, "list", 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lIndex.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lIndex.Val()).To(Equal("Hello"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lIndex = client.LIndex(ctx, "list", -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lIndex.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lIndex.Val()).To(Equal("World"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lIndex = client.LIndex(ctx, "list", 3)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lIndex.Err()).To(Equal(redis.Nil))
|
|
|
|
Expect(lIndex.Val()).To(Equal(""))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LInsert", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lInsert := client.LInsert(ctx, "list", "BEFORE", "World", "There")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lInsert.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lInsert.Val()).To(Equal(int64(3)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"Hello", "There", "World"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LLen", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
lPush := client.LPush(ctx, "list", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
lPush = client.LPush(ctx, "list", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lLen := client.LLen(ctx, "list")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lLen.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lLen.Val()).To(Equal(int64(2)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LPop", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lPop := client.LPop(ctx, "list")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPop.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPop.Val()).To(Equal("one"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"two", "three"}))
|
|
|
|
})
|
|
|
|
|
2021-05-19 12:43:31 +03:00
|
|
|
It("should LPopCount", func() {
|
|
|
|
rPush := client.RPush(ctx, "list", "one")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "two")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "three")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "four")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
lPopCount := client.LPopCount(ctx, "list", 2)
|
|
|
|
Expect(lPopCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPopCount.Val()).To(Equal([]string{"one", "two"}))
|
|
|
|
|
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"three", "four"}))
|
|
|
|
})
|
|
|
|
|
2020-11-17 09:48:46 +03:00
|
|
|
It("should LPos", func() {
|
|
|
|
rPush := client.RPush(ctx, "list", "a")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "b")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "c")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "b")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
lPos := client.LPos(ctx, "list", "b", redis.LPosArgs{})
|
|
|
|
Expect(lPos.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPos.Val()).To(Equal(int64(1)))
|
|
|
|
|
|
|
|
lPos = client.LPos(ctx, "list", "b", redis.LPosArgs{Rank: 2})
|
|
|
|
Expect(lPos.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPos.Val()).To(Equal(int64(3)))
|
|
|
|
|
|
|
|
lPos = client.LPos(ctx, "list", "b", redis.LPosArgs{Rank: -2})
|
|
|
|
Expect(lPos.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPos.Val()).To(Equal(int64(1)))
|
|
|
|
|
|
|
|
lPos = client.LPos(ctx, "list", "b", redis.LPosArgs{Rank: 2, MaxLen: 1})
|
|
|
|
Expect(lPos.Err()).To(Equal(redis.Nil))
|
|
|
|
|
|
|
|
lPos = client.LPos(ctx, "list", "z", redis.LPosArgs{})
|
|
|
|
Expect(lPos.Err()).To(Equal(redis.Nil))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LPosCount", func() {
|
|
|
|
rPush := client.RPush(ctx, "list", "a")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "b")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "c")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
rPush = client.RPush(ctx, "list", "b")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
lPos := client.LPosCount(ctx, "list", "b", 2, redis.LPosArgs{})
|
|
|
|
Expect(lPos.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPos.Val()).To(Equal([]int64{1, 3}))
|
|
|
|
|
|
|
|
lPos = client.LPosCount(ctx, "list", "b", 2, redis.LPosArgs{Rank: 2})
|
|
|
|
Expect(lPos.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPos.Val()).To(Equal([]int64{3}))
|
|
|
|
|
|
|
|
lPos = client.LPosCount(ctx, "list", "b", 1, redis.LPosArgs{Rank: 1, MaxLen: 1})
|
|
|
|
Expect(lPos.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPos.Val()).To(Equal([]int64{}))
|
|
|
|
|
|
|
|
lPos = client.LPosCount(ctx, "list", "b", 1, redis.LPosArgs{Rank: 1, MaxLen: 0})
|
|
|
|
Expect(lPos.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPos.Val()).To(Equal([]int64{1}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should LPush", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
lPush := client.LPush(ctx, "list", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
lPush = client.LPush(ctx, "list", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"Hello", "World"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LPushX", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
lPush := client.LPush(ctx, "list", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lPushX := client.LPushX(ctx, "list", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPushX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPushX.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lPush = client.LPush(ctx, "list1", "three")
|
2019-07-18 14:18:09 +03:00
|
|
|
Expect(lPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPush.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lPushX = client.LPushX(ctx, "list1", "two", "one")
|
2019-07-18 14:18:09 +03:00
|
|
|
Expect(lPushX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPushX.Val()).To(Equal(int64(3)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lPushX = client.LPushX(ctx, "list2", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lPushX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lPushX.Val()).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"Hello", "World"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange = client.LRange(ctx, "list1", 0, -1)
|
2019-07-18 14:18:09 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"one", "two", "three"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange = client.LRange(ctx, "list2", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LRange", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, 0)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"one"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange = client.LRange(ctx, "list", -3, 2)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"one", "two", "three"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange = client.LRange(ctx, "list", -100, 100)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"one", "two", "three"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange = client.LRange(ctx, "list", 5, 10)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LRem", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "key")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRem := client.LRem(ctx, "list", -2, "hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRem.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRem.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"hello", "key"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LSet", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lSet := client.LSet(ctx, "list", 0, "four")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lSet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lSet.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lSet = client.LSet(ctx, "list", -2, "five")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lSet.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lSet.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"four", "five", "three"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should LTrim", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lTrim := client.LTrim(ctx, "list", 1, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lTrim.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lTrim.Val()).To(Equal("OK"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"two", "three"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should RPop", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPop := client.RPop(ctx, "list")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPop.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPop.Val()).To(Equal("three"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"one", "two"}))
|
|
|
|
})
|
|
|
|
|
2021-07-11 13:27:48 +03:00
|
|
|
It("should RPopCount", func() {
|
|
|
|
rPush := client.RPush(ctx, "list", "one", "two", "three", "four")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(4)))
|
|
|
|
|
|
|
|
rPopCount := client.RPopCount(ctx, "list", 2)
|
|
|
|
Expect(rPopCount.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPopCount.Val()).To(Equal([]string{"four", "three"}))
|
|
|
|
|
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"one", "two"}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should RPopLPush", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPopLPush := client.RPopLPush(ctx, "list", "list2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPopLPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPopLPush.Val()).To(Equal("three"))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"one", "two"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange = client.LRange(ctx, "list2", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"three"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should RPush", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"Hello", "World"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should RPushX", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush := client.RPush(ctx, "list", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPushX := client.RPushX(ctx, "list", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPushX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPushX.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPush = client.RPush(ctx, "list1", "one")
|
2019-07-18 14:18:09 +03:00
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPushX = client.RPushX(ctx, "list1", "two", "three")
|
2019-07-18 14:18:09 +03:00
|
|
|
Expect(rPushX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPushX.Val()).To(Equal(int64(3)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
rPushX = client.RPushX(ctx, "list2", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(rPushX.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPushX.Val()).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange := client.LRange(ctx, "list", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"Hello", "World"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange = client.LRange(ctx, "list1", 0, -1)
|
2019-07-18 14:18:09 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"one", "two", "three"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
lRange = client.LRange(ctx, "list2", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{}))
|
|
|
|
})
|
2021-04-14 03:28:55 +03:00
|
|
|
|
|
|
|
It("should LMove", func() {
|
|
|
|
rPush := client.RPush(ctx, "lmove1", "ichi")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(1)))
|
|
|
|
|
|
|
|
rPush = client.RPush(ctx, "lmove1", "ni")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(2)))
|
|
|
|
|
|
|
|
rPush = client.RPush(ctx, "lmove1", "san")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(3)))
|
|
|
|
|
|
|
|
lMove := client.LMove(ctx, "lmove1", "lmove2", "RIGHT", "LEFT")
|
|
|
|
Expect(lMove.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lMove.Val()).To(Equal("san"))
|
|
|
|
|
|
|
|
lRange := client.LRange(ctx, "lmove2", 0, -1)
|
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"san"}))
|
|
|
|
})
|
chore: sync master (#2051)
* Upgrade redis-server version (#1833)
* Upgrade redis-server version
Signed-off-by: monkey <golang@88.com>
* XAutoClaim changed the return value
Signed-off-by: monkey <golang@88.com>
* add cmd: geosearch, geosearchstore (#1836)
* add cmd: geosearch, geosearchstore
Signed-off-by: monkey92t <golang@88.com>
* GeoSearchQuery and GeoSearchLocationQuery changed to pointer passing
Signed-off-by: monkey92t <golang@88.com>
* Added missing method XInfoStreamFull to Cmdable interface
* Run go mod tidy in redisotel
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
* Revert "ConnPool check fd for bad conns (#1824)" (#1849)
This reverts commit 346bfafddd36dd52d51b064033048de5552ee91e.
* Automate release process (#1852)
* Bump github.com/onsi/gomega from 1.10.5 to 1.14.0 (#1832)
* Bump github.com/onsi/gomega from 1.10.5 to 1.14.0
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.10.5 to 1.14.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.10.5...v1.14.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* Upgrade gomega to v1.15.0
Signed-off-by: monkey92t <golang@88.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: monkey92t <golang@88.com>
* Add version.go
* Fix otel example
* Fix package name in release script
* More fixes for otel example
* And more
* Fix release.sh
* Release v8.11.3 (release.sh)
* Create an annotated tag to give release.yml chance to run
* Tweak tag.sh
* Add Cmd.Slice helper to cast to []interface{} (#1859)
* after the connection pool is closed, no new connections should be added (#1863)
* after the connection pool is closed, no new connections should be added
Signed-off-by: monkey92t <golang@88.com>
* remove runGoroutine
Signed-off-by: monkey92t <golang@88.com>
* pool.popIdle add p.closed check
Signed-off-by: monkey92t <golang@88.com>
* upgrade golangci-lint v1.42.0
Signed-off-by: monkey92t <golang@88.com>
* Bump github.com/onsi/gomega from 1.15.0 to 1.16.0 (#1865)
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.15.0 to 1.16.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.15.0...v1.16.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Add go 1.17 to the build matrix
* Remove go 1.15 from build matrix
* Add scan struct example (#1870)
* Replace release job
* Bump github.com/cespare/xxhash/v2 from 2.1.1 to 2.1.2 (#1872)
Bumps [github.com/cespare/xxhash/v2](https://github.com/cespare/xxhash) from 2.1.1 to 2.1.2.
- [Release notes](https://github.com/cespare/xxhash/releases)
- [Commits](https://github.com/cespare/xxhash/compare/v2.1.1...v2.1.2)
---
updated-dependencies:
- dependency-name: github.com/cespare/xxhash/v2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Fix tag script to push tag by tag
* Fix releasing.md
* Fix/pubsub ping mutex (#1878)
* Fix PubSub.Ping to hold the lock
* Fix PubSub.Ping to hold the lock
* add write cmd data-race test
Signed-off-by: monkey92t <golang@88.com>
Co-authored-by: monkey92t <golang@88.com>
* chore: cleanup OpenTelemetry example
* chore: gofmt all code
* Refactor TestParseURL
This is in preparation for supporting query parameters
in ParseURL:
- use an expected *Options instance to execute assertions on
- extract assertions into helper function
- enable parallel testing
- condense test table
* Add query parameter parsing to ParseURL()
Before this change, ParseURL would only accept a very restricted
set of URLs (it returned an error, if it encountered any parameter).
This commit introduces the ability to process URLs like
redis://localhost/1?dial_timeout=10s
and similar.
Go programs which were providing a configuration tunable (e.g.
CLI flag, config entry or environment variable) to configure
the Redis connection now don't need to perform this task
themselves.
* chore: add links to readme
* chore: fix discussions link
* empty hooks.withContext removed
* chore: gofmt
* chore: use conventional commits and auto-generate changelog
* feat: add acl auth support for sentinels
* chore: swap to acl auth at the test-level
* Add support for BLMove command
* chore: update dependencies
* chore: update link
* feat: add SetVal method for each command
* feat: add Cmd.{String,Int,Float,Bool}Slice helpers and an example
* chore: tweak GH actions to run all jobs
* chore: add Lua scripting example
* Fix Redis Cluster issue during roll outs of new nodes with same addr (#1914)
* fix: recycle connections in some Redis Cluster scenarios
This issue was surfaced in a Cloud Provider solution that used for
rolling out new nodes using the same address (hostname) of the nodes
that will be replaced in a Redis Cluster, while the former ones once
depromoted as Slaves would continue in service during some mintues
for redirecting traffic.
The solution basically identifies when the connection could be stale
since a MOVED response will be returned using the same address (hostname)
that is being used by the connection. At that moment we consider the
connection as no longer usable forcing to recycle the connection.
* chore: lazy reload when moved or ask
* chore: use conv commit message
* chore: release v8.11.4 (release.sh)
* fix: add whitespace for avoid unlikely colisions
* fix: format
* chore: fix links
* chore: use ctx parameter in cmdInfo
* Bump github.com/onsi/ginkgo from 1.16.4 to 1.16.5 (#1925)
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.16.4 to 1.16.5.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v1.16.4...v1.16.5)
---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: add support for time.Duration write and scan
* test: add test case for setting and scanning durations
* chore: fix linter
* fix(extra/redisotel): set span.kind attribute to client
According to the opentelemetry specification this should always be set to client for database client
libraries.
I've also removed the SetAttributes call and instead set the attributes during creation of the span.
This is what the library SHOULD be doing according to the opentelemetry api specification.
* chore: update otel example
* fix: update some argument counts in pre-allocs
In some cases number of pre-allocated places in
argument array is missing 1 or 2 elements,
which results in re-allocation of twice as large array
* chore: add example how to delete keys without a ttl
* chore: don't enable all lints
* chore(deps): bump github.com/onsi/gomega from 1.16.0 to 1.17.0
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.16.0 to 1.17.0.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.16.0...v1.17.0)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* feat: Add redis v7's NX, XX, GT, LT expire variants
* chore: add missing readme
* chore: tweak feature links
* chore: remove Discord
* fix: set timeout for WAIT command. Fixes #1963
* build: update `go` directive in `go.mod` to 1.17
This commit enables support for module graph pruning and lazy module
loading for projects that are at Go 1.17 or higher.
Reference: https://go.dev/ref/mod#go-mod-file-go
Reference: https://go.dev/ref/mod#graph-pruning
Reference: https://go.dev/ref/mod#lazy-loading
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
* chore: update link
* chore: export cmder.SetFirstKeyPos to support build module commands
* feat(redisotel): ability to override TracerProvider (#1998)
* fix: add missing Expire methods to Cmdable
This is a followup to https://github.com/go-redis/redis/pull/1928
* chore(deps): bump github.com/onsi/gomega from 1.17.0 to 1.18.1
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.17.0 to 1.18.1.
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.17.0...v1.18.1)
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* Update README.md (#2011)
chore: add fmt library in example code
* chore: instrumentation name and version (#2012)
* fix: invalid type assert in stringArg
* chore: cleanup
* fix: example/otel compile error (#2028)
* fix: rename Golang to Go (#2030)
https://go.dev/doc/faq#go_or_golang
* feat: add support for passing extra attributes added to spans
* feat: set net.peer.name and net.peer.port in otel example
* chore: tweak Uptrace copy
* feat: add support for COPY command (#2016)
* feat: add support for acl sentinel auth in universal client
* chore(deps): bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* chore: add hll example
* chore: tweak release script
* chore: release v8.11.5 (release.sh)
* chore: add discord back
Co-authored-by: Eugene Ponizovsky <ponizovsky@gmail.com>
Co-authored-by: Bogdan Drutu <bogdandrutu@gmail.com>
Co-authored-by: Vladimir Mihailenco <vladimir.webdev@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kishan B <kishancs46@gmail.com>
Co-authored-by: Dominik Menke <dom@digineo.de>
Co-authored-by: Gökhan Özeloğlu <gozeloglu@gmail.com>
Co-authored-by: Justin Sievenpiper <justin@sievenpiper.co>
Co-authored-by: Алексей Романовский <aromanovsky@epiphan.com>
Co-authored-by: Stavros Panakakakis <stavrospanakakis@gmail.com>
Co-authored-by: Pau Freixes <pfreixes@gmail.com>
Co-authored-by: Ethan Hur <ethan0311@gmail.com>
Co-authored-by: Jackie <18378976+Pyrodash@users.noreply.github.com>
Co-authored-by: Kristinn Björgvin Árdal <kristinnardalsecondary@gmail.com>
Co-authored-by: ffenix113 <razerer@bigmir.net>
Co-authored-by: Bastien Penavayre <bastienPenava@gmail.com>
Co-authored-by: James3 Li(李麒傑) <james3_li@asus.com>
Co-authored-by: Eng Zer Jun <engzerjun@gmail.com>
Co-authored-by: gzjiangtao2014 <gzjiangtao2014@corp.netease.com>
Co-authored-by: Nelz <nelz9999@users.noreply.github.com>
Co-authored-by: Daniel Richter <Nexyz9@gmail.com>
Co-authored-by: Seyed Ali Ghaffari <ali.ghaffari@outlook.com>
Co-authored-by: lintanghui <lintanghui@bilibili.com>
Co-authored-by: hidu <duv123+github@gmail.com>
Co-authored-by: Jonas Lergell <jonas.lergell@volvocars.com>
Co-authored-by: Alex Kahn <alexanderkahn@gmail.com>
2022-03-19 07:40:31 +03:00
|
|
|
|
|
|
|
It("should BLMove", func() {
|
|
|
|
rPush := client.RPush(ctx, "blmove1", "ichi")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(1)))
|
|
|
|
|
|
|
|
rPush = client.RPush(ctx, "blmove1", "ni")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(2)))
|
|
|
|
|
|
|
|
rPush = client.RPush(ctx, "blmove1", "san")
|
|
|
|
Expect(rPush.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(rPush.Val()).To(Equal(int64(3)))
|
|
|
|
|
|
|
|
blMove := client.BLMove(ctx, "blmove1", "blmove2", "RIGHT", "LEFT", time.Second)
|
|
|
|
Expect(blMove.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(blMove.Val()).To(Equal("san"))
|
|
|
|
|
|
|
|
lRange := client.LRange(ctx, "blmove2", 0, -1)
|
|
|
|
Expect(lRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(lRange.Val()).To(Equal([]string{"san"}))
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
Describe("sets", func() {
|
|
|
|
It("should SAdd", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sAdd.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sAdd.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sAdd.Val()).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2018-03-08 15:30:27 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMembers.Val()).To(ConsistOf([]string{"Hello", "World"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SAdd strings", func() {
|
|
|
|
set := []string{"Hello", "World", "World"}
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", set)
|
2018-03-08 15:30:27 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sAdd.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
2015-02-09 11:14:41 +03:00
|
|
|
Expect(sMembers.Val()).To(ConsistOf([]string{"Hello", "World"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should SCard", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sAdd.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sAdd.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sCard := client.SCard(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sCard.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sCard.Val()).To(Equal(int64(2)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SDiff", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set1", "a")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "b")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "d")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "e")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sDiff := client.SDiff(ctx, "set1", "set2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sDiff.Err()).NotTo(HaveOccurred())
|
2015-02-09 11:14:41 +03:00
|
|
|
Expect(sDiff.Val()).To(ConsistOf([]string{"a", "b"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should SDiffStore", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set1", "a")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "b")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "d")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "e")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sDiffStore := client.SDiffStore(ctx, "set", "set1", "set2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sDiffStore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sDiffStore.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
2015-02-09 11:14:41 +03:00
|
|
|
Expect(sMembers.Val()).To(ConsistOf([]string{"a", "b"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should SInter", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set1", "a")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "b")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "d")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "e")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sInter := client.SInter(ctx, "set1", "set2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sInter.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sInter.Val()).To(Equal([]string{"c"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SInterStore", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set1", "a")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "b")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "d")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "e")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sInterStore := client.SInterStore(ctx, "set", "set1", "set2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sInterStore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sInterStore.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMembers.Val()).To(Equal([]string{"c"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should IsMember", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sIsMember := client.SIsMember(ctx, "set", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sIsMember.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sIsMember.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sIsMember = client.SIsMember(ctx, "set", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sIsMember.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sIsMember.Val()).To(Equal(false))
|
|
|
|
})
|
|
|
|
|
2021-04-28 08:56:44 +03:00
|
|
|
It("should SMIsMember", func() {
|
|
|
|
sAdd := client.SAdd(ctx, "set", "one")
|
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
sMIsMember := client.SMIsMember(ctx, "set", "one", "two")
|
|
|
|
Expect(sMIsMember.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMIsMember.Val()).To(Equal([]bool{true, false}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should SMembers", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", "Hello")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "World")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
2015-02-09 11:14:41 +03:00
|
|
|
Expect(sMembers.Val()).To(ConsistOf([]string{"Hello", "World"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2017-11-19 19:36:23 +03:00
|
|
|
It("should SMembersMap", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", "Hello")
|
2017-11-19 19:36:23 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "World")
|
2017-11-19 19:36:23 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembersMap := client.SMembersMap(ctx, "set")
|
2017-11-19 19:36:23 +03:00
|
|
|
Expect(sMembersMap.Err()).NotTo(HaveOccurred())
|
2018-10-11 13:54:30 +03:00
|
|
|
Expect(sMembersMap.Val()).To(Equal(map[string]struct{}{"Hello": {}, "World": {}}))
|
2017-11-19 19:36:23 +03:00
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should SMove", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set1", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMove := client.SMove(ctx, "set1", "set2", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMove.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMove.Val()).To(Equal(true))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set1")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMembers.Val()).To(Equal([]string{"one"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers = client.SMembers(ctx, "set2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
2015-02-09 11:14:41 +03:00
|
|
|
Expect(sMembers.Val()).To(ConsistOf([]string{"three", "two"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should SPop", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sPop := client.SPop(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sPop.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sPop.Val()).NotTo(Equal(""))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMembers.Val()).To(HaveLen(2))
|
2016-06-09 18:39:51 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should SPopN", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", "one")
|
2016-06-09 18:39:51 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "two")
|
2016-06-09 18:39:51 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "three")
|
2016-06-09 18:39:51 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "four")
|
2016-06-09 18:39:51 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sPopN := client.SPopN(ctx, "set", 1)
|
2016-06-09 18:39:51 +03:00
|
|
|
Expect(sPopN.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sPopN.Val()).NotTo(Equal([]string{""}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2016-06-09 18:39:51 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMembers.Val()).To(HaveLen(3))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sPopN = client.SPopN(ctx, "set", 4)
|
2016-06-09 18:39:51 +03:00
|
|
|
Expect(sPopN.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sPopN.Val()).To(HaveLen(3))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers = client.SMembers(ctx, "set")
|
2016-06-09 18:39:51 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMembers.Val()).To(HaveLen(0))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2015-08-25 14:02:16 +03:00
|
|
|
It("should SRandMember and SRandMemberN", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.SAdd(ctx, "set", "one").Err()
|
2015-08-25 14:02:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.SAdd(ctx, "set", "two").Err()
|
2015-08-25 14:02:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.SAdd(ctx, "set", "three").Err()
|
2015-08-25 14:02:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
members, err := client.SMembers(ctx, "set").Result()
|
2015-08-25 14:02:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(members).To(HaveLen(3))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
member, err := client.SRandMember(ctx, "set").Result()
|
2015-08-25 14:02:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(member).NotTo(Equal(""))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
members, err = client.SRandMemberN(ctx, "set", 2).Result()
|
2015-08-25 14:02:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(members).To(HaveLen(2))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should SRem", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sRem := client.SRem(ctx, "set", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sRem.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sRem.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sRem = client.SRem(ctx, "set", "four")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sRem.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sRem.Val()).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
2015-02-09 11:14:41 +03:00
|
|
|
Expect(sMembers.Val()).To(ConsistOf([]string{"three", "two"}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should SUnion", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set1", "a")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "b")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "d")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "e")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sUnion := client.SUnion(ctx, "set1", "set2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sUnion.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sUnion.Val()).To(HaveLen(5))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should SUnionStore", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd := client.SAdd(ctx, "set1", "a")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "b")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set1", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "c")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "d")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
sAdd = client.SAdd(ctx, "set2", "e")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sUnionStore := client.SUnionStore(ctx, "set", "set1", "set2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sUnionStore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sUnionStore.Val()).To(Equal(int64(5)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
sMembers := client.SMembers(ctx, "set")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(sMembers.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(sMembers.Val()).To(HaveLen(5))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("sorted sets", func() {
|
2018-10-31 16:35:23 +03:00
|
|
|
It("should BZPopMax", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{
|
2018-10-31 16:35:23 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{
|
2018-10-31 16:35:23 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{
|
2018-10-31 16:35:23 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
member, err := client.BZPopMax(ctx, 0, "zset1", "zset2").Result()
|
2018-10-31 16:35:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2019-05-16 16:27:19 +03:00
|
|
|
Expect(member).To(Equal(&redis.ZWithKey{
|
2018-11-03 13:07:25 +03:00
|
|
|
Z: redis.Z{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
},
|
|
|
|
Key: "zset1",
|
2018-10-31 16:35:23 +03:00
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BZPopMax blocks", func() {
|
|
|
|
started := make(chan bool)
|
|
|
|
done := make(chan bool)
|
|
|
|
go func() {
|
|
|
|
defer GinkgoRecover()
|
|
|
|
|
|
|
|
started <- true
|
2020-03-11 17:26:42 +03:00
|
|
|
bZPopMax := client.BZPopMax(ctx, 0, "zset")
|
2018-10-31 16:35:23 +03:00
|
|
|
Expect(bZPopMax.Err()).NotTo(HaveOccurred())
|
2019-05-16 16:27:19 +03:00
|
|
|
Expect(bZPopMax.Val()).To(Equal(&redis.ZWithKey{
|
2018-11-03 13:07:25 +03:00
|
|
|
Z: redis.Z{
|
|
|
|
Member: "a",
|
|
|
|
Score: 1,
|
|
|
|
},
|
|
|
|
Key: "zset",
|
2018-10-31 16:35:23 +03:00
|
|
|
}))
|
|
|
|
done <- true
|
|
|
|
}()
|
|
|
|
<-started
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
Fail("BZPopMax is not blocked")
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
// ok
|
|
|
|
}
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
zAdd := client.ZAdd(ctx, "zset", redis.Z{
|
2018-10-31 16:35:23 +03:00
|
|
|
Member: "a",
|
|
|
|
Score: 1,
|
|
|
|
})
|
|
|
|
Expect(zAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
// ok
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
Fail("BZPopMax is still blocked")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BZPopMax timeout", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.BZPopMax(ctx, time.Second, "zset1").Result()
|
2018-10-31 16:35:23 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
2019-05-16 16:27:19 +03:00
|
|
|
Expect(val).To(BeNil())
|
2018-10-31 16:35:23 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
Expect(client.Ping(ctx).Err()).NotTo(HaveOccurred())
|
2018-10-31 16:35:23 +03:00
|
|
|
|
|
|
|
stats := client.PoolStats()
|
2019-05-31 17:54:30 +03:00
|
|
|
Expect(stats.Hits).To(Equal(uint32(2)))
|
|
|
|
Expect(stats.Misses).To(Equal(uint32(1)))
|
2018-10-31 16:35:23 +03:00
|
|
|
Expect(stats.Timeouts).To(Equal(uint32(0)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BZPopMin", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{
|
2018-10-31 16:35:23 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{
|
2018-10-31 16:35:23 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{
|
2018-10-31 16:35:23 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
member, err := client.BZPopMin(ctx, 0, "zset1", "zset2").Result()
|
2018-10-31 16:35:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2019-05-16 16:27:19 +03:00
|
|
|
Expect(member).To(Equal(&redis.ZWithKey{
|
2018-11-03 13:07:25 +03:00
|
|
|
Z: redis.Z{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
},
|
|
|
|
Key: "zset1",
|
2018-10-31 16:35:23 +03:00
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BZPopMin blocks", func() {
|
|
|
|
started := make(chan bool)
|
|
|
|
done := make(chan bool)
|
|
|
|
go func() {
|
|
|
|
defer GinkgoRecover()
|
|
|
|
|
|
|
|
started <- true
|
2020-03-11 17:26:42 +03:00
|
|
|
bZPopMin := client.BZPopMin(ctx, 0, "zset")
|
2018-10-31 16:35:23 +03:00
|
|
|
Expect(bZPopMin.Err()).NotTo(HaveOccurred())
|
2019-05-16 16:27:19 +03:00
|
|
|
Expect(bZPopMin.Val()).To(Equal(&redis.ZWithKey{
|
2018-11-03 13:07:25 +03:00
|
|
|
Z: redis.Z{
|
|
|
|
Member: "a",
|
|
|
|
Score: 1,
|
|
|
|
},
|
|
|
|
Key: "zset",
|
2018-10-31 16:35:23 +03:00
|
|
|
}))
|
|
|
|
done <- true
|
|
|
|
}()
|
|
|
|
<-started
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
Fail("BZPopMin is not blocked")
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
// ok
|
|
|
|
}
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
zAdd := client.ZAdd(ctx, "zset", redis.Z{
|
2018-10-31 16:35:23 +03:00
|
|
|
Member: "a",
|
|
|
|
Score: 1,
|
|
|
|
})
|
|
|
|
Expect(zAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
// ok
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
Fail("BZPopMin is still blocked")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should BZPopMin timeout", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.BZPopMin(ctx, time.Second, "zset1").Result()
|
2018-10-31 16:35:23 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
2019-05-16 16:27:19 +03:00
|
|
|
Expect(val).To(BeNil())
|
2018-10-31 16:35:23 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
Expect(client.Ping(ctx).Err()).NotTo(HaveOccurred())
|
2018-10-31 16:35:23 +03:00
|
|
|
|
|
|
|
stats := client.PoolStats()
|
2019-05-31 17:54:30 +03:00
|
|
|
Expect(stats.Hits).To(Equal(uint32(2)))
|
|
|
|
Expect(stats.Misses).To(Equal(uint32(1)))
|
2018-10-31 16:35:23 +03:00
|
|
|
Expect(stats.Timeouts).To(Equal(uint32(0)))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ZAdd", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "uno",
|
|
|
|
}).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: "two",
|
|
|
|
}).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 1,
|
|
|
|
Member: "uno",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "two",
|
|
|
|
}}))
|
2015-07-16 17:30:16 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZAdd bytes", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: []byte("one"),
|
|
|
|
}).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: []byte("uno"),
|
|
|
|
}).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: []byte("two"),
|
|
|
|
}).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: []byte("two"),
|
|
|
|
}).Result()
|
2015-07-16 17:30:16 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(0)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 1,
|
|
|
|
Member: "uno",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "two",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZAddArgsGTAndLT", func() {
|
|
|
|
// Test only the GT+LT options.
|
|
|
|
added, err := client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
GT: true,
|
|
|
|
Members: []redis.Z{{Score: 1, Member: "one"}},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
|
|
|
|
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
|
|
|
|
|
|
|
added, err = client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
GT: true,
|
|
|
|
Members: []redis.Z{{Score: 2, Member: "one"}},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(0)))
|
|
|
|
|
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 2, Member: "one"}}))
|
|
|
|
|
|
|
|
added, err = client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
LT: true,
|
|
|
|
Members: []redis.Z{{Score: 1, Member: "one"}},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(0)))
|
|
|
|
|
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZAddArgsNX", func() {
|
|
|
|
added, err := client.ZAddNX(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAddNX(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "one",
|
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZAddArgsXX", func() {
|
|
|
|
added, err := client.ZAddXX(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(BeEmpty())
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err = client.ZAddXX(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "one",
|
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 2, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZAddArgsCh", func() {
|
|
|
|
changed, err := client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
Ch: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(changed).To(Equal(int64(1)))
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
changed, err = client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
Ch: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(changed).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZAddArgsNXCh", func() {
|
|
|
|
changed, err := client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
NX: true,
|
|
|
|
Ch: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(changed).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
changed, err = client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
NX: true,
|
|
|
|
Ch: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 2, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(changed).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZAddArgsXXCh", func() {
|
|
|
|
changed, err := client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
XX: true,
|
|
|
|
Ch: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(changed).To(Equal(int64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(BeEmpty())
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
changed, err = client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
XX: true,
|
|
|
|
Ch: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 2, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(changed).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 2, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZAddArgsIncr", func() {
|
|
|
|
score, err := client.ZAddArgsIncr(ctx, "zset", redis.ZAddArgs{
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(score).To(Equal(float64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
score, err = client.ZAddArgsIncr(ctx, "zset", redis.ZAddArgs{
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2020-03-11 17:26:42 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(score).To(Equal(float64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 2, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZAddArgsIncrNX", func() {
|
|
|
|
score, err := client.ZAddArgsIncr(ctx, "zset", redis.ZAddArgs{
|
|
|
|
NX: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(score).To(Equal(float64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
score, err = client.ZAddArgsIncr(ctx, "zset", redis.ZAddArgs{
|
|
|
|
NX: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(score).To(Equal(float64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZAddArgsIncrXX", func() {
|
|
|
|
score, err := client.ZAddArgsIncr(ctx, "zset", redis.ZAddArgs{
|
|
|
|
XX: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
Expect(score).To(Equal(float64(0)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(BeEmpty())
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
added, err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(1)))
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
score, err = client.ZAddArgsIncr(ctx, "zset", redis.ZAddArgs{
|
|
|
|
XX: true,
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
},
|
2018-03-07 12:56:24 +03:00
|
|
|
}).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(score).To(Equal(float64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-08-29 13:08:27 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 2, Member: "one"}}))
|
2015-08-29 13:08:27 +03:00
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ZCard", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
card, err := client.ZCard(ctx, "zset").Result()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(card).To(Equal(int64(2)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZCount", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
2017-08-15 09:49:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
2017-08-15 09:49:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}).Err()
|
2017-08-15 09:49:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
count, err := client.ZCount(ctx, "zset", "-inf", "+inf").Result()
|
2017-08-15 09:49:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(count).To(Equal(int64(3)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
count, err = client.ZCount(ctx, "zset", "(1", "3").Result()
|
2017-08-15 09:49:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(count).To(Equal(int64(2)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
count, err = client.ZLexCount(ctx, "zset", "-", "+").Result()
|
2017-08-15 09:49:23 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(count).To(Equal(int64(3)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZIncrBy", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.ZIncrBy(ctx, "zset", 2, "one").Result()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(float64(3)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(val).To(Equal([]redis.Z{{
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "one",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZInterStore", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset3", redis.Z{Score: 3, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.ZInterStore(ctx, "out", &redis.ZStore{
|
2019-08-09 16:23:56 +03:00
|
|
|
Keys: []string{"zset1", "zset2"},
|
|
|
|
Weights: []float64{2, 3},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "out", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 5,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 10,
|
|
|
|
Member: "two",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2021-03-05 21:02:53 +03:00
|
|
|
It("should ZMScore", func() {
|
|
|
|
zmScore := client.ZMScore(ctx, "zset", "one", "three")
|
|
|
|
Expect(zmScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zmScore.Val()).To(HaveLen(2))
|
|
|
|
Expect(zmScore.Val()[0]).To(Equal(float64(0)))
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-03-05 21:02:53 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-03-05 21:02:53 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2021-03-05 21:02:53 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
zmScore = client.ZMScore(ctx, "zset", "one", "three")
|
|
|
|
Expect(zmScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zmScore.Val()).To(HaveLen(2))
|
|
|
|
Expect(zmScore.Val()[0]).To(Equal(float64(1)))
|
|
|
|
|
|
|
|
zmScore = client.ZMScore(ctx, "zset", "four")
|
|
|
|
Expect(zmScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zmScore.Val()).To(HaveLen(1))
|
|
|
|
|
|
|
|
zmScore = client.ZMScore(ctx, "zset", "four", "one")
|
|
|
|
Expect(zmScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zmScore.Val()).To(HaveLen(2))
|
|
|
|
})
|
|
|
|
|
2018-09-03 11:45:32 +03:00
|
|
|
It("should ZPopMax", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
members, err := client.ZPopMax(ctx, "zset").Result()
|
2018-09-03 11:45:32 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(members).To(Equal([]redis.Z{{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
|
|
|
|
|
|
|
// adding back 3
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
members, err = client.ZPopMax(ctx, "zset", 2).Result()
|
2018-09-03 11:45:32 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(members).To(Equal([]redis.Z{{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}}))
|
|
|
|
|
|
|
|
// adding back 2 & 3
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
members, err = client.ZPopMax(ctx, "zset", 10).Result()
|
2018-09-03 11:45:32 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(members).To(Equal([]redis.Z{{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZPopMin", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
members, err := client.ZPopMin(ctx, "zset").Result()
|
2018-09-03 11:45:32 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(members).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}}))
|
|
|
|
|
|
|
|
// adding back 1
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-03-11 17:26:42 +03:00
|
|
|
members, err = client.ZPopMin(ctx, "zset", 2).Result()
|
2018-09-03 11:45:32 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(members).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}}))
|
|
|
|
|
|
|
|
// adding back 1 & 2
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-11-21 12:09:21 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-09-03 11:45:32 +03:00
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}).Err()
|
2018-11-21 12:09:21 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
members, err = client.ZPopMin(ctx, "zset", 10).Result()
|
2018-09-03 11:45:32 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(members).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ZRange", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRange := client.ZRange(ctx, "zset", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRange.Val()).To(Equal([]string{"one", "two", "three"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRange = client.ZRange(ctx, "zset", 2, 3)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRange.Val()).To(Equal([]string{"three"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRange = client.ZRange(ctx, "zset", -2, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRange.Val()).To(Equal([]string{"two", "three"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRangeWithScores", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", 2, 3).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 3, Member: "three"}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeWithScores(ctx, "zset", -2, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZRangeArgs", func() {
|
|
|
|
added, err := client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
{Score: 2, Member: "two"},
|
|
|
|
{Score: 3, Member: "three"},
|
|
|
|
{Score: 4, Member: "four"},
|
|
|
|
},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(4)))
|
|
|
|
|
|
|
|
zRange, err := client.ZRangeArgs(ctx, redis.ZRangeArgs{
|
|
|
|
Key: "zset",
|
|
|
|
Start: 1,
|
|
|
|
Stop: 4,
|
|
|
|
ByScore: true,
|
|
|
|
Rev: true,
|
|
|
|
Offset: 1,
|
|
|
|
Count: 2,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(zRange).To(Equal([]string{"three", "two"}))
|
|
|
|
|
|
|
|
zRange, err = client.ZRangeArgs(ctx, redis.ZRangeArgs{
|
|
|
|
Key: "zset",
|
|
|
|
Start: "-",
|
|
|
|
Stop: "+",
|
|
|
|
ByLex: true,
|
|
|
|
Rev: true,
|
|
|
|
Offset: 2,
|
|
|
|
Count: 2,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(zRange).To(Equal([]string{"two", "one"}))
|
|
|
|
|
|
|
|
zRange, err = client.ZRangeArgs(ctx, redis.ZRangeArgs{
|
|
|
|
Key: "zset",
|
|
|
|
Start: "(1",
|
|
|
|
Stop: "(4",
|
|
|
|
ByScore: true,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(zRange).To(Equal([]string{"two", "three"}))
|
|
|
|
|
|
|
|
// withScores.
|
|
|
|
zSlice, err := client.ZRangeArgsWithScores(ctx, redis.ZRangeArgs{
|
|
|
|
Key: "zset",
|
|
|
|
Start: 1,
|
|
|
|
Stop: 4,
|
|
|
|
ByScore: true,
|
|
|
|
Rev: true,
|
|
|
|
Offset: 1,
|
|
|
|
Count: 2,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(zSlice).To(Equal([]redis.Z{
|
|
|
|
{Score: 3, Member: "three"},
|
|
|
|
{Score: 2, Member: "two"},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ZRangeByScore", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRangeByScore := client.ZRangeByScore(ctx, "zset", &redis.ZRangeBy{
|
2015-01-15 18:51:22 +03:00
|
|
|
Min: "-inf",
|
|
|
|
Max: "+inf",
|
|
|
|
})
|
|
|
|
Expect(zRangeByScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRangeByScore.Val()).To(Equal([]string{"one", "two", "three"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRangeByScore = client.ZRangeByScore(ctx, "zset", &redis.ZRangeBy{
|
2015-01-15 18:51:22 +03:00
|
|
|
Min: "1",
|
|
|
|
Max: "2",
|
|
|
|
})
|
|
|
|
Expect(zRangeByScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRangeByScore.Val()).To(Equal([]string{"one", "two"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRangeByScore = client.ZRangeByScore(ctx, "zset", &redis.ZRangeBy{
|
2015-01-15 18:51:22 +03:00
|
|
|
Min: "(1",
|
|
|
|
Max: "2",
|
|
|
|
})
|
|
|
|
Expect(zRangeByScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRangeByScore.Val()).To(Equal([]string{"two"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRangeByScore = client.ZRangeByScore(ctx, "zset", &redis.ZRangeBy{
|
2015-01-15 18:51:22 +03:00
|
|
|
Min: "(1",
|
|
|
|
Max: "(2",
|
|
|
|
})
|
|
|
|
Expect(zRangeByScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRangeByScore.Val()).To(Equal([]string{}))
|
|
|
|
})
|
|
|
|
|
2015-08-23 06:38:37 +03:00
|
|
|
It("should ZRangeByLex", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 0,
|
|
|
|
Member: "a",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 0,
|
|
|
|
Member: "b",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
Score: 0,
|
|
|
|
Member: "c",
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-08-23 06:38:37 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRangeByLex := client.ZRangeByLex(ctx, "zset", &redis.ZRangeBy{
|
2015-08-23 06:38:37 +03:00
|
|
|
Min: "-",
|
|
|
|
Max: "+",
|
|
|
|
})
|
|
|
|
Expect(zRangeByLex.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRangeByLex.Val()).To(Equal([]string{"a", "b", "c"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRangeByLex = client.ZRangeByLex(ctx, "zset", &redis.ZRangeBy{
|
2015-08-23 06:38:37 +03:00
|
|
|
Min: "[a",
|
|
|
|
Max: "[b",
|
|
|
|
})
|
|
|
|
Expect(zRangeByLex.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRangeByLex.Val()).To(Equal([]string{"a", "b"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRangeByLex = client.ZRangeByLex(ctx, "zset", &redis.ZRangeBy{
|
2015-08-23 06:38:37 +03:00
|
|
|
Min: "(a",
|
|
|
|
Max: "[b",
|
|
|
|
})
|
|
|
|
Expect(zRangeByLex.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRangeByLex.Val()).To(Equal([]string{"b"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRangeByLex = client.ZRangeByLex(ctx, "zset", &redis.ZRangeBy{
|
2015-08-23 06:38:37 +03:00
|
|
|
Min: "(a",
|
|
|
|
Max: "(b",
|
|
|
|
})
|
|
|
|
Expect(zRangeByLex.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRangeByLex.Val()).To(Equal([]string{}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ZRangeByScoreWithScoresMap", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeByScoreWithScores(ctx, "zset", &redis.ZRangeBy{
|
2015-01-15 18:51:22 +03:00
|
|
|
Min: "-inf",
|
|
|
|
Max: "+inf",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeByScoreWithScores(ctx, "zset", &redis.ZRangeBy{
|
2015-01-15 18:51:22 +03:00
|
|
|
Min: "1",
|
|
|
|
Max: "2",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeByScoreWithScores(ctx, "zset", &redis.ZRangeBy{
|
2015-01-15 18:51:22 +03:00
|
|
|
Min: "(1",
|
|
|
|
Max: "2",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 2, Member: "two"}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err = client.ZRangeByScoreWithScores(ctx, "zset", &redis.ZRangeBy{
|
2015-01-15 18:51:22 +03:00
|
|
|
Min: "(1",
|
|
|
|
Max: "(2",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should ZRangeStore", func() {
|
|
|
|
added, err := client.ZAddArgs(ctx, "zset", redis.ZAddArgs{
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
{Score: 2, Member: "two"},
|
|
|
|
{Score: 3, Member: "three"},
|
|
|
|
{Score: 4, Member: "four"},
|
|
|
|
},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(added).To(Equal(int64(4)))
|
|
|
|
|
|
|
|
rangeStore, err := client.ZRangeStore(ctx, "new-zset", redis.ZRangeArgs{
|
|
|
|
Key: "zset",
|
|
|
|
Start: 1,
|
|
|
|
Stop: 4,
|
|
|
|
ByScore: true,
|
|
|
|
Rev: true,
|
|
|
|
Offset: 1,
|
|
|
|
Count: 2,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(rangeStore).To(Equal(int64(2)))
|
|
|
|
|
|
|
|
zRange, err := client.ZRange(ctx, "new-zset", 0, -1).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(zRange).To(Equal([]string{"two", "three"}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ZRank", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRank := client.ZRank(ctx, "zset", "three")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRank.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRank.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRank = client.ZRank(ctx, "zset", "four")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRank.Err()).To(Equal(redis.Nil))
|
|
|
|
Expect(zRank.Val()).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRem", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRem := client.ZRem(ctx, "zset", "two")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRem.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRem.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRemRangeByRank", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRemRangeByRank := client.ZRemRangeByRank(ctx, "zset", 0, 1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRemRangeByRank.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRemRangeByRank.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRemRangeByScore", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRemRangeByScore := client.ZRemRangeByScore(ctx, "zset", "-inf", "(2")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRemRangeByScore.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRemRangeByScore.Val()).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2017-01-26 16:51:34 +03:00
|
|
|
It("should ZRemRangeByLex", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
zz := []redis.Z{
|
2018-03-07 12:56:24 +03:00
|
|
|
{Score: 0, Member: "aaaa"},
|
|
|
|
{Score: 0, Member: "b"},
|
|
|
|
{Score: 0, Member: "c"},
|
|
|
|
{Score: 0, Member: "d"},
|
|
|
|
{Score: 0, Member: "e"},
|
|
|
|
{Score: 0, Member: "foo"},
|
|
|
|
{Score: 0, Member: "zap"},
|
|
|
|
{Score: 0, Member: "zip"},
|
|
|
|
{Score: 0, Member: "ALPHA"},
|
|
|
|
{Score: 0, Member: "alpha"},
|
2017-01-26 16:51:34 +03:00
|
|
|
}
|
|
|
|
for _, z := range zz {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", z).Err()
|
2017-01-26 16:51:34 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.ZRemRangeByLex(ctx, "zset", "[alpha", "[omega").Result()
|
2017-01-26 16:51:34 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(6)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.ZRange(ctx, "zset", 0, -1).Result()
|
2017-01-26 16:51:34 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]string{"ALPHA", "aaaa", "zap", "zip"}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ZRevRange", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRevRange := client.ZRevRange(ctx, "zset", 0, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRevRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRevRange.Val()).To(Equal([]string{"three", "two", "one"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRevRange = client.ZRevRange(ctx, "zset", 2, 3)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRevRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRevRange.Val()).To(Equal([]string{"one"}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRevRange = client.ZRevRange(ctx, "zset", -2, -1)
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRevRange.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRevRange.Val()).To(Equal([]string{"two", "one"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRevRangeWithScoresMap", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.ZRevRangeWithScores(ctx, "zset", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(val).To(Equal([]redis.Z{{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err = client.ZRevRangeWithScores(ctx, "zset", 2, 3).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(val).To(Equal([]redis.Z{{Score: 1, Member: "one"}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err = client.ZRevRangeWithScores(ctx, "zset", -2, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(val).To(Equal([]redis.Z{{
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRevRangeByScore", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
|
|
|
vals, err := client.ZRevRangeByScore(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "+inf", Min: "-inf"}).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]string{"three", "two", "one"}))
|
|
|
|
|
|
|
|
vals, err = client.ZRevRangeByScore(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "2", Min: "(1"}).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]string{"two"}))
|
|
|
|
|
|
|
|
vals, err = client.ZRevRangeByScore(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "(2", Min: "(1"}).Result()
|
2015-08-25 22:15:01 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]string{}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRevRangeByLex", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 0, Member: "a"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 0, Member: "b"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 0, Member: "c"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-08-25 22:15:01 +03:00
|
|
|
|
|
|
|
vals, err := client.ZRevRangeByLex(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "+", Min: "-"}).Result()
|
2015-08-25 22:15:01 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]string{"c", "b", "a"}))
|
|
|
|
|
2015-08-25 22:18:17 +03:00
|
|
|
vals, err = client.ZRevRangeByLex(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "[b", Min: "(a"}).Result()
|
2015-08-25 22:15:01 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]string{"b"}))
|
|
|
|
|
2015-08-25 22:18:17 +03:00
|
|
|
vals, err = client.ZRevRangeByLex(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "(b", Min: "(a"}).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]string{}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRevRangeByScoreWithScores", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
|
|
|
vals, err := client.ZRevRangeByScoreWithScores(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "+inf", Min: "-inf"}).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRevRangeByScoreWithScoresMap", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2018-03-07 12:56:24 +03:00
|
|
|
vals, err := client.ZRevRangeByScoreWithScores(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "+inf", Min: "-inf"}).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}, {
|
|
|
|
Score: 2,
|
|
|
|
Member: "two",
|
|
|
|
}, {
|
|
|
|
Score: 1,
|
|
|
|
Member: "one",
|
|
|
|
}}))
|
|
|
|
|
|
|
|
vals, err = client.ZRevRangeByScoreWithScores(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "2", Min: "(1"}).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{{Score: 2, Member: "two"}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2018-03-07 12:56:24 +03:00
|
|
|
vals, err = client.ZRevRangeByScoreWithScores(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx, "zset", &redis.ZRangeBy{Max: "(2", Min: "(1"}).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(vals).To(Equal([]redis.Z{}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZRevRank", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRevRank := client.ZRevRank(ctx, "zset", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRevRank.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(zRevRank.Val()).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zRevRank = client.ZRevRank(ctx, "zset", "four")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zRevRank.Err()).To(Equal(redis.Nil))
|
|
|
|
Expect(zRevRank.Val()).To(Equal(int64(0)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZScore", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
zAdd := client.ZAdd(ctx, "zset", redis.Z{Score: 1.001, Member: "one"})
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zAdd.Err()).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
zScore := client.ZScore(ctx, "zset", "one")
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(zScore.Err()).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
Expect(zScore.Val()).To(Equal(1.001))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZUnion", func() {
|
|
|
|
err := client.ZAddArgs(ctx, "zset1", redis.ZAddArgs{
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
{Score: 2, Member: "two"},
|
|
|
|
},
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
err = client.ZAddArgs(ctx, "zset2", redis.ZAddArgs{
|
|
|
|
Members: []redis.Z{
|
|
|
|
{Score: 1, Member: "one"},
|
|
|
|
{Score: 2, Member: "two"},
|
|
|
|
{Score: 3, Member: "three"},
|
|
|
|
},
|
|
|
|
}).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
union, err := client.ZUnion(ctx, redis.ZStore{
|
|
|
|
Keys: []string{"zset1", "zset2"},
|
|
|
|
Weights: []float64{2, 3},
|
|
|
|
Aggregate: "sum",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(union).To(Equal([]string{"one", "three", "two"}))
|
|
|
|
|
|
|
|
unionScores, err := client.ZUnionWithScores(ctx, redis.ZStore{
|
|
|
|
Keys: []string{"zset1", "zset2"},
|
|
|
|
Weights: []float64{2, 3},
|
|
|
|
Aggregate: "sum",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(unionScores).To(Equal([]redis.Z{
|
|
|
|
{Score: 5, Member: "one"},
|
|
|
|
{Score: 9, Member: "three"},
|
|
|
|
{Score: 10, Member: "two"},
|
|
|
|
}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZUnionStore", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 1, Member: "one"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 2, Member: "two"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 3, Member: "three"}).Err()
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.ZUnionStore(ctx, "out", &redis.ZStore{
|
2019-08-09 16:23:56 +03:00
|
|
|
Keys: []string{"zset1", "zset2"},
|
|
|
|
Weights: []float64{2, 3},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
2015-01-15 18:51:22 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
val, err := client.ZRangeWithScores(ctx, "out", 0, -1).Result()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-03-07 12:56:24 +03:00
|
|
|
Expect(val).To(Equal([]redis.Z{{
|
|
|
|
Score: 5,
|
|
|
|
Member: "one",
|
|
|
|
}, {
|
|
|
|
Score: 9,
|
|
|
|
Member: "three",
|
|
|
|
}, {
|
|
|
|
Score: 10,
|
|
|
|
Member: "two",
|
|
|
|
}}))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
2021-03-27 05:37:44 +03:00
|
|
|
|
|
|
|
It("should ZRandMember", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-03-27 05:37:44 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-03-27 05:37:44 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2021-04-27 10:04:46 +03:00
|
|
|
v := client.ZRandMember(ctx, "zset", 1)
|
2021-03-27 05:37:44 +03:00
|
|
|
Expect(v.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(v.Val()).To(Or(Equal([]string{"one"}), Equal([]string{"two"})))
|
|
|
|
|
2021-04-27 10:04:46 +03:00
|
|
|
v = client.ZRandMember(ctx, "zset", 0)
|
2021-03-27 12:49:55 +03:00
|
|
|
Expect(v.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(v.Val()).To(HaveLen(0))
|
|
|
|
|
2021-04-27 10:04:46 +03:00
|
|
|
kv, err := client.ZRandMemberWithScores(ctx, "zset", 1).Result()
|
2021-03-27 05:37:44 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-04-27 10:04:46 +03:00
|
|
|
Expect(kv).To(Or(
|
|
|
|
Equal([]redis.Z{{Member: "one", Score: 1}}),
|
|
|
|
Equal([]redis.Z{{Member: "two", Score: 2}}),
|
|
|
|
))
|
2021-03-27 05:37:44 +03:00
|
|
|
})
|
2021-05-23 11:55:03 +03:00
|
|
|
|
|
|
|
It("should ZDiff", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-05-23 11:55:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-05-23 11:55:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{Score: 3, Member: "three"}).Err()
|
2021-05-23 11:55:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-05-23 11:55:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
v, err := client.ZDiff(ctx, "zset1", "zset2").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal([]string{"two", "three"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZDiffWithScores", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-05-23 11:55:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-05-23 11:55:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{Score: 3, Member: "three"}).Err()
|
2021-05-23 11:55:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-05-23 11:55:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
v, err := client.ZDiffWithScores(ctx, "zset1", "zset2").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal([]redis.Z{
|
|
|
|
{
|
|
|
|
Member: "two",
|
|
|
|
Score: 2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Member: "three",
|
|
|
|
Score: 3,
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
})
|
2021-05-29 16:11:47 +03:00
|
|
|
|
|
|
|
It("should ZInter", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 3, Member: "three"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
v, err := client.ZInter(ctx, &redis.ZStore{
|
|
|
|
Keys: []string{"zset1", "zset2"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal([]string{"one", "two"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should ZInterWithScores", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 3, Member: "three"}).Err()
|
2021-05-29 16:11:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
v, err := client.ZInterWithScores(ctx, &redis.ZStore{
|
|
|
|
Keys: []string{"zset1", "zset2"},
|
|
|
|
Weights: []float64{2, 3},
|
|
|
|
Aggregate: "Max",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal([]redis.Z{
|
|
|
|
{
|
|
|
|
Member: "one",
|
|
|
|
Score: 3,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Member: "two",
|
|
|
|
Score: 6,
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
})
|
2021-06-01 05:02:09 +03:00
|
|
|
|
|
|
|
It("should ZDiffStore", func() {
|
2021-06-28 12:40:38 +03:00
|
|
|
err := client.ZAdd(ctx, "zset1", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-06-01 05:02:09 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset1", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-06-01 05:02:09 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 1, Member: "one"}).Err()
|
2021-06-01 05:02:09 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 2, Member: "two"}).Err()
|
2021-06-01 05:02:09 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-06-28 12:40:38 +03:00
|
|
|
err = client.ZAdd(ctx, "zset2", redis.Z{Score: 3, Member: "three"}).Err()
|
2021-06-01 05:02:09 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
v, err := client.ZDiffStore(ctx, "out1", "zset1", "zset2").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal(int64(0)))
|
|
|
|
v, err = client.ZDiffStore(ctx, "out1", "zset2", "zset1").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal(int64(1)))
|
|
|
|
vals, err := client.ZRangeWithScores(ctx, "out1", 0, -1).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]redis.Z{{
|
|
|
|
Score: 3,
|
|
|
|
Member: "three",
|
|
|
|
}}))
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2017-11-25 05:06:13 +03:00
|
|
|
Describe("streams", func() {
|
2018-08-02 14:48:46 +03:00
|
|
|
BeforeEach(func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
id, err := client.XAdd(ctx, &redis.XAddArgs{
|
2018-08-02 14:48:46 +03:00
|
|
|
Stream: "stream",
|
|
|
|
ID: "1-0",
|
|
|
|
Values: map[string]interface{}{"uno": "un"},
|
2017-11-25 05:06:13 +03:00
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(id).To(Equal("1-0"))
|
|
|
|
|
2020-06-28 13:01:21 +03:00
|
|
|
// Values supports []interface{}.
|
2020-03-11 17:26:42 +03:00
|
|
|
id, err = client.XAdd(ctx, &redis.XAddArgs{
|
2018-08-02 14:48:46 +03:00
|
|
|
Stream: "stream",
|
|
|
|
ID: "2-0",
|
2020-06-28 13:01:21 +03:00
|
|
|
Values: []interface{}{"dos", "deux"},
|
2017-11-25 05:06:13 +03:00
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(id).To(Equal("2-0"))
|
|
|
|
|
2020-06-28 13:01:21 +03:00
|
|
|
// Value supports []string.
|
2020-03-11 17:26:42 +03:00
|
|
|
id, err = client.XAdd(ctx, &redis.XAddArgs{
|
2018-08-02 14:48:46 +03:00
|
|
|
Stream: "stream",
|
|
|
|
ID: "3-0",
|
2020-06-28 13:01:21 +03:00
|
|
|
Values: []string{"tres", "troix"},
|
2017-11-25 05:06:13 +03:00
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(id).To(Equal("3-0"))
|
2018-08-02 14:48:46 +03:00
|
|
|
})
|
2017-11-25 05:06:13 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should XTrimMaxLen", func() {
|
|
|
|
n, err := client.XTrimMaxLen(ctx, "stream", 0).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XTrimMaxLenApprox", func() {
|
|
|
|
n, err := client.XTrimMaxLenApprox(ctx, "stream", 0, 0).Result()
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
|
|
|
})
|
2017-11-25 05:06:13 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should XTrimMinID", func() {
|
|
|
|
n, err := client.XTrimMinID(ctx, "stream", "4-0").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XTrimMinIDApprox", func() {
|
|
|
|
n, err := client.XTrimMinIDApprox(ctx, "stream", "4-0", 0).Result()
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XAdd", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
id, err := client.XAdd(ctx, &redis.XAddArgs{
|
2018-08-02 14:48:46 +03:00
|
|
|
Stream: "stream",
|
|
|
|
Values: map[string]interface{}{"quatro": "quatre"},
|
2017-11-25 05:06:13 +03:00
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.XRange(ctx, "stream", "-", "+").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(vals).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
{ID: id, Values: map[string]interface{}{"quatro": "quatre"}},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
2018-08-02 14:48:46 +03:00
|
|
|
It("should XAdd with MaxLen", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
id, err := client.XAdd(ctx, &redis.XAddArgs{
|
2017-11-25 05:06:13 +03:00
|
|
|
Stream: "stream",
|
|
|
|
MaxLen: 1,
|
|
|
|
Values: map[string]interface{}{"quatro": "quatre"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
vals, err := client.XRange(ctx, "stream", "-", "+").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(vals).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: id, Values: map[string]interface{}{"quatro": "quatre"}},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should XAdd with MinID", func() {
|
|
|
|
id, err := client.XAdd(ctx, &redis.XAddArgs{
|
|
|
|
Stream: "stream",
|
|
|
|
MinID: "5-0",
|
|
|
|
ID: "4-0",
|
|
|
|
Values: map[string]interface{}{"quatro": "quatre"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(id).To(Equal("4-0"))
|
|
|
|
|
|
|
|
vals, err := client.XRange(ctx, "stream", "-", "+").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(HaveLen(0))
|
|
|
|
})
|
|
|
|
|
2018-11-13 15:22:50 +03:00
|
|
|
It("should XDel", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.XDel(ctx, "stream", "1-0", "2-0", "3-0").Result()
|
2018-11-13 15:22:50 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
|
|
|
})
|
|
|
|
|
2017-11-25 05:06:13 +03:00
|
|
|
It("should XLen", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.XLen(ctx, "stream").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XRange", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err := client.XRange(ctx, "stream", "-", "+").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err = client.XRange(ctx, "stream", "2", "+").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err = client.XRange(ctx, "stream", "-", "2").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XRangeN", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err := client.XRangeN(ctx, "stream", "-", "+", 2).Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err = client.XRangeN(ctx, "stream", "2", "+", 1).Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err = client.XRangeN(ctx, "stream", "-", "2", 1).Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XRevRange", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err := client.XRevRange(ctx, "stream", "+", "-").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err = client.XRevRange(ctx, "stream", "+", "2").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XRevRangeN", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err := client.XRevRangeN(ctx, "stream", "+", "-", 2).Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err = client.XRevRangeN(ctx, "stream", "+", "2", 1).Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{
|
2017-11-25 05:06:13 +03:00
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XRead", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.XReadStreams(ctx, "stream", "0").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-07-16 09:52:07 +03:00
|
|
|
Expect(res).To(Equal([]redis.XStream{
|
|
|
|
{
|
|
|
|
Stream: "stream",
|
|
|
|
Messages: []redis.XMessage{
|
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
},
|
|
|
|
},
|
2017-11-25 05:06:13 +03:00
|
|
|
}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
_, err = client.XReadStreams(ctx, "stream", "3").Result()
|
2017-11-25 05:06:13 +03:00
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
})
|
|
|
|
|
2018-08-02 14:48:46 +03:00
|
|
|
It("should XRead", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.XRead(ctx, &redis.XReadArgs{
|
2017-11-25 05:06:13 +03:00
|
|
|
Streams: []string{"stream", "0"},
|
|
|
|
Count: 2,
|
|
|
|
Block: 100 * time.Millisecond,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-07-16 09:52:07 +03:00
|
|
|
Expect(res).To(Equal([]redis.XStream{
|
|
|
|
{
|
|
|
|
Stream: "stream",
|
|
|
|
Messages: []redis.XMessage{
|
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
},
|
|
|
|
},
|
2017-11-25 05:06:13 +03:00
|
|
|
}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
_, err = client.XRead(ctx, &redis.XReadArgs{
|
2017-11-25 05:06:13 +03:00
|
|
|
Streams: []string{"stream", "3"},
|
|
|
|
Count: 1,
|
|
|
|
Block: 100 * time.Millisecond,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).To(Equal(redis.Nil))
|
|
|
|
})
|
2018-08-02 14:48:46 +03:00
|
|
|
|
|
|
|
Describe("group", func() {
|
|
|
|
BeforeEach(func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.XGroupCreate(ctx, "stream", "group", "0").Err()
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.XReadGroup(ctx, &redis.XReadGroupArgs{
|
2018-08-02 14:48:46 +03:00
|
|
|
Group: "group",
|
|
|
|
Consumer: "consumer",
|
2018-11-21 12:09:21 +03:00
|
|
|
Streams: []string{"stream", ">"},
|
2018-08-02 14:48:46 +03:00
|
|
|
}).Result()
|
2018-11-21 12:09:21 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-07-16 09:52:07 +03:00
|
|
|
Expect(res).To(Equal([]redis.XStream{
|
|
|
|
{
|
|
|
|
Stream: "stream",
|
|
|
|
Messages: []redis.XMessage{
|
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
},
|
|
|
|
},
|
2018-08-02 14:48:46 +03:00
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.XGroupDestroy(ctx, "stream", "group").Result()
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
|
|
|
})
|
|
|
|
|
2020-02-02 11:46:20 +03:00
|
|
|
It("should XReadGroup skip empty", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.XDel(ctx, "stream", "2-0").Result()
|
2020-02-02 11:46:20 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.XReadGroup(ctx, &redis.XReadGroupArgs{
|
2020-02-02 11:46:20 +03:00
|
|
|
Group: "group",
|
|
|
|
Consumer: "consumer",
|
|
|
|
Streams: []string{"stream", "0"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-07-16 09:52:07 +03:00
|
|
|
Expect(res).To(Equal([]redis.XStream{
|
|
|
|
{
|
|
|
|
Stream: "stream",
|
|
|
|
Messages: []redis.XMessage{
|
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: nil},
|
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
},
|
|
|
|
},
|
2020-02-02 11:46:20 +03:00
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
2018-12-11 17:52:46 +03:00
|
|
|
It("should XGroupCreateMkStream", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.XGroupCreateMkStream(ctx, "stream2", "group", "0").Err()
|
2018-12-11 17:52:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.XGroupCreateMkStream(ctx, "stream2", "group", "0").Err()
|
2018-12-11 17:52:46 +03:00
|
|
|
Expect(err).To(Equal(proto.RedisError("BUSYGROUP Consumer Group name already exists")))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.XGroupDestroy(ctx, "stream2", "group").Result()
|
2018-12-11 17:52:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err = client.Del(ctx, "stream2").Result()
|
2018-12-11 17:52:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
|
|
|
})
|
|
|
|
|
2018-08-02 14:48:46 +03:00
|
|
|
It("should XPending", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
info, err := client.XPending(ctx, "stream", "group").Result()
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(info).To(Equal(&redis.XPending{
|
|
|
|
Count: 3,
|
|
|
|
Lower: "1-0",
|
|
|
|
Higher: "3-0",
|
|
|
|
Consumers: map[string]int64{"consumer": 3},
|
|
|
|
}))
|
2021-05-19 12:43:31 +03:00
|
|
|
args := &redis.XPendingExtArgs{
|
2018-08-02 14:48:46 +03:00
|
|
|
Stream: "stream",
|
|
|
|
Group: "group",
|
|
|
|
Start: "-",
|
|
|
|
End: "+",
|
|
|
|
Count: 10,
|
|
|
|
Consumer: "consumer",
|
2021-05-19 12:43:31 +03:00
|
|
|
}
|
|
|
|
infoExt, err := client.XPendingExt(ctx, args).Result()
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
for i := range infoExt {
|
|
|
|
infoExt[i].Idle = 0
|
|
|
|
}
|
|
|
|
Expect(infoExt).To(Equal([]redis.XPendingExt{
|
2019-05-16 16:27:19 +03:00
|
|
|
{ID: "1-0", Consumer: "consumer", Idle: 0, RetryCount: 1},
|
|
|
|
{ID: "2-0", Consumer: "consumer", Idle: 0, RetryCount: 1},
|
|
|
|
{ID: "3-0", Consumer: "consumer", Idle: 0, RetryCount: 1},
|
2018-08-02 14:48:46 +03:00
|
|
|
}))
|
|
|
|
|
2021-05-19 12:43:31 +03:00
|
|
|
args.Idle = 72 * time.Hour
|
|
|
|
infoExt, err = client.XPendingExt(ctx, args).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(infoExt).To(HaveLen(0))
|
2021-06-28 12:40:38 +03:00
|
|
|
})
|
2021-05-19 12:43:31 +03:00
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should XGroup Create Delete Consumer", func() {
|
|
|
|
n, err := client.XGroupCreateConsumer(ctx, "stream", "group", "c1").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
|
|
|
|
|
|
|
n, err = client.XGroupDelConsumer(ctx, "stream", "group", "consumer").Result()
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
|
|
|
})
|
|
|
|
|
2021-06-28 12:40:38 +03:00
|
|
|
It("should XAutoClaim", func() {
|
|
|
|
xca := &redis.XAutoClaimArgs{
|
|
|
|
Stream: "stream",
|
|
|
|
Group: "group",
|
|
|
|
Consumer: "consumer",
|
|
|
|
Start: "-",
|
|
|
|
Count: 2,
|
|
|
|
}
|
|
|
|
msgs, start, err := client.XAutoClaim(ctx, xca).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-08-02 14:01:01 +03:00
|
|
|
Expect(start).To(Equal("3-0"))
|
2021-06-28 12:40:38 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{{
|
|
|
|
ID: "1-0",
|
|
|
|
Values: map[string]interface{}{"uno": "un"},
|
|
|
|
}, {
|
|
|
|
ID: "2-0",
|
|
|
|
Values: map[string]interface{}{"dos": "deux"},
|
|
|
|
}}))
|
|
|
|
|
|
|
|
xca.Start = start
|
|
|
|
msgs, start, err = client.XAutoClaim(ctx, xca).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-08-02 14:01:01 +03:00
|
|
|
Expect(start).To(Equal("0-0"))
|
2021-06-28 12:40:38 +03:00
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{{
|
|
|
|
ID: "3-0",
|
|
|
|
Values: map[string]interface{}{"tres": "troix"},
|
|
|
|
}}))
|
|
|
|
|
|
|
|
ids, start, err := client.XAutoClaimJustID(ctx, xca).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2021-08-02 14:01:01 +03:00
|
|
|
Expect(start).To(Equal("0-0"))
|
|
|
|
Expect(ids).To(Equal([]string{"3-0"}))
|
2021-06-28 12:40:38 +03:00
|
|
|
})
|
|
|
|
|
2018-08-02 14:48:46 +03:00
|
|
|
It("should XClaim", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
msgs, err := client.XClaim(ctx, &redis.XClaimArgs{
|
2018-08-02 14:48:46 +03:00
|
|
|
Stream: "stream",
|
|
|
|
Group: "group",
|
|
|
|
Consumer: "consumer",
|
|
|
|
Messages: []string{"1-0", "2-0", "3-0"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(msgs).To(Equal([]redis.XMessage{{
|
|
|
|
ID: "1-0",
|
|
|
|
Values: map[string]interface{}{"uno": "un"},
|
|
|
|
}, {
|
|
|
|
ID: "2-0",
|
|
|
|
Values: map[string]interface{}{"dos": "deux"},
|
|
|
|
}, {
|
|
|
|
ID: "3-0",
|
|
|
|
Values: map[string]interface{}{"tres": "troix"},
|
|
|
|
}}))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
ids, err := client.XClaimJustID(ctx, &redis.XClaimArgs{
|
2018-08-02 14:48:46 +03:00
|
|
|
Stream: "stream",
|
|
|
|
Group: "group",
|
|
|
|
Consumer: "consumer",
|
|
|
|
Messages: []string{"1-0", "2-0", "3-0"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(ids).To(Equal([]string{"1-0", "2-0", "3-0"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XAck", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.XAck(ctx, "stream", "group", "1-0", "2-0", "4-0").Result()
|
2018-08-02 14:48:46 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
|
|
|
})
|
|
|
|
})
|
2021-02-09 15:46:26 +03:00
|
|
|
|
|
|
|
Describe("xinfo", func() {
|
|
|
|
BeforeEach(func() {
|
|
|
|
err := client.XGroupCreate(ctx, "stream", "group1", "0").Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
res, err := client.XReadGroup(ctx, &redis.XReadGroupArgs{
|
|
|
|
Group: "group1",
|
|
|
|
Consumer: "consumer1",
|
|
|
|
Streams: []string{"stream", ">"},
|
|
|
|
Count: 2,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(Equal([]redis.XStream{
|
|
|
|
{
|
|
|
|
Stream: "stream",
|
|
|
|
Messages: []redis.XMessage{
|
|
|
|
{ID: "1-0", Values: map[string]interface{}{"uno": "un"}},
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
|
|
|
|
res, err = client.XReadGroup(ctx, &redis.XReadGroupArgs{
|
|
|
|
Group: "group1",
|
|
|
|
Consumer: "consumer2",
|
|
|
|
Streams: []string{"stream", ">"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(Equal([]redis.XStream{
|
|
|
|
{
|
|
|
|
Stream: "stream",
|
|
|
|
Messages: []redis.XMessage{
|
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
|
|
|
|
err = client.XGroupCreate(ctx, "stream", "group2", "1-0").Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
res, err = client.XReadGroup(ctx, &redis.XReadGroupArgs{
|
|
|
|
Group: "group2",
|
|
|
|
Consumer: "consumer1",
|
|
|
|
Streams: []string{"stream", ">"},
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(Equal([]redis.XStream{
|
|
|
|
{
|
|
|
|
Stream: "stream",
|
|
|
|
Messages: []redis.XMessage{
|
|
|
|
{ID: "2-0", Values: map[string]interface{}{"dos": "deux"}},
|
|
|
|
{ID: "3-0", Values: map[string]interface{}{"tres": "troix"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
|
|
|
n, err := client.XGroupDestroy(ctx, "stream", "group1").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
|
|
|
n, err = client.XGroupDestroy(ctx, "stream", "group2").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(1)))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XINFO STREAM", func() {
|
|
|
|
res, err := client.XInfoStream(ctx, "stream").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
res.RadixTreeKeys = 0
|
|
|
|
res.RadixTreeNodes = 0
|
|
|
|
|
|
|
|
Expect(res).To(Equal(&redis.XInfoStream{
|
2022-06-04 17:25:12 +03:00
|
|
|
Length: 3,
|
|
|
|
RadixTreeKeys: 0,
|
|
|
|
RadixTreeNodes: 0,
|
|
|
|
Groups: 2,
|
|
|
|
LastGeneratedID: "3-0",
|
|
|
|
MaxDeletedEntryID: "0-0",
|
|
|
|
EntriesAdded: 3,
|
|
|
|
FirstEntry: redis.XMessage{
|
|
|
|
ID: "1-0",
|
|
|
|
Values: map[string]interface{}{"uno": "un"},
|
|
|
|
},
|
|
|
|
LastEntry: redis.XMessage{
|
|
|
|
ID: "3-0",
|
|
|
|
Values: map[string]interface{}{"tres": "troix"},
|
|
|
|
},
|
|
|
|
RecordedFirstEntryID: "1-0",
|
2021-02-09 15:46:26 +03:00
|
|
|
}))
|
2021-05-19 12:43:31 +03:00
|
|
|
|
|
|
|
// stream is empty
|
|
|
|
n, err := client.XDel(ctx, "stream", "1-0", "2-0", "3-0").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(3)))
|
|
|
|
|
|
|
|
res, err = client.XInfoStream(ctx, "stream").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
res.RadixTreeKeys = 0
|
|
|
|
res.RadixTreeNodes = 0
|
|
|
|
|
|
|
|
Expect(res).To(Equal(&redis.XInfoStream{
|
2022-06-04 17:25:12 +03:00
|
|
|
Length: 0,
|
|
|
|
RadixTreeKeys: 0,
|
|
|
|
RadixTreeNodes: 0,
|
|
|
|
Groups: 2,
|
|
|
|
LastGeneratedID: "3-0",
|
|
|
|
MaxDeletedEntryID: "3-0",
|
|
|
|
EntriesAdded: 3,
|
|
|
|
FirstEntry: redis.XMessage{},
|
|
|
|
LastEntry: redis.XMessage{},
|
|
|
|
RecordedFirstEntryID: "0-0",
|
2021-05-19 12:43:31 +03:00
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XINFO STREAM FULL", func() {
|
|
|
|
res, err := client.XInfoStreamFull(ctx, "stream", 2).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
res.RadixTreeKeys = 0
|
|
|
|
res.RadixTreeNodes = 0
|
|
|
|
|
|
|
|
// Verify DeliveryTime
|
|
|
|
now := time.Now()
|
|
|
|
maxElapsed := 10 * time.Minute
|
|
|
|
for k, g := range res.Groups {
|
|
|
|
for k2, p := range g.Pending {
|
|
|
|
Expect(now.Sub(p.DeliveryTime)).To(BeNumerically("<=", maxElapsed))
|
|
|
|
res.Groups[k].Pending[k2].DeliveryTime = time.Time{}
|
|
|
|
}
|
|
|
|
for k3, c := range g.Consumers {
|
|
|
|
Expect(now.Sub(c.SeenTime)).To(BeNumerically("<=", maxElapsed))
|
|
|
|
res.Groups[k].Consumers[k3].SeenTime = time.Time{}
|
|
|
|
|
|
|
|
for k4, p := range c.Pending {
|
|
|
|
Expect(now.Sub(p.DeliveryTime)).To(BeNumerically("<=", maxElapsed))
|
|
|
|
res.Groups[k].Consumers[k3].Pending[k4].DeliveryTime = time.Time{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-09 15:46:26 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should XINFO GROUPS", func() {
|
|
|
|
res, err := client.XInfoGroups(ctx, "stream").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(Equal([]redis.XInfoGroup{
|
2022-06-04 17:25:12 +03:00
|
|
|
{Name: "group1", Consumers: 2, Pending: 3, LastDeliveredID: "3-0", EntriesRead: 3},
|
|
|
|
{Name: "group2", Consumers: 1, Pending: 2, LastDeliveredID: "3-0", EntriesRead: 3},
|
2021-02-09 15:46:26 +03:00
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should XINFO CONSUMERS", func() {
|
|
|
|
res, err := client.XInfoConsumers(ctx, "stream", "group1").Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
for i := range res {
|
|
|
|
res[i].Idle = 0
|
|
|
|
}
|
|
|
|
Expect(res).To(Equal([]redis.XInfoConsumer{
|
|
|
|
{Name: "consumer1", Pending: 2, Idle: 0},
|
|
|
|
{Name: "consumer2", Pending: 1, Idle: 0},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
})
|
2017-11-25 05:06:13 +03:00
|
|
|
})
|
|
|
|
|
2015-09-20 16:13:13 +03:00
|
|
|
Describe("Geo add and radius search", func() {
|
2015-11-14 17:36:21 +03:00
|
|
|
BeforeEach(func() {
|
2018-08-02 14:48:46 +03:00
|
|
|
n, err := client.GeoAdd(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx,
|
2015-10-15 00:39:39 +03:00
|
|
|
"Sicily",
|
|
|
|
&redis.GeoLocation{Longitude: 13.361389, Latitude: 38.115556, Name: "Palermo"},
|
|
|
|
&redis.GeoLocation{Longitude: 15.087269, Latitude: 37.502669, Name: "Catania"},
|
2018-08-02 14:48:46 +03:00
|
|
|
).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
2015-09-20 16:13:13 +03:00
|
|
|
})
|
|
|
|
|
2015-11-14 17:36:21 +03:00
|
|
|
It("should not add same geo location", func() {
|
2015-10-15 00:39:39 +03:00
|
|
|
geoAdd := client.GeoAdd(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx,
|
2015-10-15 00:39:39 +03:00
|
|
|
"Sicily",
|
|
|
|
&redis.GeoLocation{Longitude: 13.361389, Latitude: 38.115556, Name: "Palermo"},
|
|
|
|
)
|
2015-09-20 16:13:13 +03:00
|
|
|
Expect(geoAdd.Err()).NotTo(HaveOccurred())
|
2015-11-14 17:36:21 +03:00
|
|
|
Expect(geoAdd.Val()).To(Equal(int64(0)))
|
|
|
|
})
|
2015-09-20 16:13:13 +03:00
|
|
|
|
2015-11-14 17:36:21 +03:00
|
|
|
It("should search geo radius", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.GeoRadius(ctx, "Sicily", 15, 37, &redis.GeoRadiusQuery{
|
2015-11-14 17:36:21 +03:00
|
|
|
Radius: 200,
|
|
|
|
}).Result()
|
2015-10-15 00:39:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(HaveLen(2))
|
|
|
|
Expect(res[0].Name).To(Equal("Palermo"))
|
|
|
|
Expect(res[1].Name).To(Equal("Catania"))
|
2015-09-20 16:13:13 +03:00
|
|
|
})
|
|
|
|
|
2019-08-09 15:04:56 +03:00
|
|
|
It("should geo radius and store the result", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.GeoRadiusStore(ctx, "Sicily", 15, 37, &redis.GeoRadiusQuery{
|
2019-08-09 15:04:56 +03:00
|
|
|
Radius: 200,
|
|
|
|
Store: "result",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.ZRangeWithScores(ctx, "result", 0, -1).Result()
|
2019-08-09 15:04:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(ContainElement(redis.Z{
|
|
|
|
Score: 3.479099956230698e+15,
|
|
|
|
Member: "Palermo",
|
|
|
|
}))
|
|
|
|
Expect(res).To(ContainElement(redis.Z{
|
|
|
|
Score: 3.479447370796909e+15,
|
|
|
|
Member: "Catania",
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should geo radius and store dist", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
n, err := client.GeoRadiusStore(ctx, "Sicily", 15, 37, &redis.GeoRadiusQuery{
|
2019-08-09 15:04:56 +03:00
|
|
|
Radius: 200,
|
|
|
|
StoreDist: "result",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.ZRangeWithScores(ctx, "result", 0, -1).Result()
|
2019-08-09 15:04:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(ContainElement(redis.Z{
|
|
|
|
Score: 190.44242984775784,
|
|
|
|
Member: "Palermo",
|
|
|
|
}))
|
|
|
|
Expect(res).To(ContainElement(redis.Z{
|
|
|
|
Score: 56.4412578701582,
|
|
|
|
Member: "Catania",
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
2015-09-20 16:13:13 +03:00
|
|
|
It("should search geo radius with options", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.GeoRadius(ctx, "Sicily", 15, 37, &redis.GeoRadiusQuery{
|
2015-10-15 00:39:39 +03:00
|
|
|
Radius: 200,
|
|
|
|
Unit: "km",
|
|
|
|
WithGeoHash: true,
|
|
|
|
WithCoord: true,
|
|
|
|
WithDist: true,
|
|
|
|
Count: 2,
|
|
|
|
Sort: "ASC",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(HaveLen(2))
|
|
|
|
Expect(res[1].Name).To(Equal("Palermo"))
|
2015-11-14 17:36:21 +03:00
|
|
|
Expect(res[1].Dist).To(Equal(190.4424))
|
2015-10-15 00:39:39 +03:00
|
|
|
Expect(res[1].GeoHash).To(Equal(int64(3479099956230698)))
|
|
|
|
Expect(res[1].Longitude).To(Equal(13.361389338970184))
|
|
|
|
Expect(res[1].Latitude).To(Equal(38.115556395496299))
|
|
|
|
Expect(res[0].Name).To(Equal("Catania"))
|
2015-11-14 17:36:21 +03:00
|
|
|
Expect(res[0].Dist).To(Equal(56.4413))
|
2015-10-15 00:39:39 +03:00
|
|
|
Expect(res[0].GeoHash).To(Equal(int64(3479447370796909)))
|
|
|
|
Expect(res[0].Longitude).To(Equal(15.087267458438873))
|
|
|
|
Expect(res[0].Latitude).To(Equal(37.50266842333162))
|
|
|
|
})
|
|
|
|
|
2015-11-14 17:36:21 +03:00
|
|
|
It("should search geo radius with WithDist=false", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.GeoRadius(ctx, "Sicily", 15, 37, &redis.GeoRadiusQuery{
|
2015-11-14 17:36:21 +03:00
|
|
|
Radius: 200,
|
|
|
|
Unit: "km",
|
|
|
|
WithGeoHash: true,
|
|
|
|
WithCoord: true,
|
|
|
|
Count: 2,
|
|
|
|
Sort: "ASC",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(HaveLen(2))
|
|
|
|
Expect(res[1].Name).To(Equal("Palermo"))
|
|
|
|
Expect(res[1].Dist).To(Equal(float64(0)))
|
|
|
|
Expect(res[1].GeoHash).To(Equal(int64(3479099956230698)))
|
|
|
|
Expect(res[1].Longitude).To(Equal(13.361389338970184))
|
|
|
|
Expect(res[1].Latitude).To(Equal(38.115556395496299))
|
|
|
|
Expect(res[0].Name).To(Equal("Catania"))
|
|
|
|
Expect(res[0].Dist).To(Equal(float64(0)))
|
|
|
|
Expect(res[0].GeoHash).To(Equal(int64(3479447370796909)))
|
|
|
|
Expect(res[0].Longitude).To(Equal(15.087267458438873))
|
|
|
|
Expect(res[0].Latitude).To(Equal(37.50266842333162))
|
|
|
|
})
|
2015-09-20 16:13:13 +03:00
|
|
|
|
2015-11-14 17:36:21 +03:00
|
|
|
It("should search geo radius by member with options", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.GeoRadiusByMember(ctx, "Sicily", "Catania", &redis.GeoRadiusQuery{
|
2015-10-15 00:39:39 +03:00
|
|
|
Radius: 200,
|
|
|
|
Unit: "km",
|
|
|
|
WithGeoHash: true,
|
|
|
|
WithCoord: true,
|
|
|
|
WithDist: true,
|
|
|
|
Count: 2,
|
|
|
|
Sort: "ASC",
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(HaveLen(2))
|
|
|
|
Expect(res[0].Name).To(Equal("Catania"))
|
2015-11-14 17:36:21 +03:00
|
|
|
Expect(res[0].Dist).To(Equal(0.0))
|
2015-10-15 00:39:39 +03:00
|
|
|
Expect(res[0].GeoHash).To(Equal(int64(3479447370796909)))
|
|
|
|
Expect(res[0].Longitude).To(Equal(15.087267458438873))
|
|
|
|
Expect(res[0].Latitude).To(Equal(37.50266842333162))
|
|
|
|
Expect(res[1].Name).To(Equal("Palermo"))
|
2015-11-14 17:36:21 +03:00
|
|
|
Expect(res[1].Dist).To(Equal(166.2742))
|
2015-10-15 00:39:39 +03:00
|
|
|
Expect(res[1].GeoHash).To(Equal(int64(3479099956230698)))
|
|
|
|
Expect(res[1].Longitude).To(Equal(13.361389338970184))
|
|
|
|
Expect(res[1].Latitude).To(Equal(38.115556395496299))
|
2015-09-20 16:13:13 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should search geo radius with no results", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
res, err := client.GeoRadius(ctx, "Sicily", 99, 37, &redis.GeoRadiusQuery{
|
2015-10-15 00:39:39 +03:00
|
|
|
Radius: 200,
|
|
|
|
Unit: "km",
|
|
|
|
WithGeoHash: true,
|
|
|
|
WithCoord: true,
|
|
|
|
WithDist: true,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(res).To(HaveLen(0))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should get geo distance with unit options", func() {
|
|
|
|
// From Redis CLI, note the difference in rounding in m vs
|
|
|
|
// km on Redis itself.
|
|
|
|
//
|
|
|
|
// GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
|
|
|
|
// GEODIST Sicily Palermo Catania m
|
|
|
|
// "166274.15156960033"
|
|
|
|
// GEODIST Sicily Palermo Catania km
|
|
|
|
// "166.27415156960032"
|
2020-03-11 17:26:42 +03:00
|
|
|
dist, err := client.GeoDist(ctx, "Sicily", "Palermo", "Catania", "km").Result()
|
2016-08-22 12:46:42 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(dist).To(BeNumerically("~", 166.27, 0.01))
|
2015-10-15 00:39:39 +03:00
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
dist, err = client.GeoDist(ctx, "Sicily", "Palermo", "Catania", "m").Result()
|
2016-08-22 12:46:42 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(dist).To(BeNumerically("~", 166274.15, 0.01))
|
2015-09-20 16:13:13 +03:00
|
|
|
})
|
2015-10-15 00:39:39 +03:00
|
|
|
|
|
|
|
It("should get geo hash in string representation", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
hashes, err := client.GeoHash(ctx, "Sicily", "Palermo", "Catania").Result()
|
2016-08-22 12:46:42 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(hashes).To(ConsistOf([]string{"sqc8b49rny0", "sqdtr74hyu0"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should return geo position", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
pos, err := client.GeoPos(ctx, "Sicily", "Palermo", "Catania", "NonExisting").Result()
|
2015-10-15 00:39:39 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-08-22 12:46:42 +03:00
|
|
|
Expect(pos).To(ConsistOf([]*redis.GeoPos{
|
|
|
|
{
|
|
|
|
Longitude: 13.361389338970184,
|
|
|
|
Latitude: 38.1155563954963,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Longitude: 15.087267458438873,
|
|
|
|
Latitude: 37.50266842333162,
|
|
|
|
},
|
|
|
|
nil,
|
|
|
|
}))
|
2015-10-15 00:39:39 +03:00
|
|
|
})
|
2021-08-02 14:01:01 +03:00
|
|
|
|
|
|
|
It("should geo search", func() {
|
|
|
|
q := &redis.GeoSearchQuery{
|
|
|
|
Member: "Catania",
|
|
|
|
BoxWidth: 400,
|
|
|
|
BoxHeight: 100,
|
|
|
|
BoxUnit: "km",
|
|
|
|
Sort: "asc",
|
|
|
|
}
|
|
|
|
val, err := client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania"}))
|
|
|
|
|
|
|
|
q.BoxHeight = 400
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania", "Palermo"}))
|
|
|
|
|
|
|
|
q.Count = 1
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania"}))
|
|
|
|
|
|
|
|
q.CountAny = true
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Palermo"}))
|
|
|
|
|
|
|
|
q = &redis.GeoSearchQuery{
|
|
|
|
Member: "Catania",
|
|
|
|
Radius: 100,
|
|
|
|
RadiusUnit: "km",
|
|
|
|
Sort: "asc",
|
|
|
|
}
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania"}))
|
|
|
|
|
|
|
|
q.Radius = 400
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania", "Palermo"}))
|
|
|
|
|
|
|
|
q.Count = 1
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania"}))
|
|
|
|
|
|
|
|
q.CountAny = true
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Palermo"}))
|
|
|
|
|
|
|
|
q = &redis.GeoSearchQuery{
|
|
|
|
Longitude: 15,
|
|
|
|
Latitude: 37,
|
|
|
|
BoxWidth: 200,
|
|
|
|
BoxHeight: 200,
|
|
|
|
BoxUnit: "km",
|
|
|
|
Sort: "asc",
|
|
|
|
}
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania"}))
|
|
|
|
|
|
|
|
q.BoxWidth, q.BoxHeight = 400, 400
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania", "Palermo"}))
|
|
|
|
|
|
|
|
q.Count = 1
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania"}))
|
|
|
|
|
|
|
|
q.CountAny = true
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Palermo"}))
|
|
|
|
|
|
|
|
q = &redis.GeoSearchQuery{
|
|
|
|
Longitude: 15,
|
|
|
|
Latitude: 37,
|
|
|
|
Radius: 100,
|
|
|
|
RadiusUnit: "km",
|
|
|
|
Sort: "asc",
|
|
|
|
}
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania"}))
|
|
|
|
|
|
|
|
q.Radius = 200
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania", "Palermo"}))
|
|
|
|
|
|
|
|
q.Count = 1
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Catania"}))
|
|
|
|
|
|
|
|
q.CountAny = true
|
|
|
|
val, err = client.GeoSearch(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]string{"Palermo"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should geo search with options", func() {
|
|
|
|
q := &redis.GeoSearchLocationQuery{
|
|
|
|
GeoSearchQuery: redis.GeoSearchQuery{
|
|
|
|
Longitude: 15,
|
|
|
|
Latitude: 37,
|
|
|
|
Radius: 200,
|
|
|
|
RadiusUnit: "km",
|
|
|
|
Sort: "asc",
|
|
|
|
},
|
|
|
|
WithHash: true,
|
|
|
|
WithDist: true,
|
|
|
|
WithCoord: true,
|
|
|
|
}
|
|
|
|
val, err := client.GeoSearchLocation(ctx, "Sicily", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal([]redis.GeoLocation{
|
|
|
|
{
|
|
|
|
Name: "Catania",
|
|
|
|
Longitude: 15.08726745843887329,
|
|
|
|
Latitude: 37.50266842333162032,
|
|
|
|
Dist: 56.4413,
|
|
|
|
GeoHash: 3479447370796909,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Palermo",
|
|
|
|
Longitude: 13.36138933897018433,
|
|
|
|
Latitude: 38.11555639549629859,
|
|
|
|
Dist: 190.4424,
|
|
|
|
GeoHash: 3479099956230698,
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should geo search store", func() {
|
|
|
|
q := &redis.GeoSearchStoreQuery{
|
|
|
|
GeoSearchQuery: redis.GeoSearchQuery{
|
|
|
|
Longitude: 15,
|
|
|
|
Latitude: 37,
|
|
|
|
Radius: 200,
|
|
|
|
RadiusUnit: "km",
|
|
|
|
Sort: "asc",
|
|
|
|
},
|
|
|
|
StoreDist: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := client.GeoSearchStore(ctx, "Sicily", "key1", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal(int64(2)))
|
|
|
|
|
|
|
|
q.StoreDist = true
|
|
|
|
val, err = client.GeoSearchStore(ctx, "Sicily", "key2", q).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal(int64(2)))
|
|
|
|
|
|
|
|
loc, err := client.GeoSearchLocation(ctx, "key1", &redis.GeoSearchLocationQuery{
|
|
|
|
GeoSearchQuery: q.GeoSearchQuery,
|
|
|
|
WithCoord: true,
|
|
|
|
WithDist: true,
|
|
|
|
WithHash: true,
|
|
|
|
}).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(loc).To(Equal([]redis.GeoLocation{
|
|
|
|
{
|
|
|
|
Name: "Catania",
|
|
|
|
Longitude: 15.08726745843887329,
|
|
|
|
Latitude: 37.50266842333162032,
|
|
|
|
Dist: 56.4413,
|
|
|
|
GeoHash: 3479447370796909,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Palermo",
|
|
|
|
Longitude: 13.36138933897018433,
|
|
|
|
Latitude: 38.11555639549629859,
|
|
|
|
Dist: 190.4424,
|
|
|
|
GeoHash: 3479099956230698,
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
|
|
|
|
v, err := client.ZRangeWithScores(ctx, "key2", 0, -1).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(v).To(Equal([]redis.Z{
|
|
|
|
{
|
|
|
|
Score: 56.441257870158204,
|
|
|
|
Member: "Catania",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Score: 190.44242984775784,
|
|
|
|
Member: "Palermo",
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
})
|
2015-09-20 16:13:13 +03:00
|
|
|
})
|
|
|
|
|
2015-05-28 15:51:19 +03:00
|
|
|
Describe("marshaling/unmarshaling", func() {
|
|
|
|
type convTest struct {
|
|
|
|
value interface{}
|
|
|
|
wanted string
|
|
|
|
dest interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
convTests := []convTest{
|
|
|
|
{nil, "", nil},
|
|
|
|
{"hello", "hello", new(string)},
|
|
|
|
{[]byte("hello"), "hello", new([]byte)},
|
2021-06-28 12:40:38 +03:00
|
|
|
{1, "1", new(int)},
|
2015-05-28 15:51:19 +03:00
|
|
|
{int8(1), "1", new(int8)},
|
|
|
|
{int16(1), "1", new(int16)},
|
|
|
|
{int32(1), "1", new(int32)},
|
|
|
|
{int64(1), "1", new(int64)},
|
|
|
|
{uint(1), "1", new(uint)},
|
|
|
|
{uint8(1), "1", new(uint8)},
|
|
|
|
{uint16(1), "1", new(uint16)},
|
|
|
|
{uint32(1), "1", new(uint32)},
|
|
|
|
{uint64(1), "1", new(uint64)},
|
|
|
|
{float32(1.0), "1", new(float32)},
|
2021-06-28 12:40:38 +03:00
|
|
|
{1.0, "1", new(float64)},
|
2015-05-28 15:51:19 +03:00
|
|
|
{true, "1", new(bool)},
|
|
|
|
{false, "0", new(bool)},
|
|
|
|
}
|
|
|
|
|
|
|
|
It("should convert to string", func() {
|
|
|
|
for _, test := range convTests {
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key", test.value, 0).Err()
|
2015-05-28 15:51:19 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
s, err := client.Get(ctx, "key").Result()
|
2015-05-28 15:51:19 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(s).To(Equal(test.wanted))
|
|
|
|
|
|
|
|
if test.dest == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
err = client.Get(ctx, "key").Scan(test.dest)
|
2015-05-28 15:51:19 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(deref(test.dest)).To(Equal(test.value))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("json marshaling/unmarshaling", func() {
|
|
|
|
BeforeEach(func() {
|
|
|
|
value := &numberStruct{Number: 42}
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Set(ctx, "key", value, 0).Err()
|
2015-05-28 15:51:19 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should marshal custom values using json", func() {
|
2020-03-11 17:26:42 +03:00
|
|
|
s, err := client.Get(ctx, "key").Result()
|
2015-05-28 15:51:19 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(s).To(Equal(`{"Number":42}`))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should scan custom values using json", func() {
|
|
|
|
value := &numberStruct{}
|
2020-03-11 17:26:42 +03:00
|
|
|
err := client.Get(ctx, "key").Scan(value)
|
2016-05-06 21:12:31 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-05-28 15:51:19 +03:00
|
|
|
Expect(value.Number).To(Equal(42))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-01-03 13:21:22 +03:00
|
|
|
Describe("Eval", func() {
|
|
|
|
It("returns keys and values", func() {
|
|
|
|
vals, err := client.Eval(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx,
|
2017-01-03 13:21:22 +03:00
|
|
|
"return {KEYS[1],ARGV[1]}",
|
|
|
|
[]string{"key"},
|
|
|
|
"hello",
|
|
|
|
).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]interface{}{"key", "hello"}))
|
|
|
|
})
|
|
|
|
|
2018-02-16 14:39:56 +03:00
|
|
|
It("returns all values after an error", func() {
|
|
|
|
vals, err := client.Eval(
|
2020-03-11 17:26:42 +03:00
|
|
|
ctx,
|
2018-02-16 14:39:56 +03:00
|
|
|
`return {12, {err="error"}, "abc"}`,
|
|
|
|
nil,
|
|
|
|
).Result()
|
2022-09-24 06:28:14 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]interface{}{int64(12), proto.RedisError("error"), "abc"}))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("EvalRO", func() {
|
|
|
|
It("returns keys and values", func() {
|
|
|
|
vals, err := client.EvalRO(
|
|
|
|
ctx,
|
|
|
|
"return {KEYS[1],ARGV[1]}",
|
|
|
|
[]string{"key"},
|
|
|
|
"hello",
|
|
|
|
).Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(vals).To(Equal([]interface{}{"key", "hello"}))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("returns all values after an error", func() {
|
|
|
|
vals, err := client.EvalRO(
|
|
|
|
ctx,
|
|
|
|
`return {12, {err="error"}, "abc"}`,
|
|
|
|
nil,
|
|
|
|
).Result()
|
2018-02-16 14:39:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-02-22 15:14:30 +03:00
|
|
|
Expect(vals).To(Equal([]interface{}{int64(12), proto.RedisError("error"), "abc"}))
|
2018-02-16 14:39:56 +03:00
|
|
|
})
|
2017-01-03 13:21:22 +03:00
|
|
|
})
|
2020-06-11 10:24:04 +03:00
|
|
|
|
2020-09-09 17:42:05 +03:00
|
|
|
Describe("SlowLogGet", func() {
|
2020-06-11 10:24:04 +03:00
|
|
|
It("returns slow query result", func() {
|
2020-09-09 12:49:45 +03:00
|
|
|
const key = "slowlog-log-slower-than"
|
|
|
|
|
|
|
|
old := client.ConfigGet(ctx, key).Val()
|
|
|
|
client.ConfigSet(ctx, key, "0")
|
2021-04-27 10:04:46 +03:00
|
|
|
defer client.ConfigSet(ctx, key, old[key])
|
2020-09-09 12:49:45 +03:00
|
|
|
|
2021-04-28 09:39:03 +03:00
|
|
|
err := client.Do(ctx, "slowlog", "reset").Err()
|
2020-09-09 12:49:45 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2020-06-11 10:24:04 +03:00
|
|
|
client.Set(ctx, "test", "true", 0)
|
2020-09-09 12:49:45 +03:00
|
|
|
|
2020-09-09 17:42:05 +03:00
|
|
|
result, err := client.SlowLogGet(ctx, -1).Result()
|
2020-06-11 10:24:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2020-09-09 17:39:13 +03:00
|
|
|
Expect(len(result)).NotTo(BeZero())
|
2020-06-11 10:24:04 +03:00
|
|
|
})
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
2015-05-28 15:51:19 +03:00
|
|
|
|
|
|
|
type numberStruct struct {
|
|
|
|
Number int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *numberStruct) MarshalBinary() ([]byte, error) {
|
|
|
|
return json.Marshal(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *numberStruct) UnmarshalBinary(b []byte) error {
|
|
|
|
return json.Unmarshal(b, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func deref(viface interface{}) interface{} {
|
|
|
|
v := reflect.ValueOf(viface)
|
|
|
|
for v.Kind() == reflect.Ptr {
|
|
|
|
v = v.Elem()
|
|
|
|
}
|
|
|
|
return v.Interface()
|
|
|
|
}
|