You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
624 B
31 lines
624 B
package grpc
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/go-kratos/kratos/v2/selector"
|
|
"github.com/stretchr/testify/assert"
|
|
"google.golang.org/grpc/metadata"
|
|
)
|
|
|
|
func TestTrailer(t *testing.T) {
|
|
trailer := Trailer(metadata.New(map[string]string{"a": "b"}))
|
|
assert.Equal(t, "b", trailer.Get("a"))
|
|
assert.Equal(t, "", trailer.Get("3"))
|
|
}
|
|
|
|
func TestBalancerName(t *testing.T) {
|
|
o := &clientOptions{}
|
|
|
|
WithBalancerName("p2c")(o)
|
|
assert.Equal(t, "p2c", o.balancerName)
|
|
}
|
|
|
|
func TestFilters(t *testing.T) {
|
|
o := &clientOptions{}
|
|
|
|
WithNodeFilter(func(selector.Node) bool {
|
|
return true
|
|
})(o)
|
|
assert.Equal(t, 1, len(o.filters))
|
|
}
|
|
|