2022-04-17 16:25:42 +03:00
|
|
|
package broker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFromContext(t *testing.T) {
|
|
|
|
ctx := context.WithValue(context.TODO(), brokerKey{}, NewBroker())
|
|
|
|
c, ok := FromContext(ctx)
|
|
|
|
if c == nil || !ok {
|
|
|
|
t.Fatal("FromContext not works")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-03 15:51:08 +03:00
|
|
|
func TestFromNilContext(t *testing.T) {
|
|
|
|
// nolint: staticcheck
|
|
|
|
c, ok := FromContext(nil)
|
|
|
|
if ok || c != nil {
|
|
|
|
t.Fatal("FromContext not works")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-17 16:25:42 +03:00
|
|
|
func TestNewContext(t *testing.T) {
|
|
|
|
ctx := NewContext(context.TODO(), NewBroker())
|
2022-05-03 15:51:08 +03:00
|
|
|
c, ok := FromContext(ctx)
|
|
|
|
if c == nil || !ok {
|
|
|
|
t.Fatal("NewContext not works")
|
|
|
|
}
|
|
|
|
}
|
2022-04-17 16:25:42 +03:00
|
|
|
|
2022-05-03 15:51:08 +03:00
|
|
|
func TestNewNilContext(t *testing.T) {
|
|
|
|
// nolint: staticcheck
|
|
|
|
ctx := NewContext(nil, NewBroker())
|
2022-04-17 16:25:42 +03:00
|
|
|
c, ok := FromContext(ctx)
|
|
|
|
if c == nil || !ok {
|
|
|
|
t.Fatal("NewContext not works")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetSubscribeOption(t *testing.T) {
|
|
|
|
type key struct{}
|
|
|
|
o := SetSubscribeOption(key{}, "test")
|
|
|
|
opts := &SubscribeOptions{}
|
|
|
|
o(opts)
|
|
|
|
|
|
|
|
if v, ok := opts.Context.Value(key{}).(string); !ok || v == "" {
|
|
|
|
t.Fatal("SetSubscribeOption not works")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetPublishOption(t *testing.T) {
|
|
|
|
type key struct{}
|
|
|
|
o := SetPublishOption(key{}, "test")
|
|
|
|
opts := &PublishOptions{}
|
|
|
|
o(opts)
|
|
|
|
|
|
|
|
if v, ok := opts.Context.Value(key{}).(string); !ok || v == "" {
|
|
|
|
t.Fatal("SetPublishOption not works")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetOption(t *testing.T) {
|
|
|
|
type key struct{}
|
|
|
|
o := SetOption(key{}, "test")
|
|
|
|
opts := &Options{}
|
|
|
|
o(opts)
|
|
|
|
|
|
|
|
if v, ok := opts.Context.Value(key{}).(string); !ok || v == "" {
|
|
|
|
t.Fatal("SetOption not works")
|
|
|
|
}
|
|
|
|
}
|