message_test.py 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #! /usr/bin/python
  2. #
  3. # Protocol Buffers - Google's data interchange format
  4. # Copyright 2008 Google Inc. All rights reserved.
  5. # http://code.google.com/p/protobuf/
  6. #
  7. # Redistribution and use in source and binary forms, with or without
  8. # modification, are permitted provided that the following conditions are
  9. # met:
  10. #
  11. # * Redistributions of source code must retain the above copyright
  12. # notice, this list of conditions and the following disclaimer.
  13. # * Redistributions in binary form must reproduce the above
  14. # copyright notice, this list of conditions and the following disclaimer
  15. # in the documentation and/or other materials provided with the
  16. # distribution.
  17. # * Neither the name of Google Inc. nor the names of its
  18. # contributors may be used to endorse or promote products derived from
  19. # this software without specific prior written permission.
  20. #
  21. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  24. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  25. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  26. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  27. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  28. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  29. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  30. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  31. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. """Tests python protocol buffers against the golden message.
  33. Note that the golden messages exercise every known field type, thus this
  34. test ends up exercising and verifying nearly all of the parsing and
  35. serialization code in the whole library.
  36. TODO(kenton): Merge with wire_format_test? It doesn't make a whole lot of
  37. sense to call this a test of the "message" module, which only declares an
  38. abstract interface.
  39. """
  40. __author__ = 'gps@google.com (Gregory P. Smith)'
  41. import unittest
  42. from google.protobuf import unittest_import_pb2
  43. from google.protobuf import unittest_pb2
  44. from google.protobuf.internal import test_util
  45. class MessageTest(unittest.TestCase):
  46. def testGoldenMessage(self):
  47. golden_data = test_util.GoldenFile('golden_message').read()
  48. golden_message = unittest_pb2.TestAllTypes()
  49. golden_message.ParseFromString(golden_data)
  50. test_util.ExpectAllFieldsSet(self, golden_message)
  51. self.assertTrue(golden_message.SerializeToString() == golden_data)
  52. def testGoldenExtensions(self):
  53. golden_data = test_util.GoldenFile('golden_message').read()
  54. golden_message = unittest_pb2.TestAllExtensions()
  55. golden_message.ParseFromString(golden_data)
  56. all_set = unittest_pb2.TestAllExtensions()
  57. test_util.SetAllExtensions(all_set)
  58. self.assertEquals(all_set, golden_message)
  59. self.assertTrue(golden_message.SerializeToString() == golden_data)
  60. def testGoldenPackedMessage(self):
  61. golden_data = test_util.GoldenFile('golden_packed_fields_message').read()
  62. golden_message = unittest_pb2.TestPackedTypes()
  63. golden_message.ParseFromString(golden_data)
  64. all_set = unittest_pb2.TestPackedTypes()
  65. test_util.SetAllPackedFields(all_set)
  66. self.assertEquals(all_set, golden_message)
  67. self.assertTrue(all_set.SerializeToString() == golden_data)
  68. def testGoldenPackedExtensions(self):
  69. golden_data = test_util.GoldenFile('golden_packed_fields_message').read()
  70. golden_message = unittest_pb2.TestPackedExtensions()
  71. golden_message.ParseFromString(golden_data)
  72. all_set = unittest_pb2.TestPackedExtensions()
  73. test_util.SetAllPackedExtensions(all_set)
  74. self.assertEquals(all_set, golden_message)
  75. self.assertTrue(all_set.SerializeToString() == golden_data)
  76. if __name__ == '__main__':
  77. unittest.main()