map_test_util.h
Go to the documentation of this file.
1 // Protocol Buffers - Google's data interchange format
2 // Copyright 2008 Google Inc. All rights reserved.
3 // https://developers.google.com/protocol-buffers/
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 // * Redistributions of source code must retain the above copyright
10 // notice, this list of conditions and the following disclaimer.
11 // * Redistributions in binary form must reproduce the above
12 // copyright notice, this list of conditions and the following disclaimer
13 // in the documentation and/or other materials provided with the
14 // distribution.
15 // * Neither the name of Google Inc. nor the names of its
16 // contributors may be used to endorse or promote products derived from
17 // this software without specific prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31 #ifndef GOOGLE_PROTOBUF_MAP_TEST_UTIL_H__
32 #define GOOGLE_PROTOBUF_MAP_TEST_UTIL_H__
33 
34 #include <google/protobuf/map_unittest.pb.h>
35 
36 namespace google {
37 namespace protobuf {
38 
39 namespace unittest = ::protobuf_unittest;
40 
41 class MapTestUtil {
42  public:
43  // Set every field in the TestMap message to a unique value.
44  static void SetMapFields(unittest::TestMap* message);
45 
46  // Set every field in the TestArenaMap message to a unique value.
47  static void SetArenaMapFields(unittest::TestArenaMap* message);
48 
49  // Set every field in the message to a default value.
50  static void SetMapFieldsInitialized(unittest::TestMap* message);
51 
52  // Modify all the map fields of the message (which should already have been
53  // initialized with SetMapFields()).
54  static void ModifyMapFields(unittest::TestMap* message);
55 
56  // Check that all fields have the values that they should have after
57  // SetMapFields() is called.
58  static void ExpectMapFieldsSet(const unittest::TestMap& message);
59 
60  // Check that all fields have the values that they should have after
61  // SetMapFields() is called for TestArenaMap.
62  static void ExpectArenaMapFieldsSet(const unittest::TestArenaMap& message);
63 
64  // Check that all fields have the values that they should have after
65  // SetMapFieldsInitialized() is called.
66  static void ExpectMapFieldsSetInitialized(const unittest::TestMap& message);
67 
68  // Expect that the message is modified as would be expected from
69  // ModifyMapFields().
70  static void ExpectMapFieldsModified(const unittest::TestMap& message);
71 
72  // Check that all fields are empty.
73  static void ExpectClear(const unittest::TestMap& message);
74 
75  // Check that all map fields have the given size.
76  static void ExpectMapsSize(const unittest::TestMap& message, int size);
77 
78  // Get pointers of map entries at given index.
79  static std::vector<const Message*> GetMapEntries(
80  const unittest::TestMap& message, int index);
81 
82  // Get pointers of map entries from release.
83  static std::vector<const Message*> GetMapEntriesFromRelease(
84  unittest::TestMap* message);
85 };
86 
87 // Like above, but use the reflection interface.
89  public:
90  // base_descriptor must be a descriptor for TestMap, which is used for
91  // MapReflectionTester to fetch the FieldDescriptors needed to use the
92  // reflection interface.
93  explicit MapReflectionTester(const Descriptor* base_descriptor);
94 
108  const std::string& field_name,
109  const MapKey& map_key, MapValueRef* map_val);
111  const std::string& field_name, int index);
112  MapIterator MapBegin(Message* message, const std::string& field_name);
113  MapIterator MapEnd(Message* message, const std::string& field_name);
114 
115  private:
116  const FieldDescriptor* F(const std::string& name);
117 
119 
123 
159 };
160 
161 } // namespace protobuf
162 } // namespace google
163 
164 #endif // GOOGLE_PROTOBUF_MAP_TEST_UTIL_H__
google::protobuf::MapReflectionTester::F
const FieldDescriptor * F(const std::string &name)
Definition: map_test_util.cc:341
google::protobuf::MapTestUtil::ExpectMapFieldsSet
static void ExpectMapFieldsSet(const unittest::TestMap &message)
Definition: map_test_util.cc:62
google::protobuf::MapReflectionTester::map_bool_bool_val_
const FieldDescriptor * map_bool_bool_val_
Definition: map_test_util.h:150
google::protobuf::MapTestUtil::ModifyMapFields
static void ModifyMapFields(unittest::TestMap *message)
Definition: map_test_util.cc:53
name
GLuint const GLchar * name
Definition: glcorearb.h:3055
google::protobuf::FieldDescriptor
Definition: src/google/protobuf/descriptor.h:515
google::protobuf::MapTestUtil::SetArenaMapFields
static void SetArenaMapFields(unittest::TestArenaMap *message)
Definition: map_test_util.cc:44
google::protobuf::MapTestUtil::ExpectClear
static void ExpectClear(const unittest::TestMap &message)
Definition: map_test_util.cc:58
google::protobuf::MapReflectionTester::map_int32_enum_val_
const FieldDescriptor * map_int32_enum_val_
Definition: map_test_util.h:156
google::protobuf::MapReflectionTester::map_int32_foreign_message_key_
const FieldDescriptor * map_int32_foreign_message_key_
Definition: map_test_util.h:157
google::protobuf::MapReflectionTester::map_sfixed64_sfixed64_val_
const FieldDescriptor * map_sfixed64_sfixed64_val_
Definition: map_test_util.h:144
google::protobuf::MapReflectionTester::map_sint32_sint32_val_
const FieldDescriptor * map_sint32_sint32_val_
Definition: map_test_util.h:134
google::protobuf::MapReflectionTester::map_fixed64_fixed64_val_
const FieldDescriptor * map_fixed64_fixed64_val_
Definition: map_test_util.h:140
string
GLsizei const GLchar *const * string
Definition: glcorearb.h:3083
google::protobuf::MapTestUtil::SetMapFieldsInitialized
static void SetMapFieldsInitialized(unittest::TestMap *message)
Definition: map_test_util.cc:49
google::protobuf::MapReflectionTester::GetMapEntryViaReflection
Message * GetMapEntryViaReflection(Message *message, const std::string &field_name, int index)
Definition: map_test_util.cc:740
google::protobuf::MapReflectionTester::map_string_string_val_
const FieldDescriptor * map_string_string_val_
Definition: map_test_util.h:152
google::protobuf::MapTestUtil::SetMapFields
static void SetMapFields(unittest::TestMap *message)
Definition: map_test_util.cc:39
google::protobuf::MapReflectionTester::SetMapFieldsViaReflection
void SetMapFieldsViaReflection(Message *message)
Definition: map_test_util.cc:348
google::protobuf::MapReflectionTester::map_fixed32_fixed32_val_
const FieldDescriptor * map_fixed32_fixed32_val_
Definition: map_test_util.h:138
google::protobuf::MapReflectionTester::map_sint64_sint64_val_
const FieldDescriptor * map_sint64_sint64_val_
Definition: map_test_util.h:136
google::protobuf::MapTestUtil::GetMapEntries
static std::vector< const Message * > GetMapEntries(const unittest::TestMap &message, int index)
Definition: map_test_util.cc:136
google::protobuf::MapReflectionTester::SwapMapsViaReflection
void SwapMapsViaReflection(Message *message)
Definition: map_test_util.cc:904
google::protobuf::MapReflectionTester::ExpectMapFieldsSetViaReflection
void ExpectMapFieldsSetViaReflection(const Message &message)
Definition: map_test_util.cc:973
google::protobuf::MapReflectionTester::map_enum_baz_
const EnumValueDescriptor * map_enum_baz_
Definition: map_test_util.h:121
google::protobuf::MapReflectionTester::map_int32_bytes_val_
const FieldDescriptor * map_int32_bytes_val_
Definition: map_test_util.h:154
google::protobuf::MapReflectionTester::map_int32_enum_key_
const FieldDescriptor * map_int32_enum_key_
Definition: map_test_util.h:155
google::protobuf::MapReflectionTester::RemoveLastMapsViaReflection
void RemoveLastMapsViaReflection(Message *message)
Definition: map_test_util.cc:875
google::protobuf::MapReflectionTester::MutableUnknownFieldsOfMapFieldsViaReflection
void MutableUnknownFieldsOfMapFieldsViaReflection(Message *message)
Definition: map_test_util.cc:915
google::protobuf::MapReflectionTester::map_sint64_sint64_key_
const FieldDescriptor * map_sint64_sint64_key_
Definition: map_test_util.h:135
google::protobuf::MapReflectionTester::map_int32_int32_key_
const FieldDescriptor * map_int32_int32_key_
Definition: map_test_util.h:125
google::protobuf::MapReflectionTester::ExpectMapFieldsSetViaReflectionIterator
void ExpectMapFieldsSetViaReflectionIterator(Message *message)
Definition: map_test_util.cc:1313
google::protobuf::MapTestUtil::ExpectMapFieldsModified
static void ExpectMapFieldsModified(const unittest::TestMap &message)
Definition: map_test_util.cc:81
google::protobuf::MapReflectionTester::ModifyMapFieldsViaReflection
void ModifyMapFieldsViaReflection(Message *message)
Definition: map_test_util.cc:780
google::protobuf::MapReflectionTester::map_int64_int64_val_
const FieldDescriptor * map_int64_int64_val_
Definition: map_test_util.h:128
google::protobuf::MapReflectionTester::MapBegin
MapIterator MapBegin(Message *message, const std::string &field_name)
Definition: map_test_util.cc:746
google::protobuf::MapReflectionTester::SetMapFieldsViaMapReflection
void SetMapFieldsViaMapReflection(Message *message)
Definition: map_test_util.cc:544
google::protobuf::MapReflectionTester::map_string_string_key_
const FieldDescriptor * map_string_string_key_
Definition: map_test_util.h:151
google::protobuf::MapReflectionTester::map_int32_foreign_message_val_
const FieldDescriptor * map_int32_foreign_message_val_
Definition: map_test_util.h:158
google::protobuf::MapReflectionTester::ReleaseLastMapsViaReflection
void ReleaseLastMapsViaReflection(Message *message)
Definition: map_test_util.cc:887
google::protobuf::MapReflectionTester::foreign_c_
const FieldDescriptor * foreign_c_
Definition: map_test_util.h:124
google::protobuf::MapReflectionTester::map_sfixed64_sfixed64_key_
const FieldDescriptor * map_sfixed64_sfixed64_key_
Definition: map_test_util.h:143
google::protobuf::MapTestUtil::ExpectArenaMapFieldsSet
static void ExpectArenaMapFieldsSet(const unittest::TestArenaMap &message)
Definition: map_test_util.cc:67
google::protobuf::MapReflectionTester::map_sfixed32_sfixed32_key_
const FieldDescriptor * map_sfixed32_sfixed32_key_
Definition: map_test_util.h:141
google::protobuf::MapReflectionTester::MapReflectionTester
MapReflectionTester(const Descriptor *base_descriptor)
Definition: map_test_util.cc:223
google::protobuf::MapReflectionTester::map_enum_bar_
const EnumValueDescriptor * map_enum_bar_
Definition: map_test_util.h:120
google::protobuf::MapTestUtil::ExpectMapsSize
static void ExpectMapsSize(const unittest::TestMap &message, int size)
Definition: map_test_util.cc:87
google::protobuf::MapReflectionTester::map_int32_float_val_
const FieldDescriptor * map_int32_float_val_
Definition: map_test_util.h:146
google::protobuf::MapReflectionTester::map_sint32_sint32_key_
const FieldDescriptor * map_sint32_sint32_key_
Definition: map_test_util.h:133
google::protobuf::MapReflectionTester::GetMapValueViaMapReflection
void GetMapValueViaMapReflection(Message *message, const std::string &field_name, const MapKey &map_key, MapValueRef *map_val)
Definition: map_test_util.cc:732
google::protobuf::Message
Definition: src/google/protobuf/message.h:205
google::protobuf::MapReflectionTester::map_int32_bytes_key_
const FieldDescriptor * map_int32_bytes_key_
Definition: map_test_util.h:153
google::protobuf::MapReflectionTester::map_fixed64_fixed64_key_
const FieldDescriptor * map_fixed64_fixed64_key_
Definition: map_test_util.h:139
google::protobuf::MapReflectionTester::ExpectClearViaReflection
void ExpectClearViaReflection(const Message &message)
Definition: map_test_util.cc:1540
google::protobuf::MapReflectionTester::map_uint32_uint32_key_
const FieldDescriptor * map_uint32_uint32_key_
Definition: map_test_util.h:129
google::protobuf::MapReflectionTester::map_uint32_uint32_val_
const FieldDescriptor * map_uint32_uint32_val_
Definition: map_test_util.h:130
protobuf_unittest
Definition: map_test_util_impl.h:39
size
GLsizeiptr size
Definition: glcorearb.h:2943
google::protobuf::MapKey
Definition: map_field.h:371
google::protobuf::MapReflectionTester::map_bool_bool_key_
const FieldDescriptor * map_bool_bool_key_
Definition: map_test_util.h:149
google::protobuf::MapReflectionTester
Definition: map_test_util.h:88
google::protobuf::EnumValueDescriptor
Definition: src/google/protobuf/descriptor.h:1075
google::protobuf::Descriptor
Definition: src/google/protobuf/descriptor.h:231
google::protobuf::MapTestUtil::ExpectMapFieldsSetInitialized
static void ExpectMapFieldsSetInitialized(const unittest::TestMap &message)
Definition: map_test_util.cc:74
google::protobuf::MapReflectionTester::map_int32_float_key_
const FieldDescriptor * map_int32_float_key_
Definition: map_test_util.h:145
google::protobuf::MapReflectionTester::map_int32_int32_val_
const FieldDescriptor * map_int32_int32_val_
Definition: map_test_util.h:126
google::protobuf::MapReflectionTester::map_enum_foo_
const EnumValueDescriptor * map_enum_foo_
Definition: map_test_util.h:122
google::protobuf::MapReflectionTester::map_sfixed32_sfixed32_val_
const FieldDescriptor * map_sfixed32_sfixed32_val_
Definition: map_test_util.h:142
google::protobuf::MapReflectionTester::base_descriptor_
const Descriptor * base_descriptor_
Definition: map_test_util.h:118
google::protobuf::MapReflectionTester::map_int32_double_key_
const FieldDescriptor * map_int32_double_key_
Definition: map_test_util.h:147
google::protobuf::MapReflectionTester::MapEnd
MapIterator MapEnd(Message *message, const std::string &field_name)
Definition: map_test_util.cc:752
google::protobuf::MapReflectionTester::map_int64_int64_key_
const FieldDescriptor * map_int64_int64_key_
Definition: map_test_util.h:127
google::protobuf::MapReflectionTester::map_uint64_uint64_val_
const FieldDescriptor * map_uint64_uint64_val_
Definition: map_test_util.h:132
google::protobuf::MapIterator
Definition: map_field.h:712
google::protobuf::MapReflectionTester::map_uint64_uint64_key_
const FieldDescriptor * map_uint64_uint64_key_
Definition: map_test_util.h:131
google::protobuf::MapTestUtil::GetMapEntriesFromRelease
static std::vector< const Message * > GetMapEntriesFromRelease(unittest::TestMap *message)
Definition: map_test_util.cc:180
index
GLuint index
Definition: glcorearb.h:3055
google::protobuf::MapReflectionTester::map_int32_double_val_
const FieldDescriptor * map_int32_double_val_
Definition: map_test_util.h:148
google::protobuf::MapReflectionTester::map_fixed32_fixed32_key_
const FieldDescriptor * map_fixed32_fixed32_key_
Definition: map_test_util.h:137
google
Definition: data_proto2_to_proto3_util.h:11
message
GLenum GLuint GLenum GLsizei const GLchar * message
Definition: glcorearb.h:2695
google::protobuf::MapReflectionTester::ExpectClearViaReflectionIterator
void ExpectClearViaReflectionIterator(Message *message)
Definition: map_test_util.cc:1564
google::protobuf::MapReflectionTester::ClearMapFieldsViaReflection
void ClearMapFieldsViaReflection(Message *message)
Definition: map_test_util.cc:758
google::protobuf::MapTestUtil
Definition: map_test_util.h:41
google::protobuf::MapValueRef
Definition: map_field.h:565


libaditof
Author(s):
autogenerated on Wed May 21 2025 02:06:56