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.
kratos/transport/grpc/codec_test.go

29 lines
607 B

package grpc
import (
"reflect"
"testing"
"google.golang.org/protobuf/types/known/structpb"
)
func TestCodec(t *testing.T) {
in, err := structpb.NewStruct(map[string]interface{}{"Golang": "Kratos"})
if err != nil {
t.Errorf("grpc codec create input data error:%v", err)
}
c := codec{}
data, err := c.Marshal(in)
if err != nil {
t.Errorf("grpc codec marshal error:%v", err)
}
out := &structpb.Struct{}
err = c.Unmarshal(data, out)
if err != nil {
t.Errorf("grpc codec unmarshal error:%v", err)
}
if !reflect.DeepEqual(in, out) {
t.Errorf("grpc codec want %v, got %v", in, out)
}
}