Files
contract/test/constructor/decl_entry_static_inv_mid.cpp
2016-01-04 07:21:27 -08:00

188 lines
5.1 KiB
C++

// Test only middle base class with entry static invariants.
#define BOOST_CONTRACT_AUX_TEST_NO_A_STATIC_INV
#undef BOOST_CONTRACT_AUX_TEST_NO_B_STATIC_INV
#define BOOST_CONTRACT_AUX_TEST_NO_C_STATIC_INV
#include "decl.hpp"
#include <boost/preprocessor/control/iif.hpp>
#include <boost/detail/lightweight_test.hpp>
#include <sstream>
#include <string>
std::string ok_c() {
std::ostringstream ok; ok
#if BOOST_CONTRACT_PRECONDITIONS
<< "a::ctor::pre" << std::endl
<< "b::ctor::pre" << std::endl
<< "c::ctor::pre" << std::endl
#endif
// No c::static_inv here.
;
return ok.str();
}
std::string ok_b() {
std::ostringstream ok; ok
#if BOOST_CONTRACT_POSTCONDITIONS
<< "c::ctor::old" << std::endl
#endif
<< "c::ctor::body" << std::endl
#if BOOST_CONTRACT_EXIT_INVARIANTS
<< "c::inv" << std::endl
#endif
#if BOOST_CONTRACT_POSTCONDITIONS
<< "c::ctor::post" << std::endl
#endif
#if BOOST_CONTRACT_ENTRY_INVARIANTS
<< "b::static_inv" << std::endl // This might fail.
#endif
;
return ok.str();
}
std::string ok_a() {
std::ostringstream ok; ok
#if BOOST_CONTRACT_POSTCONDITIONS
<< "b::ctor::old" << std::endl
#endif
<< "b::ctor::body" << std::endl
#if BOOST_CONTRACT_EXIT_INVARIANTS
<< "b::static_inv" << std::endl
<< "b::inv" << std::endl
#endif
#if BOOST_CONTRACT_POSTCONDITIONS
<< "b::ctor::post" << std::endl
#endif
// No a::static_inv here.
;
return ok.str();
}
std::string ok_end() {
std::ostringstream ok; ok
#if BOOST_CONTRACT_POSTCONDITIONS
<< "a::ctor::old" << std::endl
#endif
<< "a::ctor::body" << std::endl
#if BOOST_CONTRACT_EXIT_INVARIANTS
<< "a::inv" << std::endl
#endif
#if BOOST_CONTRACT_POSTCONDITIONS
<< "a::ctor::post" << std::endl
#endif
;
return ok.str();
}
int main() {
std::ostringstream ok;
a_entry_static_inv = true;
b_entry_static_inv = true;
c_entry_static_inv = true;
a_entering_static_inv = b_entering_static_inv = c_entering_static_inv =
BOOST_PP_IIF(BOOST_CONTRACT_ENTRY_INVARIANTS, true, false);
{
out.str("");
a aa;
ok.str(""); ok // Test nothing failed.
<< ok_c()
<< ok_b()
<< ok_a()
<< ok_end()
;
BOOST_TEST(out.eq(ok.str()));
}
struct err {};
boost::contract::set_entry_invariant_failure(
[] (boost::contract::from) { throw err(); });
a_entry_static_inv = false;
b_entry_static_inv = true;
c_entry_static_inv = true;
a_entering_static_inv = b_entering_static_inv = c_entering_static_inv =
BOOST_PP_IIF(BOOST_CONTRACT_ENTRY_INVARIANTS, true, false);
{
out.str("");
a aa;
ok.str(""); ok
<< ok_c()
<< ok_b()
<< ok_a() // Test no a::static_inv so no failure.
<< ok_end()
;
BOOST_TEST(out.eq(ok.str()));
}
a_entry_static_inv = true;
b_entry_static_inv = false;
c_entry_static_inv = true;
a_entering_static_inv = b_entering_static_inv = c_entering_static_inv =
BOOST_PP_IIF(BOOST_CONTRACT_ENTRY_INVARIANTS, true, false);
try {
out.str("");
a aa;
#if BOOST_CONTRACT_ENTRY_INVARIANTS
BOOST_TEST(false);
} catch(err const&) {
#endif
ok.str(""); ok
<< ok_c()
<< ok_b() // Test b::static_inv failed.
#if !BOOST_CONTRACT_ENTRY_INVARIANTS
<< ok_a()
<< ok_end()
#endif
;
BOOST_TEST(out.eq(ok.str()));
} catch(...) { BOOST_TEST(false); }
a_entry_static_inv = true;
b_entry_static_inv = true;
c_entry_static_inv = false;
a_entering_static_inv = b_entering_static_inv = c_entering_static_inv =
BOOST_PP_IIF(BOOST_CONTRACT_ENTRY_INVARIANTS, true, false);
{
out.str("");
a aa;
ok.str(""); ok
<< ok_c() // Test no c::static_inv so no failure.
<< ok_b()
<< ok_a()
<< ok_end()
;
BOOST_TEST(out.eq(ok.str()));
}
a_entry_static_inv = false;
b_entry_static_inv = false;
c_entry_static_inv = false;
a_entering_static_inv = b_entering_static_inv = c_entering_static_inv =
BOOST_PP_IIF(BOOST_CONTRACT_ENTRY_INVARIANTS, true, false);
try {
out.str("");
a aa;
#if BOOST_CONTRACT_ENTRY_INVARIANTS
BOOST_TEST(false);
} catch(err const&) {
#endif
ok.str(""); ok
<< ok_c()
<< ok_b() // Test b::static_inv failed (as all did).
#if !BOOST_CONTRACT_ENTRY_INVARIANTS
<< ok_a()
<< ok_end()
#endif
;
BOOST_TEST(out.eq(ok.str()));
} catch(...) { BOOST_TEST(false); }
return boost::report_errors();
}