Skip to content
This repository was archived by the owner on Jun 19, 2023. It is now read-only.

fix(test): fix a flaky pubsub test #45

Merged
merged 1 commit into from
Sep 27, 2019
Merged
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
16 changes: 15 additions & 1 deletion tests/pubsub.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,20 @@ func (tp *TestSuite) TestBasicPubSub(t *testing.T) {
t.Fatal(err)
}

done := make(chan struct{})
go func() {
defer close(done)

ticker := time.NewTicker(100 * time.Millisecond)
defer ticker.Stop()

for {
err := apis[1].PubSub().Publish(ctx, "testch", []byte("hello world"))
if err != nil {
switch err {
case nil:
case context.Canceled:
return
default:
t.Error(err)
cancel()
return
Expand All @@ -53,6 +60,13 @@ func (tp *TestSuite) TestBasicPubSub(t *testing.T) {
}
}()

// Wait for the sender to finish before we return.
// Otherwise, we can get random errors as publish fails.
defer func() {
cancel()
<-done
}()

m, err := sub.Next(ctx)
if err != nil {
t.Fatal(err)
Expand Down