os/ossrv/ossrv_pub/boost_apis/boost/test/test_tools.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  (C) Copyright Gennadiy Rozental 2001-2005.
sl@0
     2
//  Distributed under the Boost Software License, Version 1.0.
sl@0
     3
//  (See accompanying file LICENSE_1_0.txt or copy at 
sl@0
     4
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
     5
sl@0
     6
//  See http://www.boost.org/libs/test for the library home page.
sl@0
     7
//
sl@0
     8
//  File        : $RCSfile: test_tools.hpp,v $
sl@0
     9
//
sl@0
    10
//  Version     : $Revision: 1.60.2.7 $
sl@0
    11
//
sl@0
    12
//  Description : contains definition for all test tools in test toolbox
sl@0
    13
// ***************************************************************************
sl@0
    14
sl@0
    15
#ifndef BOOST_TEST_TEST_TOOLS_HPP_012705GER
sl@0
    16
#define BOOST_TEST_TEST_TOOLS_HPP_012705GER
sl@0
    17
sl@0
    18
// Boost.Test
sl@0
    19
#include <boost/test/predicate_result.hpp>
sl@0
    20
#include <boost/test/unit_test_log.hpp>
sl@0
    21
sl@0
    22
#include <boost/test/detail/config.hpp>
sl@0
    23
#include <boost/test/detail/global_typedef.hpp>
sl@0
    24
#include <boost/test/detail/workaround.hpp>
sl@0
    25
sl@0
    26
#include <boost/test/utils/wrap_stringstream.hpp>
sl@0
    27
#include <boost/test/utils/basic_cstring/io.hpp>
sl@0
    28
sl@0
    29
// Boost
sl@0
    30
#include <boost/preprocessor/seq/for_each.hpp>
sl@0
    31
#include <boost/preprocessor/seq/size.hpp>
sl@0
    32
#include <boost/preprocessor/seq/enum.hpp> 
sl@0
    33
#include <boost/preprocessor/repetition/repeat.hpp>
sl@0
    34
#include <boost/preprocessor/punctuation/comma_if.hpp>
sl@0
    35
#include <boost/preprocessor/arithmetic/add.hpp>
sl@0
    36
#include <boost/limits.hpp>
sl@0
    37
sl@0
    38
#include <boost/type_traits/is_array.hpp>
sl@0
    39
#include <boost/type_traits/is_function.hpp>
sl@0
    40
#include <boost/type_traits/is_abstract.hpp>
sl@0
    41
sl@0
    42
#include <boost/mpl/or.hpp>
sl@0
    43
sl@0
    44
// STL
sl@0
    45
#include <cstddef>          // for std::size_t
sl@0
    46
#include <iosfwd>
sl@0
    47
sl@0
    48
#include <boost/test/detail/suppress_warnings.hpp>
sl@0
    49
sl@0
    50
//____________________________________________________________________________//
sl@0
    51
sl@0
    52
// ************************************************************************** //
sl@0
    53
// **************                    TOOL BOX                  ************** //
sl@0
    54
// ************************************************************************** //
sl@0
    55
sl@0
    56
// In macros below following argument abbreviations are used:
sl@0
    57
// P - predicate
sl@0
    58
// M - message
sl@0
    59
// S - statement
sl@0
    60
// E - exception
sl@0
    61
// L - left argument
sl@0
    62
// R - right argument
sl@0
    63
// TL - tool level
sl@0
    64
// CT - check type
sl@0
    65
// ARGS - arguments list
sl@0
    66
sl@0
    67
#define BOOST_TEST_TOOL_IMPL( func, P, check_descr, TL, CT ) \
sl@0
    68
    ::boost::test_tools::tt_detail::func(                    \
sl@0
    69
        P,                                                   \
sl@0
    70
        ::boost::wrap_stringstream().ref() << check_descr,   \
sl@0
    71
        BOOST_TEST_L(__FILE__),                              \
sl@0
    72
        (std::size_t)__LINE__,                               \
sl@0
    73
        ::boost::test_tools::tt_detail::TL,                  \
sl@0
    74
        ::boost::test_tools::tt_detail::CT                   \
sl@0
    75
/**/
sl@0
    76
sl@0
    77
//____________________________________________________________________________//
sl@0
    78
sl@0
    79
#define BOOST_CHECK_IMPL( P, check_descr, TL, CT )                  \
sl@0
    80
do {                                                                \
sl@0
    81
    BOOST_TEST_PASSPOINT();                                         \
sl@0
    82
    BOOST_TEST_TOOL_IMPL( check_impl, P, check_descr, TL, CT ), 0 );\
sl@0
    83
} while( ::boost::test_tools::dummy_cond )                          \
sl@0
    84
/**/
sl@0
    85
sl@0
    86
//____________________________________________________________________________//
sl@0
    87
sl@0
    88
#define BOOST_TEST_PASS_ARG_INFO( r, data, arg ) , arg, BOOST_STRINGIZE( arg )
sl@0
    89
sl@0
    90
#define BOOST_CHECK_WITH_ARGS_IMPL( P, check_descr, TL, CT, ARGS )  \
sl@0
    91
do {                                                                \
sl@0
    92
    BOOST_TEST_PASSPOINT();                                         \
sl@0
    93
    BOOST_TEST_TOOL_IMPL( check_frwd, P, check_descr, TL, CT )      \
sl@0
    94
    BOOST_PP_SEQ_FOR_EACH( BOOST_TEST_PASS_ARG_INFO, '_', ARGS ) ); \
