2019-11-16 16:06:34 +01:00
|
|
|
package event
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/leandro-lugaresi/hub"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSharedHub(t *testing.T) {
|
|
|
|
h := SharedHub()
|
|
|
|
|
|
|
|
assert.IsType(t, &hub.Hub{}, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPublishSubscribe(t *testing.T) {
|
|
|
|
s := Subscribe("foo.bar")
|
|
|
|
|
|
|
|
assert.IsType(t, hub.Subscription{}, s)
|
|
|
|
|
|
|
|
Publish("foo.bar", Data{"id": 13})
|
|
|
|
|
|
|
|
msg := <-s.Receiver
|
|
|
|
|
2019-12-11 14:10:20 +01:00
|
|
|
t.Logf("receive msg with topic %s: %v\n", msg.Name, msg.Fields)
|
2019-11-16 16:06:34 +01:00
|
|
|
|
|
|
|
assert.Equal(t, "foo.bar", msg.Name)
|
|
|
|
assert.Equal(t, Data{"id": 13}, msg.Fields)
|
|
|
|
|
|
|
|
Unsubscribe(s)
|
|
|
|
}
|
2020-04-29 12:23:09 +02:00
|
|
|
|
|
|
|
func TestError(t *testing.T) {
|
|
|
|
s := Subscribe("notify.error")
|
|
|
|
|
|
|
|
assert.IsType(t, hub.Subscription{}, s)
|
|
|
|
|
|
|
|
Error("error message")
|
|
|
|
msg := <-s.Receiver
|
|
|
|
|
|
|
|
assert.Equal(t, "notify.error", msg.Name)
|
|
|
|
assert.Equal(t, Data{"msg": "error message"}, msg.Fields)
|
|
|
|
|
|
|
|
Unsubscribe(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSuccess(t *testing.T) {
|
|
|
|
s := Subscribe("notify.success")
|
|
|
|
|
|
|
|
assert.IsType(t, hub.Subscription{}, s)
|
|
|
|
|
|
|
|
Success("success message")
|
|
|
|
msg := <-s.Receiver
|
|
|
|
|
|
|
|
assert.Equal(t, "notify.success", msg.Name)
|
|
|
|
assert.Equal(t, Data{"msg": "success message"}, msg.Fields)
|
|
|
|
|
|
|
|
Unsubscribe(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestInfo(t *testing.T) {
|
|
|
|
s := Subscribe("notify.info")
|
|
|
|
|
|
|
|
assert.IsType(t, hub.Subscription{}, s)
|
|
|
|
|
|
|
|
Info("info message")
|
|
|
|
msg := <-s.Receiver
|
|
|
|
|
|
|
|
assert.Equal(t, "notify.info", msg.Name)
|
|
|
|
assert.Equal(t, Data{"msg": "info message"}, msg.Fields)
|
|
|
|
|
|
|
|
Unsubscribe(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWarning(t *testing.T) {
|
|
|
|
s := Subscribe("notify.warning")
|
|
|
|
|
|
|
|
assert.IsType(t, hub.Subscription{}, s)
|
|
|
|
|
|
|
|
Warning("warning message")
|
|
|
|
msg := <-s.Receiver
|
|
|
|
|
|
|
|
assert.Equal(t, "notify.warning", msg.Name)
|
|
|
|
assert.Equal(t, Data{"msg": "warning message"}, msg.Fields)
|
|
|
|
|
|
|
|
Unsubscribe(s)
|
|
|
|
}
|