mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-22 08:34:35 +02:00

msgpack::unpacked is a typedef of the msgpack::object_handle. I recommend using msgpack::object_handle. It can be used not only holding unpacked msgpack objects but also msgpack::objects that are created by any types. Replaced unpack() APIs in test codes and examples. They used to use old APIs.
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#include <msgpack.hpp>
|
|
#include <sstream>
|
|
#include <iterator>
|
|
#include <gtest/gtest.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#if defined(MSGPACK_USE_BOOST)
|
|
#if (BOOST_VERSION / 100000) >= 1 && ((BOOST_VERSION / 100) % 1000) >= 53
|
|
|
|
TEST(MSGPACK_BOOST, pack_convert_string_ref)
|
|
{
|
|
std::stringstream ss;
|
|
std::string s = "ABC";
|
|
boost::string_ref val1(s);
|
|
|
|
msgpack::pack(ss, val1);
|
|
|
|
msgpack::object_handle oh;
|
|
msgpack::unpack(oh, ss.str().data(), ss.str().size());
|
|
boost::string_ref val2 = oh.get().as<boost::string_ref>();
|
|
EXPECT_TRUE(val1 == val2);
|
|
}
|
|
|
|
TEST(MSGPACK_BOOST, object_strinf_ref)
|
|
{
|
|
std::string s = "ABC";
|
|
boost::string_ref val1(s);
|
|
msgpack::object obj(val1);
|
|
boost::string_ref val2 = obj.as<boost::string_ref>();
|
|
EXPECT_TRUE(val1 == val2);
|
|
}
|
|
|
|
TEST(MSGPACK_BOOST, object_with_zone_string_ref)
|
|
{
|
|
msgpack::zone z;
|
|
std::string s = "ABC";
|
|
boost::string_ref val1(s);
|
|
msgpack::object obj(val1, z);
|
|
boost::string_ref val2 = obj.as<boost::string_ref>();
|
|
EXPECT_TRUE(val1 == val2);
|
|
}
|
|
|
|
#endif // (BOOST_VERSION / 100000) >= 1 && ((BOOST_VERSION / 100) % 1000) >= 53
|
|
#endif // defined(MSGPACK_USE_BOOST)
|