Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Side by Side Diff: third_party/protobuf/python/google/protobuf/internal/symbol_database_test.py

Issue 1842653006: Update //third_party/protobuf to version 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pull whole protobuf Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #! /usr/bin/env python
2 #
3 # Protocol Buffers - Google's data interchange format
4 # Copyright 2008 Google Inc. All rights reserved.
5 # https://developers.google.com/protocol-buffers/
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
33 """Tests for google.protobuf.symbol_database."""
34
35 try:
36 import unittest2 as unittest
37 except ImportError:
38 import unittest
39 from google.protobuf import unittest_pb2
40 from google.protobuf import descriptor
41 from google.protobuf import symbol_database
42
43 class SymbolDatabaseTest(unittest.TestCase):
44
45 def _Database(self):
46 # TODO(b/17734095): Remove this difference when the C++ implementation
47 # supports multiple databases.
48 if descriptor._USE_C_DESCRIPTORS:
49 return symbol_database.Default()
50 else:
51 db = symbol_database.SymbolDatabase()
52 # Register representative types from unittest_pb2.
53 db.RegisterFileDescriptor(unittest_pb2.DESCRIPTOR)
54 db.RegisterMessage(unittest_pb2.TestAllTypes)
55 db.RegisterMessage(unittest_pb2.TestAllTypes.NestedMessage)
56 db.RegisterMessage(unittest_pb2.TestAllTypes.OptionalGroup)
57 db.RegisterMessage(unittest_pb2.TestAllTypes.RepeatedGroup)
58 db.RegisterEnumDescriptor(unittest_pb2.ForeignEnum.DESCRIPTOR)
59 db.RegisterEnumDescriptor(unittest_pb2.TestAllTypes.NestedEnum.DESCRIPTOR)
60 return db
61
62 def testGetPrototype(self):
63 instance = self._Database().GetPrototype(
64 unittest_pb2.TestAllTypes.DESCRIPTOR)
65 self.assertTrue(instance is unittest_pb2.TestAllTypes)
66
67 def testGetMessages(self):
68 messages = self._Database().GetMessages(
69 ['google/protobuf/unittest.proto'])
70 self.assertTrue(
71 unittest_pb2.TestAllTypes is
72 messages['protobuf_unittest.TestAllTypes'])
73
74 def testGetSymbol(self):
75 self.assertEqual(
76 unittest_pb2.TestAllTypes, self._Database().GetSymbol(
77 'protobuf_unittest.TestAllTypes'))
78 self.assertEqual(
79 unittest_pb2.TestAllTypes.NestedMessage, self._Database().GetSymbol(
80 'protobuf_unittest.TestAllTypes.NestedMessage'))
81 self.assertEqual(
82 unittest_pb2.TestAllTypes.OptionalGroup, self._Database().GetSymbol(
83 'protobuf_unittest.TestAllTypes.OptionalGroup'))
84 self.assertEqual(
85 unittest_pb2.TestAllTypes.RepeatedGroup, self._Database().GetSymbol(
86 'protobuf_unittest.TestAllTypes.RepeatedGroup'))
87
88 def testEnums(self):
89 # Check registration of types in the pool.
90 self.assertEqual(
91 'protobuf_unittest.ForeignEnum',
92 self._Database().pool.FindEnumTypeByName(
93 'protobuf_unittest.ForeignEnum').full_name)
94 self.assertEqual(
95 'protobuf_unittest.TestAllTypes.NestedEnum',
96 self._Database().pool.FindEnumTypeByName(
97 'protobuf_unittest.TestAllTypes.NestedEnum').full_name)
98
99 def testFindMessageTypeByName(self):
100 self.assertEqual(
101 'protobuf_unittest.TestAllTypes',
102 self._Database().pool.FindMessageTypeByName(
103 'protobuf_unittest.TestAllTypes').full_name)
104 self.assertEqual(
105 'protobuf_unittest.TestAllTypes.NestedMessage',
106 self._Database().pool.FindMessageTypeByName(
107 'protobuf_unittest.TestAllTypes.NestedMessage').full_name)
108
109 def testFindFindContainingSymbol(self):
110 # Lookup based on either enum or message.
111 self.assertEqual(
112 'google/protobuf/unittest.proto',
113 self._Database().pool.FindFileContainingSymbol(
114 'protobuf_unittest.TestAllTypes.NestedEnum').name)
115 self.assertEqual(
116 'google/protobuf/unittest.proto',
117 self._Database().pool.FindFileContainingSymbol(
118 'protobuf_unittest.TestAllTypes').name)
119
120 def testFindFileByName(self):
121 self.assertEqual(
122 'google/protobuf/unittest.proto',
123 self._Database().pool.FindFileByName(
124 'google/protobuf/unittest.proto').name)
125
126
127 if __name__ == '__main__':
128 unittest.main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698