1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-02 01:34:17 -04:00
v2fly/common/signal/pubsub/pubsub_test.go

36 lines
451 B
Go
Raw Normal View History

2018-07-01 06:38:40 -04:00
package pubsub_test
import (
"testing"
. "v2ray.com/core/common/signal/pubsub"
. "v2ray.com/ext/assert"
)
func TestPubsub(t *testing.T) {
assert := With(t)
service := NewService()
sub := service.Subscribe("a")
service.Publish("a", 1)
select {
case v := <-sub.Wait():
assert(v.(int), Equals, 1)
default:
t.Fail()
}
sub.Close()
service.Publish("a", 2)
select {
case <-sub.Wait():
t.Fail()
default:
}
2018-07-01 13:30:05 -04:00
service.Cleanup()
2018-07-01 06:38:40 -04:00
}