1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
// +build go1.7
package redisc
import (
"context"
"testing"
"time"
"github.com/gomodule/redigo/redis"
"github.com/mna/redisc/redistest"
"github.com/stretchr/testify/assert"
)
// TestGetPoolTimedOut test case where we can't get the connection because the pool
// is full
func TestGetPoolTimedOut(t *testing.T) {
s := redistest.StartMockServer(t, func(cmd string, args ...string) interface{} {
return nil
})
defer s.Close()
p := &redis.Pool{
MaxActive: 1,
Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", s.Addr)
},
Wait: true,
}
c := Cluster{
PoolWaitTime: 100 * time.Millisecond,
}
conn, err := c.getFromPool(p)
if assert.NoError(t, err) {
defer conn.Close()
}
// second connection should be failed because we only have 1 MaxActive
start := time.Now()
_, err = c.getFromPool(p)
if assert.Error(t, err) {
assert.Equal(t, context.DeadlineExceeded, err)
assert.True(t, time.Since(start) >= 100*time.Millisecond)
}
}
// TestGetPoolWaitOnFull test that we could get the connection when the pool
// is full and we can wait for it
func TestGetPoolWaitOnFull(t *testing.T) {
s := redistest.StartMockServer(t, func(cmd string, args ...string) interface{} {
return nil
})
defer s.Close()
var (
usageTime = 100 * time.Millisecond // how long the connection will be used
waitTime = 3 * usageTime // how long we want to wait
)
p := &redis.Pool{
MaxActive: 1,
Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", s.Addr)
},
Wait: true,
}
c := Cluster{
PoolWaitTime: waitTime,
}
// first connection OK
conn, err := c.getFromPool(p)
assert.NoError(t, err)
// second connection should be failed because we only have 1 MaxActive
start := time.Now()
_, err = c.getFromPool(p)
if assert.Error(t, err) {
assert.Equal(t, context.DeadlineExceeded, err)
assert.True(t, time.Since(start) >= waitTime)
}
go func() {
time.Sleep(usageTime) // sleep before close, to simulate waiting for connection
conn.Close()
}()
start = time.Now()
conn2, err := c.getFromPool(p)
if assert.NoError(t, err) {
assert.True(t, time.Since(start) >= usageTime)
}
conn2.Close()
}
|