blob: fb642beb53792c169ca088ac9b84b94ac8aa0c08 [file] [log] [blame]
David Symonds76551212011-08-22 15:59:24 +10001// Go support for Protocol Buffers - Google's data interchange format
2//
3// Copyright 2011 Google Inc. All rights reserved.
4// http://code.google.com/p/goprotobuf/
5//
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 (
David Symondsa4b61c02011-09-07 14:06:00 +100035 "log"
David Symonds76551212011-08-22 15:59:24 +100036 "testing"
37
David Symonds704096f2012-03-15 15:10:26 +110038 pb "./testdata"
Rob Pike3f6f2d82011-12-18 13:55:35 -080039 . "code.google.com/p/goprotobuf/proto"
David Symonds76551212011-08-22 15:59:24 +100040)
41
David Symondsa4b61c02011-09-07 14:06:00 +100042// Four identical base messages.
43// The init function adds extensions to some of them.
44var messageWithoutExtension = &pb.MyMessage{Count: Int32(7)}
45var messageWithExtension1a = &pb.MyMessage{Count: Int32(7)}
46var messageWithExtension1b = &pb.MyMessage{Count: Int32(7)}
47var messageWithExtension2 = &pb.MyMessage{Count: Int32(7)}
48
David Symonds9f60f432012-06-14 09:45:25 +100049// Two messages with non-message extensions.
50var messageWithInt32Extension1 = &pb.MyMessage{Count: Int32(8)}
51var messageWithInt32Extension2 = &pb.MyMessage{Count: Int32(8)}
52
David Symondsa4b61c02011-09-07 14:06:00 +100053func init() {
54 ext1 := &pb.Ext{Data: String("Kirk")}
55 ext2 := &pb.Ext{Data: String("Picard")}
56
57 // messageWithExtension1a has ext1, but never marshals it.
58 if err := SetExtension(messageWithExtension1a, pb.E_Ext_More, ext1); err != nil {
59 log.Panicf("SetExtension on 1a failed: %v", err)
60 }
61
62 // messageWithExtension1b is the unmarshaled form of messageWithExtension1a.
63 if err := SetExtension(messageWithExtension1b, pb.E_Ext_More, ext1); err != nil {
64 log.Panicf("SetExtension on 1b failed: %v", err)
65 }
66 buf, err := Marshal(messageWithExtension1b)
67 if err != nil {
68 log.Panicf("Marshal of 1b failed: %v", err)
69 }
70 messageWithExtension1b.Reset()
71 if err := Unmarshal(buf, messageWithExtension1b); err != nil {
72 log.Panicf("Unmarshal of 1b failed: %v", err)
73 }
74
75 // messageWithExtension2 has ext2.
76 if err := SetExtension(messageWithExtension2, pb.E_Ext_More, ext2); err != nil {
77 log.Panicf("SetExtension on 2 failed: %v", err)
78 }
David Symonds9f60f432012-06-14 09:45:25 +100079
80 if err := SetExtension(messageWithInt32Extension1, pb.E_Ext_Number, Int32(23)); err != nil {
81 log.Panicf("SetExtension on Int32-1 failed: %v", err)
82 }
83 if err := SetExtension(messageWithInt32Extension1, pb.E_Ext_Number, Int32(24)); err != nil {
84 log.Panicf("SetExtension on Int32-2 failed: %v", err)
85 }
David Symondsa4b61c02011-09-07 14:06:00 +100086}
87
David Symonds76551212011-08-22 15:59:24 +100088var EqualTests = []struct {
89 desc string
David Symonds9f60f432012-06-14 09:45:25 +100090 a, b Message
David Symonds76551212011-08-22 15:59:24 +100091 exp bool
92}{
93 {"different types", &pb.GoEnum{}, &pb.GoTestField{}, false},
David Symonds76551212011-08-22 15:59:24 +100094 {"equal empty", &pb.GoEnum{}, &pb.GoEnum{}, true},
95
96 {"one set field, one unset field", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{}, false},
David Symondsdd9ca042011-08-29 16:07:16 +100097 {"one set field zero, one unset field", &pb.GoTest{Param: Int32(0)}, &pb.GoTest{}, false},
David Symonds76551212011-08-22 15:59:24 +100098 {"different set fields", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("bar")}, false},
99 {"equal set", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("foo")}, true},
100
101 {"repeated, one set", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{}, false},
102 {"repeated, different length", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{F_Int32Repeated: []int32{2}}, false},
103 {"repeated, different value", &pb.GoTest{F_Int32Repeated: []int32{2}}, &pb.GoTest{F_Int32Repeated: []int32{3}}, false},
104 {"repeated, equal", &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, true},
David Symonds35abe742012-02-13 09:55:16 +1100105 {"repeated, nil equal nil", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: nil}, true},
106 {"repeated, nil equal empty", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: []int32{}}, true},
107 {"repeated, empty equal nil", &pb.GoTest{F_Int32Repeated: []int32{}}, &pb.GoTest{F_Int32Repeated: nil}, true},
David Symonds76551212011-08-22 15:59:24 +1000108
109 {
110 "nested, different",
111 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("foo")}},
112 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("bar")}},
113 false,
114 },
115 {
116 "nested, equal",
117 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}},
118 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}},
119 true,
120 },
David Symondsa4b61c02011-09-07 14:06:00 +1000121
David Symonds35abe742012-02-13 09:55:16 +1100122 {"bytes", &pb.OtherMessage{Value: []byte("foo")}, &pb.OtherMessage{Value: []byte("foo")}, true},
123 {"bytes, empty", &pb.OtherMessage{Value: []byte{}}, &pb.OtherMessage{Value: []byte{}}, true},
124 {"bytes, empty vs nil", &pb.OtherMessage{Value: []byte{}}, &pb.OtherMessage{Value: nil}, false},
David Symondse6a88c32011-09-13 13:34:46 +1000125 {
126 "repeated bytes",
127 &pb.MyMessage{RepBytes: [][]byte{[]byte("sham"), []byte("wow")}},
128 &pb.MyMessage{RepBytes: [][]byte{[]byte("sham"), []byte("wow")}},
129 true,
130 },
131
David Symondsa4b61c02011-09-07 14:06:00 +1000132 {"extension vs. no extension", messageWithoutExtension, messageWithExtension1a, false},
133 {"extension vs. same extension", messageWithExtension1a, messageWithExtension1b, true},
134 {"extension vs. different extension", messageWithExtension1a, messageWithExtension2, false},
David Symonds9f60f432012-06-14 09:45:25 +1000135
136 {"int32 extension vs. itself", messageWithInt32Extension1, messageWithInt32Extension1, true},
137 {"int32 extension vs. a different int32", messageWithInt32Extension1, messageWithInt32Extension2, false},
David Symonds76551212011-08-22 15:59:24 +1000138}
139
140func TestEqual(t *testing.T) {
141 for _, tc := range EqualTests {
142 if res := Equal(tc.a, tc.b); res != tc.exp {
143 t.Errorf("%v: Equal(%v, %v) = %v, want %v", tc.desc, tc.a, tc.b, res, tc.exp)
144 }
145 }
146}