mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-04 02:38:50 +00:00
387873dd53
In the upcoming 3.12.x release of protoc, the proto3 language will be amended to support true presence for scalars. This CL adds support to both the generator and runtime to support these semantics. Newly added public API: protogen.Plugin.SupportedFeatures protoreflect.FieldDescriptor.HasPresence protoreflect.FieldDescriptor.HasOptionalKeyword protoreflect.OneofDescriptor.IsSynthetic Change-Id: I7c86bf66d0ae56642109beb5f2132184593747ad Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/230698 Reviewed-by: Damien Neil <dneil@google.com>
136 lines
5.2 KiB
Go
136 lines
5.2 KiB
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package filedesc_test
|
|
|
|
import (
|
|
"bytes"
|
|
"compress/gzip"
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
"google.golang.org/protobuf/proto"
|
|
"google.golang.org/protobuf/reflect/protodesc"
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
testpb "google.golang.org/protobuf/internal/testprotos/test"
|
|
_ "google.golang.org/protobuf/internal/testprotos/test/weak1"
|
|
"google.golang.org/protobuf/types/descriptorpb"
|
|
)
|
|
|
|
var testFile = new(testpb.TestAllTypes).ProtoReflect().Descriptor().ParentFile()
|
|
|
|
func TestInit(t *testing.T) {
|
|
// Compare the FileDescriptorProto for the same test file from two different sources:
|
|
//
|
|
// 1. The result of passing the filedesc-produced FileDescriptor through protodesc.
|
|
// 2. The protoc-generated wire-encoded message.
|
|
//
|
|
// This serves as a test of both filedesc and protodesc.
|
|
got := protodesc.ToFileDescriptorProto(testFile)
|
|
|
|
want := &descriptorpb.FileDescriptorProto{}
|
|
zb, _ := (&testpb.TestAllTypes{}).Descriptor()
|
|
r, _ := gzip.NewReader(bytes.NewBuffer(zb))
|
|
b, _ := ioutil.ReadAll(r)
|
|
if err := proto.Unmarshal(b, want); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if !proto.Equal(got, want) {
|
|
t.Errorf("protodesc.ToFileDescriptorProto(testpb.Test_protoFile) is not equal to the protoc-generated FileDescriptorProto for internal/testprotos/test/test.proto")
|
|
}
|
|
|
|
// Verify that the test proto file provides exhaustive coverage of all descriptor fields.
|
|
seen := make(map[protoreflect.FullName]bool)
|
|
visitFields(want.ProtoReflect(), func(field protoreflect.FieldDescriptor) {
|
|
seen[field.FullName()] = true
|
|
})
|
|
descFile := new(descriptorpb.DescriptorProto).ProtoReflect().Descriptor().ParentFile()
|
|
descPkg := descFile.Package()
|
|
ignore := map[protoreflect.FullName]bool{
|
|
// The protoreflect descriptors don't include source info.
|
|
descPkg.Append("FileDescriptorProto.source_code_info"): true,
|
|
descPkg.Append("FileDescriptorProto.syntax"): true,
|
|
|
|
// Impossible to test proto3 optional in a proto2 file.
|
|
descPkg.Append("FieldDescriptorProto.proto3_optional"): true,
|
|
|
|
// TODO: Test oneof and extension options. Testing these requires extending the
|
|
// options messages (because they contain no user-settable fields), but importing
|
|
// decriptor.proto from test.proto currently causes an import cycle. Add test
|
|
// cases when that import cycle has been fixed.
|
|
descPkg.Append("OneofDescriptorProto.options"): true,
|
|
}
|
|
for _, messageName := range []protoreflect.Name{
|
|
"FileDescriptorProto",
|
|
"DescriptorProto",
|
|
"FieldDescriptorProto",
|
|
"OneofDescriptorProto",
|
|
"EnumDescriptorProto",
|
|
"EnumValueDescriptorProto",
|
|
} {
|
|
message := descFile.Messages().ByName(messageName)
|
|
for i, fields := 0, message.Fields(); i < fields.Len(); i++ {
|
|
if name := fields.Get(i).FullName(); !seen[name] && !ignore[name] {
|
|
t.Errorf("No test for descriptor field: %v", name)
|
|
}
|
|
}
|
|
}
|
|
|
|
// Verify that message descriptors for map entries have no Go type info.
|
|
mapEntryName := protoreflect.FullName("goproto.proto.test.TestAllTypes.MapInt32Int32Entry")
|
|
d := testFile.Messages().ByName("TestAllTypes").Fields().ByName("map_int32_int32").Message()
|
|
if gotName, wantName := d.FullName(), mapEntryName; gotName != wantName {
|
|
t.Fatalf("looked up wrong descriptor: got %v, want %v", gotName, wantName)
|
|
}
|
|
if _, ok := d.(protoreflect.MessageType); ok {
|
|
t.Errorf("message descriptor for %v must not implement protoreflect.MessageType", mapEntryName)
|
|
}
|
|
}
|
|
|
|
// visitFields calls f for every field set in m and its children.
|
|
func visitFields(m protoreflect.Message, f func(protoreflect.FieldDescriptor)) {
|
|
m.Range(func(fd protoreflect.FieldDescriptor, value protoreflect.Value) bool {
|
|
f(fd)
|
|
switch fd.Kind() {
|
|
case protoreflect.MessageKind, protoreflect.GroupKind:
|
|
if fd.IsList() {
|
|
for i, list := 0, value.List(); i < list.Len(); i++ {
|
|
visitFields(list.Get(i).Message(), f)
|
|
}
|
|
} else {
|
|
visitFields(value.Message(), f)
|
|
}
|
|
}
|
|
return true
|
|
})
|
|
}
|
|
|
|
func TestWeakInit(t *testing.T) {
|
|
// We do not expect to get a placeholder since weak1 is imported.
|
|
fd1 := testFile.Messages().ByName("TestWeak").Fields().ByName("weak_message1")
|
|
if got, want := fd1.IsWeak(), true; got != want {
|
|
t.Errorf("field %v: IsWeak() = %v, want %v", fd1.FullName(), got, want)
|
|
}
|
|
if got, want := fd1.Message().IsPlaceholder(), false; got != want {
|
|
t.Errorf("field %v: Message.IsPlaceholder() = %v, want %v", fd1.FullName(), got, want)
|
|
}
|
|
if got, want := fd1.Message().Fields().Len(), 1; got != want {
|
|
t.Errorf("field %v: Message().Fields().Len() == %d, want %d", fd1.FullName(), got, want)
|
|
}
|
|
|
|
// We do expect to get a placeholder since weak2 is not imported.
|
|
fd2 := testFile.Messages().ByName("TestWeak").Fields().ByName("weak_message2")
|
|
if got, want := fd2.IsWeak(), true; got != want {
|
|
t.Errorf("field %v: IsWeak() = %v, want %v", fd2.FullName(), got, want)
|
|
}
|
|
if got, want := fd2.Message().IsPlaceholder(), true; got != want {
|
|
t.Errorf("field %v: Message.IsPlaceholder() = %v, want %v", fd2.FullName(), got, want)
|
|
}
|
|
if got, want := fd2.Message().Fields().Len(), 0; got != want {
|
|
t.Errorf("field %v: Message().Fields().Len() == %d, want %d", fd2.FullName(), got, want)
|
|
}
|
|
}
|