More tests migrated to core/minimal_test

This commit is contained in:
Andrzej Krzemienski
2015-01-13 23:17:23 +01:00
parent 35eaec5a52
commit a8a6be013f
2 changed files with 55 additions and 110 deletions

View File

@ -8,19 +8,6 @@
// //
// You are welcome to contact the author at: // You are welcome to contact the author at:
// akrzemi1@gmail.com // akrzemi1@gmail.com
//
// Revisions:
//
#include<iostream>
#include<stdexcept>
#include<string>
#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/static_assert.hpp"
#include "boost/optional/optional.hpp" #include "boost/optional/optional.hpp"
@ -28,15 +15,15 @@
#pragma hdrstop #pragma hdrstop
#endif #endif
#include "boost/core/lightweight_test.hpp"
#include "boost/none.hpp" #include "boost/none.hpp"
#include "boost/test/minimal.hpp"
#include "optional_test_common.cpp"
//#ifndef BOOST_OPTIONAL_NO_CONVERTING_ASSIGNMENT //#ifndef BOOST_OPTIONAL_NO_CONVERTING_ASSIGNMENT
//#ifndef BOOST_OPTIONAL_NO_CONVERTING_COPY_CTOR //#ifndef BOOST_OPTIONAL_NO_CONVERTING_COPY_CTOR
using boost::optional;
using boost::none;
#if (!defined BOOST_NO_CXX11_RVALUE_REFERENCES) && (!defined BOOST_NO_CXX11_VARIADIC_TEMPLATES) #if (!defined BOOST_NO_CXX11_RVALUE_REFERENCES) && (!defined BOOST_NO_CXX11_VARIADIC_TEMPLATES)
class Guard class Guard
@ -68,36 +55,36 @@ void test_emplace()
optional<Guard> o; optional<Guard> o;
o.emplace(); o.emplace();
BOOST_CHECK(o); BOOST_TEST(o);
BOOST_CHECK(0 == o->which_ctor); BOOST_TEST(0 == o->which_ctor);
o.emplace(i, 2.0); o.emplace(i, 2.0);
BOOST_CHECK(o); BOOST_TEST(o);
BOOST_CHECK(1 == o->which_ctor); BOOST_TEST(1 == o->which_ctor);
o.emplace(1, d); o.emplace(1, d);
BOOST_CHECK(o); BOOST_TEST(o);
BOOST_CHECK(2 == o->which_ctor); BOOST_TEST(2 == o->which_ctor);
o.emplace(1, 2.0); o.emplace(1, 2.0);
BOOST_CHECK(o); BOOST_TEST(o);
BOOST_CHECK(3 == o->which_ctor); BOOST_TEST(3 == o->which_ctor);
o.emplace(i, d); o.emplace(i, d);
BOOST_CHECK(o); BOOST_TEST(o);
BOOST_CHECK(4 == o->which_ctor); BOOST_TEST(4 == o->which_ctor);
o.emplace(cs); o.emplace(cs);
BOOST_CHECK(o); BOOST_TEST(o);
BOOST_CHECK(5 == o->which_ctor); BOOST_TEST(5 == o->which_ctor);
o.emplace(ms); o.emplace(ms);
BOOST_CHECK(o); BOOST_TEST(o);
BOOST_CHECK(6 == o->which_ctor); BOOST_TEST(6 == o->which_ctor);
o.emplace(std::string()); o.emplace(std::string());
BOOST_CHECK(o); BOOST_TEST(o);
BOOST_CHECK(7 == o->which_ctor); BOOST_TEST(7 == o->which_ctor);
} }
@ -119,10 +106,10 @@ void test_no_moves_on_emplacement()
try { try {
optional<ThrowOnMove> o; optional<ThrowOnMove> o;
o.emplace(1); o.emplace(1);
BOOST_CHECK(o); BOOST_TEST(o);
} }
catch (...) { catch (...) {
BOOST_CHECK(false); BOOST_TEST(false);
} }
} }
#endif #endif
@ -143,32 +130,30 @@ void test_clear_on_throw()
optional<Thrower> ot; optional<Thrower> ot;
try { try {
ot.emplace(false); ot.emplace(false);
BOOST_CHECK(ot); BOOST_TEST(ot);
} catch(...) { } catch(...) {
BOOST_CHECK(false); BOOST_TEST(false);
} }
try { try {
ot.emplace(true); ot.emplace(true);
BOOST_CHECK(false); BOOST_TEST(false);
} catch(...) { } catch(...) {
BOOST_CHECK(!ot); BOOST_TEST(!ot);
} }
} }
void test_no_assignment_on_emplacement() void test_no_assignment_on_emplacement()
{ {
optional<const std::string> os; optional<const std::string> os;
BOOST_CHECK(!os); BOOST_TEST(!os);
os.emplace("wow"); os.emplace("wow");
BOOST_CHECK(os); BOOST_TEST(os);
BOOST_CHECK(*os == "wow"); BOOST_TEST_EQ(*os, "wow");
} }
int test_main( int, char* [] ) int main()
{ {
try
{
#if (!defined BOOST_NO_CXX11_RVALUE_REFERENCES) && (!defined BOOST_NO_CXX11_VARIADIC_TEMPLATES) #if (!defined BOOST_NO_CXX11_RVALUE_REFERENCES) && (!defined BOOST_NO_CXX11_VARIADIC_TEMPLATES)
test_emplace(); test_emplace();
#endif #endif
@ -177,13 +162,8 @@ int test_main( int, char* [] )
#endif #endif
test_clear_on_throw(); test_clear_on_throw();
test_no_assignment_on_emplacement(); test_no_assignment_on_emplacement();
}
catch ( ... )
{
BOOST_ERROR("Unexpected Exception caught!");
}
return 0; return boost::report_errors();
} }