sl@0
    95
} while( ::boost::test_tools::dummy_cond )                          \
sl@0
    96
/**/
sl@0
    97
sl@0
    98
//____________________________________________________________________________//
sl@0
    99
sl@0
   100
#define BOOST_WARN( P )                     BOOST_CHECK_IMPL( (P), BOOST_TEST_STRINGIZE( P ), WARN, CHECK_PRED )
sl@0
   101
#define BOOST_CHECK( P )                    BOOST_CHECK_IMPL( (P), BOOST_TEST_STRINGIZE( P ), CHECK, CHECK_PRED )
sl@0
   102
#define BOOST_REQUIRE( P )                  BOOST_CHECK_IMPL( (P), BOOST_TEST_STRINGIZE( P ), REQUIRE, CHECK_PRED )
sl@0
   103
sl@0
   104
//____________________________________________________________________________//
sl@0
   105
sl@0
   106
#define BOOST_WARN_MESSAGE( P, M )          BOOST_CHECK_IMPL( (P), M, WARN, CHECK_MSG )
sl@0
   107
#define BOOST_CHECK_MESSAGE( P, M )         BOOST_CHECK_IMPL( (P), M, CHECK, CHECK_MSG )
sl@0
   108
#define BOOST_REQUIRE_MESSAGE( P, M )       BOOST_CHECK_IMPL( (P), M, REQUIRE, CHECK_MSG )
sl@0
   109
sl@0
   110
//____________________________________________________________________________//
sl@0
   111
sl@0
   112
#define BOOST_ERROR( M )                    BOOST_CHECK_MESSAGE( false, M )
sl@0
   113
#define BOOST_FAIL( M )                     BOOST_REQUIRE_MESSAGE( false, M )
sl@0
   114
sl@0
   115
//____________________________________________________________________________//
sl@0
   116
sl@0
   117
#define BOOST_CHECK_THROW_IMPL( S, E, P, prefix, TL )                                                   \
sl@0
   118
    try {                                                                                               \
sl@0
   119
        BOOST_TEST_PASSPOINT();                                                                         \
sl@0
   120
        S;                                                                                              \
sl@0
   121
        BOOST_CHECK_IMPL( false, "exception " BOOST_STRINGIZE( E ) " is expected", TL, CHECK_MSG ); }   \
sl@0
   122
    catch( E const& ex ) {                                                                              \
sl@0
   123
        ::boost::unit_test::ut_detail::ignore_unused_variable_warning( ex );                            \
sl@0
   124
        BOOST_CHECK_IMPL( P, prefix BOOST_STRINGIZE( E ) " is caught", TL, CHECK_MSG );                 \
sl@0
   125
    }                                                                                                   \
sl@0
   126
/**/
sl@0
   127
sl@0
   128
//____________________________________________________________________________//
sl@0
   129
sl@0
   130
#define BOOST_WARN_THROW( S, E )            BOOST_CHECK_THROW_IMPL( S, E, true, "exception ", WARN )
sl@0
   131
#define BOOST_CHECK_THROW( S, E )           BOOST_CHECK_THROW_IMPL( S, E, true, "exception ", CHECK )
sl@0
   132
#define BOOST_REQUIRE_THROW( S, E )         BOOST_CHECK_THROW_IMPL( S, E, true, "exception ", REQUIRE )
sl@0
   133
sl@0
   134
//____________________________________________________________________________//
sl@0
   135
sl@0
   136
#define BOOST_WARN_EXCEPTION( S, E, P )     BOOST_CHECK_THROW_IMPL( S, E, P( ex ), "incorrect exception ", WARN )
sl@0
   137
#define BOOST_CHECK_EXCEPTION( S, E, P )    BOOST_CHECK_THROW_IMPL( S, E, P( ex ), "incorrect exception ", CHECK )
sl@0
   138
#define BOOST_REQUIRE_EXCEPTION( S, E, P )  BOOST_CHECK_THROW_IMPL( S, E, P( ex ), "incorrect exception ", REQUIRE )
sl@0
   139
sl@0
   140
//____________________________________________________________________________//
sl@0
   141
sl@0
   142
#define BOOST_CHECK_NO_THROW_IMPL( S, TL )                                                          \
sl@0
   143
    try {                                                                                           \
sl@0
   144
        S;                                                                                          \
sl@0
   145
        BOOST_CHECK_IMPL( true, "no exceptions thrown by " BOOST_STRINGIZE( S ), TL, CHECK_MSG ); } \
sl@0
   146
    catch( ... ) {                                                                                  \
sl@0
   147
        BOOST_CHECK_IMPL( false, "exception thrown by " BOOST_STRINGIZE( S ), TL, CHECK_MSG );      \
sl@0
   148
    }                                                                                               \
sl@0
   149
/**/
sl@0
   150
sl@0
   151
#define BOOST_WARN_NO_THROW( S )            BOOST_CHECK_NO_THROW_IMPL( S, WARN )
sl@0
   152
#define BOOST_CHECK_NO_THROW( S )           BOOST_CHECK_NO_THROW_IMPL( S, CHECK )
sl@0
   153
#define BOOST_REQUIRE_NO_THROW( S )         BOOST_CHECK_NO_THROW_IMPL( S, REQUIRE )
sl@0
   154
sl@0
   155
