1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package pb
import (
"reflect"
"testing"
"google.golang.org/protobuf/reflect/protodesc"
"google.golang.org/protobuf/reflect/protoreflect"
proto2pb "github.com/google/cel-go/test/proto2pb"
proto3pb "github.com/google/cel-go/test/proto3pb"
descpb "google.golang.org/protobuf/types/descriptorpb"
dynamicpb "google.golang.org/protobuf/types/dynamicpb"
durationpb "google.golang.org/protobuf/types/known/durationpb"
tpb "google.golang.org/protobuf/types/known/timestamppb"
)
func TestDbCopy(t *testing.T) {
clone := DefaultDb.Copy()
if !reflect.DeepEqual(clone, DefaultDb) {
t.Error("db.Copy() did not result in equivalent objects.")
}
_, err := clone.RegisterMessage(&proto3pb.TestAllTypes{})
if err != nil {
t.Fatalf("db.RegisterMessage() failed: %v", err)
}
if reflect.DeepEqual(clone, DefaultDb) {
t.Error("db.RegisterMessage() altered the default db as well")
}
// modify the clone after deriving another copy.
clone2 := clone.Copy()
if !reflect.DeepEqual(clone, clone2) {
t.Error("db.Copy() did not result in equivalent objects.")
}
_, err = clone.RegisterMessage(&proto2pb.TestAllTypes{})
if err != nil {
t.Fatalf("Db.RegisterMessage() failed: %v", err)
}
if reflect.DeepEqual(clone, clone2) {
t.Error("clone modification altered derived clone2 also")
}
// modify the clone2 with some extensions and assert equivalence to clone3
_, err = clone2.RegisterMessage(&proto2pb.TestAllTypes{})
if err != nil {
t.Fatalf("Db.RegisterMessage() failed: %v", err)
}
_, err = clone2.RegisterMessage(&proto2pb.ExternalMessageType{})
if err != nil {
t.Fatalf("Db.RegisterMessage() failed: %v", err)
}
clone3 := clone2.Copy()
if !reflect.DeepEqual(clone2, clone3) {
t.Error("db.Copy() did not result in equivalent objects.")
}
}
func BenchmarkDbCopy(b *testing.B) {
for i := 0; i < b.N; i++ {
NewDb().Copy()
}
}
func TestProtoReflectRoundTrip(t *testing.T) {
msg := &proto3pb.TestAllTypes{SingleBool: true}
fdMap := CollectFileDescriptorSet(msg)
files := []*descpb.FileDescriptorProto{}
for _, fd := range fdMap {
files = append(files, protodesc.ToFileDescriptorProto(fd))
}
// Round-tripping from a protoreflect.FileDescriptor to a FileDescriptorSet and back
// will result in completely independent copies of the protoreflect.FileDescriptor
// whose values are incompatible with each other.
//
// This test showcases what happens when the protoregistry.GlobalFiles values are
// used when a given protoreflect.FileDescriptor is linked into the binary.
fds := &descpb.FileDescriptorSet{File: files}
pbReg, err := protodesc.NewFiles(fds)
if err != nil {
t.Fatalf("protodesc.NewFiles() failed: %v", err)
}
pbdb := NewDb()
pbReg.RangeFiles(func(fd protoreflect.FileDescriptor) bool {
_, err := pbdb.RegisterDescriptor(fd)
if err != nil {
t.Fatalf("pbdb.RegisterDecriptor(%v) failed: %v", fd, err)
}
return true
})
msgType, found := pbdb.DescribeType("google.expr.proto3.test.TestAllTypes")
if !found {
t.Fatal("pbdb.DescribeType(google.expr.proto3.test.TestAllTypes) failed")
}
boolField, found := msgType.FieldByName("single_bool")
if !found {
t.Fatal("msgType.FieldByName(single_bool) failed")
}
val, err := boolField.GetFrom(msg)
if err != nil {
t.Errorf("boolField.GetFrom(msg) failed: %v", err)
}
if val != true {
t.Errorf("got TestAllTypes.single_bool %v, wanted true", val)
}
}
func TestMerge(t *testing.T) {
timestampPB := &tpb.Timestamp{}
fileDesc := protodesc.ToFileDescriptorProto(timestampPB.ProtoReflect().Descriptor().ParentFile())
fds := &descpb.FileDescriptorSet{}
fds.File = append(fds.File, fileDesc)
pbFiles, err := protodesc.NewFiles(fds)
if err != nil {
t.Fatalf("protodesc.NewFiles(%v) failed: %v", fds, err)
}
tsDesc, err := pbFiles.FindDescriptorByName(protoreflect.FullName("google.protobuf.Timestamp"))
if err != nil {
t.Fatalf("pbFiles.FindDescriptorByName() failed for Timestamp: %v", err)
}
tsMsgDesc := tsDesc.(protoreflect.MessageDescriptor)
tsType := dynamicpb.NewMessageType(tsMsgDesc)
dynTimestampPB := tsType.New()
dynTimestampPB.Set(tsMsgDesc.Fields().ByName(protoreflect.Name("seconds")), protoreflect.ValueOf(int64(123)))
err = Merge(timestampPB, dynTimestampPB.Interface())
if err != nil {
t.Fatalf("Merge() failed: %v", err)
}
}
func TestMergeError(t *testing.T) {
timestampPB := &tpb.Timestamp{}
durationPB := &durationpb.Duration{}
err := Merge(timestampPB, durationPB)
if err == nil || err.Error() != "pb.Merge() arguments must be the same type. got: google.protobuf.Timestamp, google.protobuf.Duration" {
t.Fatalf("got err: %v, wanted bad argument error", err)
}
}
|