blob: 26849eea090eee87f9c80e84bb2172341001f8ce [file] [log] [blame]
Adam Cozzette501ecec2023-09-26 14:36:20 -07001// Protocol Buffers - Google's data interchange format
2// Copyright 2023 Google LLC. All rights reserved.
Adam Cozzette501ecec2023-09-26 14:36:20 -07003//
Protobuf Team Bot0fab7732023-11-20 13:38:15 -08004// 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 Cozzette501ecec2023-09-26 14:36:20 -07007
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
16namespace protos::testing {
17namespace {
18using ::protos_generator::test::protos::TestModel;
19
20TEST(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