//____________________________________________________________________________//
sl@0
   156
sl@0
   157
// The argument version of the following macros are causing "Internal Compiler Errors"
sl@0
   158
// on MSVC 6.5 when inlining is turned on (i.e. usually in release builds)
sl@0
   159
#if BOOST_WORKAROUND(BOOST_MSVC, <=1200) && defined(NDEBUG)
sl@0
   160
#define BOOST_WARN_EQUAL( L, R ) BOOST_WARN( (L) == (R) )
sl@0
   161
#define BOOST_CHECK_EQUAL( L, R ) BOOST_CHECK( (L) == (R) )
sl@0
   162
#define BOOST_REQUIRE_EQUAL( L, R ) BOOST_REQUIRE( (L) == (R) )
sl@0
   163
#else
sl@0
   164
#define BOOST_WARN_EQUAL( L, R ) \
sl@0
   165
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::equal_impl_frwd(), "", WARN, CHECK_EQUAL, (L)(R) )
sl@0
   166
#define BOOST_CHECK_EQUAL( L, R ) \
sl@0
   167
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::equal_impl_frwd(), "", CHECK, CHECK_EQUAL, (L)(R) )
sl@0
   168
#define BOOST_REQUIRE_EQUAL( L, R ) \
sl@0
   169
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::equal_impl_frwd(), "", REQUIRE, CHECK_EQUAL, (L)(R) )
sl@0
   170
#endif
sl@0
   171
//____________________________________________________________________________//
sl@0
   172
sl@0
   173
#define BOOST_WARN_CLOSE( L, R, T ) \
sl@0
   174
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_close, "", WARN, CHECK_CLOSE, \
sl@0
   175
        (L)(R)(::boost::test_tools::percent_tolerance(T)) )
sl@0
   176
#define BOOST_CHECK_CLOSE( L, R, T ) \
sl@0
   177
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_close, "", CHECK, CHECK_CLOSE, \
sl@0
   178
        (L)(R)(::boost::test_tools::percent_tolerance(T)) )
sl@0
   179
#define BOOST_REQUIRE_CLOSE( L, R, T ) \
sl@0
   180
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_close, "", REQUIRE, CHECK_CLOSE, \
sl@0
   181
        (L)(R)(::boost::test_tools::percent_tolerance(T)) )
sl@0
   182
sl@0
   183
//____________________________________________________________________________//
sl@0
   184
sl@0
   185
#define BOOST_WARN_CLOSE_FRACTION( L, R, T ) \
sl@0
   186
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_close, "", WARN, CHECK_CLOSE_FRACTION, \
sl@0
   187
    (L)(R)(::boost::test_tools::fraction_tolerance(T)) )
sl@0
   188
#define BOOST_CHECK_CLOSE_FRACTION( L, R, T ) \
sl@0
   189
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_close, "", CHECK, CHECK_CLOSE_FRACTION, \
sl@0
   190
    (L)(R)(::boost::test_tools::fraction_tolerance(T)) )
sl@0
   191
#define BOOST_REQUIRE_CLOSE_FRACTION( L, R, T ) \
sl@0
   192
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_close, "", REQUIRE, CHECK_CLOSE_FRACTION, \
sl@0
   193
    (L)(R)(::boost::test_tools::fraction_tolerance(T)) )
sl@0
   194
sl@0
   195
//____________________________________________________________________________//
sl@0
   196
sl@0
   197
#define BOOST_WARN_SMALL( FPV, T ) \
sl@0
   198
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_small, "", WARN, CHECK_SMALL, (FPV)(T) )
sl@0
   199
#define BOOST_CHECK_SMALL( FPV, T ) \
sl@0
   200
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_small, "", CHECK, CHECK_SMALL, (FPV)(T) )
sl@0
   201
#define BOOST_REQUIRE_SMALL( FPV, T ) \
sl@0
   202
    BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::check_is_small, "", REQUIRE, CHECK_SMALL, (FPV)(T) )
sl@0
   203
sl@0
   204
//____________________________________________________________________________//
sl@0
   205
sl@0
   206
#define BOOST_WARN_PREDICATE( P, ARGS ) \
sl@0
   207
    BOOST_CHECK_WITH_ARGS_IMPL( P, BOOST_TEST_STRINGIZE( P ), WARN, CHECK_PRED_WITH_ARGS, ARGS )
sl@0
   208
#define BOOST_CHECK_PREDICATE( P, ARGS ) \
sl@0
   209
    BOOST_CHECK_WITH_ARGS_IMPL( P, BOOST_TEST_STRINGIZE( P ), CHECK, CHECK_PRED_WITH_ARGS, ARGS )
sl@0
   210
#define BOOST_REQUIRE_PREDICATE( P, ARGS ) \
sl@0
   211
    BOOST_CHECK_WITH_ARGS_IMPL( P, BOOST_TEST_STRINGIZE( P ), REQUIRE, CHECK_PRED_WITH_ARGS, ARGS )
sl@0
   212
sl@0
   213
//____________________________________________________________________________//
sl@0
   214
sl@0
   215
#define BOOST_EQUAL_COLLECTIONS_IMPL( L_begin, L_end, R_begin, R_end, TL )      \
sl@0
   216
    BOOST_TEST_TOOL_IMPL( check_impl, ::boost::test_tools::tt_detail::equal_coll_impl( \
sl@0
   217
        (L_begin), (L_end), (R_begin), (R_end) ), "", TL, CHECK_EQUAL_COLL ),   \
