blob: cc25833ca444290e09173b1587ebbdabd24824f0 [file] [log] [blame]
David Symonds76551212011-08-22 15:59:24 +10001// Go support for Protocol Buffers - Google's data interchange format
2//
David Symondsee6e9c52012-11-29 08:51:07 +11003// Copyright 2011 The Go Authors. All rights reserved.
David Symonds558f13f2014-11-24 10:28:53 +11004// https://github.com/golang/protobuf
David Symonds76551212011-08-22 15:59:24 +10005//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met:
9//
10// * Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12// * Redistributions in binary form must reproduce the above
13// copyright notice, this list of conditions and the following disclaimer
14// in the documentation and/or other materials provided with the
15// distribution.
16// * Neither the name of Google Inc. nor the names of its
17// contributors may be used to endorse or promote products derived from
18// this software without specific prior written permission.
19//
20// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32package proto_test
33
34import (
35 "testing"
36
David Symonds704096f2012-03-15 15:10:26 +110037 pb "./testdata"
David Symonds558f13f2014-11-24 10:28:53 +110038 . "github.com/golang/protobuf/proto"
David Symonds76551212011-08-22 15:59:24 +100039)
40
David Symondsa4b61c02011-09-07 14:06:00 +100041// Four identical base messages.
42// The init function adds extensions to some of them.
43var messageWithoutExtension = &pb.MyMessage{Count: Int32(7)}
44var messageWithExtension1a = &pb.MyMessage{Count: Int32(7)}
45var messageWithExtension1b = &pb.MyMessage{Count: Int32(7)}
46var messageWithExtension2 = &pb.MyMessage{Count: Int32(7)}
47
David Symonds9f60f432012-06-14 09:45:25 +100048// Two messages with non-message extensions.
49var messageWithInt32Extension1 = &pb.MyMessage{Count: Int32(8)}
50var messageWithInt32Extension2 = &pb.MyMessage{Count: Int32(8)}
51
David Symondsa4b61c02011-09-07 14:06:00 +100052func init() {
53 ext1 := &pb.Ext{Data: String("Kirk")}
54 ext2 := &pb.Ext{Data: String("Picard")}
55
56 // messageWithExtension1a has ext1, but never marshals it.
57 if err := SetExtension(messageWithExtension1a, pb.E_Ext_More, ext1); err != nil {
David Symondsd4661c52012-08-30 15:17:53 +100058 panic("SetExtension on 1a failed: " + err.Error())
David Symondsa4b61c02011-09-07 14:06:00 +100059 }
60
61 // messageWithExtension1b is the unmarshaled form of messageWithExtension1a.
62 if err := SetExtension(messageWithExtension1b, pb.E_Ext_More, ext1); err != nil {
David Symondsd4661c52012-08-30 15:17:53 +100063 panic("SetExtension on 1b failed: " + err.Error())
David Symondsa4b61c02011-09-07 14:06:00 +100064 }
65 buf, err := Marshal(messageWithExtension1b)
66 if err != nil {
David Symondsd4661c52012-08-30 15:17:53 +100067 panic("Marshal of 1b failed: " + err.Error())
David Symondsa4b61c02011-09-07 14:06:00 +100068 }
69 messageWithExtension1b.Reset()
70 if err := Unmarshal(buf, messageWithExtension1b); err != nil {
David Symondsd4661c52012-08-30 15:17:53 +100071 panic("Unmarshal of 1b failed: " + err.Error())
David Symondsa4b61c02011-09-07 14:06:00 +100072 }
73
74 // messageWithExtension2 has ext2.
75 if err := SetExtension(messageWithExtension2, pb.E_Ext_More, ext2); err != nil {
David Symondsd4661c52012-08-30 15:17:53 +100076 panic("SetExtension on 2 failed: " + err.Error())
David Symondsa4b61c02011-09-07 14:06:00 +100077 }
David Symonds9f60f432012-06-14 09:45:25 +100078
79 if err := SetExtension(messageWithInt32Extension1, pb.E_Ext_Number, Int32(23)); err != nil {
David Symondsd4661c52012-08-30 15:17:53 +100080 panic("SetExtension on Int32-1 failed: " + err.Error())
David Symonds9f60f432012-06-14 09:45:25 +100081 }
82 if err := SetExtension(messageWithInt32Extension1, pb.E_Ext_Number, Int32(24)); err != nil {
David Symondsd4661c52012-08-30 15:17:53 +100083 panic("SetExtension on Int32-2 failed: " + err.Error())
David Symonds9f60f432012-06-14 09:45:25 +100084 }
David Symondsa4b61c02011-09-07 14:06:00 +100085}
86
David Symonds76551212011-08-22 15:59:24 +100087var EqualTests = []struct {
88 desc string
David Symonds9f60f432012-06-14 09:45:25 +100089 a, b Message
David Symonds76551212011-08-22 15:59:24 +100090 exp bool
91}{
92 {"different types", &pb.GoEnum{}, &pb.GoTestField{}, false},
David Symonds76551212011-08-22 15:59:24 +100093 {"equal empty", &pb.GoEnum{}, &pb.GoEnum{}, true},
David Symonds007ed9d2012-07-24 10:59:36 +100094 {"nil vs nil", nil, nil, true},
95 {"typed nil vs typed nil", (*pb.GoEnum)(nil), (*pb.GoEnum)(nil), true},
96 {"typed nil vs empty", (*pb.GoEnum)(nil), &pb.GoEnum{}, false},
97 {"different typed nil", (*pb.GoEnum)(nil), (*pb.GoTestField)(nil), false},
David Symonds76551212011-08-22 15:59:24 +100098
99 {"one set field, one unset field", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{}, false},
David Symondsdd9ca042011-08-29 16:07:16 +1000100 {"one set field zero, one unset field", &pb.GoTest{Param: Int32(0)}, &pb.GoTest{}, false},
David Symonds76551212011-08-22 15:59:24 +1000101 {"different set fields", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("bar")}, false},
102 {"equal set", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("foo")}, true},
103
104 {"repeated, one set", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{}, false},
105 {"repeated, different length", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{F_Int32Repeated: []int32{2}}, false},
106 {"repeated, different value", &pb.GoTest{F_Int32Repeated: []int32{2}}, &pb.GoTest{F_Int32Repeated: []int32{3}}, false},
107 {"repeated, equal", &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, true},
David Symonds35abe742012-02-13 09:55:16 +1100108 {"repeated, nil equal nil", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: nil}, true},
109 {"repeated, nil equal empty", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: []int32{}}, true},
110 {"repeated, empty equal nil", &pb.GoTest{F_Int32Repeated: []int32{}}, &pb.GoTest{F_Int32Repeated: nil}, true},
David Symonds76551212011-08-22 15:59:24 +1000111
112 {
113 "nested, different",
114 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("foo")}},
115 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("bar")}},
116 false,
117 },
118 {
119 "nested, equal",
120 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}},
121 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}},
122 true,
123 },
David Symondsa4b61c02011-09-07 14:06:00 +1000124
David Symonds35abe742012-02-13 09:55:16 +1100125 {"bytes", &pb.OtherMessage{Value: []byte("foo")}, &pb.OtherMessage{Value: []byte("foo")}, true},
126 {"bytes, empty", &pb.OtherMessage{Value: []byte{}}, &pb.OtherMessage{Value: []byte{}}, true},
127 {"bytes, empty vs nil", &pb.OtherMessage{Value: []byte{}}, &pb.OtherMessage{Value: nil}, false},
David Symondse6a88c32011-09-13 13:34:46 +1000128 {
129 "repeated bytes",
130 &pb.MyMessage{RepBytes: [][]byte{[]byte("sham"), []byte("wow")}},
131 &pb.MyMessage{RepBytes: [][]byte{[]byte("sham"), []byte("wow")}},
132 true,
133 },
134
David Symondsa4b61c02011-09-07 14:06:00 +1000135 {"extension vs. no extension", messageWithoutExtension, messageWithExtension1a, false},
136 {"extension vs. same extension", messageWithExtension1a, messageWithExtension1b, true},
137 {"extension vs. different extension", messageWithExtension1a, messageWithExtension2, false},
David Symonds9f60f432012-06-14 09:45:25 +1000138
139 {"int32 extension vs. itself", messageWithInt32Extension1, messageWithInt32Extension1, true},
140 {"int32 extension vs. a different int32", messageWithInt32Extension1, messageWithInt32Extension2, false},
David Symonds6eaeef12012-11-07 11:42:56 +1100141
142 {
143 "message with group",
144 &pb.MyMessage{
145 Count: Int32(1),
146 Somegroup: &pb.MyMessage_SomeGroup{
147 GroupField: Int32(5),
148 },
149 },
150 &pb.MyMessage{
151 Count: Int32(1),
152 Somegroup: &pb.MyMessage_SomeGroup{
153 GroupField: Int32(5),
154 },
155 },
156 true,
157 },
David Symonds3ea3e052014-12-22 16:15:28 +1100158
159 {
160 "map same",
161 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
162 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
163 true,
164 },
165 {
166 "map different entry",
167 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
168 &pb.MessageWithMap{NameMapping: map[int32]string{2: "Rob"}},
169 false,
170 },
171 {
172 "map different key only",
173 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
174 &pb.MessageWithMap{NameMapping: map[int32]string{2: "Ken"}},
175 false,
176 },
177 {
178 "map different value only",
179 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Ken"}},
180 &pb.MessageWithMap{NameMapping: map[int32]string{1: "Rob"}},
181 false,
182 },
David Symonds76551212011-08-22 15:59:24 +1000183}
184
185func TestEqual(t *testing.T) {
186 for _, tc := range EqualTests {
187 if res := Equal(tc.a, tc.b); res != tc.exp {
188 t.Errorf("%v: Equal(%v, %v) = %v, want %v", tc.desc, tc.a, tc.b, res, tc.exp)
189 }
190 }
191}