test: broadcast (#94)

This commit is contained in:
Richard Ramos 2021-10-20 14:43:51 -04:00 committed by GitHub
parent 6f8e86b667
commit 68fe29c56f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,46 @@
package node
import (
"sync"
"testing"
"github.com/status-im/go-waku/waku/v2/protocol"
"github.com/stretchr/testify/require"
)
// Adapted from https://github.com/dustin/go-broadcast/commit/f664265f5a662fb4d1df7f3533b1e8d0e0277120
// by Dustin Sallings (c) 2013, which was released under MIT license
func TestBroadcast(t *testing.T) {
wg := sync.WaitGroup{}
b := NewBroadcaster(100)
defer b.Close()
for i := 0; i < 5; i++ {
wg.Add(1)
cch := make(chan *protocol.Envelope)
b.Register(cch)
go func() {
defer wg.Done()
defer b.Unregister(cch)
<-cch
}()
}
env := new(protocol.Envelope)
b.Submit(env)
wg.Wait()
}
func TestBroadcastCleanup(t *testing.T) {
b := NewBroadcaster(100)
b.Register(make(chan *protocol.Envelope))
err := b.Close()
require.NoError(t, err)
}