/* Unit testing for outcomes (C) 2013-2026 Niall Douglas (6 commits) Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #if BOOST_OUTCOME_FOUND_COROUTINE_HEADER #include #include namespace coroutines { template using eager = BOOST_OUTCOME_V2_NAMESPACE::awaitables::eager; template using lazy = BOOST_OUTCOME_V2_NAMESPACE::awaitables::lazy; template using generator = BOOST_OUTCOME_V2_NAMESPACE::awaitables::generator; template using result = BOOST_OUTCOME_V2_NAMESPACE::result; inline eager> eager_int(int x) { co_return x + 1; } inline lazy> lazy_int(int x) { co_return x + 1; } inline eager> eager_error() { co_return boost::system::errc::not_enough_memory; } inline lazy> lazy_error() { co_return boost::system::errc::not_enough_memory; } inline eager> eager_void() { co_return boost::system::errc::not_enough_memory; } inline lazy> lazy_void() { co_return boost::system::errc::not_enough_memory; } inline generator> generator_int(int x) { co_yield x; co_yield x + 1; co_yield x + 2; } inline generator> generator_error(int x) { co_yield x; co_yield x + 1; co_yield boost::system::errc::not_enough_memory; } template inline eager> eager_coawait(U &&f, Args... args) { BOOST_OUTCOME_CO_TRYV2(auto &&, co_await f(args...)); co_return "hi"; } template inline lazy> lazy_coawait(U &&f, Args... args) { BOOST_OUTCOME_CO_TRYV2(auto &&, co_await f(args...)); co_return "hi"; } #ifndef BOOST_NO_EXCEPTIONS struct custom_exception_type { }; inline lazy> result_exception(boost::exception_ptr e) { boost::rethrow_exception(e); co_return 5; } inline lazy> outcome_exception(boost::exception_ptr e) { boost::rethrow_exception(e); co_return 5; } inline generator> generator_exception(boost::exception_ptr e) { co_yield 5; co_yield 6; boost::rethrow_exception(e); } #endif inline eager eager_int2(int x) { co_return x + 1; } inline lazy lazy_int2(int x) { co_return x + 1; } inline eager eager_void2() { co_return; } inline lazy lazy_void2() { co_return; } } // namespace coroutines BOOST_OUTCOME_AUTO_TEST_CASE(works_coroutine_eager_lazy, "Tests that results are eager and lazy awaitable") { using namespace coroutines; auto ensure_coroutine_completed_immediately = [](auto t) { BOOST_CHECK(t.await_ready()); // must have eagerly evaluated return t.await_resume(); // fetch the value returned into the promise by the coroutine }; auto ensure_coroutine_needs_resuming_once = [](auto t) { BOOST_CHECK(!t.await_ready()); // must not have eagerly evaluated #if BOOST_OUTCOME_HAVE_NOOP_COROUTINE t.await_suspend({}).resume(); // resume execution, which sets the promise #else t.await_suspend({}); // resume execution, which sets the promise #endif BOOST_CHECK(t.await_ready()); // must now be ready return t.await_resume(); // fetch the value returned into the promise by the coroutine }; // eager_int never suspends, sets promise immediately, must be able to retrieve immediately BOOST_CHECK(ensure_coroutine_completed_immediately(eager_int(5)).value() == 6); // lazy_int suspends before execution, needs resuming to set the promise BOOST_CHECK(ensure_coroutine_needs_resuming_once(lazy_int(5)).value() == 6); BOOST_CHECK(ensure_coroutine_completed_immediately(eager_error()).error() == boost::system::errc::not_enough_memory); BOOST_CHECK(ensure_coroutine_needs_resuming_once(lazy_error()).error() == boost::system::errc::not_enough_memory); BOOST_CHECK(ensure_coroutine_completed_immediately(eager_void()).error() == boost::system::errc::not_enough_memory); BOOST_CHECK(ensure_coroutine_needs_resuming_once(lazy_void()).error() == boost::system::errc::not_enough_memory); // co_await eager_int realises it has already completed, does not suspend. BOOST_CHECK(ensure_coroutine_completed_immediately(eager_coawait(eager_int, 5)).value() == "hi"); // co_await lazy_int resumes the suspended coroutine. BOOST_CHECK(ensure_coroutine_needs_resuming_once(lazy_coawait(lazy_int, 5)).value() == "hi"); #ifndef BOOST_NO_EXCEPTIONS auto e = boost::copy_exception(custom_exception_type()); BOOST_CHECK_THROW(ensure_coroutine_needs_resuming_once(result_exception(e)).value(), custom_exception_type); BOOST_CHECK_THROW(ensure_coroutine_needs_resuming_once(outcome_exception(e)).value(), custom_exception_type); #endif BOOST_CHECK(ensure_coroutine_completed_immediately(eager_int2(5)) == 6); BOOST_CHECK(ensure_coroutine_needs_resuming_once(lazy_int2(5)) == 6); ensure_coroutine_completed_immediately(eager_void2()); ensure_coroutine_needs_resuming_once(lazy_void2()); } BOOST_OUTCOME_AUTO_TEST_CASE(works_coroutine_generator, "Tests that results can be generated") { using namespace coroutines; auto check_generator = [](auto t) -> BOOST_OUTCOME_V2_NAMESPACE::outcome { #ifndef BOOST_NO_EXCEPTIONS try #endif { int count = 0, ret = 0; while(t) { auto r = t(); count++; if(r) { ret = r.value(); BOOST_CHECK(ret == 4 + count); } else { BOOST_CHECK(count == 3); BOOST_OUTCOME_TRY(std::move(r)); } } return ret; } #ifndef BOOST_NO_EXCEPTIONS catch(...) { BOOST_CHECK(false); // exception must be put into outcome, nothing must throw here throw; } #endif }; BOOST_CHECK(check_generator(generator_int(5)).value() == 7); BOOST_CHECK(check_generator(generator_error(5)).error() == boost::system::errc::not_enough_memory); #ifndef BOOST_NO_EXCEPTIONS auto e = boost::copy_exception(custom_exception_type()); BOOST_CHECK_THROW(check_generator(generator_exception(e)).value(), custom_exception_type); #endif } #else int main(void) { return 0; } #endif