sl@0
   218
    4,                                                                          \
sl@0
   219
    BOOST_STRINGIZE( L_begin ), BOOST_STRINGIZE( L_end ),                       \
sl@0
   220
    BOOST_STRINGIZE( R_begin ), BOOST_STRINGIZE( R_end ) )                      \
sl@0
   221
/**/
sl@0
   222
sl@0
   223
#define BOOST_WARN_EQUAL_COLLECTIONS( L_begin, L_end, R_begin, R_end )          \
sl@0
   224
    BOOST_EQUAL_COLLECTIONS_IMPL( L_begin, L_end, R_begin, R_end, WARN )
sl@0
   225
#define BOOST_CHECK_EQUAL_COLLECTIONS( L_begin, L_end, R_begin, R_end )         \
sl@0
   226
    BOOST_EQUAL_COLLECTIONS_IMPL( L_begin, L_end, R_begin, R_end, CHECK )
sl@0
   227
#define BOOST_REQUIRE_EQUAL_COLLECTIONS( L_begin, L_end, R_begin, R_end )       \
sl@0
   228
    BOOST_EQUAL_COLLECTIONS_IMPL( L_begin, L_end, R_begin, R_end, REQUIRE )
sl@0
   229
sl@0
   230
//____________________________________________________________________________//
sl@0
   231
sl@0
   232
#define BOOST_BITWISE_EQUAL_IMPL( L, R, TL )                                    \
sl@0
   233
    BOOST_TEST_TOOL_IMPL( check_impl,                                           \
sl@0
   234
      ::boost::test_tools::tt_detail::bitwise_equal_impl( (L), (R) ),           \
sl@0
   235
      "", TL, CHECK_BITWISE_EQUAL ),                                            \
sl@0
   236
    2, BOOST_STRINGIZE( L ), BOOST_STRINGIZE( R ) )                             \
sl@0
   237
/**/
sl@0
   238
sl@0
   239
#define BOOST_WARN_BITWISE_EQUAL( L, R )    BOOST_BITWISE_EQUAL_IMPL( L, R, WARN )
sl@0
   240
#define BOOST_CHECK_BITWISE_EQUAL( L, R )   BOOST_BITWISE_EQUAL_IMPL( L, R, CHECK )
sl@0
   241
#define BOOST_REQUIRE_BITWISE_EQUAL( L, R ) BOOST_BITWISE_EQUAL_IMPL( L, R, REQUIRE )
sl@0
   242
sl@0
   243
//____________________________________________________________________________//
sl@0
   244
sl@0
   245
#define BOOST_IS_DEFINED( symb )            ::boost::test_tools::tt_detail::is_defined_impl( #symb, BOOST_STRINGIZE(= symb) )
sl@0
   246
sl@0
   247
//____________________________________________________________________________//
sl@0
   248
sl@0
   249
// ***************************** //
sl@0
   250
// deprecated interface
sl@0
   251
sl@0
   252
#define BOOST_BITWISE_EQUAL( L, R )         BOOST_CHECK_BITWISE_EQUAL( L, R )
sl@0
   253
#define BOOST_MESSAGE( M )                  BOOST_TEST_MESSAGE( M )
sl@0
   254
#define BOOST_CHECKPOINT( M )               BOOST_TEST_CHECKPOINT( M )
sl@0
   255
sl@0
   256
