mirror of
https://github.com/redis/go-redis.git
synced 2025-07-18 00:20:57 +03:00
Migrates tests to ginkgo/gomega
This commit is contained in:
122
pool_test.go
Normal file
122
pool_test.go
Normal file
@ -0,0 +1,122 @@
|
||||
package redis_test
|
||||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
"gopkg.in/redis.v2"
|
||||
)
|
||||
|
||||
var _ = Describe("Pool", func() {
|
||||
var client *redis.Client
|
||||
var perform = func(n int, cb func()) {
|
||||
wg := &sync.WaitGroup{}
|
||||
for i := 0; i < n; i++ {
|
||||
wg.Add(1)
|
||||
go func() {
|
||||
defer wg.Done()
|
||||
cb()
|
||||
}()
|
||||
}
|
||||
wg.Wait()
|
||||
}
|
||||
|
||||
BeforeEach(func() {
|
||||
client = redis.NewTCPClient(&redis.Options{
|
||||
Addr: redisAddr,
|
||||
})
|
||||
})
|
||||
|
||||
AfterEach(func() {
|
||||
client.FlushDb()
|
||||
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"))
|
||||
})
|
||||
Expect(client.Pool().Size()).To(Equal(10))
|
||||
Expect(client.Pool().Len()).To(Equal(10))
|
||||
})
|
||||
|
||||
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())
|
||||
})
|
||||
|
||||
Expect(client.Pool().Size()).To(Equal(10))
|
||||
Expect(client.Pool().Len()).To(Equal(10))
|
||||
})
|
||||
|
||||
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())
|
||||
})
|
||||
|
||||
Expect(client.Pool().Size()).To(Equal(10))
|
||||
Expect(client.Pool().Len()).To(Equal(10))
|
||||
})
|
||||
|
||||
It("should respect max on pubsub", func() {
|
||||
perform(10, func() {
|
||||
pubsub := client.PubSub()
|
||||
Expect(pubsub.Subscribe()).NotTo(HaveOccurred())
|
||||
Expect(pubsub.Close()).NotTo(HaveOccurred())
|
||||
})
|
||||
|
||||
Expect(client.Pool().Size()).To(Equal(0))
|
||||
Expect(client.Pool().Len()).To(Equal(0))
|
||||
})
|
||||
|
||||
It("should remove broken connections", func() {
|
||||
cn, _, err := client.Pool().Get()
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
Expect(cn.Close()).NotTo(HaveOccurred())
|
||||
Expect(client.Pool().Put(cn)).NotTo(HaveOccurred())
|
||||
|
||||
err = client.Ping().Err()
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err.Error()).To(Equal("use of closed network connection"))
|
||||
|
||||
val, err := client.Ping().Result()
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
Expect(val).To(Equal("PONG"))
|
||||
|
||||
Expect(client.Pool().Size()).To(Equal(1))
|
||||
Expect(client.Pool().Len()).To(Equal(1))
|
||||
})
|
||||
|
||||
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"))
|
||||
}
|
||||
|
||||
Expect(client.Pool().Size()).To(Equal(1))
|
||||
Expect(client.Pool().Len()).To(Equal(1))
|
||||
})
|
||||
|
||||
})
|
Reference in New Issue
Block a user