os/ossrv/ossrv_pub/boost_apis/boost/test/interaction_based.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 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: interaction_based.hpp,v $
sl@0
     9
//
sl@0
    10
//  Version     : $Revision: 1.3 $
sl@0
    11
//
sl@0
    12
//  Description : Facilities to perform interaction-based testing
sl@0
    13
// ***************************************************************************
sl@0
    14
sl@0
    15
#ifndef BOOST_TEST_INTERACTION_BASED_HPP_112105GER
sl@0
    16
#define BOOST_TEST_INTERACTION_BASED_HPP_112105GER
sl@0
    17
sl@0
    18
// Boost.Test
sl@0
    19
#include <boost/test/detail/config.hpp>
sl@0
    20
#include <boost/test/detail/global_typedef.hpp>
sl@0
    21
sl@0
    22
#include <boost/test/utils/wrap_stringstream.hpp>
sl@0
    23
sl@0
    24
#include <boost/test/detail/suppress_warnings.hpp>
sl@0
    25
sl@0
    26
// Boost
sl@0
    27
#include <boost/lexical_cast.hpp>
sl@0
    28
sl@0
    29
//____________________________________________________________________________//
sl@0
    30
sl@0
    31
// ************************************************************************** //
sl@0
    32
// **************               BOOST_ITEST_EPOINT             ************** //
sl@0
    33
// ************************************************************************** //
sl@0
    34
sl@0
    35
#define BOOST_ITEST_EPOINT( description ) \
sl@0
    36
    ::boost::itest::manager::instance().exception_point( BOOST_TEST_L(__FILE__), __LINE__, description )
sl@0
    37
/**/
sl@0
    38
sl@0
    39
// ************************************************************************** //
sl@0
    40
// **************               BOOST_ITEST_DPOINT             ************** //
sl@0
    41
// ************************************************************************** //
sl@0
    42
sl@0
    43
#define BOOST_ITEST_DPOINT() \
sl@0
    44
    ::boost::itest::manager::instance().decision_point( BOOST_TEST_L(__FILE__), __LINE__ )
sl@0
    45
/**/
sl@0
    46
sl@0
    47
// ************************************************************************** //
sl@0
    48
// **************                BOOST_ITEST_SCOPE             ************** //
sl@0
    49
// ************************************************************************** //
sl@0
    50
sl@0
    51
#define BOOST_ITEST_SCOPE( scope_name ) \
sl@0
    52
    ::boost::itest::scope_guard itest_scope_guard ## __LINE__( BOOST_TEST_L(__FILE__), __LINE__, BOOST_STRINGIZE(scope_name) )
sl@0
    53
/**/
sl@0
    54
sl@0
    55
// ************************************************************************** //
sl@0
    56
// **************                 BOOST_ITEST_NEW              ************** //
sl@0
    57
// ************************************************************************** //
sl@0
    58
sl@0
    59
#define BOOST_ITEST_NEW( type_name ) \
sl@0
    60
    new ( ::boost::itest::location( BOOST_TEST_L(__FILE__), __LINE__ ) ) type_name
sl@0
    61
/**/
sl@0
    62
sl@0
    63
// ************************************************************************** //
sl@0
    64
// **************              BOOST_ITEST_DATA_FLOW           ************** //
sl@0
    65
// ************************************************************************** //
sl@0
    66
sl@0
    67
#define BOOST_ITEST_DATA_FLOW( v ) \
sl@0
    68
    ::boost::itest::manager::instance().generic_data_flow( v )
sl@0
    69
/**/
sl@0
    70
sl@0
    71
// ************************************************************************** //
sl@0
    72
// **************               BOOST_ITEST_RETURN             ************** //
sl@0
    73
// ************************************************************************** //
sl@0
    74
sl@0
    75
#define BOOST_ITEST_RETURN( type, default_value ) \
sl@0
    76
    ::boost::itest::manager::instance().generic_return<type>( default_value )
sl@0
    77
/**/
sl@0
    78
sl@0
    79
// ************************************************************************** //
sl@0
    80
// **************              BOOST_ITEST_MOCK_FUNC           ************** //
sl@0
    81
// ************************************************************************** //
sl@0
    82
sl@0
    83
#define BOOST_ITEST_MOCK_FUNC( function_name )          \
sl@0
    84
    BOOST_ITEST_SCOPE( function_name );                 \
