/proto/equal_test.go

https://code.google.com/p/goprotobuf/ · Go · 134 lines · 84 code · 15 blank · 35 comment · 13 complexity · 67eea54aaec4ccf0917328461b43831b MD5 · raw file

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