| 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 ( |
| 35 | "testing" |
| 36 | |
| 37 | . "goprotobuf.googlecode.com/hg/proto" |
| 38 | pb "./testdata/_obj/test_proto" |
| 39 | ) |
| 40 | |
| 41 | var EqualTests = []struct { |
| 42 | desc string |
| 43 | a, b interface{} |
| 44 | exp bool |
| 45 | }{ |
| 46 | {"different types", &pb.GoEnum{}, &pb.GoTestField{}, false}, |
| 47 | {"one pointer, one value", &pb.GoEnum{}, pb.GoEnum{}, false}, |
| 48 | {"non-protocol buffers", 7, 7, false}, |
| 49 | {"equal empty", &pb.GoEnum{}, &pb.GoEnum{}, true}, |
| 50 | |
| 51 | {"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^] | 52 | {"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] | 53 | {"different set fields", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("bar")}, false}, |
| 54 | {"equal set", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("foo")}, true}, |
| 55 | |
| 56 | {"repeated, one set", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{}, false}, |
| 57 | {"repeated, different length", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{F_Int32Repeated: []int32{2}}, false}, |
| 58 | {"repeated, different value", &pb.GoTest{F_Int32Repeated: []int32{2}}, &pb.GoTest{F_Int32Repeated: []int32{3}}, false}, |
| 59 | {"repeated, equal", &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, true}, |
| 60 | |
| 61 | { |
| 62 | "nested, different", |
| 63 | &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("foo")}}, |
| 64 | &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("bar")}}, |
| 65 | false, |
| 66 | }, |
| 67 | { |
| 68 | "nested, equal", |
| 69 | &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}}, |
| 70 | &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("wow")}}, |
| 71 | true, |
| 72 | }, |
| 73 | } |
| 74 | |
| 75 | func TestEqual(t *testing.T) { |
| 76 | for _, tc := range EqualTests { |
| 77 | if res := Equal(tc.a, tc.b); res != tc.exp { |
| 78 | t.Errorf("%v: Equal(%v, %v) = %v, want %v", tc.desc, tc.a, tc.b, res, tc.exp) |
| 79 | } |
| 80 | } |
| 81 | } |