sl@0
    85
    BOOST_ITEST_EPOINT( 0 );                            \
sl@0
    86
    return ::boost::itest::mock_object<>::prototype();  \
sl@0
    87
/**/
sl@0
    88
sl@0
    89
namespace boost {
sl@0
    90
sl@0
    91
namespace itest { // interaction-based testing
sl@0
    92
sl@0
    93
using unit_test::const_string;
sl@0
    94
sl@0
    95
// ************************************************************************** //
sl@0
    96
// **************                    manager                   ************** //
sl@0
    97
// ************************************************************************** //
sl@0
    98
sl@0
    99
class BOOST_TEST_DECL manager {
sl@0
   100
public:
sl@0
   101
    // instance access
sl@0
   102
    static manager&     instance() { return *instance_ptr(); }
sl@0
   103
sl@0
   104
    // Mock objects interface hooks
sl@0
   105
    virtual void        exception_point( const_string /*file*/, 
sl@0
   106
                                         std::size_t /*line_num*/, 
sl@0
   107
                                         const_string /*descr*/ ){}
sl@0
   108
    virtual bool        decision_point( const_string /*file*/, 
sl@0
   109
                                        std::size_t /*line_num*/ )          { return true; }
sl@0
   110
    virtual unsigned    enter_scope( const_string /*file*/, 
sl@0
   111
                                     std::size_t /*line_num*/,
sl@0
   112
                                     const_string /*scope_name*/){ return 0; }
sl@0
   113
    virtual void        leave_scope( unsigned )                             {}
sl@0
   114
    virtual void        allocated( const_string /*file*/, 
sl@0
   115
                                   std::size_t /*line_num*/, 
sl@0
   116
                                   void* /*p*/, std::size_t /*s*/ )         {}
sl@0
   117
    virtual void        freed( void* /*p*/ )                                {}
sl@0
   118
    virtual void        data_flow( const_string d )                         {}
sl@0
   119
    virtual std::string return_value( const_string default_value )          { return ""; }
sl@0
   120
sl@0
   121
    template<typename T>
sl@0
   122
    void                generic_data_flow( T const& t )
sl@0
   123
    {
sl@0
   124
        wrap_stringstream ws;
sl@0
   125
sl@0
   126
        data_flow( (ws << t).str() );
sl@0
   127
    }
sl@0
   128
    template<typename T, typename DefaultValueType>
sl@0
   129
    T                   generic_return( DefaultValueType const& dv )
sl@0
   130
    {
sl@0
   131
        wrap_stringstream ws;
sl@0
   132
sl@0
   133
        std::string const& res = return_value( (ws << dv).str() );
sl@0
   134
sl@0
   135
        if( res.empty() )
sl@0
   136
            return dv;
sl@0
   137
sl@0
   138
        return lexical_cast<T>( res );
sl@0
   139
    }
sl@0
   140
sl@0
   141
protected:
sl@0
   142
    manager();
sl@0
   143
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) 
sl@0
   144
public:
sl@0
   145
#endif
sl@0
   146
    BOOST_TEST_PROTECTED_VIRTUAL ~manager();
sl@0
   147
sl@0
   148
private:
sl@0
   149
    struct dummy_constr{};
sl@0
   150
    explicit manager( dummy_constr* ) {}
sl@0
   151
sl@0
   152
    static manager*     instance_ptr( bool reset = false, manager* ptr = 0 );
sl@0
   153
}; // manager
sl@0
   154
sl@0
   155
// ************************************************************************** //
sl@0
   156
// **************                  scope_guard                 ************** //
sl@0
   157
// ************************************************************************** //
sl@0
   158
sl@0
   159
class scope_guard {
sl@0
   160
public:
sl@0
   161
    // Constructor
sl@0
   162
    scope_guard( const_string file, std::size_t line_num, const_string scope_name )
sl@0
   163
    {
sl@0
   164
        m_scope_index = manager::instance().enter_scope( file, line_num, scope_name );
sl@0
   165
    }
sl@0
   166
    ~scope_guard()
sl@0
   167
    {
sl@0
   168
        manager::instance().leave_scope( m_scope_index );
sl@0
   169
    }
sl@0
   170
sl@0
   171
    unsigned m_scope_index;
sl@0
   172
};
sl@0
   173
sl@0
   174
// ************************************************************************** //
sl@0
   175
// **************                    location                  ************** //
sl@0
   176
// ************************************************************************** //
sl@0
   177
sl@0
   178
struct location {
sl@0
   179
    location( const_string file, std::size_t line ) 
sl@0
   180
    : m_file_name( file )
sl@0
   181
    , m_line_num( line )
sl@0
   182
    {}
sl@0
   183
sl@0
   184
    const_string    m_file_name;
sl@0
   185
    std::size_t     m_line_num;
sl@0
   186
};
sl@0
   187
sl@0
   188
}  // namespace itest
sl@0
   189
