mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +00:00
45 lines
806 B
Go
45 lines
806 B
Go
|
package routing
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"sync"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestEventsCancel(t *testing.T) {
|
||
|
ctx, cancel := context.WithCancel(context.Background())
|
||
|
ctx, events := RegisterForQueryEvents(ctx)
|
||
|
goch := make(chan struct{})
|
||
|
var wg sync.WaitGroup
|
||
|
wg.Add(2)
|
||
|
go func() {
|
||
|
defer wg.Done()
|
||
|
for i := 0; i < 100; i++ {
|
||
|
PublishQueryEvent(ctx, &QueryEvent{Extra: fmt.Sprint(i)})
|
||
|
}
|
||
|
close(goch)
|
||
|
for i := 100; i < 1000; i++ {
|
||
|
PublishQueryEvent(ctx, &QueryEvent{Extra: fmt.Sprint(i)})
|
||
|
}
|
||
|
}()
|
||
|
go func() {
|
||
|
defer wg.Done()
|
||
|
i := 0
|
||
|
for e := range events {
|
||
|
if i < 100 {
|
||
|
if e.Extra != fmt.Sprint(i) {
|
||
|
t.Errorf("expected %d, got %s", i, e.Extra)
|
||
|
}
|
||
|
}
|
||
|
i++
|
||
|
}
|
||
|
if i < 100 {
|
||
|
t.Errorf("expected at least 100 events, got %d", i)
|
||
|
}
|
||
|
}()
|
||
|
<-goch
|
||
|
cancel()
|
||
|
wg.Wait()
|
||
|
}
|