2020-06-02 22:37:10 +00:00
|
|
|
package stream
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
time "time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2020-07-08 04:31:22 +00:00
|
|
|
func noopUnSub() {}
|
|
|
|
|
2020-06-02 22:37:10 +00:00
|
|
|
func TestSubscription(t *testing.T) {
|
2020-07-06 21:29:45 +00:00
|
|
|
eb := newEventBuffer()
|
2020-06-02 22:37:10 +00:00
|
|
|
|
|
|
|
index := uint64(100)
|
|
|
|
|
|
|
|
startHead := eb.Head()
|
|
|
|
|
|
|
|
// Start with an event in the buffer
|
2020-06-05 23:36:31 +00:00
|
|
|
publishTestEvent(index, eb, "test")
|
2020-06-02 22:37:10 +00:00
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
// Create a subscription
|
2020-06-05 23:36:31 +00:00
|
|
|
req := &SubscribeRequest{
|
2020-07-07 00:04:24 +00:00
|
|
|
Topic: testTopic,
|
2020-06-02 22:37:10 +00:00
|
|
|
Key: "test",
|
|
|
|
}
|
2020-07-08 04:31:22 +00:00
|
|
|
sub := newSubscription(req, startHead, noopUnSub)
|
2020-06-02 22:37:10 +00:00
|
|
|
|
|
|
|
// First call to sub.Next should return our published event immediately
|
|
|
|
start := time.Now()
|
2020-07-08 04:31:22 +00:00
|
|
|
got, err := sub.Next(ctx)
|
2020-06-02 22:37:10 +00:00
|
|
|
elapsed := time.Since(start)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.True(t, elapsed < 200*time.Millisecond,
|
|
|
|
"Event should have been delivered immediately, took %s", elapsed)
|
|
|
|
require.Len(t, got, 1)
|
|
|
|
require.Equal(t, index, got[0].Index)
|
|
|
|
|
|
|
|
// Schedule an event publish in a while
|
|
|
|
index++
|
|
|
|
start = time.Now()
|
|
|
|
time.AfterFunc(200*time.Millisecond, func() {
|
2020-06-05 23:36:31 +00:00
|
|
|
publishTestEvent(index, eb, "test")
|
2020-06-02 22:37:10 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// Next call should block until event is delivered
|
2020-07-08 04:31:22 +00:00
|
|
|
got, err = sub.Next(ctx)
|
2020-06-02 22:37:10 +00:00
|
|
|
elapsed = time.Since(start)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.True(t, elapsed > 200*time.Millisecond,
|
|
|
|
"Event should have been delivered after blocking 200ms, took %s", elapsed)
|
|
|
|
require.True(t, elapsed < 2*time.Second,
|
|
|
|
"Event should have been delivered after short time, took %s", elapsed)
|
|
|
|
require.Len(t, got, 1)
|
|
|
|
require.Equal(t, index, got[0].Index)
|
|
|
|
|
|
|
|
// Event with wrong key should not be delivered. Deliver a good message right
|
|
|
|
// so we don't have to block test thread forever or cancel func yet.
|
|
|
|
index++
|
2020-06-05 23:36:31 +00:00
|
|
|
publishTestEvent(index, eb, "nope")
|
2020-06-02 22:37:10 +00:00
|
|
|
index++
|
2020-06-05 23:36:31 +00:00
|
|
|
publishTestEvent(index, eb, "test")
|
2020-06-02 22:37:10 +00:00
|
|
|
|
|
|
|
start = time.Now()
|
2020-07-08 04:31:22 +00:00
|
|
|
got, err = sub.Next(ctx)
|
2020-06-02 22:37:10 +00:00
|
|
|
elapsed = time.Since(start)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.True(t, elapsed < 200*time.Millisecond,
|
|
|
|
"Event should have been delivered immediately, took %s", elapsed)
|
|
|
|
require.Len(t, got, 1)
|
|
|
|
require.Equal(t, index, got[0].Index)
|
|
|
|
require.Equal(t, "test", got[0].Key)
|
|
|
|
|
|
|
|
// Cancelling the subscription context should unblock Next
|
|
|
|
start = time.Now()
|
|
|
|
time.AfterFunc(200*time.Millisecond, func() {
|
|
|
|
cancel()
|
|
|
|
})
|
|
|
|
|
2020-07-08 04:31:22 +00:00
|
|
|
_, err = sub.Next(ctx)
|
2020-06-02 22:37:10 +00:00
|
|
|
elapsed = time.Since(start)
|
|
|
|
require.Error(t, err)
|
|
|
|
require.True(t, elapsed > 200*time.Millisecond,
|
|
|
|
"Event should have been delivered after blocking 200ms, took %s", elapsed)
|
|
|
|
require.True(t, elapsed < 2*time.Second,
|
|
|
|
"Event should have been delivered after short time, took %s", elapsed)
|
|
|
|
}
|
|
|
|
|
2020-06-19 20:34:50 +00:00
|
|
|
func TestSubscription_Close(t *testing.T) {
|
2020-07-06 21:29:45 +00:00
|
|
|
eb := newEventBuffer()
|
2020-06-02 22:37:10 +00:00
|
|
|
|
|
|
|
index := uint64(100)
|
|
|
|
|
|
|
|
startHead := eb.Head()
|
|
|
|
|
|
|
|
// Start with an event in the buffer
|
2020-06-05 23:36:31 +00:00
|
|
|
publishTestEvent(index, eb, "test")
|
2020-06-02 22:37:10 +00:00
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
// Create a subscription
|
2020-06-05 23:36:31 +00:00
|
|
|
req := &SubscribeRequest{
|
2020-07-07 00:04:24 +00:00
|
|
|
Topic: testTopic,
|
2020-06-02 22:37:10 +00:00
|
|
|
Key: "test",
|
|
|
|
}
|
2020-07-08 04:31:22 +00:00
|
|
|
sub := newSubscription(req, startHead, noopUnSub)
|
2020-06-02 22:37:10 +00:00
|
|
|
|
|
|
|
// First call to sub.Next should return our published event immediately
|
|
|
|
start := time.Now()
|
2020-07-08 04:31:22 +00:00
|
|
|
got, err := sub.Next(ctx)
|
2020-06-02 22:37:10 +00:00
|
|
|
elapsed := time.Since(start)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.True(t, elapsed < 200*time.Millisecond,
|
|
|
|
"Event should have been delivered immediately, took %s", elapsed)
|
|
|
|
require.Len(t, got, 1)
|
|
|
|
require.Equal(t, index, got[0].Index)
|
|
|
|
|
2020-06-19 20:34:50 +00:00
|
|
|
// Schedule a Close simulating the server deciding this subscroption
|
2020-06-02 22:37:10 +00:00
|
|
|
// needs to reset (e.g. on ACL perm change).
|
|
|
|
start = time.Now()
|
|
|
|
time.AfterFunc(200*time.Millisecond, func() {
|
2020-07-08 04:31:22 +00:00
|
|
|
sub.forceClose()
|
2020-06-02 22:37:10 +00:00
|
|
|
})
|
|
|
|
|
2020-07-08 04:31:22 +00:00
|
|
|
_, err = sub.Next(ctx)
|
2020-06-02 22:37:10 +00:00
|
|
|
elapsed = time.Since(start)
|
|
|
|
require.Error(t, err)
|
2020-07-06 21:29:45 +00:00
|
|
|
require.Equal(t, ErrSubscriptionClosed, err)
|
2020-06-02 22:37:10 +00:00
|
|
|
require.True(t, elapsed > 200*time.Millisecond,
|
|
|
|
"Reload should have happened after blocking 200ms, took %s", elapsed)
|
|
|
|
require.True(t, elapsed < 2*time.Second,
|
|
|
|
"Reload should have been delivered after short time, took %s", elapsed)
|
|
|
|
}
|
|
|
|
|
2020-07-06 21:29:45 +00:00
|
|
|
func publishTestEvent(index uint64, b *eventBuffer, key string) {
|
2020-06-05 23:36:31 +00:00
|
|
|
// Don't care about the event payload for now just the semantics of publishing
|
2020-06-02 22:37:10 +00:00
|
|
|
// something. This is not a valid stream in the end-to-end streaming protocol
|
|
|
|
// but enough to test subscription mechanics.
|
2020-06-05 23:36:31 +00:00
|
|
|
e := Event{
|
2020-06-02 22:37:10 +00:00
|
|
|
Index: index,
|
2020-07-07 00:04:24 +00:00
|
|
|
Topic: testTopic,
|
2020-06-02 22:37:10 +00:00
|
|
|
Key: key,
|
|
|
|
}
|
2020-06-05 23:36:31 +00:00
|
|
|
b.Append([]Event{e})
|
2020-06-02 22:37:10 +00:00
|
|
|
}
|