namespace boost {
sl@0
   257
sl@0
   258
namespace test_tools {
sl@0
   259
sl@0
   260
typedef unit_test::const_string      const_string;
sl@0
   261
sl@0
   262
namespace { bool dummy_cond = false; }
sl@0
   263
sl@0
   264
namespace tt_detail {
sl@0
   265
sl@0
   266
// ************************************************************************** //
sl@0
   267
// **************              tools classification            ************** //
sl@0
   268
// ************************************************************************** //
sl@0
   269
sl@0
   270
enum check_type {
sl@0
   271
    CHECK_PRED, 
sl@0
   272
    CHECK_MSG,
sl@0
   273
    CHECK_EQUAL,
sl@0
   274
    CHECK_CLOSE,
sl@0
   275
    CHECK_CLOSE_FRACTION,
sl@0
   276
    CHECK_SMALL,
sl@0
   277
    CHECK_BITWISE_EQUAL,
sl@0
   278
    CHECK_PRED_WITH_ARGS,
sl@0
   279
    CHECK_EQUAL_COLL
sl@0
   280
};
sl@0
   281
sl@0
   282
enum tool_level {
sl@0
   283
    WARN, CHECK, REQUIRE, PASS
sl@0
   284
};
sl@0
   285
sl@0
   286
// ************************************************************************** //
sl@0
   287
// **************               log print helper               ************** //
sl@0
   288
// ************************************************************************** //
sl@0
   289
sl@0
   290
template<typename T>
sl@0
   291
struct print_log_value {
sl@0
   292
    void    operator()( std::ostream& ostr, T const& t )
sl@0
   293
    {
sl@0
   294
        typedef typename mpl::or_<is_array<T>,is_function<T>,is_abstract<T> >::type couldnt_use_nl;
sl@0
   295
sl@0
   296
        set_precision( ostr, couldnt_use_nl() );
sl@0
   297
sl@0
   298
        ostr << t; // by default print the value
sl@0
   299
    }
sl@0
   300
sl@0
   301
    void set_precision( std::ostream& ostr, mpl::false_ )
sl@0
   302
    {
sl@0
   303
        if( std::numeric_limits<T>::is_specialized && std::numeric_limits<T>::radix == 2 )
sl@0
   304
            ostr.precision( 2 + std::numeric_limits<T>::digits * 301/1000 ); 
sl@0
   305
    }
sl@0
   306
sl@0
   307
    void set_precision( std::ostream&, mpl::true_ ) {}
sl@0
   308
};
sl@0
   309
sl@0
   310
//____________________________________________________________________________//
sl@0
   311
sl@0
   312
#define BOOST_TEST_DONT_PRINT_LOG_VALUE( the_type )                 \
sl@0
   313
namespace boost { namespace test_tools { namespace tt_detail {      \
sl@0
   314
template<>                                                          \
sl@0
   315
struct print_log_value<the_type > {                                 \
sl@0
   316
    void operator()( std::ostream& ostr, the_type const& t ) {}     \
sl@0
   317
};                                                                  \
sl@0
   318
}}}                                                                 \
sl@0
   319
/**/
sl@0
   320
sl@0
   321
//____________________________________________________________________________//
sl@0
   322
sl@0
   323
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
sl@0
   324
template<typename T, std::size_t N >
sl@0
   325
struct print_log_value< T[N] > {
sl@0
   326
    void    operator()( std::ostream& ostr, T const* t )
sl@0
   327
    {
sl@0
   328
        ostr << t;
sl@0
   329
    }
sl@0
   330
};
sl@0
   331
#endif
sl@0
   332
sl@0
   333
//____________________________________________________________________________//
sl@0
   334
sl@0
   335
template<>
sl@0
   336
struct BOOST_TEST_DECL print_log_value<char> {
sl@0
   337
    void    operator()( std::ostream& ostr, char t );
sl@0
   338
};
sl@0
   339
sl@0
   340
//____________________________________________________________________________//
sl@0
   341
sl@0
   342
template<>
sl@0
   343
struct BOOST_TEST_DECL print_log_value<unsigned char> {
sl@0
   344
    void    operator()( std::ostream& ostr, unsigned char t );
sl@0
   345
};
sl@0
   346
sl@0
   347
//____________________________________________________________________________//
sl@0
   348
sl@0
   349
template<>
sl@0
   350
struct BOOST_TEST_DECL print_log_value<char const*> {
sl@0
   351
    void    operator()( std::ostream& ostr, char const* t );
sl@0
   352
};
sl@0
   353
sl@0
   354
//____________________________________________________________________________//
sl@0
   355
sl@0
   356
template<>
sl@0
   357
struct BOOST_TEST_DECL print_log_value<wchar_t const*> {
sl@0
   358
    void    operator()( std::ostream& ostr, wchar_t const* t );
sl@0
   359
};
sl@0
   360
sl@0
   361
//____________________________________________________________________________//
sl@0
   362
sl@0
   363
template<typename T>
sl@0
   364
struct print_helper_t {
sl@0
   365
    explicit    print_helper_t( T const& t ) : m_t( t ) {}
sl@0
   366
sl@0
   367
    T const&    m_t;
sl@0
   368
};
sl@0
   369
sl@0
   370
//____________________________________________________________________________//
sl@0
   371
sl@0
   372
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) 
sl@0
   373
// Borland suffers premature pointer decay passing arrays by reference
sl@0
   374
template<typename T, std::size_t N >
sl@0
   375
struct print_helper_t< T[N] > {
sl@0
   376
    explicit    print_helper_t( T const * t ) : m_t( t ) {}
sl@0
   377
sl@0
   378
    T const *   m_t;
sl@0
   379
};
sl@0
   380
#endif
sl@0
   381
sl@0
   382
//____________________________________________________________________________//
sl@0
   383
sl@0
   384
template<typename T>
sl@0
   385
inline print_helper_t<T> print_helper( T const& t )
sl@0
   386
{
sl@0
   387
    return print_helper_t<T>( t );
sl@0
   388
}
sl@0
   389
sl@0
   390
#if BOOST_WORKAROUND(__SUNPRO_CC, < 0x580) 
sl@0
   391
template<typename T, std::size_t N>
sl@0
   392
inline print_helper_t<T*> print_helper( T (&t)[N] )
sl@0
   393
{
sl@0
   394
    return print_helper_t<T*>( &t[0] );
sl@0
   395
}
sl@0
   396
#endif
sl@0
   397
sl@0
   398
//____________________________________________________________________________//
sl@0
   399
sl@0
   400
template<typename T>
sl@0
   401
inline std::ostream& 
sl@0
   402
operator<<( std::ostream& ostr, print_helper_t<T> const& ph )
sl@0
   403
{
sl@0
   404
    print_log_value<T>()( ostr, ph.m_t );
sl@0
   405
sl@0
   406
    return ostr;
sl@0
   407
}
sl@0
   408
sl@0
   409
//____________________________________________________________________________//
sl@0
   410
sl@0
   411
// ************************************************************************** //
sl@0
   412
// **************            TOOL BOX Implementation           ************** //
sl@0
   413
// ************************************************************************** //
sl@0
   414
sl@0
   415
BOOST_TEST_DECL 
sl@0
   416
void check_impl( predicate_result const& pr, wrap_stringstream& check_descr,
sl@0
   417
                 const_string file_name, std::size_t line_num,
sl@0
   418
                 tool_level tl, check_type ct,
sl@0
   419
                 std::size_t num_args, ... );
sl@0
   420
sl@0
   421
//____________________________________________________________________________//
sl@0
   422
sl@0
   423
#define TEMPL_PARAMS( z, m, dummy ) , typename BOOST_JOIN( Arg, m )
sl@0
   424
#define FUNC_PARAMS( z, m, dummy )                                                  \
sl@0
   425
    , BOOST_JOIN( Arg, m ) const& BOOST_JOIN( arg, m )                              \
sl@0
   426
    , char const* BOOST_JOIN( BOOST_JOIN( arg, m ), _descr )                        \
sl@0
   427
/**/
sl@0
   428
sl@0
   429
#define PRED_PARAMS( z, m, dummy ) BOOST_PP_COMMA_IF( m ) BOOST_JOIN( arg, m ) 
sl@0
   430
sl@0
   431
#define ARG_INFO( z, m, dummy )                                                     \
sl@0
   432
    , BOOST_JOIN( BOOST_JOIN( arg, m ), _descr )                                    \
sl@0
   433
    , (boost::wrap_stringstream().ref()                                             \
sl@0
   434
        << ::boost::test_tools::tt_detail::                                         \
sl@0
   435
            print_helper( BOOST_JOIN( arg, m ) )).str().c_str()                     \
sl@0
   436
/**/
sl@0
   437
sl@0
   438
#define IMPL_FRWD( z, n, dummy )                                                    \
sl@0
   439
template<typename Pred                                                              \
sl@0
   440
         BOOST_PP_REPEAT_ ## z( BOOST_PP_ADD( n, 1 ), TEMPL_PARAMS, _ )>            \
sl@0
   441
inline void                                                                         \
sl@0
   442
check_frwd( Pred P, wrap_stringstream& check_descr,                                 \
sl@0
   443
            const_string file_name, std::size_t line_num,                           \
sl@0
   444
            tool_level tl, check_type ct                                            \
sl@0
   445
            BOOST_PP_REPEAT_ ## z( BOOST_PP_ADD( n, 1 ), FUNC_PARAMS, _ )           \
sl@0
   446
)                                                                                   \
sl@0
   447
{                                                                                   \
sl@0
   448
    check_impl( P( BOOST_PP_REPEAT_ ## z( BOOST_PP_ADD( n, 1 ), PRED_PARAMS, _ ) ), \
sl@0
   449
                check_descr, file_name, line_num, tl, ct,                           \
sl@0
   450
                BOOST_PP_ADD( n, 1 )                                                \
sl@0
   451
                BOOST_PP_REPEAT_ ## z( BOOST_PP_ADD( n, 1 ), ARG_INFO, _ )          \
sl@0
   452
    );                                                                              \
sl@0
   453
}                                                                                   \
sl@0
   454
/**/
sl@0
   455
sl@0
   456
#ifndef BOOST_TEST_MAX_PREDICATE_ARITY
sl@0
   457
#define BOOST_TEST_MAX_PREDICATE_ARITY 5
sl@0
   458
#endif
sl@0
   459
sl@0
   460
BOOST_PP_REPEAT( BOOST_TEST_MAX_PREDICATE_ARITY, IMPL_FRWD, _ )
sl@0
   461
sl@0
   462
#undef TEMPL_PARAMS
sl@0
   463
#undef FUNC_PARAMS
sl@0
   464
#undef PRED_INFO
sl@0
   465
#undef ARG_INFO
sl@0
   466
#undef IMPL_FRWD
sl@0
   467
sl@0
   468
//____________________________________________________________________________//
sl@0
   469
sl@0
   470
template <class Left, class Right>
sl@0
   471
predicate_result equal_impl( Left const& left, Right const& right )
sl@0
   472
{
sl@0
   473
    return left == right;
sl@0
   474
}
sl@0
   475
sl@0
   476
//____________________________________________________________________________//
sl@0
   477
sl@0
   478
predicate_result        BOOST_TEST_DECL equal_impl( char const* left, char const* right );
sl@0
   479
inline predicate_result BOOST_TEST_DECL equal_impl( char* left, char const* right ) { return equal_impl( (char const*)left, (char const*)right ); }
sl@0
   480
inline predicate_result BOOST_TEST_DECL equal_impl( char const* left, char* right ) { return equal_impl( (char const*)left, (char const*)right ); }
sl@0
   481
inline predicate_result BOOST_TEST_DECL equal_impl( char* left, char* right )       { return equal_impl( (char const*)left, (char const*)right ); }
sl@0
   482
sl@0
   483
#if !defined( BOOST_NO_CWCHAR )
sl@0
   484
predicate_result        equal_impl( wchar_t const* left, wchar_t const* right );
sl@0
   485
inline predicate_result equal_impl( wchar_t* left, wchar_t const* right ) { return equal_impl( (wchar_t const*)left, (wchar_t const*)right ); }
sl@0
   486
inline predicate_result equal_impl( wchar_t const* left, wchar_t* right ) { return equal_impl( (wchar_t const*)left, (wchar_t const*)right ); }
sl@0
   487
inline predicate_result equal_impl( wchar_t* left, wchar_t* right )       { return equal_impl( (wchar_t const*)left, (wchar_t const*)right ); }
sl@0
   488
#endif
sl@0
   489
sl@0
   490
//____________________________________________________________________________//
sl@0
   491
//
sl@0
   492
// Declaring this class as exported causes linker errors when building
sl@0
   493
// the serialisation tests with VC6, disable this for now. (JM 2006/10/30)
sl@0
   494
struct /*BOOST_TEST_DECL*/ equal_impl_frwd {
sl@0
   495
    template <typename Left, typename Right>
sl@0
   496
    inline predicate_result
sl@0
   497
    call_impl( Left const& left, Right const& right, mpl::false_ ) const
sl@0
   498
    {
sl@0
   499
        return equal_impl( left, right );
sl@0
   500
    }
sl@0
   501
sl@0
   502
    template <typename Left, typename Right>
sl@0
   503
    inline predicate_result
sl@0
   504
    call_impl( Left const& left, Right const& right, mpl::true_ ) const
sl@0
   505
    {
sl@0
   506
        return (*this)( right, &left[0] );
sl@0
   507
    }
sl@0
   508
sl@0
   509
    template <typename Left, typename Right>
sl@0
   510
    inline predicate_result
sl@0
   511
    operator()( Left const& left, Right const& right ) const
sl@0
   512
    {
sl@0
   513
        typedef typename is_array<Left>::type left_is_array;
sl@0
   514
        return call_impl( left, right, left_is_array() );
sl@0
   515
    }
sl@0
   516
};
sl@0
   517
sl@0
   518
//____________________________________________________________________________//
sl@0
   519
sl@0
   520
template <typename Left, typename Right>
sl@0
   521
inline predicate_result
sl@0
   522
equal_coll_impl( Left left_begin, Left left_end, Right right_begin, Right right_end )
sl@0
   523
{
sl@0
   524
    predicate_result    res( true );
sl@0
   525
    std::size_t         pos = 0;
sl@0
   526
sl@0
   527
    for( ; left_begin != left_end && right_begin != right_end; ++left_begin, ++right_begin, ++pos ) {
sl@0
   528
        if( *left_begin != *right_begin ) {
sl@0
   529
            res = false;
sl@0
   530
            res.message() << "\nMismatch in a position " << pos << ": "  << *left_begin << " != " << *right_begin;
sl@0
   531
        }
sl@0
   532
    }
sl@0
   533
sl@0
   534
    if( left_begin != left_end ) {
sl@0
   535
        std::size_t r_size = pos;
sl@0
   536
        while( left_begin != left_end ) {
sl@0
   537
            ++pos;
sl@0
   538
            ++left_begin;
sl@0
   539
        }
sl@0
   540
sl@0
   541
        res = false;
sl@0
   542
        res.message() << "\nCollections size mismatch: " << pos << " != " << r_size;
sl@0
   543
    }
sl@0
   544
sl@0
   545
    if( right_begin != right_end ) {
sl@0
   546
        std::size_t l_size = pos;
sl@0
   547
        while( right_begin != right_end ) {
sl@0
   548
            ++pos;
sl@0
   549
            ++right_begin;
sl@0
   550
        }
sl@0
   551
sl@0
   552
        res = false;
sl@0
   553
        res.message() << "\nCollections size mismatch: " << l_size << " != " << pos;
sl@0
   554
    }
sl@0
   555
sl@0
   556
    return res;
sl@0
   557
}
sl@0
   558
sl@0
   559
//____________________________________________________________________________//
sl@0
   560
sl@0
   561
template <class Left, class Right>
sl@0
   562
inline predicate_result
sl@0
   563
bitwise_equal_impl( Left const& left, Right const& right )
sl@0
   564
{
sl@0
   565
    predicate_result    res( true );
sl@0
   566
sl@0
   567
    std::size_t left_bit_size  = sizeof(Left)*CHAR_BIT;
sl@0
   568
    std::size_t right_bit_size = sizeof(Right)*CHAR_BIT;
sl@0
   569
sl@0
   570
    static Left const  L1( 1 );
sl@0
   571
    static Right const R1( 1 );
sl@0
   572
sl@0
   573
    std::size_t total_bits = left_bit_size < right_bit_size ? left_bit_size : right_bit_size;
sl@0
   574
sl@0
   575
    for( std::size_t counter = 0; counter < total_bits; ++counter ) {
sl@0
   576
        if( ( left & ( L1 << counter ) ) != ( right & ( R1 << counter ) ) ) {
sl@0
   577
            res = false;
sl@0
   578
            res.message() << "\nMismatch in a position " << counter;
sl@0
   579
        }
sl@0
   580
    }
sl@0
   581
sl@0
   582
    if( left_bit_size != right_bit_size ) {
sl@0
   583
        res = false;
sl@0
   584
        res.message() << "\nOperands bit sizes mismatch: " << left_bit_size << " != " << right_bit_size;
sl@0
   585
    }
sl@0
   586
sl@0
   587
    return res;
sl@0
   588
}
sl@0
   589
sl@0
   590
//____________________________________________________________________________//
sl@0
   591
sl@0
   592
bool BOOST_TEST_DECL is_defined_impl( const_string symbol_name, const_string symbol_value );
sl@0
   593
sl@0
   594
//____________________________________________________________________________//
sl@0
   595
sl@0
   596
} // namespace tt_detail
sl@0
   597
sl@0
   598
} // namespace test_tools
sl@0
   599
sl@0
   600
namespace test_toolbox = test_tools;
sl@0
   601
sl@0
   602
} // namespace boost
sl@0
   603
