Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Add tests for cancelled context #2432

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6215,6 +6215,25 @@ var _ = Describe("Commands", func() {
Expect(err).To(Equal(redis.Nil))
})

// https://github.com/redis/go-redis/issues/2276
PDescribe("canceled context", func() {
It("should unblock XRead", func() {
ctx2, cancel := context.WithCancel(ctx)
errCh := make(chan error, 1)
go func() {
errCh <- client.XRead(ctx2, &redis.XReadArgs{
Streams: []string{"stream", "$"},
}).Err()
}()

var gotErr error
Consistently(errCh).ShouldNot(Receive(&gotErr), "Received %v", gotErr)
cancel()
Eventually(errCh).Should(Receive(&gotErr))
Expect(gotErr).To(HaveOccurred())
})
})

It("should XRead LastEntry", Label("NonRedisEnterprise"), func() {
SkipBeforeRedisVersion(7.4, "doesn't work with older redis stack images")
res, err := client.XRead(ctx, &redis.XReadArgs{
Expand Down Expand Up @@ -6470,6 +6489,27 @@ var _ = Describe("Commands", func() {
Expect(err).NotTo(HaveOccurred())
Expect(n).To(Equal(int64(2)))
})

// https://github.com/redis/go-redis/issues/2276
PDescribe("canceled context", func() {
It("should unblock XReadGroup", func() {
ctx2, cancel := context.WithCancel(ctx)
errCh := make(chan error, 1)
go func() {
errCh <- client.XReadGroup(ctx2, &redis.XReadGroupArgs{
Group: "group",
Consumer: "consumer",
Streams: []string{"stream", ">"},
}).Err()
}()

var gotErr error
Consistently(errCh).ShouldNot(Receive(&gotErr), "Received %v", gotErr)
cancel()
Eventually(errCh).Should(Receive(&gotErr))
Expect(gotErr).To(HaveOccurred())
})
})
})

Describe("xinfo", func() {
Expand Down
18 changes: 18 additions & 0 deletions internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -351,4 +351,22 @@ var _ = Describe("withConn", func() {
Expect(newConn).NotTo(Equal(conn))
Expect(client.connPool.Len()).To(Equal(1))
})

// https://github.com/redis/go-redis/issues/2276
PIt("should remove the connection from the pool if the context is canceled", func() {
var conn *pool.Conn

ctx2, cancel := context.WithCancel(ctx)
cancel()

client.withConn(ctx2, func(ctx context.Context, c *pool.Conn) error {
conn = c
return nil
})

newConn, err := client.connPool.Get(ctx)
Expect(err).To(BeNil())
Expect(newConn).NotTo(Equal(conn))
Expect(client.connPool.Len()).To(Equal(1))
})
})
22 changes: 22 additions & 0 deletions pubsub_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package redis_test

import (
"context"
"io"
"net"
"sync"
Expand Down Expand Up @@ -574,4 +575,25 @@ var _ = Describe("PubSub", func() {
Expect(msg.Channel).To(Equal("mychannel"))
Expect(msg.Payload).To(Equal(text))
})

// https://github.com/redis/go-redis/issues/2276
PDescribe("canceled context", func() {
It("should unblock ReceiveMessage", func() {
pubsub := client.Subscribe(ctx, "mychannel")
defer pubsub.Close()

ctx2, cancel := context.WithCancel(ctx)
errCh := make(chan error, 1)
go func() {
_, err := pubsub.ReceiveMessage(ctx2)
errCh <- err
}()

var gotErr error
Consistently(errCh).ShouldNot(Receive(&gotErr), "Received %v", gotErr)
cancel()
Eventually(errCh).Should(Receive(&gotErr))
Expect(gotErr).To(HaveOccurred())
})
})
})
Loading