// Copyright (C) 2014 Andrzej Krzemienski. // // Use, modification, and distribution is subject to 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) // // See http://www.boost.org/lib/optional for documentation. // // You are welcome to contact the author at: // akrzemi1@gmail.com // // Revisions: // #include #include #include #define BOOST_ENABLE_ASSERT_HANDLER #include "boost/bind/apply.hpp" // Included just to test proper interaction with boost::apply<> as reported by Daniel Wallin #include "boost/mpl/bool.hpp" #include "boost/mpl/bool_fwd.hpp" // For mpl::true_ and mpl::false_ #include "boost/optional/optional.hpp" #ifdef __BORLANDC__ #pragma hdrstop #endif #include "boost/none.hpp" #include "boost/test/minimal.hpp" #include "optional_test_common.cpp" struct IntWrapper { int _i; IntWrapper(int i) : _i(i) {} bool operator==(IntWrapper const& rhs) const { return _i == rhs._i; } }; template void test_function_value_or_for() { optional oM0; const optional oC0; optional oM1(1); const optional oC2(2); BOOST_CHECK(oM0.value_or(5) == 5); BOOST_CHECK(oC0.value_or(5) == 5); BOOST_CHECK(oM1.value_or(5) == 1); BOOST_CHECK(oC2.value_or(5) == 2); } template void test_function_value_for() { optional o0; optional o1(1); const optional oC(2); try { T& v = o1.value(); BOOST_CHECK(v == 1); } catch(...) { BOOST_CHECK(false); } try { T const& v = oC.value(); BOOST_CHECK(v == 2); } catch(...) { BOOST_CHECK(false); } try { T& v = o0.value(); BOOST_CHECK(false); unused_variable(v); } catch(boost::bad_optional_access const&) { } catch(...) { BOOST_CHECK(false); } } void test_function_value() { test_function_value_for(); test_function_value_for(); test_function_value_for(); } struct FatToIntConverter { static int conversions; int _val; FatToIntConverter(int val) : _val(val) {} operator int() const { conversions += 1; return _val; } }; int FatToIntConverter::conversions = 0; void test_function_value_or() { test_function_value_or_for(); test_function_value_or_for(); test_function_value_or_for(); optional oi(1); BOOST_CHECK(oi.value_or(FatToIntConverter(2)) == 1); BOOST_CHECK(FatToIntConverter::conversions == 0); oi = boost::none; BOOST_CHECK(oi.value_or(FatToIntConverter(2)) == 2); BOOST_CHECK(FatToIntConverter::conversions == 1); } int test_main( int, char* [] ) { try { test_function_value(); test_function_value_or(); } catch ( ... ) { BOOST_ERROR("Unexpected Exception caught!"); } return 0; }