Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.1 KiB
98 lines
3.1 KiB
// Protocol Buffers - Google's data interchange format |
|
// Copyright 2023 Google LLC. 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 |
|
|
|
#include "upb/json/encode.h" |
|
|
|
#include <cstddef> |
|
#include <string> |
|
|
|
#include "google/protobuf/struct.upb.h" |
|
#include <gtest/gtest.h> |
|
#include "upb/base/status.hpp" |
|
#include "upb/base/upcast.h" |
|
#include "upb/json/test.upb.h" |
|
#include "upb/json/test.upbdefs.h" |
|
#include "upb/mem/arena.h" |
|
#include "upb/mem/arena.hpp" |
|
#include "upb/reflection/def.hpp" |
|
|
|
static std::string JsonEncode(const upb_test_Box* msg, int options) { |
|
upb::Arena a; |
|
upb::Status status; |
|
upb::DefPool defpool; |
|
upb::MessageDefPtr m(upb_test_Box_getmsgdef(defpool.ptr())); |
|
EXPECT_TRUE(m.ptr() != nullptr); |
|
|
|
size_t json_size = upb_JsonEncode(UPB_UPCAST(msg), m.ptr(), defpool.ptr(), |
|
options, nullptr, 0, status.ptr()); |
|
char* json_buf = (char*)upb_Arena_Malloc(a.ptr(), json_size + 1); |
|
|
|
size_t size = upb_JsonEncode(UPB_UPCAST(msg), m.ptr(), defpool.ptr(), options, |
|
json_buf, json_size + 1, status.ptr()); |
|
EXPECT_EQ(size, json_size); |
|
return std::string(json_buf, json_size); |
|
} |
|
|
|
// Encode a single optional enum. |
|
TEST(JsonTest, EncodeEnum) { |
|
upb::Arena a; |
|
|
|
upb_test_Box* foo = upb_test_Box_new(a.ptr()); |
|
upb_test_Box_set_first_tag(foo, upb_test_Z_BAR); |
|
|
|
EXPECT_EQ(R"({"firstTag":"Z_BAR"})", JsonEncode(foo, 0)); |
|
EXPECT_EQ(R"({"firstTag":1})", |
|
JsonEncode(foo, upb_JsonEncode_FormatEnumsAsIntegers)); |
|
} |
|
|
|
// Encode a single optional negative enum. |
|
TEST(JsonTest, EncodeNegativeEnum) { |
|
upb::Arena a; |
|
|
|
upb_test_Box* foo = upb_test_Box_new(a.ptr()); |
|
upb_test_Box_set_last_tag(foo, upb_test_Z_BAZ); |
|
|
|
EXPECT_EQ(R"({"lastTag":"Z_BAZ"})", JsonEncode(foo, 0)); |
|
EXPECT_EQ(R"({"lastTag":-2})", |
|
JsonEncode(foo, upb_JsonEncode_FormatEnumsAsIntegers)); |
|
} |
|
|
|
// Encode a single repeated enum. |
|
TEST(JsonTest, EncodeRepeatedEnum) { |
|
upb::Arena a; |
|
|
|
upb_test_Box* foo = upb_test_Box_new(a.ptr()); |
|
upb_test_Box_add_more_tags(foo, upb_test_Z_BAT, a.ptr()); |
|
|
|
EXPECT_EQ(R"({"moreTags":["Z_BAT"]})", JsonEncode(foo, 0)); |
|
EXPECT_EQ(R"({"moreTags":[13]})", |
|
JsonEncode(foo, upb_JsonEncode_FormatEnumsAsIntegers)); |
|
} |
|
|
|
// Special case: encode null enum. |
|
TEST(JsonTest, EncodeNullEnum) { |
|
upb::Arena a; |
|
|
|
upb_test_Box* foo = upb_test_Box_new(a.ptr()); |
|
google_protobuf_Value_set_null_value(upb_test_Box_mutable_val(foo, a.ptr()), |
|
google_protobuf_NULL_VALUE); |
|
|
|
EXPECT_EQ(R"({"val":null})", JsonEncode(foo, 0)); |
|
EXPECT_EQ(R"({"val":null})", |
|
JsonEncode(foo, upb_JsonEncode_FormatEnumsAsIntegers)); |
|
} |
|
|
|
TEST(JsonTest, EncodeConflictJsonName) { |
|
upb::Arena a; |
|
upb_test_Box* box = upb_test_Box_new(a.ptr()); |
|
upb_test_Box_set_value(box, 2); |
|
EXPECT_EQ(R"({"old_value":2})", JsonEncode(box, 0)); |
|
|
|
upb_test_Box* new_box = upb_test_Box_new(a.ptr()); |
|
upb_test_Box_set_new_value(new_box, 2); |
|
EXPECT_EQ(R"({"value":2})", JsonEncode(new_box, 0)); |
|
}
|
|
|