Adam Cozzette | 501ecec | 2023-09-26 14:36:20 -0700 | [diff] [blame] | 1 | // Protocol Buffers - Google's data interchange format |
| 2 | // Copyright 2023 Google LLC. All rights reserved. |
Adam Cozzette | 501ecec | 2023-09-26 14:36:20 -0700 | [diff] [blame] | 3 | // |
Protobuf Team Bot | 0fab773 | 2023-11-20 13:38:15 -0800 | [diff] [blame] | 4 | // Use of this source code is governed by a BSD-style |
| 5 | // license that can be found in the LICENSE file or at |
| 6 | // https://developers.google.com/open-source/licenses/bsd |
Adam Cozzette | 501ecec | 2023-09-26 14:36:20 -0700 | [diff] [blame] | 7 | |
| 8 | #include "protos/protos_internal.h" |
| 9 | |
| 10 | #include <gmock/gmock.h> |
| 11 | #include <gtest/gtest.h> |
| 12 | #include "protos_generator/tests/test_model.upb.h" |
| 13 | #include "protos_generator/tests/test_model.upb.proto.h" |
| 14 | #include "upb/mem/arena.h" |
| 15 | |
| 16 | namespace protos::testing { |
| 17 | namespace { |
| 18 | using ::protos_generator::test::protos::TestModel; |
| 19 | |
| 20 | TEST(CppGeneratedCode, InternalMoveMessage) { |
| 21 | // Generate message (simulating message created in another VM/language) |
| 22 | upb_Arena* source_arena = upb_Arena_New(); |
| 23 | protos_generator_test_TestModel* message = |
| 24 | protos_generator_test_TestModel_new(source_arena); |
| 25 | ASSERT_NE(message, nullptr); |
| 26 | protos_generator_test_TestModel_set_int_value_with_default(message, 123); |
| 27 | |
| 28 | // Move ownership. |
| 29 | TestModel model = |
| 30 | protos::internal::MoveMessage<TestModel>(message, source_arena); |
| 31 | // Now that we have moved ownership, free original arena. |
| 32 | upb_Arena_Free(source_arena); |
| 33 | EXPECT_EQ(model.int_value_with_default(), 123); |
| 34 | } |
| 35 | |
| 36 | } // namespace |
| 37 | } // namespace protos::testing |