sl@0
   604
//____________________________________________________________________________//
sl@0
   605
sl@0
   606
#include <boost/test/detail/enable_warnings.hpp>
sl@0
   607
sl@0
   608
// ***************************************************************************
sl@0
   609
//  Revision History :
sl@0
   610
//
sl@0
   611
//  $Log: test_tools.hpp,v $
sl@0
   612
//  Revision 1.60.2.7  2007/02/22 17:57:29  speedsnail
sl@0
   613
//  Make the msvc-6.5 hack even more specific, i.e. apply only in release builds.
sl@0
   614
//
sl@0
   615
//  Revision 1.60.2.6  2006/12/16 15:02:16  speedsnail
sl@0
   616
//  Merged from HEAD
sl@0
   617
//
sl@0
   618
//  Revision 1.60.2.5  2006/11/14 21:33:26  jhunold
sl@0
   619
//  Merge from HEAD: Add missing export macros for print_log_value<>
sl@0
   620
//
sl@0
   621
//  Revision 1.60.2.4  2006/11/14 07:35:43  jhunold
sl@0
   622
//  Merge from HEAD: Removed wrong export declarations.
sl@0
   623
//
sl@0
   624
//  Revision 1.60.2.3  2006/11/13 20:06:57  jhunold
sl@0
   625
