-
-
Notifications
You must be signed in to change notification settings - Fork 296
/
subscriberlist_test.go
43 lines (33 loc) · 1.18 KB
/
subscriberlist_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package mercure
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"go.uber.org/zap"
)
func TestEncode(t *testing.T) {
e := encode([]string{"Foo\x00\x01Bar\x00Baz\x01", "\x01bar"}, true)
assert.Equal(t, "1\x01\x00\x01bar\x01Foo\x00\x00\x00\x01Bar\x00\x00Baz\x00\x01", e)
}
func TestDecode(t *testing.T) {
topics, private := decode("1\x01\x00\x01bar\x01Foo\x00\x00\x00\x01Bar\x00\x00Baz\x00\x01")
assert.Equal(t, []string{"\x01bar", "Foo\x00\x01Bar\x00Baz\x01"}, topics)
assert.True(t, private)
}
func BenchmarkSubscriberList(b *testing.B) {
logger := zap.NewNop()
tss := &TopicSelectorStore{}
l := NewSubscriberList(100)
for i := 0; i < 100; i++ {
s := NewLocalSubscriber("", logger, tss)
t := fmt.Sprintf("https://example.com/%d", i%10)
s.SetTopics([]string{"https://example.org/foo", t}, []string{"https://example.net/bar", t})
l.Add(s)
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
assert.NotEmpty(b, l.MatchAny(&Update{Topics: []string{"https://example.org/foo"}}))
assert.Empty(b, l.MatchAny(&Update{Topics: []string{"https://example.org/baz"}}))
assert.NotEmpty(b, l.MatchAny(&Update{Topics: []string{"https://example.com/8"}, Private: false}))
}
}