2012-07-25 17:00:50 +04:00
|
|
|
package redis_test
|
|
|
|
|
|
|
|
import (
|
2016-03-16 17:57:24 +03:00
|
|
|
"bytes"
|
2019-06-04 14:05:29 +03:00
|
|
|
"context"
|
2020-02-02 12:54:42 +03:00
|
|
|
"errors"
|
2012-08-06 12:33:49 +04:00
|
|
|
"net"
|
2020-02-02 12:54:42 +03:00
|
|
|
"testing"
|
2016-12-03 18:30:13 +03:00
|
|
|
"time"
|
|
|
|
|
2019-08-08 14:29:44 +03:00
|
|
|
"github.com/go-redis/redis/v7"
|
2012-07-25 17:00:50 +04:00
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2015-05-14 16:13:45 +03:00
|
|
|
)
|
2015-04-28 18:14:19 +03:00
|
|
|
|
2020-02-02 12:54:42 +03:00
|
|
|
type redisHookError struct {
|
|
|
|
redis.Hook
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ redis.Hook = redisHookError{}
|
|
|
|
|
|
|
|
func (redisHookError) BeforeProcess(ctx context.Context, cmd redis.Cmder) (context.Context, error) {
|
|
|
|
return ctx, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (redisHookError) AfterProcess(ctx context.Context, cmd redis.Cmder) error {
|
|
|
|
return errors.New("hook error")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHookError(t *testing.T) {
|
|
|
|
rdb := redis.NewClient(&redis.Options{
|
|
|
|
Addr: ":6379",
|
|
|
|
})
|
|
|
|
rdb.AddHook(redisHookError{})
|
|
|
|
|
|
|
|
err := rdb.Ping().Err()
|
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("got nil, expected an error")
|
|
|
|
}
|
|
|
|
|
|
|
|
wanted := "hook error"
|
|
|
|
if err.Error() != wanted {
|
|
|
|
t.Fatalf(`got %q, wanted %q`, err, wanted)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
var _ = Describe("Client", func() {
|
|
|
|
var client *redis.Client
|
2012-07-25 17:00:50 +04:00
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
BeforeEach(func() {
|
2016-03-16 17:57:24 +03:00
|
|
|
client = redis.NewClient(redisOptions())
|
2017-06-17 12:53:16 +03:00
|
|
|
Expect(client.FlushDB().Err()).NotTo(HaveOccurred())
|
2014-05-11 11:42:40 +04:00
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
AfterEach(func() {
|
2015-05-02 16:11:18 +03:00
|
|
|
client.Close()
|
2014-05-11 11:42:40 +04:00
|
|
|
})
|
|
|
|
|
2020-02-02 15:59:27 +03:00
|
|
|
It("should Stringer", func() {
|
|
|
|
Expect(client.String()).To(Equal("Redis<:6380 db:15>"))
|
|
|
|
})
|
|
|
|
|
2019-07-04 11:18:06 +03:00
|
|
|
It("supports WithContext", func() {
|
|
|
|
c, cancel := context.WithCancel(context.Background())
|
|
|
|
cancel()
|
|
|
|
|
|
|
|
err := client.WithContext(c).Ping().Err()
|
|
|
|
Expect(err).To(MatchError("context canceled"))
|
|
|
|
})
|
|
|
|
|
2020-02-02 15:59:27 +03:00
|
|
|
It("supports WithTimeout", func() {
|
|
|
|
err := client.ClientPause(time.Second).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
err = client.WithTimeout(10 * time.Millisecond).Ping().Err()
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
|
|
|
|
err = client.Ping().Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-05-15 15:21:28 +03:00
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should ping", func() {
|
|
|
|
val, err := client.Ping().Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("PONG"))
|
2014-05-11 11:42:40 +04:00
|
|
|
})
|
2013-02-02 14:50:43 +04:00
|
|
|
|
2016-01-19 19:36:40 +03:00
|
|
|
It("should return pool stats", func() {
|
|
|
|
Expect(client.PoolStats()).To(BeAssignableToTypeOf(&redis.PoolStats{}))
|
|
|
|
})
|
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should support custom dialers", func() {
|
|
|
|
custom := redis.NewClient(&redis.Options{
|
2019-05-18 14:00:07 +03:00
|
|
|
Network: "tcp",
|
|
|
|
Addr: redisAddr,
|
2019-06-04 14:05:29 +03:00
|
|
|
Dialer: func(ctx context.Context, network, addr string) (net.Conn, error) {
|
2019-07-30 23:03:40 +03:00
|
|
|
var d net.Dialer
|
|
|
|
return d.DialContext(ctx, network, addr)
|
2015-01-15 18:51:22 +03:00
|
|
|
},
|
|
|
|
})
|
2014-09-30 12:46:56 +04:00
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
val, err := custom.Ping().Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(val).To(Equal("PONG"))
|
|
|
|
Expect(custom.Close()).NotTo(HaveOccurred())
|
2014-05-11 11:42:40 +04:00
|
|
|
})
|
2012-08-25 16:35:39 +04:00
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
It("should close", func() {
|
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
|
|
|
err := client.Ping().Err()
|
|
|
|
Expect(err).To(MatchError("redis: client is closed"))
|
2014-05-11 11:42:40 +04:00
|
|
|
})
|
2012-08-25 16:35:39 +04:00
|
|
|
|
2016-03-02 14:26:05 +03:00
|
|
|
It("should close pubsub without closing the client", func() {
|
2017-04-11 16:53:55 +03:00
|
|
|
pubsub := client.Subscribe()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(pubsub.Close()).NotTo(HaveOccurred())
|
2014-05-11 11:42:40 +04:00
|
|
|
|
2017-04-11 16:53:55 +03:00
|
|
|
_, err := pubsub.Receive()
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(err).To(MatchError("redis: client is closed"))
|
|
|
|
Expect(client.Ping().Err()).NotTo(HaveOccurred())
|
2014-05-11 11:42:40 +04:00
|
|
|
})
|
|
|
|
|
2016-05-02 15:54:15 +03:00
|
|
|
It("should close Tx without closing the client", func() {
|
|
|
|
err := client.Watch(func(tx *redis.Tx) error {
|
2020-01-12 15:19:21 +03:00
|
|
|
_, err := tx.TxPipelined(func(pipe redis.Pipeliner) error {
|
2016-10-13 14:36:15 +03:00
|
|
|
pipe.Ping()
|
2016-05-02 15:54:15 +03:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return err
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
2016-05-02 15:54:15 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-03-02 14:26:05 +03:00
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(client.Ping().Err()).NotTo(HaveOccurred())
|
2014-05-11 11:42:40 +04:00
|
|
|
})
|
|
|
|
|
2016-03-02 14:26:05 +03:00
|
|
|
It("should close pipeline without closing the client", func() {
|
2015-01-15 18:51:22 +03:00
|
|
|
pipeline := client.Pipeline()
|
|
|
|
Expect(pipeline.Close()).NotTo(HaveOccurred())
|
2014-05-11 11:42:40 +04:00
|
|
|
|
|
|
|
pipeline.Ping()
|
2015-01-15 18:51:22 +03:00
|
|
|
_, err := pipeline.Exec()
|
|
|
|
Expect(err).To(MatchError("redis: client is closed"))
|
2016-03-02 14:26:05 +03:00
|
|
|
|
2015-01-15 18:51:22 +03:00
|
|
|
Expect(client.Ping().Err()).NotTo(HaveOccurred())
|
2015-06-03 16:45:46 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
It("should close pubsub when client is closed", func() {
|
2017-04-11 16:53:55 +03:00
|
|
|
pubsub := client.Subscribe()
|
2015-06-03 16:45:46 +03:00
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
2016-07-21 16:04:40 +03:00
|
|
|
|
2017-04-11 16:53:55 +03:00
|
|
|
_, err := pubsub.Receive()
|
2017-04-17 15:43:58 +03:00
|
|
|
Expect(err).To(MatchError("redis: client is closed"))
|
2016-07-21 16:04:40 +03:00
|
|
|
|
2015-06-03 16:45:46 +03:00
|
|
|
Expect(pubsub.Close()).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should close pipeline when client is closed", func() {
|
|
|
|
pipeline := client.Pipeline()
|
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
|
|
|
Expect(pipeline.Close()).NotTo(HaveOccurred())
|
2014-05-11 11:42:40 +04:00
|
|
|
})
|
2014-07-08 12:24:19 +04:00
|
|
|
|
2016-03-16 17:57:24 +03:00
|
|
|
It("should select DB", func() {
|
|
|
|
db2 := redis.NewClient(&redis.Options{
|
2015-01-15 18:51:22 +03:00
|
|
|
Addr: redisAddr,
|
2016-03-16 17:57:24 +03:00
|
|
|
DB: 2,
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
2017-06-17 12:53:16 +03:00
|
|
|
Expect(db2.FlushDB().Err()).NotTo(HaveOccurred())
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(db2.Get("db").Err()).To(Equal(redis.Nil))
|
|
|
|
Expect(db2.Set("db", 2, 0).Err()).NotTo(HaveOccurred())
|
2012-08-11 18:42:10 +04:00
|
|
|
|
2016-03-16 17:57:24 +03:00
|
|
|
n, err := db2.Get("db").Int64()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(n).To(Equal(int64(2)))
|
2012-08-26 13:18:42 +04:00
|
|
|
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(client.Get("db").Err()).To(Equal(redis.Nil))
|
2013-12-30 15:45:04 +04:00
|
|
|
|
2017-06-17 12:53:16 +03:00
|
|
|
Expect(db2.FlushDB().Err()).NotTo(HaveOccurred())
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(db2.Close()).NotTo(HaveOccurred())
|
|
|
|
})
|
2015-07-13 13:45:37 +03:00
|
|
|
|
2016-04-12 19:41:56 +03:00
|
|
|
It("processes custom commands", func() {
|
2016-03-16 17:57:24 +03:00
|
|
|
cmd := redis.NewCmd("PING")
|
2019-07-04 11:18:06 +03:00
|
|
|
_ = client.Process(cmd)
|
2016-04-12 19:41:56 +03:00
|
|
|
|
|
|
|
// Flush buffers.
|
|
|
|
Expect(client.Echo("hello").Err()).NotTo(HaveOccurred())
|
|
|
|
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(cmd.Err()).NotTo(HaveOccurred())
|
2016-04-12 19:41:56 +03:00
|
|
|
Expect(cmd.Val()).To(Equal("PONG"))
|
2015-07-13 13:45:37 +03:00
|
|
|
})
|
|
|
|
|
2015-05-10 15:33:04 +03:00
|
|
|
It("should retry command on network error", func() {
|
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
client = redis.NewClient(&redis.Options{
|
|
|
|
Addr: redisAddr,
|
|
|
|
MaxRetries: 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
// Put bad connection in the pool.
|
2019-07-04 11:18:06 +03:00
|
|
|
cn, err := client.Pool().Get(context.Background())
|
2015-05-10 15:33:04 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2015-09-06 13:50:16 +03:00
|
|
|
|
2017-02-08 12:24:09 +03:00
|
|
|
cn.SetNetConn(&badConn{})
|
2018-05-28 17:27:24 +03:00
|
|
|
client.Pool().Put(cn)
|
2015-05-10 15:33:04 +03:00
|
|
|
|
|
|
|
err = client.Ping().Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
})
|
2016-03-02 14:26:05 +03:00
|
|
|
|
2017-05-25 08:08:44 +03:00
|
|
|
It("should retry with backoff", func() {
|
|
|
|
clientNoRetry := redis.NewClient(&redis.Options{
|
2018-02-27 17:09:55 +03:00
|
|
|
Addr: ":1234",
|
|
|
|
MaxRetries: 0,
|
2017-05-25 08:08:44 +03:00
|
|
|
})
|
|
|
|
defer clientNoRetry.Close()
|
|
|
|
|
|
|
|
clientRetry := redis.NewClient(&redis.Options{
|
2018-02-27 17:09:55 +03:00
|
|
|
Addr: ":1234",
|
2017-05-25 08:08:44 +03:00
|
|
|
MaxRetries: 5,
|
|
|
|
MaxRetryBackoff: 128 * time.Millisecond,
|
|
|
|
})
|
|
|
|
defer clientRetry.Close()
|
|
|
|
|
|
|
|
startNoRetry := time.Now()
|
|
|
|
err := clientNoRetry.Ping().Err()
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
elapseNoRetry := time.Since(startNoRetry)
|
|
|
|
|
|
|
|
startRetry := time.Now()
|
|
|
|
err = clientRetry.Ping().Err()
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
elapseRetry := time.Since(startRetry)
|
|
|
|
|
2018-02-27 17:09:55 +03:00
|
|
|
Expect(elapseRetry).To(BeNumerically(">", elapseNoRetry, 10*time.Millisecond))
|
2017-05-25 08:08:44 +03:00
|
|
|
})
|
|
|
|
|
2016-03-16 17:57:24 +03:00
|
|
|
It("should update conn.UsedAt on read/write", func() {
|
2019-07-04 11:18:06 +03:00
|
|
|
cn, err := client.Pool().Get(context.Background())
|
2016-03-02 14:26:05 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-03-04 11:03:50 +03:00
|
|
|
Expect(cn.UsedAt).NotTo(BeZero())
|
2017-02-08 12:24:09 +03:00
|
|
|
createdAt := cn.UsedAt()
|
2016-03-04 11:03:50 +03:00
|
|
|
|
2018-05-28 17:27:24 +03:00
|
|
|
client.Pool().Put(cn)
|
2017-02-08 12:24:09 +03:00
|
|
|
Expect(cn.UsedAt().Equal(createdAt)).To(BeTrue())
|
2016-03-02 14:26:05 +03:00
|
|
|
|
2019-05-31 17:54:30 +03:00
|
|
|
time.Sleep(time.Second)
|
|
|
|
|
2016-03-02 14:26:05 +03:00
|
|
|
err = client.Ping().Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2019-07-04 11:18:06 +03:00
|
|
|
cn, err = client.Pool().Get(context.Background())
|
2016-03-17 19:00:47 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2016-03-02 14:26:05 +03:00
|
|
|
Expect(cn).NotTo(BeNil())
|
2017-02-08 12:24:09 +03:00
|
|
|
Expect(cn.UsedAt().After(createdAt)).To(BeTrue())
|
2016-03-02 14:26:05 +03:00
|
|
|
})
|
2016-03-16 17:57:24 +03:00
|
|
|
|
2016-12-03 18:30:13 +03:00
|
|
|
It("should process command with special chars", func() {
|
2016-03-16 17:57:24 +03:00
|
|
|
set := client.Set("key", "hello1\r\nhello2\r\n", 0)
|
|
|
|
Expect(set.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(set.Val()).To(Equal("OK"))
|
|
|
|
|
|
|
|
get := client.Get("key")
|
|
|
|
Expect(get.Err()).NotTo(HaveOccurred())
|
|
|
|
Expect(get.Val()).To(Equal("hello1\r\nhello2\r\n"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should handle big vals", func() {
|
2016-11-09 11:04:37 +03:00
|
|
|
bigVal := bytes.Repeat([]byte{'*'}, 2e6)
|
2016-03-16 17:57:24 +03:00
|
|
|
|
|
|
|
err := client.Set("key", bigVal, 0).Err()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
// Reconnect to get new connection.
|
2016-12-03 18:30:13 +03:00
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
2016-03-16 17:57:24 +03:00
|
|
|
client = redis.NewClient(redisOptions())
|
|
|
|
|
2016-11-09 11:04:37 +03:00
|
|
|
got, err := client.Get("key").Bytes()
|
2016-03-16 17:57:24 +03:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(got).To(Equal(bigVal))
|
|
|
|
})
|
2016-12-03 18:30:13 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
var _ = Describe("Client timeout", func() {
|
2017-04-17 15:43:58 +03:00
|
|
|
var opt *redis.Options
|
2016-12-03 18:30:13 +03:00
|
|
|
var client *redis.Client
|
2016-03-16 17:57:24 +03:00
|
|
|
|
2016-12-03 18:30:13 +03:00
|
|
|
AfterEach(func() {
|
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
|
|
|
testTimeout := func() {
|
|
|
|
It("Ping timeouts", func() {
|
|
|
|
err := client.Ping().Err()
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(err.(net.Error).Timeout()).To(BeTrue())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Pipeline timeouts", func() {
|
2017-05-02 18:00:53 +03:00
|
|
|
_, err := client.Pipelined(func(pipe redis.Pipeliner) error {
|
2016-12-03 18:30:13 +03:00
|
|
|
pipe.Ping()
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(err.(net.Error).Timeout()).To(BeTrue())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Subscribe timeouts", func() {
|
2017-04-17 15:43:58 +03:00
|
|
|
if opt.WriteTimeout == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-11 16:53:55 +03:00
|
|
|
pubsub := client.Subscribe()
|
2017-04-17 15:43:58 +03:00
|
|
|
defer pubsub.Close()
|
|
|
|
|
2017-04-11 16:53:55 +03:00
|
|
|
err := pubsub.Subscribe("_")
|
2016-12-03 18:30:13 +03:00
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(err.(net.Error).Timeout()).To(BeTrue())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Tx timeouts", func() {
|
|
|
|
err := client.Watch(func(tx *redis.Tx) error {
|
|
|
|
return tx.Ping().Err()
|
|
|
|
})
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(err.(net.Error).Timeout()).To(BeTrue())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("Tx Pipeline timeouts", func() {
|
|
|
|
err := client.Watch(func(tx *redis.Tx) error {
|
2020-01-12 15:19:21 +03:00
|
|
|
_, err := tx.TxPipelined(func(pipe redis.Pipeliner) error {
|
2016-12-03 18:30:13 +03:00
|
|
|
pipe.Ping()
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(err.(net.Error).Timeout()).To(BeTrue())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
Context("read timeout", func() {
|
|
|
|
BeforeEach(func() {
|
2017-04-17 15:43:58 +03:00
|
|
|
opt = redisOptions()
|
2016-12-03 18:30:13 +03:00
|
|
|
opt.ReadTimeout = time.Nanosecond
|
|
|
|
opt.WriteTimeout = -1
|
|
|
|
client = redis.NewClient(opt)
|
|
|
|
})
|
|
|
|
|
|
|
|
testTimeout()
|
|
|
|
})
|
|
|
|
|
|
|
|
Context("write timeout", func() {
|
|
|
|
BeforeEach(func() {
|
2017-04-17 15:43:58 +03:00
|
|
|
opt = redisOptions()
|
2016-12-03 18:30:13 +03:00
|
|
|
opt.ReadTimeout = -1
|
|
|
|
opt.WriteTimeout = time.Nanosecond
|
|
|
|
client = redis.NewClient(opt)
|
|
|
|
})
|
|
|
|
|
|
|
|
testTimeout()
|
|
|
|
})
|
2015-01-15 18:51:22 +03:00
|
|
|
})
|
2017-05-25 14:16:39 +03:00
|
|
|
|
|
|
|
var _ = Describe("Client OnConnect", func() {
|
|
|
|
var client *redis.Client
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
|
|
|
opt := redisOptions()
|
2017-05-30 15:45:36 +03:00
|
|
|
opt.DB = 0
|
2017-05-25 14:16:39 +03:00
|
|
|
opt.OnConnect = func(cn *redis.Conn) error {
|
|
|
|
return cn.ClientSetName("on_connect").Err()
|
|
|
|
}
|
|
|
|
|
|
|
|
client = redis.NewClient(opt)
|
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
|
|
|
Expect(client.Close()).NotTo(HaveOccurred())
|
|
|
|
})
|
|
|
|
|
|
|
|
It("calls OnConnect", func() {
|
|
|
|
name, err := client.ClientGetName().Result()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(name).To(Equal("on_connect"))
|
|
|
|
})
|
|
|
|
})
|