redis/pool_test.go

151 lines
3.5 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"
2019-08-08 14:29:44 +03:00
"github.com/go-redis/redis/v7"
2017-02-18 17:42:34 +03:00
2015-01-15 18:51:22 +03:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
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) {
2015-01-15 18:51:22 +03:00
val, err := client.Ping().Result()
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
2016-05-02 15:54:15 +03:00
err := client.Watch(func(tx *redis.Tx) error {
2017-05-02 18:00:53 +03:00
cmds, err := tx.Pipelined(func(pipe redis.Pipeliner) error {
ping = pipe.Ping()
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()
ping := pipe.Ping()
cmds, err := pipe.Exec()
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{})
2018-05-28 17:27:24 +03:00
client.Pool().Put(cn)
2015-01-15 18:51:22 +03:00
err = client.Ping().Err()
Expect(err).To(MatchError("bad connection"))
2015-01-15 18:51:22 +03:00
val, err := client.Ping().Result()
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() {
2015-01-15 18:51:22 +03:00
for i := 0; i < 100; i++ {
val, err := client.Ping().Result()
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() {
err := client.Ping().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
})