| // Protocol Buffers - Google's data interchange format |
| // Copyright 2008 Google Inc. All rights reserved. |
| // |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file or at |
| // https://developers.google.com/open-source/licenses/bsd |
| |
| // Author: kenton@google.com (Kenton Varda) |
| // Based on original Protocol Buffers design by |
| // Sanjay Ghemawat, Jeff Dean, and others. |
| // |
| // Since the reflection interface for DynamicMessage is implemented by |
| // GenericMessageReflection, the only thing we really have to test is |
| // that DynamicMessage correctly sets up the information that |
| // GenericMessageReflection needs to use. So, we focus on that in this |
| // test. Other tests, such as generic_message_reflection_unittest and |
| // reflection_ops_unittest, cover the rest of the functionality used by |
| // DynamicMessage. |
| |
| #include "google/protobuf/dynamic_message.h" |
| |
| #include <cstddef> |
| #include <memory> |
| #include <string> |
| #include <tuple> |
| #include <vector> |
| |
| #include "google/protobuf/descriptor.pb.h" |
| #include <gtest/gtest.h> |
| #include "absl/strings/str_cat.h" |
| #include "absl/strings/string_view.h" |
| #include "google/protobuf/cpp_features.pb.h" |
| #include "google/protobuf/descriptor.h" |
| #include "google/protobuf/edition_unittest.pb.h" |
| #include "google/protobuf/port.h" |
| #include "google/protobuf/test_util.h" |
| #include "google/protobuf/unittest.pb.h" |
| #include "google/protobuf/unittest_import.pb.h" |
| #include "google/protobuf/unittest_import_public.pb.h" |
| #include "google/protobuf/unittest_no_field_presence.pb.h" |
| |
| |
| #include "google/protobuf/port_def.inc" |
| |
| namespace google { |
| namespace protobuf { |
| namespace { |
| |
| void AddUnittestDescriptors( |
| DescriptorPool& pool, std::vector<const FileDescriptor*>* files = nullptr) { |
| const auto add = [&](auto* descriptor) { |
| FileDescriptorProto file; |
| descriptor->file()->CopyTo(&file); |
| ASSERT_TRUE(pool.BuildFile(file) != nullptr); |
| if (files) { |
| files->push_back(pool.FindFileByName(file.name())); |
| } |
| }; |
| // We want to make sure that DynamicMessage works (particularly with |
| // extensions) even if we use descriptors that are *not* from compiled-in |
| // types, so we make copies of the descriptors for unittest.proto and |
| // unittest_import.proto. |
| add(unittest_import::PublicImportMessage::descriptor()); |
| add(unittest_import::ImportMessage::descriptor()); |
| add(unittest::TestAllTypes::descriptor()); |
| add(proto2_nofieldpresence_unittest::TestAllTypes::descriptor()); |
| |
| add(google::protobuf::DescriptorProto::descriptor()); |
| add(pb::CppFeatures::descriptor()); |
| add(edition_unittest::TestAllTypes::descriptor()); |
| } |
| |
| TEST(DynamicMessageTest, |
| MicroStringFieldsWithDefaultValuesDontCopyTheDefaultOnCreate) { |
| if (!internal::EnableExperimentalMicroString()) { |
| GTEST_SKIP() << "MicroString is not enabled."; |
| } |
| DynamicMessageFactory factory; |
| const auto& prototype = |
| factory.GetPrototype(edition_unittest::TestAllTypes::descriptor()); |
| std::unique_ptr<Message> msg(prototype->New()), msg2(prototype->New()); |
| |
| const auto* field = |
| edition_unittest::TestAllTypes::descriptor()->FindFieldByName( |
| "default_string"); |
| |
| Reflection::ScratchSpace scratch; |
| absl::string_view str = |
| msg->GetReflection()->GetStringView(*msg, field, scratch); |
| absl::string_view str2 = |
| msg2->GetReflection()->GetStringView(*msg2, field, scratch); |
| |
| EXPECT_EQ(str, "hello"); |
| EXPECT_EQ(str2, "hello"); |
| // But also both point to the exact same buffer. |
| EXPECT_EQ(static_cast<const void*>(str.data()), |
| static_cast<const void*>(str2.data())); |
| } |
| |
| TEST(DynamicMessageTest, |
| MicroStringFieldsWithDefaultValuesResetProperlyOnClear) { |
| if (!internal::EnableExperimentalMicroString()) { |
| GTEST_SKIP() << "MicroString is not enabled."; |
| } |
| DynamicMessageFactory factory; |
| const auto& prototype = |
| factory.GetPrototype(edition_unittest::TestAllTypes::descriptor()); |
| std::unique_ptr<Message> msg(prototype->New()); |
| |
| const auto* field = |
| edition_unittest::TestAllTypes::descriptor()->FindFieldByName( |
| "default_string"); |
| const auto* ref = msg->GetReflection(); |
| |
| Reflection::ScratchSpace scratch; |
| absl::string_view default_value = ref->GetStringView(*msg, field, scratch); |
| ref->SetString(msg.get(), field, std::string("foo")); |
| EXPECT_EQ("foo", ref->GetStringView(*msg, field, scratch)); |
| msg->Clear(); |
| EXPECT_EQ(default_value, ref->GetStringView(*msg, field, scratch)); |
| // But also points to the original default buffer. |
| EXPECT_EQ( |
| static_cast<const void*>(ref->GetStringView(*msg, field, scratch).data()), |
| static_cast<const void*>(default_value.data())); |
| } |
| |
| class DynamicMessageTest |
| : public ::testing::TestWithParam<std::tuple<bool, bool>> { |
| protected: |
| DescriptorPool pool_; |
| DynamicMessageFactory factory_; |
| const Descriptor* descriptor_; |
| const Message* prototype_; |
| const Descriptor* extensions_descriptor_; |
| const Message* extensions_prototype_; |
| const Descriptor* packed_extensions_descriptor_; |
| const Message* packed_extensions_prototype_; |
| const Descriptor* packed_descriptor_; |
| const Message* packed_prototype_; |
| const Descriptor* oneof_descriptor_; |
| const Message* oneof_prototype_; |
| const Descriptor* proto3_descriptor_; |
| const Message* proto3_prototype_; |
| |
| DynamicMessageTest() : factory_(&pool_) {} |
| |
| void SetUp() override { |
| AddUnittestDescriptors(pool_); |
| |
| const auto type_name = [&](absl::string_view name) { |
| return absl::StrCat( |
| use_editions_proto() ? "edition_unittest." : "proto2_unittest.", |
| name); |
| }; |
| |
| descriptor_ = pool_.FindMessageTypeByName(type_name("TestAllTypes")); |
| ASSERT_TRUE(descriptor_ != nullptr); |
| prototype_ = factory_.GetPrototype(descriptor_); |
| |
| extensions_descriptor_ = |
| pool_.FindMessageTypeByName(type_name("TestAllExtensions")); |
| ASSERT_TRUE(extensions_descriptor_ != nullptr); |
| extensions_prototype_ = factory_.GetPrototype(extensions_descriptor_); |
| |
| packed_extensions_descriptor_ = |
| pool_.FindMessageTypeByName(type_name("TestPackedExtensions")); |
| ASSERT_TRUE(packed_extensions_descriptor_ != nullptr); |
| packed_extensions_prototype_ = |
| factory_.GetPrototype(packed_extensions_descriptor_); |
| |
| packed_descriptor_ = |
| pool_.FindMessageTypeByName(type_name("TestPackedTypes")); |
| ASSERT_TRUE(packed_descriptor_ != nullptr); |
| packed_prototype_ = factory_.GetPrototype(packed_descriptor_); |
| |
| oneof_descriptor_ = pool_.FindMessageTypeByName(type_name("TestOneof2")); |
| ASSERT_TRUE(oneof_descriptor_ != nullptr); |
| oneof_prototype_ = factory_.GetPrototype(oneof_descriptor_); |
| |
| proto3_descriptor_ = pool_.FindMessageTypeByName( |
| "proto2_nofieldpresence_unittest.TestAllTypes"); |
| ASSERT_TRUE(proto3_descriptor_ != nullptr); |
| proto3_prototype_ = factory_.GetPrototype(proto3_descriptor_); |
| } |
| |
| bool use_arena() const { return std::get<0>(GetParam()); } |
| bool use_editions_proto() const { return std::get<1>(GetParam()); } |
| }; |
| |
| TEST_P(DynamicMessageTest, Descriptor) { |
| // Check that the descriptor on the DynamicMessage matches the descriptor |
| // passed to GetPrototype(). |
| EXPECT_EQ(prototype_->GetDescriptor(), descriptor_); |
| } |
| |
| TEST_P(DynamicMessageTest, OnePrototype) { |
| // Check that requesting the same prototype twice produces the same object. |
| EXPECT_EQ(prototype_, factory_.GetPrototype(descriptor_)); |
| } |
| |
| TEST_P(DynamicMessageTest, Defaults) { |
| // Check that all default values are set correctly in the initial message. |
| TestUtil::ReflectionTester reflection_tester(descriptor_); |
| reflection_tester.ExpectClearViaReflection(*prototype_); |
| } |
| |
| TEST_P(DynamicMessageTest, IndependentOffsets) { |
| // Check that all fields have independent offsets by setting each |
| // one to a unique value then checking that they all still have those |
| // unique values (i.e. they don't stomp each other). |
| Arena arena; |
| Message* message = prototype_->New(use_arena() ? &arena : nullptr); |
| TestUtil::ReflectionTester reflection_tester(descriptor_); |
| |
| reflection_tester.SetAllFieldsViaReflection(message); |
| reflection_tester.ExpectAllFieldsSetViaReflection(*message); |
| |
| if (!use_arena()) { |
| delete message; |
| } |
| } |
| |
| TEST_P(DynamicMessageTest, Extensions) { |
| // Check that extensions work. |
| Arena arena; |
| Message* message = extensions_prototype_->New(use_arena() ? &arena : nullptr); |
| TestUtil::ReflectionTester reflection_tester(extensions_descriptor_); |
| |
| reflection_tester.SetAllFieldsViaReflection(message); |
| reflection_tester.ExpectAllFieldsSetViaReflection(*message); |
| |
| if (!use_arena()) { |
| delete message; |
| } |
| } |
| |
| TEST_P(DynamicMessageTest, PackedExtensions) { |
| // Check that extensions work. |
| Arena arena; |
| Message* message = |
| packed_extensions_prototype_->New(use_arena() ? &arena : nullptr); |
| TestUtil::ReflectionTester reflection_tester(packed_extensions_descriptor_); |
| |
| reflection_tester.SetPackedFieldsViaReflection(message); |
| reflection_tester.ExpectPackedFieldsSetViaReflection(*message); |
| |
| if (!use_arena()) { |
| delete message; |
| } |
| } |
| |
| TEST_P(DynamicMessageTest, PackedFields) { |
| // Check that packed fields work properly. |
| Arena arena; |
| Message* message = packed_prototype_->New(use_arena() ? &arena : nullptr); |
| TestUtil::ReflectionTester reflection_tester(packed_descriptor_); |
| |
| reflection_tester.SetPackedFieldsViaReflection(message); |
| reflection_tester.ExpectPackedFieldsSetViaReflection(*message); |
| |
| if (!use_arena()) { |
| delete message; |
| } |
| } |
| |
| TEST_P(DynamicMessageTest, Oneof) { |
| // Check that oneof fields work properly. |
| Arena arena; |
| Message* message = oneof_prototype_->New(use_arena() ? &arena : nullptr); |
| |
| // Check default values. |
| const Descriptor* descriptor = message->GetDescriptor(); |
| const Reflection* reflection = message->GetReflection(); |
| EXPECT_EQ(0, reflection->GetInt32(*message, |
| descriptor->FindFieldByName("foo_int"))); |
| EXPECT_EQ("", reflection->GetString( |
| *message, descriptor->FindFieldByName("foo_string"))); |
| EXPECT_EQ("", reflection->GetString(*message, |
| descriptor->FindFieldByName("foo_cord"))); |
| EXPECT_EQ("", reflection->GetString( |
| *message, descriptor->FindFieldByName("foo_string_piece"))); |
| EXPECT_EQ("", reflection->GetString( |
| *message, descriptor->FindFieldByName("foo_bytes"))); |
| EXPECT_EQ( |
| use_editions_proto() ? +edition_unittest::TestOneof2::UNKNOWN |
| : +unittest::TestOneof2::FOO, |
| reflection->GetEnum(*message, descriptor->FindFieldByName("foo_enum")) |
| ->number()); |
| const Descriptor* nested_descriptor; |
| const Message* nested_prototype; |
| nested_descriptor = oneof_descriptor_->FindNestedTypeByName("NestedMessage"); |
| nested_prototype = factory_.GetPrototype(nested_descriptor); |
| EXPECT_EQ(nested_prototype, |
| &reflection->GetMessage( |
| *message, descriptor->FindFieldByName("foo_message"))); |
| const Descriptor* foogroup_descriptor; |
| const Message* foogroup_prototype; |
| foogroup_descriptor = oneof_descriptor_->FindNestedTypeByName("FooGroup"); |
| foogroup_prototype = factory_.GetPrototype(foogroup_descriptor); |
| EXPECT_EQ(foogroup_prototype, |
| &reflection->GetMessage(*message, |
| descriptor->FindFieldByName("foogroup"))); |
| EXPECT_NE(foogroup_prototype, |
| &reflection->GetMessage( |
| *message, descriptor->FindFieldByName("foo_lazy_message"))); |
| EXPECT_EQ(5, reflection->GetInt32(*message, |
| descriptor->FindFieldByName("bar_int"))); |
| EXPECT_EQ("STRING", reflection->GetString( |
| *message, descriptor->FindFieldByName("bar_string"))); |
| EXPECT_EQ("CORD", reflection->GetString( |
| *message, descriptor->FindFieldByName("bar_cord"))); |
| EXPECT_EQ("SPIECE", |
| reflection->GetString( |
| *message, descriptor->FindFieldByName("bar_string_piece"))); |
| EXPECT_EQ("BYTES", reflection->GetString( |
| *message, descriptor->FindFieldByName("bar_bytes"))); |
| EXPECT_EQ( |
| unittest::TestOneof2::BAR, |
| reflection->GetEnum(*message, descriptor->FindFieldByName("bar_enum")) |
| ->number()); |
| |
| // Check set functions. |
| TestUtil::ReflectionTester reflection_tester(oneof_descriptor_); |
| reflection_tester.SetOneofViaReflection(message); |
| reflection_tester.ExpectOneofSetViaReflection(*message); |
| |
| if (!use_arena()) { |
| delete message; |
| } |
| } |
| |
| TEST_P(DynamicMessageTest, SpaceUsed) { |
| // Test that SpaceUsedLong() works properly |
| |
| // Since we share the implementation with generated messages, we don't need |
| // to test very much here. Just make sure it appears to be working. |
| |
| Arena arena; |
| Message* message = prototype_->New(use_arena() ? &arena : nullptr); |
| TestUtil::ReflectionTester reflection_tester(descriptor_); |
| |
| size_t initial_space_used = message->SpaceUsedLong(); |
| |
| reflection_tester.SetAllFieldsViaReflection(message); |
| EXPECT_LT(initial_space_used, message->SpaceUsedLong()); |
| |
| if (!use_arena()) { |
| delete message; |
| } |
| } |
| |
| TEST_P(DynamicMessageTest, Arena) { |
| Arena arena; |
| Message* message = prototype_->New(&arena); |
| Message* extension_message = extensions_prototype_->New(&arena); |
| Message* packed_message = packed_prototype_->New(&arena); |
| Message* oneof_message = oneof_prototype_->New(&arena); |
| |
| // avoid unused-variable error. |
| (void)message; |
| (void)extension_message; |
| (void)packed_message; |
| (void)oneof_message; |
| // Return without freeing: should not leak. |
| } |
| |
| |
| TEST_P(DynamicMessageTest, Proto3) { |
| Message* message = proto3_prototype_->New(); |
| const Reflection* refl = message->GetReflection(); |
| const Descriptor* desc = message->GetDescriptor(); |
| |
| // Just test a single primitive and single message field here to make sure we |
| // are getting the no-field-presence semantics elsewhere. DynamicMessage uses |
| // GeneratedMessageReflection under the hood, so the rest should be fine as |
| // long as GMR recognizes that we're using a proto3 message. |
| const FieldDescriptor* optional_int32 = |
| desc->FindFieldByName("optional_int32"); |
| const FieldDescriptor* optional_msg = |
| desc->FindFieldByName("optional_nested_message"); |
| EXPECT_TRUE(optional_int32 != nullptr); |
| EXPECT_TRUE(optional_msg != nullptr); |
| |
| EXPECT_EQ(false, refl->HasField(*message, optional_int32)); |
| refl->SetInt32(message, optional_int32, 42); |
| EXPECT_EQ(true, refl->HasField(*message, optional_int32)); |
| refl->SetInt32(message, optional_int32, 0); |
| EXPECT_EQ(false, refl->HasField(*message, optional_int32)); |
| |
| EXPECT_EQ(false, refl->HasField(*message, optional_msg)); |
| refl->MutableMessage(message, optional_msg); |
| EXPECT_EQ(true, refl->HasField(*message, optional_msg)); |
| delete refl->ReleaseMessage(message, optional_msg); |
| EXPECT_EQ(false, refl->HasField(*message, optional_msg)); |
| |
| // Also ensure that the default instance handles field presence properly. |
| EXPECT_EQ(false, refl->HasField(*proto3_prototype_, optional_msg)); |
| |
| delete message; |
| } |
| |
| INSTANTIATE_TEST_SUITE_P(UseArena, DynamicMessageTest, |
| ::testing::Combine(::testing::Bool(), |
| ::testing::Bool())); |
| |
| |
| } // namespace |
| } // namespace protobuf |
| } // namespace google |
| |
| #include "google/protobuf/port_undef.inc" |