mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-14 14:01:26 +00:00
fe31fb1e06
- Remove Deadcode - Simplify Code - Drop error only on purpose
104 lines
2.1 KiB
Go
104 lines
2.1 KiB
Go
package pubsub
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPubsub(t *testing.T) {
|
|
var (
|
|
wg sync.WaitGroup
|
|
|
|
testTopic = "test"
|
|
testMessage = Message{
|
|
Data: []byte("test"),
|
|
}
|
|
)
|
|
|
|
ctx, cancel := context.WithCancel(
|
|
context.Background(),
|
|
)
|
|
|
|
broker := New()
|
|
assert.NoError(t, broker.Create(ctx, testTopic))
|
|
go func() {
|
|
assert.NoError(t, broker.Subscribe(ctx, testTopic, func(message Message) { wg.Done() }))
|
|
}()
|
|
go func() {
|
|
assert.NoError(t, broker.Subscribe(ctx, testTopic, func(message Message) { wg.Done() }))
|
|
}()
|
|
|
|
<-time.After(500 * time.Millisecond)
|
|
|
|
if _, ok := broker.(*publisher).topics[testTopic]; !ok {
|
|
t.Errorf("Expect topic registered with publisher")
|
|
}
|
|
|
|
wg.Add(2)
|
|
go func() {
|
|
assert.NoError(t, broker.Publish(ctx, testTopic, testMessage))
|
|
}()
|
|
|
|
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()
|
|
assert.NoError(t, broker.Create(context.Background(), testTopic))
|
|
go func() {
|
|
assert.NoError(t, broker.Subscribe(context.Background(), testTopic, testCallback))
|
|
wg.Done()
|
|
}()
|
|
|
|
<-time.After(500 * time.Millisecond)
|
|
|
|
if _, ok := broker.(*publisher).topics[testTopic]; !ok {
|
|
t.Errorf("Expect topic registered with publisher")
|
|
}
|
|
|
|
wg.Add(1)
|
|
assert.NoError(t, broker.Remove(context.Background(), testTopic))
|
|
wg.Wait()
|
|
|
|
if _, ok := broker.(*publisher).topics[testTopic]; ok {
|
|
t.Errorf("Expect topic removed from publisher")
|
|
}
|
|
}
|