//  Merge from HEAD:
sl@0
   626
//  Added missing export declarations.
sl@0
   627
//
sl@0
   628
//  Revision 1.60.2.2  2006/10/30 18:37:36  johnmaddock
sl@0
   629
//  Patch for serialisation test failures.
sl@0
   630
//
sl@0
   631
//  Revision 1.60.2.1  2006/07/24 00:43:17  gennaro_prota
sl@0
   632
//  Tentative fix for Sun C++ 5.8 (don't add more specialized print_helper function template)
sl@0
   633
//
sl@0
   634
//  Revision 1.60  2006/03/19 07:27:11  rogeeff
sl@0
   635
//  avoid warning
sl@0
   636
//
sl@0
   637
//  Revision 1.59  2006/03/03 17:39:46  rogeeff
sl@0
   638
//  paaspoint added to check throw
sl@0
   639
//
sl@0
   640
//  Revision 1.58  2006/02/06 10:04:55  rogeeff
sl@0
   641
//  BOOST_TEST_MODULE - master test suite name
sl@0
   642
//
sl@0
   643
//  Revision 1.57  2006/01/28 07:00:47  rogeeff
sl@0
   644
//  sunpro port
sl@0
   645
//
sl@0
   646
//  Revision 1.56  2005/12/19 03:08:30  rogeeff
sl@0
   647