View File

@ -1,4 +1,5 @@
// Copyright (C) 2003, Fernando Luis Cacciola Carballal. // Copyright (C) 2003, Fernando Luis Cacciola Carballal.
// Copyright (C) 2014 Andrzej Krzemienski.
// //
// Use, modification, and distribution is subject to the Boost Software // Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
@ -8,52 +9,24 @@
// //
// You are welcome to contact the author at: // You are welcome to contact the author at:
// fernando_cacciola@hotmail.com // fernando_cacciola@hotmail.com
//
#include<stdexcept>
#include<string>
#include<sstream>
#define BOOST_ENABLE_ASSERT_HANDLER
#include <sstream>
#include "boost/optional/optional.hpp" #include "boost/optional/optional.hpp"
#include "boost/optional/optional_io.hpp" #include "boost/optional/optional_io.hpp"
#include "boost/none.hpp"
#include "boost/test/minimal.hpp" #ifdef __BORLANDC__
#pragma hdrstop
#ifdef ENABLE_TRACE
#define TRACE(msg) std::cout << msg << std::endl ;
#else
#define TRACE(msg)
#endif #endif
namespace boost { #include "boost/core/lightweight_test.hpp"
void assertion_failed (char const * expr, char const * func, char const * file, long ) using boost::optional;
{ using boost::make_optional;
using std::string ;
string msg = string("Boost assertion failure for \"")
+ string(expr)
+ string("\" at file \"")
+ string(file)
+ string("\" function \"")
+ string(func)
+ string("\"") ;
TRACE(msg);
throw std::logic_error(msg);
}
}
using namespace std ;
using namespace boost ;
template<class Opt> template<class Opt>
void test2( Opt o, Opt buff ) void test2( Opt o, Opt buff )
{ {
stringstream s ; std::stringstream s ;
const int markv = 123 ; const int markv = 123 ;
int mark = 0 ; int mark = 0 ;
@ -61,8 +34,8 @@ void test2( Opt o, Opt buff )
s << o << " " << markv ; s << o << " " << markv ;
s >> buff >> mark ; s >> buff >> mark ;
BOOST_CHECK( buff == o ) ; BOOST_TEST( buff == o ) ;
BOOST_CHECK( mark == markv ) ; BOOST_TEST( mark == markv ) ;
} }
@ -79,20 +52,20 @@ void test( T v, T w )
template <class T> template <class T>
void subtest_tag_none_reversibility_with_optional(optional<T> ov) void subtest_tag_none_reversibility_with_optional(optional<T> ov)
{ {
stringstream s; std::stringstream s;
s << boost::none; s << boost::none;
s >> ov; s >> ov;
BOOST_CHECK(!ov); BOOST_TEST(!ov);
} }
template <class T> template <class T>
void subtest_tag_none_equivalence_with_optional() void subtest_tag_none_equivalence_with_optional()
{ {
stringstream s, r; std::stringstream s, r;
optional<T> ov; optional<T> ov;
s << boost::none; s << boost::none;
r << ov; r << ov;
BOOST_CHECK(s.str() == r.str()); BOOST_TEST_EQ(s.str(), r.str());
} }
template <class T> template <class T>
@ -104,20 +77,12 @@ void test_tag_none(T v)
} }
int test_main( int, char* [] ) int main()
{ {
try
{
test(1,2); test(1,2);
test(string("hello"),string("buffer")); test(std::string("hello"), std::string("buffer"));
test_tag_none(10); test_tag_none(10);
test_tag_none(string("text")); test_tag_none(std::string("text"));
}
catch ( ... )
{
BOOST_ERROR("Unexpected Exception caught!");
}
return 0; return boost::report_errors();
} }