mirror of
https://github.com/boostorg/lexical_cast.git
synced 2025-05-09 14:57:47 +00:00
87 lines
2.2 KiB
C++
87 lines
2.2 KiB
C++
// Unit test for boost::lexical_cast.
|
|
//
|
|
// See http://www.boost.org for most recent version, including documentation.
|
|
//
|
|
// Copyright Antony Polukhin, 2012-2023.
|
|
//
|
|
// Distributed under the Boost
|
|
// Software License, Version 1.0. (See accompanying file
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt).
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
#if defined(BOOST_NO_STRINGSTREAM)
|
|
typedef std::strstream ss_t;
|
|
#else
|
|
typedef std::stringstream ss_t;
|
|
#endif
|
|
|
|
void test_void_pointers_conversions()
|
|
{
|
|
void *p_to_null = NULL;
|
|
const void *cp_to_data = "Some data";
|
|
char nonconst_data[5];
|
|
void *p_to_data = nonconst_data;
|
|
ss_t ss;
|
|
|
|
ss << p_to_null;
|
|
BOOST_TEST_EQ(boost::lexical_cast<std::string>(p_to_null), ss.str());
|
|
ss.str(std::string());
|
|
|
|
ss << cp_to_data;
|
|
BOOST_TEST_EQ(boost::lexical_cast<std::string>(cp_to_data), ss.str());
|
|
ss.str(std::string());
|
|
|
|
ss << p_to_data;
|
|
BOOST_TEST_EQ(boost::lexical_cast<std::string>(p_to_data), ss.str());
|
|
ss.str(std::string());
|
|
}
|
|
|
|
struct incomplete_type;
|
|
|
|
void test_incomplete_type_pointers_conversions()
|
|
{
|
|
incomplete_type *p_to_null = NULL;
|
|
const incomplete_type *cp_to_data = NULL;
|
|
char nonconst_data[5];
|
|
incomplete_type *p_to_data = reinterpret_cast<incomplete_type*>(nonconst_data);
|
|
ss_t ss;
|
|
|
|
ss << p_to_null;
|
|
BOOST_TEST_EQ(boost::lexical_cast<std::string>(p_to_null), ss.str());
|
|
ss.str(std::string());
|
|
|
|
ss << cp_to_data;
|
|
BOOST_TEST_EQ(boost::lexical_cast<std::string>(cp_to_data), ss.str());
|
|
ss.str(std::string());
|
|
|
|
ss << p_to_data;
|
|
BOOST_TEST_EQ(boost::lexical_cast<std::string>(p_to_data), ss.str());
|
|
ss.str(std::string());
|
|
}
|
|
|
|
struct ble;
|
|
typedef struct ble *meh;
|
|
std::ostream& operator <<(std::ostream &o, meh) {
|
|
o << "yay";
|
|
return o;
|
|
}
|
|
|
|
void test_inomplete_type_with_overloaded_ostream_op() {
|
|
meh heh = NULL;
|
|
ss_t ss;
|
|
ss << heh;
|
|
BOOST_TEST_EQ(boost::lexical_cast<std::string>(heh), ss.str());
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test_void_pointers_conversions();
|
|
test_incomplete_type_pointers_conversions();
|
|
test_inomplete_type_with_overloaded_ostream_op();
|
|
|
|
return boost::report_errors();
|
|
}
|