redis/pool_test.go

158 lines
3.7 KiB
Go
Raw Normal View History

2015-01-15 18:51:22 +03:00
package redis_test
import (
2019-07-04 11:18:06 +03:00
"context"
"time"
2015-01-15 18:51:22 +03:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
2021-09-08 16:00:52 +03:00
"github.com/go-redis/redis/v8"
2015-01-15 18:51:22 +03:00
)
var _ = Describe("pool", func() {
2015-01-15 18:51:22 +03:00
var client *redis.Client
2015-01-15 18:51:22 +03:00
BeforeEach(func() {
2018-08-12 10:08:21 +03:00
opt := redisOptions()
opt.MinIdleConns = 0
opt.MaxConnAge = 0
opt.IdleTimeout = time.Second
2018-08-12 10:08:21 +03:00
client = redis.NewClient(opt)
2015-01-15 18:51:22 +03:00
})
AfterEach(func() {
Expect(client.Close()).NotTo(HaveOccurred())
})
It("respects max size", func() {
perform(1000, func(id int) {
2020-03-11 17:26:42 +03:00
val, err := client.Ping(ctx).Result()
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("PONG"))
})
2015-01-31 10:53:08 +03:00
2015-01-30 17:58:26 +03:00
pool := client.Pool()
Expect(pool.Len()).To(BeNumerically("<=", 10))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(BeNumerically("<=", 10))
Expect(pool.Len()).To(Equal(pool.IdleLen()))
2015-01-15 18:51:22 +03:00
})
It("respects max size on multi", func() {
perform(1000, func(id int) {
2015-01-15 18:51:22 +03:00
var ping *redis.StatusCmd
2020-03-11 17:26:42 +03:00
err := client.Watch(ctx, func(tx *redis.Tx) error {
cmds, err := tx.Pipelined(ctx, func(pipe redis.Pipeliner) error {
ping = pipe.Ping(ctx)
2016-05-02 15:54:15 +03:00
return nil
})
Expect(err).NotTo(HaveOccurred())
Expect(cmds).To(HaveLen(1))
return err
2015-01-15 18:51:22 +03:00
})
Expect(err).NotTo(HaveOccurred())
2016-05-02 15:54:15 +03:00
2015-01-15 18:51:22 +03:00
Expect(ping.Err()).NotTo(HaveOccurred())
Expect(ping.Val()).To(Equal("PONG"))
})
2015-01-31 10:53:08 +03:00
pool := client.Pool()
Expect(pool.Len()).To(BeNumerically("<=", 10))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(BeNumerically("<=", 10))
Expect(pool.Len()).To(Equal(pool.IdleLen()))
2015-01-15 18:51:22 +03:00
})
It("respects max size on pipelines", func() {
perform(1000, func(id int) {
2015-01-15 18:51:22 +03:00
pipe := client.Pipeline()
2020-03-11 17:26:42 +03:00
ping := pipe.Ping(ctx)
cmds, err := pipe.Exec(ctx)
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(cmds).To(HaveLen(1))
Expect(ping.Err()).NotTo(HaveOccurred())
Expect(ping.Val()).To(Equal("PONG"))
Expect(pipe.Close()).NotTo(HaveOccurred())
})
2015-01-31 10:53:08 +03:00
pool := client.Pool()
Expect(pool.Len()).To(BeNumerically("<=", 10))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(BeNumerically("<=", 10))
Expect(pool.Len()).To(Equal(pool.IdleLen()))
2015-01-15 18:51:22 +03:00
})
It("removes broken connections", func() {
2019-07-04 11:18:06 +03:00
cn, err := client.Pool().Get(context.Background())
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
cn.SetNetConn(&badConn{})
2020-08-15 15:36:02 +03:00
client.Pool().Put(ctx, cn)
2015-01-15 18:51:22 +03:00
2020-03-11 17:26:42 +03:00
err = client.Ping(ctx).Err()
Expect(err).To(MatchError("bad connection"))
2015-01-15 18:51:22 +03:00
2020-03-11 17:26:42 +03:00
val, err := client.Ping(ctx).Result()
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("PONG"))
2015-01-31 10:53:08 +03:00
pool := client.Pool()
Expect(pool.Len()).To(Equal(1))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(Equal(1))
stats := pool.Stats()
Expect(stats.Hits).To(Equal(uint32(1)))
Expect(stats.Misses).To(Equal(uint32(2)))
Expect(stats.Timeouts).To(Equal(uint32(0)))
2015-01-15 18:51:22 +03:00
})
It("reuses connections", func() {
// explain: https://github.com/go-redis/redis/pull/1675
opt := redisOptions()
opt.MinIdleConns = 0
opt.MaxConnAge = 0
opt.IdleTimeout = 2 * time.Second
client = redis.NewClient(opt)
2015-01-15 18:51:22 +03:00
for i := 0; i < 100; i++ {
2020-03-11 17:26:42 +03:00
val, err := client.Ping(ctx).Result()
2015-01-15 18:51:22 +03:00
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("PONG"))
}
2015-01-31 10:53:08 +03:00
pool := client.Pool()
Expect(pool.Len()).To(Equal(1))
2018-05-28 17:27:24 +03:00
Expect(pool.IdleLen()).To(Equal(1))
stats := pool.Stats()
Expect(stats.Hits).To(Equal(uint32(99)))
Expect(stats.Misses).To(Equal(uint32(1)))
Expect(stats.Timeouts).To(Equal(uint32(0)))
2015-01-15 18:51:22 +03:00
})
It("removes idle connections", func() {
2020-03-11 17:26:42 +03:00
err := client.Ping(ctx).Err()
Expect(err).NotTo(HaveOccurred())
stats := client.PoolStats()
Expect(stats).To(Equal(&redis.PoolStats{
Hits: 0,
Misses: 1,
Timeouts: 0,
TotalConns: 1,
2018-05-28 17:27:24 +03:00
IdleConns: 1,
2017-09-11 10:12:00 +03:00
StaleConns: 0,
}))
time.Sleep(2 * time.Second)
stats = client.PoolStats()
Expect(stats).To(Equal(&redis.PoolStats{
Hits: 0,
Misses: 1,
Timeouts: 0,
TotalConns: 0,
2018-08-12 10:08:21 +03:00
IdleConns: 0,
2017-09-11 10:12:00 +03:00
StaleConns: 1,
}))
})
2015-01-15 18:51:22 +03:00
})