2015-01-15 18:51:22 +03:00
|
|
|
package redis_test
|
|
|
|
|
|
|
|
import (
|
2015-12-22 16:45:03 +03:00
|
|
|
"errors"
|
2015-01-31 15:01:21 +03:00
|
|
|
"time"
|
2015-01-15 18:51:22 +03:00
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2015-04-17 14:44:56 +03:00
|
|
|
|
2015-05-14 15:19:29 +03:00
|
|
|
"gopkg.in/redis.v3"
|
2015-01-15 18:51:22 +03:00
|
|
|
)
|
|
|
|
|
2015-10-13 12:02:29 +03:00
|
|
|
var _ = Describe("pool", func() {
|
2015-01-15 18:51:22 +03:00
|
|
|
var client *redis.Client
|
2015-04-17 14:44:56 +03:00
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
BeforeEach(func() {
|
2015-04-17 14:44:56 +03:00
|
|
|
client = redis.NewClient(&redis.Options{
|
|
|
|
Addr: redisAddr,
|
|
|
|
PoolSize: 10,
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should respect max size", func() {
|
|
|
|
perform(1000, func() {
|
|
|
|
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))
|
2015-05-02 16:11:18 +03:00
|
|
|
Expect(pool.FreeLen()).To(BeNumerically("<=", 10))
|
|
|
|
Expect(pool.Len()).To(Equal(pool.FreeLen()))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should respect max on multi", func() {
|
|
|
|
perform(1000, func() {
|
|
|
|
var ping *redis.StatusCmd
|
|
|
|
|
|
|
|
multi := client.Multi()
|
|
|
|
cmds, err := multi.Exec(func() error {
|
|
|
|
ping = multi.Ping()
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(cmds).To(HaveLen(1))
|
|
|
|
Expect(ping.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(ping.Val()).To(Equal("PONG"))
|
|
|
|
Expect(multi.Close()).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
2015-01-31 10:53:08 +03:00
|
|
|
pool := client.Pool()
|
|
|
|
Expect(pool.Len()).To(BeNumerically("<=", 10))
|
2015-05-02 16:11:18 +03:00
|
|
|
Expect(pool.FreeLen()).To(BeNumerically("<=", 10))
|
|
|
|
Expect(pool.Len()).To(Equal(pool.FreeLen()))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should respect max on pipelines", func() {
|
|
|
|
perform(1000, func() {
|
|
|
|
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))
|
2015-05-02 16:11:18 +03:00
|
|
|
Expect(pool.FreeLen()).To(BeNumerically("<=", 10))
|
|
|
|
Expect(pool.Len()).To(Equal(pool.FreeLen()))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should respect max on pubsub", func() {
|
|
|
|
perform(10, func() {
|
|
|
|
pubsub := client.PubSub()
|
|
|
|
Expect(pubsub.Subscribe()).NotTo(HaveOccurred())
|
|
|
|
Expect(pubsub.Close()).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
2015-01-31 10:53:08 +03:00
|
|
|
pool := client.Pool()
|
2015-06-03 14:36:48 +03:00
|
|
|
Expect(pool.Len()).To(BeNumerically("<=", 10))
|
|
|
|
Expect(pool.FreeLen()).To(BeNumerically("<=", 10))
|
|
|
|
Expect(pool.Len()).To(Equal(pool.FreeLen()))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should remove broken connections", func() {
|
2016-03-15 15:04:35 +03:00
|
|
|
cn, err := client.Pool().Get()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-03-14 14:17:33 +03:00
|
|
|
cn.NetConn = &badConn{}
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(client.Pool().Put(cn)).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
err = client.Ping().Err()
|
2016-03-14 14:17:33 +03:00
|
|
|
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))
|
2015-05-02 16:11:18 +03:00
|
|
|
Expect(pool.FreeLen()).To(Equal(1))
|
2016-03-09 14:38:33 +03:00
|
|
|
|
|
|
|
stats := pool.Stats()
|
|
|
|
Expect(stats.Requests).To(Equal(uint32(3)))
|
|
|
|
Expect(stats.Hits).To(Equal(uint32(2)))
|
|
|
|
Expect(stats.Waits).To(Equal(uint32(0)))
|
|
|
|
Expect(stats.Timeouts).To(Equal(uint32(0)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should reuse connections", func() {
|
|
|
|
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))
|
2015-05-02 16:11:18 +03:00
|
|
|
Expect(pool.FreeLen()).To(Equal(1))
|
2016-03-09 14:38:33 +03:00
|
|
|
|
|
|
|
stats := pool.Stats()
|
|
|
|
Expect(stats.Requests).To(Equal(uint32(100)))
|
|
|
|
Expect(stats.Hits).To(Equal(uint32(99)))
|
|
|
|
Expect(stats.Waits).To(Equal(uint32(0)))
|
|
|
|
Expect(stats.Timeouts).To(Equal(uint32(0)))
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
|
|
|
|
2015-04-17 14:44:56 +03:00
|
|
|
It("should unblock client when connection is removed", func() {
|
|
|
|
pool := client.Pool()
|
|
|
|
|
|
|
|
// Reserve one connection.
|
2016-03-15 15:04:35 +03:00
|
|
|
cn, err := pool.Get()
|
2015-04-17 14:44:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
// Reserve the rest of connections.
|
|
|
|
for i := 0; i < 9; i++ {
|
2016-03-15 15:04:35 +03:00
|
|
|
_, err := pool.Get()
|
2015-04-17 14:44:56 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
}
|
|
|
|
|
|
|
|
var ping *redis.StatusCmd
|
|
|
|
started := make(chan bool, 1)
|
|
|
|
done := make(chan bool, 1)
|
|
|
|
go func() {
|
|
|
|
started <- true
|
|
|
|
ping = client.Ping()
|
|
|
|
done <- true
|
|
|
|
}()
|
|
|
|
<-started
|
|
|
|
|
|
|
|
// Check that Ping is blocked.
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
panic("Ping is not blocked")
|
|
|
|
default:
|
|
|
|
// ok
|
|
|
|
}
|
|
|
|
|
2016-03-12 13:41:02 +03:00
|
|
|
err = pool.Replace(cn, errors.New("test"))
|
2015-12-22 16:45:03 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-04-17 14:44:56 +03:00
|
|
|
|
|
|
|
// Check that Ping is unblocked.
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
// ok
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
panic("Ping is not unblocked")
|
|
|
|
}
|
|
|
|
Expect(ping.Err()).NotTo(HaveOccurred())
|
|
|
|
})
|
2015-12-22 16:45:03 +03:00
|
|
|
|
|
|
|
It("should rate limit dial", func() {
|
|
|
|
pool := client.Pool()
|
|
|
|
|
|
|
|
var rateErr error
|
|
|
|
for i := 0; i < 1000; i++ {
|
2016-03-15 15:04:35 +03:00
|
|
|
cn, err := pool.Get()
|
2015-12-22 16:45:03 +03:00
|
|
|
if err != nil {
|
|
|
|
rateErr = err
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2016-03-12 13:41:02 +03:00
|
|
|
_ = pool.Replace(cn, errors.New("test"))
|
2015-12-22 16:45:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Expect(rateErr).To(MatchError(`redis: you open connections too fast (last_error="test")`))
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|