sl@0
   190
} // namespace boost
sl@0
   191
sl@0
   192
// ************************************************************************** //
sl@0
   193
// **************              operator new overload           ************** //
sl@0
   194
// ************************************************************************** //
sl@0
   195
sl@0
   196
#if !defined(BOOST_ITEST_NO_NEW_OVERLOADS)
sl@0
   197
sl@0
   198
// STL
sl@0
   199
#include <cstdlib>
sl@0
   200
sl@0
   201
# ifdef BOOST_NO_STDC_NAMESPACE
sl@0
   202
namespace std { using ::malloc; using ::free; }
sl@0
   203
# endif
sl@0
   204
sl@0
   205
inline void*
sl@0
   206
operator new( std::size_t s, ::boost::itest::location const& l )
sl@0
   207
{
sl@0
   208
    void* res = std::malloc(s ? s : 1);
sl@0
   209
sl@0
   210
    if( res )
sl@0
   211
        ::boost::itest::manager::instance().allocated( l.m_file_name, l.m_line_num, res, s );
sl@0
   212
    else
sl@0
   213
        throw std::bad_alloc();
sl@0
   214
        
sl@0
   215
    return res;
sl@0
   216
}
sl@0
   217
sl@0
   218
//____________________________________________________________________________//
sl@0
   219
sl@0
   220
inline void*
sl@0
   221
operator new[]( std::size_t s, ::boost::itest::location const& l )
sl@0
   222
{
sl@0
   223
    void* res = std::malloc(s ? s : 1);
sl@0
   224
sl@0
   225
    if( res )
sl@0
   226
        ::boost::itest::manager::instance().allocated( l.m_file_name, l.m_line_num, res, s );
sl@0
   227
    else
sl@0
   228
        throw std::bad_alloc();
sl@0
   229
        
sl@0
   230
    return res;
sl@0
   231
}
sl@0
   232
sl@0
   233
//____________________________________________________________________________//
sl@0
   234
sl@0
   235
inline void
sl@0
   236
operator delete( void* p, ::boost::itest::location const& )
sl@0
   237
{
sl@0
   238
    ::boost::itest::manager::instance().freed( p );
sl@0
   239
sl@0
   240
    std::free( p );
sl@0
   241
}
sl@0
   242
sl@0
   243
//____________________________________________________________________________//
sl@0
   244
sl@0
   245
inline void
sl@0
   246
operator delete[]( void* p, ::boost::itest::location const& )
sl@0
   247
{
sl@0
   248
    ::boost::itest::manager::instance().freed( p );
sl@0
   249
sl@0
   250
    std::free( p );
sl@0
   251
}
sl@0
   252
sl@0
   253
//____________________________________________________________________________//
sl@0
   254
sl@0
   255
#endif
sl@0
   256
sl@0
   257
#include <boost/test/detail/enable_warnings.hpp>
sl@0
   258
sl@0
   259
// ***************************************************************************
sl@0
   260
//  Revision History :
sl@0
   261
//  
sl@0
   262
//  $Log: interaction_based.hpp,v $
sl@0
   263
//  Revision 1.3  2006/01/28 08:52:35  rogeeff
sl@0
   264
//  operator new overloads made inline to:
sl@0
   265
//  1. prevent issues with export them from DLL
sl@0
   266
//  2. release link issue fixed
sl@0
   267
//
sl@0
   268
//  Revision 1.2  2006/01/15 11:14:38  rogeeff
sl@0
   269
//  simpl_mock -> mock_object<>::prototype()
sl@0
   270
//  operator new need to be rethinked
sl@0
   271
//
sl@0
   272
//  Revision 1.1  2005/12/14 05:09:21  rogeeff
sl@0
   273
//  interraction based testing is introdused
sl@0
   274
//
sl@0
   275
// ***************************************************************************
sl@0
   276
sl@0
   277
#endif // BOOST_TEST_INTERACTION_BASED_HPP_112105GER