diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/yap/test/if_else.cpp | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/yap/test/if_else.cpp')
-rw-r--r-- | src/boost/libs/yap/test/if_else.cpp | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/src/boost/libs/yap/test/if_else.cpp b/src/boost/libs/yap/test/if_else.cpp new file mode 100644 index 00000000..c3ed5204 --- /dev/null +++ b/src/boost/libs/yap/test/if_else.cpp @@ -0,0 +1,114 @@ +// Copyright (C) 2016-2018 T. Zachary Laine +// +// 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/yap/expression.hpp> + +#include <boost/test/minimal.hpp> + +#include <sstream> + + +template<typename T> +using term = boost::yap::terminal<boost::yap::expression, T>; + +template<typename T> +using term_ref = boost::yap::expression_ref<boost::yap::expression, term<T> &>; + +template<typename T> +using term_cref = + boost::yap::expression_ref<boost::yap::expression, term<T> const &>; + +namespace yap = boost::yap; +namespace bh = boost::hana; + + +struct callable +{ + int operator()() { return 42; } +}; + +struct side_effect_callable_1 +{ + int operator()() + { + *value_ = 1; + return 0; + } + + int * value_; +}; + +struct side_effect_callable_2 +{ + int operator()() + { + *value_ = 2; + return 0; + } + + int * value_; +}; + + +int test_main(int, char * []) +{ + { + int one = 0; + int two = 0; + + auto true_nothrow_throw_expr = if_else( + term<bool>{{true}}, + term<callable>{}(), + term<side_effect_callable_1>{{&one}}()); + + BOOST_CHECK(yap::evaluate(true_nothrow_throw_expr) == 42); + BOOST_CHECK(one == 0); + BOOST_CHECK(two == 0); + } + + { + int one = 0; + int two = 0; + + auto false_nothrow_throw_expr = if_else( + term<bool>{{false}}, + term<callable>{}(), + term<side_effect_callable_1>{{&one}}()); + + BOOST_CHECK(yap::evaluate(false_nothrow_throw_expr) == 0); + BOOST_CHECK(one == 1); + BOOST_CHECK(two == 0); + } + + { + int one = 0; + int two = 0; + + auto true_throw1_throw2_expr = if_else( + term<bool>{{true}}, + term<side_effect_callable_1>{{&one}}(), + term<side_effect_callable_2>{{&two}}()); + + BOOST_CHECK(yap::evaluate(true_throw1_throw2_expr) == 0); + BOOST_CHECK(one == 1); + BOOST_CHECK(two == 0); + } + + { + int one = 0; + int two = 0; + + auto false_throw1_throw2_expr = if_else( + term<bool>{{false}}, + term<side_effect_callable_1>{{&one}}(), + term<side_effect_callable_2>{{&two}}()); + + BOOST_CHECK(yap::evaluate(false_throw1_throw2_expr) == 0); + BOOST_CHECK(one == 0); + BOOST_CHECK(two == 2); + } + + return 0; +} |