1 // (C) Copyright Gennadiy Rozental 2005-2008.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
6 // See http://www.boost.org/libs/test for the library home page.
10 // Version : $Revision$
12 // Description : Facilities to perform interaction-based testing
13 // ***************************************************************************
15 #ifndef BOOST_TEST_INTERACTION_BASED_HPP_112105GER
16 #define BOOST_TEST_INTERACTION_BASED_HPP_112105GER
19 #include <boost/test/detail/config.hpp>
20 #include <boost/test/detail/global_typedef.hpp>
22 #include <boost/test/utils/wrap_stringstream.hpp>
24 #include <boost/test/detail/suppress_warnings.hpp>
27 #include <boost/lexical_cast.hpp>
29 //____________________________________________________________________________//
31 // ************************************************************************** //
32 // ************** BOOST_ITEST_EPOINT ************** //
33 // ************************************************************************** //
35 #define BOOST_ITEST_EPOINT( description ) \
36 ::boost::itest::manager::instance().exception_point( BOOST_TEST_L(__FILE__), __LINE__, description )
39 // ************************************************************************** //
40 // ************** BOOST_ITEST_DPOINT ************** //
41 // ************************************************************************** //
43 #define BOOST_ITEST_DPOINT() \
44 ::boost::itest::manager::instance().decision_point( BOOST_TEST_L(__FILE__), __LINE__ )
47 // ************************************************************************** //
48 // ************** BOOST_ITEST_SCOPE ************** //
49 // ************************************************************************** //
51 #define BOOST_ITEST_SCOPE( scope_name ) \
52 ::boost::itest::scope_guard itest_scope_guard ## __LINE__( BOOST_TEST_L(__FILE__), __LINE__, BOOST_STRINGIZE(scope_name) )
55 // ************************************************************************** //
56 // ************** BOOST_ITEST_NEW ************** //
57 // ************************************************************************** //
59 #define BOOST_ITEST_NEW( type_name ) \
60 new ( ::boost::itest::location( BOOST_TEST_L(__FILE__), __LINE__ ) ) type_name
63 // ************************************************************************** //
64 // ************** BOOST_ITEST_DATA_FLOW ************** //
65 // ************************************************************************** //
67 #define BOOST_ITEST_DATA_FLOW( v ) \
68 ::boost::itest::manager::instance().generic_data_flow( v )
71 // ************************************************************************** //
72 // ************** BOOST_ITEST_RETURN ************** //
73 // ************************************************************************** //
75 #define BOOST_ITEST_RETURN( type, default_value ) \
76 ::boost::itest::manager::instance().generic_return<type>( default_value )
79 // ************************************************************************** //
80 // ************** BOOST_ITEST_MOCK_FUNC ************** //
81 // ************************************************************************** //
83 #define BOOST_ITEST_MOCK_FUNC( function_name ) \
84 BOOST_ITEST_SCOPE( function_name ); \
85 BOOST_ITEST_EPOINT( 0 ); \
86 return ::boost::itest::mock_object<>::prototype(); \
91 namespace itest
{ // interaction-based testing
93 using unit_test::const_string
;
95 // ************************************************************************** //
96 // ************** manager ************** //
97 // ************************************************************************** //
99 class BOOST_TEST_DECL manager
{
102 static manager
& instance() { return *instance_ptr(); }
104 // Mock objects interface hooks
105 virtual void exception_point( const_string
/*file*/,
106 std::size_t /*line_num*/,
107 const_string
/*descr*/ ){}
108 virtual bool decision_point( const_string
/*file*/,
109 std::size_t /*line_num*/ ) { return true; }
110 virtual unsigned enter_scope( const_string
/*file*/,
111 std::size_t /*line_num*/,
112 const_string
/*scope_name*/){ return 0; }
113 virtual void leave_scope( unsigned ) {}
114 virtual void allocated( const_string
/*file*/,
115 std::size_t /*line_num*/,
116 void* /*p*/, std::size_t /*s*/ ) {}
117 virtual void freed( void* /*p*/ ) {}
118 virtual void data_flow( const_string
/*d*/ ) {}
119 virtual std::string
return_value( const_string
/*default_value */ ) { return ""; }
122 void generic_data_flow( T
const& t
)
124 wrap_stringstream ws
;
126 data_flow( (ws
<< t
).str() );
128 template<typename T
, typename DefaultValueType
>
129 T
generic_return( DefaultValueType
const& dv
)
131 wrap_stringstream ws
;
133 std::string
const& res
= return_value( (ws
<< dv
).str() );
138 return lexical_cast
<T
>( res
);
143 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
146 BOOST_TEST_PROTECTED_VIRTUAL
~manager();
149 struct dummy_constr
{};
150 explicit manager( dummy_constr
* ) {}
152 static manager
* instance_ptr( bool reset
= false, manager
* ptr
= 0 );
155 // ************************************************************************** //
156 // ************** scope_guard ************** //
157 // ************************************************************************** //
162 scope_guard( const_string file
, std::size_t line_num
, const_string scope_name
)
164 m_scope_index
= manager::instance().enter_scope( file
, line_num
, scope_name
);
168 manager::instance().leave_scope( m_scope_index
);
171 unsigned m_scope_index
;
174 // ************************************************************************** //
175 // ************** location ************** //
176 // ************************************************************************** //
179 location( const_string file
, std::size_t line
)
180 : m_file_name( file
)
184 const_string m_file_name
;
185 std::size_t m_line_num
;
192 // ************************************************************************** //
193 // ************** operator new overload ************** //
194 // ************************************************************************** //
196 #if !defined(BOOST_ITEST_NO_NEW_OVERLOADS)
201 # ifdef BOOST_NO_STDC_NAMESPACE
202 namespace std
{ using ::malloc
; using ::free
; }
204 # ifdef _CRTDBG_MAP_ALLOC
205 namespace std
{ using ::_malloc_dbg
; using ::_free_dbg
; }
209 operator new( std::size_t s
, ::boost::itest::location
const& l
)
211 void* res
= std::malloc(s
? s
: 1);
214 ::boost::itest::manager::instance().allocated( l
.m_file_name
, l
.m_line_num
, res
, s
);
216 throw std::bad_alloc();
221 //____________________________________________________________________________//
224 operator new[]( std::size_t s
, ::boost::itest::location
const& l
)
226 void* res
= std::malloc(s
? s
: 1);
229 ::boost::itest::manager::instance().allocated( l
.m_file_name
, l
.m_line_num
, res
, s
);
231 throw std::bad_alloc();
236 //____________________________________________________________________________//
239 operator delete( void* p
, ::boost::itest::location
const& )
241 ::boost::itest::manager::instance().freed( p
);
246 //____________________________________________________________________________//
249 operator delete[]( void* p
, ::boost::itest::location
const& )
251 ::boost::itest::manager::instance().freed( p
);
256 //____________________________________________________________________________//
260 #include <boost/test/detail/enable_warnings.hpp>
262 #endif // BOOST_TEST_INTERACTION_BASED_HPP_112105GER