2019-04-06 13:44:04 +00:00
|
|
|
package pubsub
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
"time"
|
2021-11-23 14:36:52 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2019-04-06 13:44:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestPubsub(t *testing.T) {
|
|
|
|
var (
|
|
|
|
wg sync.WaitGroup
|
|
|
|
|
|
|
|
testTopic = "test"
|
|
|
|
testMessage = Message{
|
|
|
|
Data: []byte("test"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
ctx, cancel := context.WithCancel(
|
|
|
|
context.Background(),
|
|
|
|
)
|
|
|
|
|
|
|
|
broker := New()
|
2021-11-23 14:36:52 +00:00
|
|
|
assert.NoError(t, broker.Create(ctx, testTopic))
|
2019-04-06 13:44:04 +00:00
|
|
|
go func() {
|
2021-11-23 14:36:52 +00:00
|
|
|
assert.NoError(t, broker.Subscribe(ctx, testTopic, func(message Message) { wg.Done() }))
|
2019-04-06 13:44:04 +00:00
|
|
|
}()
|
|
|
|
go func() {
|
2021-11-23 14:36:52 +00:00
|
|
|
assert.NoError(t, broker.Subscribe(ctx, testTopic, func(message Message) { wg.Done() }))
|
2019-04-06 13:44:04 +00:00
|
|
|
}()
|
|
|
|
|
2019-06-24 07:25:21 +00:00
|
|
|
<-time.After(500 * time.Millisecond)
|
2019-04-06 13:44:04 +00:00
|
|
|
|
|
|
|
if _, ok := broker.(*publisher).topics[testTopic]; !ok {
|
|
|
|
t.Errorf("Expect topic registered with publisher")
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Add(2)
|
|
|
|
go func() {
|
2021-11-23 14:36:52 +00:00
|
|
|
assert.NoError(t, broker.Publish(ctx, testTopic, testMessage))
|
2019-04-06 13:44:04 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
cancel()
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPublishNotFound(t *testing.T) {
|
|
|
|
var (
|
|
|
|
testTopic = "test"
|
|
|
|
testMessage = Message{
|
|
|
|
Data: []byte("test"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
broker := New()
|
|
|
|
err := broker.Publish(context.Background(), testTopic, testMessage)
|
|
|
|
if err != ErrNotFound {
|
|
|
|
t.Errorf("Expect Not Found error when topic does not exist")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSubscribeNotFound(t *testing.T) {
|
|
|
|
var (
|
|
|
|
testTopic = "test"
|
|
|
|
testCallback = func(message Message) {}
|
|
|
|
)
|
|
|
|
broker := New()
|
|
|
|
err := broker.Subscribe(context.Background(), testTopic, testCallback)
|
|
|
|
if err != ErrNotFound {
|
|
|
|
t.Errorf("Expect Not Found error when topic does not exist")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSubscriptionClosed(t *testing.T) {
|
|
|
|
var (
|
|
|
|
wg sync.WaitGroup
|
|
|
|
|
|
|
|
testTopic = "test"
|
|
|
|
testCallback = func(Message) {}
|
|
|
|
)
|
|
|
|
|
|
|
|
broker := New()
|
2021-11-23 14:36:52 +00:00
|
|
|
assert.NoError(t, broker.Create(context.Background(), testTopic))
|
2019-04-06 13:44:04 +00:00
|
|
|
go func() {
|
2021-11-23 14:36:52 +00:00
|
|
|
assert.NoError(t, broker.Subscribe(context.Background(), testTopic, testCallback))
|
2019-04-06 13:44:04 +00:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
|
2019-06-24 07:25:21 +00:00
|
|
|
<-time.After(500 * time.Millisecond)
|
2019-04-06 13:44:04 +00:00
|
|
|
|
|
|
|
if _, ok := broker.(*publisher).topics[testTopic]; !ok {
|
|
|
|
t.Errorf("Expect topic registered with publisher")
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Add(1)
|
2021-11-23 14:36:52 +00:00
|
|
|
assert.NoError(t, broker.Remove(context.Background(), testTopic))
|
2019-04-06 13:44:04 +00:00
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
if _, ok := broker.(*publisher).topics[testTopic]; ok {
|
|
|
|
t.Errorf("Expect topic removed from publisher")
|
|
|
|
}
|
|
|
|
}
|