//  added is_abstract to guard numeric_limits instantiation
sl@0
   648
//
sl@0
   649
//  Revision 1.55  2005/12/14 05:20:41  rogeeff
sl@0
   650
//  dll support introduced
sl@0
   651
//  BOOST_TEST_PASSPOINT() introduced
sl@0
   652
//  BOOST_MESSAGE depricated. Use BOOST_TEST_MESSAGE instead
sl@0
   653
//  BOOST_CHECKPOINT is depricated. Use BOOST_TEST_CHECKPOINT intead
sl@0
   654
//
sl@0
   655
//  Revision 1.54  2005/06/07 04:38:20  rogeeff
sl@0
   656
//  borland fix
sl@0
   657
//
sl@0
   658
//  Revision 1.53  2005/05/11 04:51:14  rogeeff
sl@0
   659
//  borlard portability fix
sl@0
   660
//
sl@0
   661
//  Revision 1.52  2005/03/22 07:08:47  rogeeff
sl@0
   662
//  string comparisons streamlined
sl@0
   663
//  precision settings made portable
sl@0
   664
//
sl@0
   665
//  Revision 1.51  2005/02/21 10:23:54  rogeeff
sl@0
   666
//  major issue with TT redesign causing TT to reevaluate it's arguments fixed
sl@0
   667
//  FP precision extended
sl@0
   668
//
sl@0
   669
//  Revision 1.50  2005/02/20 08:27:06  rogeeff
sl@0
   670
//  This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
sl@0
   671
//
sl@0
   672
//  Revision 1.49  2005/02/01 06:40:06  rogeeff
sl@0
   673
//  copyright update
sl@0
   674
//  old log entries removed
sl@0
   675
//  minor stylistic changes
sl@0
   676
//  deprecated tools removed
sl@0
   677
//
sl@0
   678
//  Revision 1.48  2005/01/30 03:32:57  rogeeff
sl@0
   679
//  Test Tools completely reworked:
sl@0
   680
//    interfaces streamlined to provide 3 version for each tool
sl@0
   681
//    implementation reworked to use single vararg formatter function
sl@0
   682
//    CHECK_COLLECTION now expect 4 arguments
sl@0
   683
//    BITWISE_EQUAL renamed to CHECK_BITWISE_EQUAL but still provided as deprecated
sl@0
   684
//    CHECK_COLLECTION interface changed to use PP_SEQ and as a result support arbitrary number of predicate arguments
sl@0
   685
//    most of templates eliminated
sl@0
   686
//    deprecated tools removed
sl@0
   687
//    print_helper object generator added
sl@0
   688
//
sl@0
   689
// ***************************************************************************
sl@0
   690
sl@0
   691
#endif // BOOST_TEST_TEST_TOOLS_HPP_012705GER
sl@0
   692