Don't start test until receiving goroutine is ready.

This commit is contained in:
Joachim Bauch 2021-06-08 09:44:53 +02:00
parent 6c72d3f2bc
commit 60b11b1ba9
No known key found for this signature in database
GPG Key ID: 77C1D22D53E15F02
1 changed files with 3 additions and 0 deletions

View File

@ -65,8 +65,10 @@ func testNatsClient_Subscribe(t *testing.T, client NatsClient) {
received := int32(0) received := int32(0)
max := int32(20) max := int32(20)
ready := make(chan bool)
quit := make(chan bool) quit := make(chan bool)
go func() { go func() {
ready <- true
for { for {
select { select {
case <-dest: case <-dest:
@ -84,6 +86,7 @@ func testNatsClient_Subscribe(t *testing.T, client NatsClient) {
} }
} }
}() }()
<-ready
for i := int32(0); i < max; i++ { for i := int32(0); i < max; i++ {
if err := client.Publish("foo", []byte("hello")); err != nil { if err := client.Publish("foo", []byte("hello")); err != nil {
t.Error(err) t.Error(err)