congqixia cb7f2fa6fd
enhance: Use v2 package name for pkg module (#39990)
Related to #39095

https://go.dev/doc/modules/version-numbers

Update pkg version according to golang dep version convention

---------

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2025-02-22 23:15:58 +08:00

67 lines
1.7 KiB
Go

package contextutil
import (
"context"
"encoding/base64"
"testing"
"github.com/stretchr/testify/assert"
"google.golang.org/grpc/metadata"
"github.com/milvus-io/milvus/pkg/v2/proto/streamingpb"
)
func TestWithCreateConsumer(t *testing.T) {
req := &streamingpb.CreateConsumerRequest{
Pchannel: &streamingpb.PChannelInfo{
Name: "test",
Term: 1,
},
}
ctx := WithCreateConsumer(context.Background(), req)
md, ok := metadata.FromOutgoingContext(ctx)
assert.True(t, ok)
assert.NotNil(t, md)
ctx = metadata.NewIncomingContext(context.Background(), md)
req2, err := GetCreateConsumer(ctx)
assert.Nil(t, err)
assert.Equal(t, req.Pchannel.Name, req2.Pchannel.Name)
assert.Equal(t, req.Pchannel.Term, req2.Pchannel.Term)
// panic case.
assert.NotPanics(t, func() { WithCreateConsumer(context.Background(), nil) })
}
func TestGetCreateConsumer(t *testing.T) {
// empty context.
req, err := GetCreateConsumer(context.Background())
assert.Error(t, err)
assert.Nil(t, req)
// key not exist.
md := metadata.New(map[string]string{})
req, err = GetCreateConsumer(metadata.NewIncomingContext(context.Background(), md))
assert.Error(t, err)
assert.Nil(t, req)
// invalid value.
md = metadata.New(map[string]string{
createConsumerKey: "invalid",
})
req, err = GetCreateConsumer(metadata.NewIncomingContext(context.Background(), md))
assert.Error(t, err)
assert.Nil(t, req)
// unmarshal error.
md = metadata.New(map[string]string{
createConsumerKey: base64.StdEncoding.EncodeToString([]byte("invalid")),
})
req, err = GetCreateConsumer(metadata.NewIncomingContext(context.Background(), md))
assert.Error(t, err)
assert.Nil(t, req)
// normal case is tested on TestWithCreateConsumer.
}