2022-01-18 03:23:29 +00:00
|
|
|
package events
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
. "github.com/franela/goblin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewBus(t *testing.T) {
|
|
|
|
g := Goblin(t)
|
|
|
|
|
2022-02-03 02:02:10 +00:00
|
|
|
g.Describe("Events", func() {
|
|
|
|
var bus *Bus
|
|
|
|
g.BeforeEach(func() {
|
|
|
|
bus = NewBus()
|
2022-01-18 03:23:29 +00:00
|
|
|
})
|
|
|
|
|
2022-02-03 02:02:10 +00:00
|
|
|
g.Describe("NewBus", func() {
|
|
|
|
g.It("is not nil", func() {
|
|
|
|
g.Assert(bus).IsNotNil("Bus expected to not be nil")
|
|
|
|
})
|
2022-01-18 03:23:29 +00:00
|
|
|
})
|
|
|
|
|
2022-02-03 02:02:10 +00:00
|
|
|
g.Describe("Publish", func() {
|
|
|
|
const topic = "test"
|
|
|
|
const message = "this is a test message!"
|
2022-01-18 03:23:29 +00:00
|
|
|
|
2022-02-03 02:02:10 +00:00
|
|
|
g.It("publishes message", func() {
|
|
|
|
bus := NewBus()
|
2022-01-18 03:23:29 +00:00
|
|
|
|
2022-02-03 02:02:10 +00:00
|
|
|
listener := make(chan []byte)
|
|
|
|
bus.On(listener)
|
2022-01-18 03:23:29 +00:00
|
|
|
|
2022-02-03 02:02:10 +00:00
|
|
|
done := make(chan struct{}, 1)
|
|
|
|
go func() {
|
2022-01-18 03:23:29 +00:00
|
|
|
select {
|
2022-02-03 02:02:10 +00:00
|
|
|
case v := <-listener:
|
|
|
|
m := MustDecode(v)
|
2022-01-18 03:23:29 +00:00
|
|
|
g.Assert(m.Topic).Equal(topic)
|
|
|
|
g.Assert(m.Data).Equal(message)
|
|
|
|
case <-time.After(1 * time.Second):
|
2022-02-03 02:02:10 +00:00
|
|
|
g.Fail("listener did not receive message in time")
|
|
|
|
}
|
|
|
|
done <- struct{}{}
|
|
|
|
}()
|
|
|
|
bus.Publish(topic, message)
|
|
|
|
<-done
|
|
|
|
|
|
|
|
// Cleanup
|
|
|
|
bus.Off(listener)
|
|
|
|
})
|
|
|
|
|
|
|
|
g.It("publishes message to all listeners", func() {
|
|
|
|
bus := NewBus()
|
|
|
|
|
|
|
|
listener := make(chan []byte)
|
|
|
|
listener2 := make(chan []byte)
|
|
|
|
listener3 := make(chan []byte)
|
|
|
|
bus.On(listener)
|
|
|
|
bus.On(listener2)
|
|
|
|
bus.On(listener3)
|
|
|
|
|
|
|
|
done := make(chan struct{}, 1)
|
|
|
|
go func() {
|
|
|
|
for i := 0; i < 3; i++ {
|
|
|
|
select {
|
|
|
|
case v := <-listener:
|
|
|
|
m := MustDecode(v)
|
|
|
|
g.Assert(m.Topic).Equal(topic)
|
|
|
|
g.Assert(m.Data).Equal(message)
|
|
|
|
case v := <-listener2:
|
|
|
|
m := MustDecode(v)
|
|
|
|
g.Assert(m.Topic).Equal(topic)
|
|
|
|
g.Assert(m.Data).Equal(message)
|
|
|
|
case v := <-listener3:
|
|
|
|
m := MustDecode(v)
|
|
|
|
g.Assert(m.Topic).Equal(topic)
|
|
|
|
g.Assert(m.Data).Equal(message)
|
|
|
|
case <-time.After(1 * time.Second):
|
|
|
|
g.Fail("all listeners did not receive the message in time")
|
|
|
|
i = 3
|
|
|
|
}
|
2022-01-18 03:23:29 +00:00
|
|
|
}
|
|
|
|
|
2022-02-03 02:02:10 +00:00
|
|
|
done <- struct{}{}
|
|
|
|
}()
|
|
|
|
bus.Publish(topic, message)
|
|
|
|
<-done
|
2022-01-18 03:23:29 +00:00
|
|
|
|
2022-02-03 02:02:10 +00:00
|
|
|
// Cleanup
|
|
|
|
bus.Off(listener)
|
|
|
|
bus.Off(listener2)
|
|
|
|
bus.Off(listener3)
|
|
|
|
})
|
2022-01-18 03:23:29 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|