| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 1 | // 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 | |
| 32 | package proto_test |
| 33 | |
| 34 | import ( |
| David Symonds | a4b61c0 | 2011-09-07 14:06:00 +1000 | [diff] [blame] | 35 | "log" |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 36 | "testing" |
| 37 | |
| David Symonds | 704096f | 2012-03-15 15:10:26 +1100 | [diff] [blame^] | 38 | pb "./testdata" |
| Rob Pike | 3f6f2d8 | 2011-12-18 13:55:35 -0800 | [diff] [blame] | 39 | . "code.google.com/p/goprotobuf/proto" |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 40 | ) |
| 41 | |
| David Symonds | a4b61c0 | 2011-09-07 14:06:00 +1000 | [diff] [blame] | 42 | // Four identical base messages. |
| 43 | // The init function adds extensions to some of them. |
| 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 | |
| 49 | func init() { |
| 50 | ext1 := &pb.Ext{Data: String("Kirk")} |
| 51 | ext2 := &pb.Ext{Data: String("Picard")} |
| 52 | |
| 53 | // messageWithExtension1a has ext1, but never marshals it. |
| 54 | if err := SetExtension(messageWithExtension1a, pb.E_Ext_More, ext1); err != nil { |
| 55 | log.Panicf("SetExtension on 1a failed: %v", err) |
| 56 | } |
| 57 | |
| 58 | // messageWithExtension1b is the unmarshaled form of messageWithExtension1a. |
| 59 | if err := SetExtension(messageWithExtension1b, pb.E_Ext_More, ext1); err != nil { |
| 60 | log.Panicf("SetExtension on 1b failed: %v", err) |
| 61 | } |
| 62 | buf, err := Marshal(messageWithExtension1b) |
| 63 | if err != nil { |
| 64 | log.Panicf("Marshal of 1b failed: %v", err) |
| 65 | } |
| 66 | messageWithExtension1b.Reset() |
| 67 | if err := Unmarshal(buf, messageWithExtension1b); err != nil { |
| 68 | log.Panicf("Unmarshal of 1b failed: %v", err) |
| 69 | } |
| 70 | |
| 71 | // messageWithExtension2 has ext2. |
| 72 | if err := SetExtension(messageWithExtension2, pb.E_Ext_More, ext2); err != nil { |
| 73 | log.Panicf("SetExtension on 2 failed: %v", err) |
| 74 | } |
| 75 | } |
| 76 | |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 77 | var EqualTests = []struct { |
| 78 | desc string |
| 79 | a, b interface{} |
| 80 | exp bool |
| 81 | }{ |
| 82 | {"different types", &pb.GoEnum{}, &pb.GoTestField{}, false}, |
| 83 | {"one pointer, one value", &pb.GoEnum{}, pb.GoEnum{}, false}, |
| 84 | {"non-protocol buffers", 7, 7, false}, |
| 85 | {"equal empty", &pb.GoEnum{}, &pb.GoEnum{}, true}, |
| 86 | |
| 87 | {"one set field, one unset field", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{}, false}, |
| David Symonds | dd9ca04 | 2011-08-29 16:07:16 +1000 | [diff] [blame] | 88 | {"one set field zero, one unset field", &pb.GoTest{Param: Int32(0)}, &pb.GoTest{}, false}, |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 89 | {"different set fields", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("bar")}, false}, |
| 90 | {"equal set", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("foo")}, true}, |
| 91 | |
| 92 | {"repeated, one set", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{}, false}, |
| 93 | {"repeated, different length", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{F_Int32Repeated: []int32{2}}, false}, |
| 94 | {"repeated, different value", &pb.GoTest{F_Int32Repeated: []int32{2}}, &pb.GoTest{F_Int32Repeated: []int32{3}}, false}, |
| 95 | {"repeated, equal", &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, true}, |
| David Symonds | 35abe74 | 2012-02-13 09:55:16 +1100 | [diff] [blame] | 96 | {"repeated, nil equal nil", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: nil}, true}, |
| 97 | {"repeated, nil equal empty", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: []int32{}}, true}, |
| 98 | {"repeated, empty equal nil", &pb.GoTest{F_Int32Repeated: []int32{}}, &pb.GoTest{F_Int32Repeated: nil}, true}, |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 99 | |
| 100 | { |
| 101 | "nested, different", |
| 102 | &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("foo")}}, |
| 103 | &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("bar")}}, |
| 104 | false, |
| 105 | }, |
| 106 | { |
| 107 | "nested, equal", |
| 108 | &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}}, |
| 109 | &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}}, |
| 110 | true, |
| 111 | }, |
| David Symonds | a4b61c0 | 2011-09-07 14:06:00 +1000 | [diff] [blame] | 112 | |
| David Symonds | 35abe74 | 2012-02-13 09:55:16 +1100 | [diff] [blame] | 113 | {"bytes", &pb.OtherMessage{Value: []byte("foo")}, &pb.OtherMessage{Value: []byte("foo")}, true}, |
| 114 | {"bytes, empty", &pb.OtherMessage{Value: []byte{}}, &pb.OtherMessage{Value: []byte{}}, true}, |
| 115 | {"bytes, empty vs nil", &pb.OtherMessage{Value: []byte{}}, &pb.OtherMessage{Value: nil}, false}, |
| David Symonds | e6a88c3 | 2011-09-13 13:34:46 +1000 | [diff] [blame] | 116 | { |
| 117 | "repeated bytes", |
| 118 | &pb.MyMessage{RepBytes: [][]byte{[]byte("sham"), []byte("wow")}}, |
| 119 | &pb.MyMessage{RepBytes: [][]byte{[]byte("sham"), []byte("wow")}}, |
| 120 | true, |
| 121 | }, |
| 122 | |
| David Symonds | a4b61c0 | 2011-09-07 14:06:00 +1000 | [diff] [blame] | 123 | {"extension vs. no extension", messageWithoutExtension, messageWithExtension1a, false}, |
| 124 | {"extension vs. same extension", messageWithExtension1a, messageWithExtension1b, true}, |
| 125 | {"extension vs. different extension", messageWithExtension1a, messageWithExtension2, false}, |
| David Symonds | 7655121 | 2011-08-22 15:59:24 +1000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | func TestEqual(t *testing.T) { |
| 129 | for _, tc := range EqualTests { |
| 130 | if res := Equal(tc.a, tc.b); res != tc.exp { |
| 131 | t.Errorf("%v: Equal(%v, %v) = %v, want %v", tc.desc, tc.a, tc.b, res, tc.exp) |
| 132 | } |
| 133 | } |
| 134 | } |