如何在 Go 语言测试用例中发送 google.protobuf.Struct 数据?

How to send google.protobuf.Struct data in a GoLang test case?

我正在使用 GRPC/proto-buffers 在 GoLang 中编写我的第一个 API 端点。我对 GoLang 很陌生。 下面是我正在为我的测试用例编写的文件

package my_package

import (
    "context"
    "testing"

    "github.com/stretchr/testify/require"

    "google.golang.org/protobuf/types/known/structpb"
    "github.com/MyTeam/myproject/cmd/eventstream/setup"
    v1handler "github.com/MyTeam/myproject/internal/handlers/myproject/v1"
    v1interface "github.com/MyTeam/myproject/proto/.gen/go/myteam/myproject/v1"
)

func TestEndpoint(t *testing.T) {
    conf := &setup.Config{}

    // Initialize our API handlers
    myhandler := v1handler.New(&v1handler.Config{})

    t.Run("Success", func(t *testing.T) {

        res, err := myhandler.Endpoint(context.Background(), &v1interface.EndpointRequest{
            Data: &structpb.Struct{},
        })
        require.Nil(t, err)

        // Assert we got what we want.
        require.Equal(t, "Ok", res.Text)
    })


}

这就是 EndpointRequest 对象在上面包含的 v1.go 文件中的定义方式:

// An v1 interface Endpoint Request object.
message EndpointRequest {
  // data can be a complex object.
  google.protobuf.Struct data = 1;
}

这似乎有效。

但是现在,我想做一些稍微不同的事情。在我的测试用例中,我不想发送一个空的 data 对象,而是发送一个 map/dictionary 和 key/value 对 A: "B", C: "D"。我该怎么做?如果我用 Data: &structpb.Struct{A: "B", C: "D"} 替换 Data: &structpb.Struct{},我会得到编译器错误:

invalid field name "A" in struct initializer
invalid field name "C" in struct initializer 

您初始化的方式 Data 意味着您期望以下内容:

type Struct struct {
    A string
    C string
}

然而,structpb.Struct定义如下:

type Struct struct {   
    // Unordered map of dynamically typed values.
    Fields map[string]*Value `protobuf:"bytes,1,rep,name=fields,proto3" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
    // contains filtered or unexported fields
}

显然这里有点不匹配。您需要初始化结构的 Fields 映射并使用正确的方式设置 Value 字段。与您显示的代码等效的是:

Data: &structpb.Struct{
    Fields: map[string]*structpb.Value{
        "A": &structpb.Value{
            Kind: &structpb.Value_StringValue{
                StringValue: "B",
            },
        },
        "C": &structpb.Value{
            Kind: &structpb.Value_StringValue{
                StringValue: "D",
            },
        },
    },
}