1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
// Copyright 2018-2024 Emil Dotchevski and Reverge Studios, Inc.
// 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)
#ifdef BOOST_LEAF_TEST_SINGLE_HEADER
# include "leaf.hpp"
#else
# include <boost/leaf/result.hpp>
# include <boost/leaf/handle_errors.hpp>
#endif
#if BOOST_LEAF_CFG_STD_STRING
# include <sstream>
# include <iostream>
#endif
#include "lightweight_test.hpp"
namespace leaf = boost::leaf;
struct non_printable_value
{
};
struct e_err
{
template <class CharT, class Traits>
friend std::ostream & operator<<( std::basic_ostream<CharT, Traits> & os, e_err const & )
{
return os << "e_err";
}
};
int main()
{
{
leaf::result<int> r = 42;
BOOST_TEST(r);
#if BOOST_LEAF_CFG_STD_STRING
std::ostringstream ss;
ss << r;
std::string s = ss.str();
std::cout << s << std::endl;
if( BOOST_LEAF_CFG_DIAGNOSTICS )
BOOST_TEST_EQ(s, "42");
#endif
}
{
leaf::result<non_printable_value> r;
BOOST_TEST(r);
#if BOOST_LEAF_CFG_STD_STRING
std::ostringstream ss;
ss << r;
std::string s = ss.str();
std::cout << s << std::endl;
if( BOOST_LEAF_CFG_DIAGNOSTICS )
BOOST_TEST_EQ(s, "{not printable}");
#endif
}
{
leaf::result<void> r;
BOOST_TEST(r);
#if BOOST_LEAF_CFG_STD_STRING
std::ostringstream ss;
ss << r;
std::string s = ss.str();
std::cout << s << std::endl;
if( BOOST_LEAF_CFG_DIAGNOSTICS )
BOOST_TEST_EQ(s, "No error");
#endif
}
{
leaf::result<int> r = leaf::new_error(e_err{ });
BOOST_TEST(!r);
#if BOOST_LEAF_CFG_STD_STRING
std::ostringstream ss;
ss << r;
std::string s = ss.str();
std::cout << s << std::endl;
leaf::error_id err = r.error();
if( BOOST_LEAF_CFG_DIAGNOSTICS )
BOOST_TEST_EQ(s, "Error serial #" + std::to_string(err.value()/4));
#endif
}
#if BOOST_LEAF_CFG_CAPTURE
{
leaf::result<int> r = leaf::try_capture_all(
[]() -> leaf::result<int>
{
return leaf::new_error(e_err{ });
} );
#if BOOST_LEAF_CFG_STD_STRING
std::ostringstream ss;
ss << r;
std::string s = ss.str();
std::cout << s << std::endl;
leaf::error_id err = r.error();
BOOST_TEST_NE(s.find("Error serial #" + std::to_string(err.value()/4)), s.npos);
if( BOOST_LEAF_CFG_DIAGNOSTICS )
{
BOOST_TEST_NE(s.find("Captured:"), s.npos);
BOOST_TEST_NE(s.find("e_err: e_err"), s.npos);
}
#endif
}
#endif
return boost::report_errors();
}
|