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 package proto_test
33
34 import (
35 "testing"
36
37 . "github.com/gogo/protobuf/proto"
38 proto3pb "github.com/gogo/protobuf/proto/proto3_proto"
39 pb "github.com/gogo/protobuf/proto/test_proto"
40 )
41
42
43
44 var messageWithoutExtension = &pb.MyMessage{Count: Int32(7)}
45 var messageWithExtension1a = &pb.MyMessage{Count: Int32(7)}
46 var messageWithExtension1b = &pb.MyMessage{Count: Int32(7)}
47 var messageWithExtension2 = &pb.MyMessage{Count: Int32(7)}
48 var messageWithExtension3a = &pb.MyMessage{Count: Int32(7)}
49 var messageWithExtension3b = &pb.MyMessage{Count: Int32(7)}
50 var messageWithExtension3c = &pb.MyMessage{Count: Int32(7)}
51
52
53 var messageWithInt32Extension1 = &pb.MyMessage{Count: Int32(8)}
54 var messageWithInt32Extension2 = &pb.MyMessage{Count: Int32(8)}
55
56 func init() {
57 ext1 := &pb.Ext{Data: String("Kirk")}
58 ext2 := &pb.Ext{Data: String("Picard")}
59
60
61 if err := SetExtension(messageWithExtension1a, pb.E_Ext_More, ext1); err != nil {
62 panic("SetExtension on 1a failed: " + err.Error())
63 }
64
65
66 if err := SetExtension(messageWithExtension1b, pb.E_Ext_More, ext1); err != nil {
67 panic("SetExtension on 1b failed: " + err.Error())
68 }
69 buf, err := Marshal(messageWithExtension1b)
70 if err != nil {
71 panic("Marshal of 1b failed: " + err.Error())
72 }
73 messageWithExtension1b.Reset()
74 if err := Unmarshal(buf, messageWithExtension1b); err != nil {
75 panic("Unmarshal of 1b failed: " + err.Error())
76 }
77
78
79 if err := SetExtension(messageWithExtension2, pb.E_Ext_More, ext2); err != nil {
80 panic("SetExtension on 2 failed: " + err.Error())
81 }
82
83 if err := SetExtension(messageWithInt32Extension1, pb.E_Ext_Number, Int32(23)); err != nil {
84 panic("SetExtension on Int32-1 failed: " + err.Error())
85 }
86 if err := SetExtension(messageWithInt32Extension1, pb.E_Ext_Number, Int32(24)); err != nil {
87 panic("SetExtension on Int32-2 failed: " + err.Error())
88 }
89
90
91 if RegisteredExtensions(messageWithExtension3a)[200] != nil {
92 panic("expect extension 200 unregistered")
93 }
94 bytes := []byte{
95 0xc0, 0x0c, 0x01,
96 }
97 bytes2 := []byte{
98 0xc0, 0x0c, 0x02,
99 }
100 SetRawExtension(messageWithExtension3a, 200, bytes)
101 SetRawExtension(messageWithExtension3b, 200, bytes)
102 SetRawExtension(messageWithExtension3c, 200, bytes2)
103 }
104
105 var EqualTests = []struct {
106 desc string
107 a, b Message
108 exp bool
109 }{
110 {"different types", &pb.GoEnum{}, &pb.GoTestField{}, false},
111 {"equal empty", &pb.GoEnum{}, &pb.GoEnum{}, true},
112 {"nil vs nil", nil, nil, true},
113 {"typed nil vs typed nil", (*pb.GoEnum)(nil), (*pb.GoEnum)(nil), true},
114 {"typed nil vs empty", (*pb.GoEnum)(nil), &pb.GoEnum{}, false},
115 {"different typed nil", (*pb.GoEnum)(nil), (*pb.GoTestField)(nil), false},
116
117 {"one set field, one unset field", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{}, false},
118 {"one set field zero, one unset field", &pb.GoTest{Param: Int32(0)}, &pb.GoTest{}, false},
119 {"different set fields", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("bar")}, false},
120 {"equal set", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("foo")}, true},
121
122 {"repeated, one set", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{}, false},
123 {"repeated, different length", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{F_Int32Repeated: []int32{2}}, false},
124 {"repeated, different value", &pb.GoTest{F_Int32Repeated: []int32{2}}, &pb.GoTest{F_Int32Repeated: []int32{3}}, false},
125 {"repeated, equal", &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, true},
126 {"repeated, nil equal nil", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: nil}, true},
127 {"repeated, nil equal empty", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: []int32{}}, true},
128 {"repeated, empty equal nil", &pb.GoTest{F_Int32Repeated: []int32{}}, &pb.GoTest{F_Int32Repeated: nil}, true},
129
130 {
131 "nested, different",
132 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("foo")}},
133 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("bar")}},
134 false,
135 },
136 {
137 "nested, equal",
138 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}},
139 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}},
140 true,
141 },
142
143 {"bytes", &pb.OtherMessage{Value: []byte("foo")}, &pb.OtherMessage{Value: []byte("foo")}, true},
144 {"bytes, empty", &pb.OtherMessage{Value: []byte{}}, &pb.OtherMessage{Value: []byte{}}, true},
145 {"bytes, empty vs nil", &pb.OtherMessage{Value: []byte{}}, &pb.OtherMessage{Value: nil}, false},
146 {
147 "repeated bytes",
148 &pb.MyMessage{RepBytes: [][]byte{[]byte("sham"), []byte("wow")}},
149 &pb.MyMessage{RepBytes: [][]byte{[]byte("sham"), []byte("wow")}},
150 true,
151 },
152
153 {"proto3 bytes, empty vs nil", &proto3pb.Message{Data: []byte{}}, &proto3pb.Message{Data: nil}, true},
154
155 {"extension vs. no extension", messageWithoutExtension, messageWithExtension1a, false},
156 {"extension vs. same extension", messageWithExtension1a, messageWithExtension1b, true},
157 {"extension vs. different extension", messageWithExtension1a, messageWithExtension2, false},
158
159 {"int32 extension vs. itself", messageWithInt32Extension1, messageWithInt32Extension1, true},
160 {"int32 extension vs. a different int32", messageWithInt32Extension1, messageWithInt32Extension2, false},
161
162 {"unregistered extension same", messageWithExtension3a, messageWithExtension3b, true},
163 {"unregistered extension different", messageWithExtension3a, messageWithExtension3c, false},
164
165 {
166 "message with group",
167 &pb.MyMessage{
168 Count: Int32(1),
169 Somegroup: &pb.MyMessage_SomeGroup{
170 GroupField: Int32(5),
171 },
172 },
173 &pb.MyMessage{
174 Count: Int32(1),
175 Somegroup: &pb.MyMessage_SomeGroup{
176 GroupField: Int32(5),
177 },
178 },
179 true,
180 },
181
182 {
183 "map same",
184 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
185 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
186 true,
187 },
188 {
189 "map different entry",
190 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
191 &pb.MessageWithMap{NameMapping: map[int32]string{2: "Rob"}},
192 false,
193 },
194 {
195 "map different key only",
196 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
197 &pb.MessageWithMap{NameMapping: map[int32]string{2: "Ken"}},
198 false,
199 },
200 {
201 "map different value only",
202 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
203 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Rob"}},
204 false,
205 },
206 {
207 "zero-length maps same",
208 &pb.MessageWithMap{NameMapping: map[int32]string{}},
209 &pb.MessageWithMap{NameMapping: nil},
210 true,
211 },
212 {
213 "orders in map don't matter",
214 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken", 2: "Rob"}},
215 &pb.MessageWithMap{NameMapping: map[int32]string{2: "Rob", 1: "Ken"}},
216 true,
217 },
218 {
219 "oneof same",
220 &pb.Communique{Union: &pb.Communique_Number{Number: 41}},
221 &pb.Communique{Union: &pb.Communique_Number{Number: 41}},
222 true,
223 },
224 {
225 "oneof one nil",
226 &pb.Communique{Union: &pb.Communique_Number{Number: 41}},
227 &pb.Communique{},
228 false,
229 },
230 {
231 "oneof different",
232 &pb.Communique{Union: &pb.Communique_Number{Number: 41}},
233 &pb.Communique{Union: &pb.Communique_Name{Name: "Bobby Tables"}},
234 false,
235 },
236 }
237
238 func TestEqual(t *testing.T) {
239 for _, tc := range EqualTests {
240 if res := Equal(tc.a, tc.b); res != tc.exp {
241 t.Errorf("%v: Equal(%v, %v) = %v, want %v", tc.desc, tc.a, tc.b, res, tc.exp)
242 }
243 }
244 }
245
View as plain text