test(pubsub): stop racing the Redis SUBSCRIBE ack (#38661)

`RedisBroker.Subscribe` returns before the server acks `SUBSCRIBE`, so a
publish right after it can be dropped, making
`TestRedisBroker/CrossBroker` fail intermittently on loaded CI runners
([example](https://github.com/go-gitea/gitea/actions/runs/30257188479/job/89948425118)).

Each scenario now uses its own topic and waits for `PUBSUB NUMSUB`
before publishing. `MemoryBroker` registers synchronously and skips the
wait.
This commit is contained in:
silverwind
2026-07-27 16:12:06 +02:00
committed by GitHub
parent 341caf8aa7
commit 7efcb8d6ca
3 changed files with 48 additions and 22 deletions
+39 -16
View File
@@ -22,15 +22,16 @@ type newBrokerFunc func(t *testing.T) Broker
func testBrokerBasic(t *testing.T, newBroker newBrokerFunc, recvTimeout time.Duration) { func testBrokerBasic(t *testing.T, newBroker newBrokerFunc, recvTimeout time.Duration) {
t.Run("PublishWithoutSubscribers", func(t *testing.T) { t.Run("PublishWithoutSubscribers", func(t *testing.T) {
b := newBroker(t) b := newBroker(t)
b.Publish("nobody", []byte("msg")) // must not block or panic b.Publish(t.Name(), []byte("msg")) // must not block or panic
}) })
t.Run("SubscribeReceivesPublished", func(t *testing.T) { t.Run("SubscribeReceivesPublished", func(t *testing.T) {
b := newBroker(t) b := newBroker(t)
ch, cancel := b.Subscribe("topic") ch, cancel := b.Subscribe(t.Name())
defer cancel() defer cancel()
waitSubscribed(t, b, t.Name())
b.Publish("topic", []byte("hello")) b.Publish(t.Name(), []byte("hello"))
assert.Equal(t, []byte("hello"), recvWithin(t, ch, recvTimeout)) assert.Equal(t, []byte("hello"), recvWithin(t, ch, recvTimeout))
}) })
@@ -39,12 +40,13 @@ func testBrokerBasic(t *testing.T, newBroker newBrokerFunc, recvTimeout time.Dur
const n = 3 const n = 3
channels := make([]<-chan []byte, n) channels := make([]<-chan []byte, n)
for i := range n { for i := range n {
ch, cancel := b.Subscribe("topic") ch, cancel := b.Subscribe(t.Name())
defer cancel() defer cancel()
channels[i] = ch channels[i] = ch
} }
waitSubscribed(t, b, t.Name()) // all local subscribers share one Redis SUBSCRIBE
b.Publish("topic", []byte("broadcast")) b.Publish(t.Name(), []byte("broadcast"))
for i, ch := range channels { for i, ch := range channels {
assert.Equal(t, []byte("broadcast"), recvWithin(t, ch, recvTimeout), "subscriber %d", i) assert.Equal(t, []byte("broadcast"), recvWithin(t, ch, recvTimeout), "subscriber %d", i)
} }
@@ -52,30 +54,33 @@ func testBrokerBasic(t *testing.T, newBroker newBrokerFunc, recvTimeout time.Dur
t.Run("TopicIsolation", func(t *testing.T) { t.Run("TopicIsolation", func(t *testing.T) {
b := newBroker(t) b := newBroker(t)
chA, cancelA := b.Subscribe("a") topicA, topicB := t.Name()+"-a", t.Name()+"-b"
chA, cancelA := b.Subscribe(topicA)
defer cancelA() defer cancelA()
chB, cancelB := b.Subscribe("b") chB, cancelB := b.Subscribe(topicB)
defer cancelB() defer cancelB()
waitSubscribed(t, b, topicA)
waitSubscribed(t, b, topicB)
b.Publish("a", []byte("only-a")) b.Publish(topicA, []byte("only-a"))
assert.Equal(t, []byte("only-a"), recvWithin(t, chA, recvTimeout)) assert.Equal(t, []byte("only-a"), recvWithin(t, chA, recvTimeout))
assertQuiet(t, chB, 100*time.Millisecond) // topic b must stay silent assertQuiet(t, chB, 100*time.Millisecond) // topic b must stay silent
}) })
t.Run("CancelStopsDelivery", func(t *testing.T) { t.Run("CancelStopsDelivery", func(t *testing.T) {
b := newBroker(t) b := newBroker(t)
ch, cancel := b.Subscribe("topic") ch, cancel := b.Subscribe(t.Name())
cancel() cancel()
_, ok := <-ch _, ok := <-ch
assert.False(t, ok, "channel must be closed after cancel") assert.False(t, ok, "channel must be closed after cancel")
b.Publish("topic", []byte("after-cancel")) // must not panic or block b.Publish(t.Name(), []byte("after-cancel")) // must not panic or block
}) })
t.Run("CancelIsIdempotent", func(t *testing.T) { t.Run("CancelIsIdempotent", func(t *testing.T) {
b := newBroker(t) b := newBroker(t)
_, cancel := b.Subscribe("topic") _, cancel := b.Subscribe(t.Name())
cancel() cancel()
assert.NotPanics(t, cancel, "cancel must be safe to call more than once") assert.NotPanics(t, cancel, "cancel must be safe to call more than once")
}) })
@@ -84,17 +89,18 @@ func testBrokerBasic(t *testing.T, newBroker newBrokerFunc, recvTimeout time.Dur
// the backend's own test file. // the backend's own test file.
t.Run("HasTopicSubscribers", func(t *testing.T) { t.Run("HasTopicSubscribers", func(t *testing.T) {
b := newBroker(t) b := newBroker(t)
_, cancel := b.Subscribe("topic") _, cancel := b.Subscribe(t.Name())
defer cancel() defer cancel()
assert.True(t, b.HasTopicSubscribers("topic"), "must report subscribers while one is live") assert.True(t, b.HasTopicSubscribers(t.Name()), "must report subscribers while one is live")
}) })
t.Run("SlowSubscriberDropsWithoutBlocking", func(t *testing.T) { t.Run("SlowSubscriberDropsWithoutBlocking", func(t *testing.T) {
b := newBroker(t) b := newBroker(t)
_, cancelSlow := b.Subscribe("topic") // never drained, buffer overflows _, cancelSlow := b.Subscribe(t.Name()) // never drained, buffer overflows
defer cancelSlow() defer cancelSlow()
fast, cancelFast := b.Subscribe("topic") fast, cancelFast := b.Subscribe(t.Name())
defer cancelFast() defer cancelFast()
waitSubscribed(t, b, t.Name())
// Drain fast concurrently so it keeps up while slow's buffer fills. // Drain fast concurrently so it keeps up while slow's buffer fills.
got := make(chan struct{}, 1) got := make(chan struct{}, 1)
@@ -122,7 +128,7 @@ func testBrokerBasic(t *testing.T, newBroker newBrokerFunc, recvTimeout time.Dur
published := make(chan struct{}) published := make(chan struct{})
go func() { go func() {
for i := range n { for i := range n {
b.Publish("topic", []byte{byte(i)}) b.Publish(t.Name(), []byte{byte(i)})
} }
close(published) close(published)
}() }()
@@ -141,6 +147,23 @@ func testBrokerBasic(t *testing.T, newBroker newBrokerFunc, recvTimeout time.Dur
}) })
} }
// waitSubscribed blocks until Redis registers the subscription, since
// RedisBroker.Subscribe returns before the server acks SUBSCRIBE and a publish
// right after it would race it. Topics are per-scenario, so any subscriber is
// this one. No-op for MemoryBroker, which registers synchronously.
func waitSubscribed(t *testing.T, b Broker, topic string) {
t.Helper()
rb, ok := b.(*RedisBroker)
if !ok {
return
}
channel := redisChannelForTopic(topic)
require.Eventually(t, func() bool {
res, err := rb.client.PubSubNumSub(t.Context(), channel).Result()
return err == nil && res[channel] > 0
}, 5*time.Second, 10*time.Millisecond, "redis did not register a subscriber on %q", topic)
}
// recvWithin returns the next message or fails if none arrives before timeout. // recvWithin returns the next message or fails if none arrives before timeout.
func recvWithin(t *testing.T, ch <-chan []byte, timeout time.Duration) []byte { func recvWithin(t *testing.T, ch <-chan []byte, timeout time.Duration) []byte {
t.Helper() t.Helper()
+4 -2
View File
@@ -94,8 +94,10 @@ func (b *RedisBroker) Subscribe(topic string) (<-chan []byte, func()) {
// other Subscribe/cancel calls aren't blocked on the network round-trip. // other Subscribe/cancel calls aren't blocked on the network round-trip.
// graceful.ShutdownContext so the reader loop dies cleanly on Gitea // graceful.ShutdownContext so the reader loop dies cleanly on Gitea
// shutdown even if every local subscriber has already cancelled. // shutdown even if every local subscriber has already cancelled.
// readLoop consumes the SUBSCRIBE ack; don't wait for it here, a direct // readLoop consumes the SUBSCRIBE ack; don't wait for it here, that would put
// ps.Receive blocks for its whole timeout instead of returning on the ack. // a Redis round-trip in the WebSocket handshake to close a sub-millisecond
// window in which a publish is missed - harmless, since a client receives
// nothing at all until its handshake completes.
ctx, cancelCtx := context.WithCancel(graceful.GetManager().ShutdownContext()) ctx, cancelCtx := context.WithCancel(graceful.GetManager().ShutdownContext())
ps := b.client.Subscribe(ctx, redisChannelForTopic(topic)) ps := b.client.Subscribe(ctx, redisChannelForTopic(topic))
b.mu.Lock() b.mu.Lock()
+5 -4
View File
@@ -39,14 +39,14 @@ func TestRedisBroker(t *testing.T) {
// state once the last local subscriber cancels. // state once the last local subscriber cancels.
t.Run("CancelCleansTopicState", func(t *testing.T) { t.Run("CancelCleansTopicState", func(t *testing.T) {
b := newBroker(t).(*RedisBroker) b := newBroker(t).(*RedisBroker)
ch, cancel := b.Subscribe("topic") ch, cancel := b.Subscribe(t.Name())
cancel() cancel()
_, ok := <-ch _, ok := <-ch
assert.False(t, ok, "channel must be closed after cancel") assert.False(t, ok, "channel must be closed after cancel")
b.mu.RLock() b.mu.RLock()
_, present := b.topics["topic"] _, present := b.topics[t.Name()]
b.mu.RUnlock() b.mu.RUnlock()
assert.False(t, present, "topic state must be removed after last subscriber cancels") assert.False(t, present, "topic state must be removed after last subscriber cancels")
}) })
@@ -56,10 +56,11 @@ func TestRedisBroker(t *testing.T) {
t.Run("CrossBroker", func(t *testing.T) { t.Run("CrossBroker", func(t *testing.T) {
publisher, subscriber := newBroker(t), newBroker(t) publisher, subscriber := newBroker(t), newBroker(t)
ch, cancel := subscriber.Subscribe("topic") ch, cancel := subscriber.Subscribe(t.Name())
defer cancel() defer cancel()
waitSubscribed(t, subscriber, t.Name())
publisher.Publish("topic", []byte("cross-process")) publisher.Publish(t.Name(), []byte("cross-process"))
select { select {
case msg := <-ch: case msg := <-ch: