unit_test_suite.hpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. // (C) Copyright Gennadiy Rozental 2001.
  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)
  5. // See http://www.boost.org/libs/test for the library home page.
  6. //
  7. /// @file
  8. /// @brief Defines Unit Test Framework public API
  9. // ***************************************************************************
  10. #ifndef BOOST_TEST_UNIT_TEST_SUITE_HPP_071894GER
  11. #define BOOST_TEST_UNIT_TEST_SUITE_HPP_071894GER
  12. // Boost.Test
  13. #include <boost/test/framework.hpp>
  14. #include <boost/test/tree/auto_registration.hpp>
  15. #include <boost/test/tree/test_case_template.hpp>
  16. #include <boost/test/tree/global_fixture.hpp>
  17. #include <boost/test/detail/suppress_warnings.hpp>
  18. #include <boost/test/detail/pp_variadic.hpp>
  19. //____________________________________________________________________________//
  20. // ************************************************************************** //
  21. // ************** Non-auto (explicit) test case interface ************** //
  22. // ************************************************************************** //
  23. #define BOOST_TEST_CASE( test_function ) \
  24. boost::unit_test::make_test_case( boost::function<void ()>(test_function), \
  25. BOOST_TEST_STRINGIZE( test_function ), \
  26. __FILE__, __LINE__ )
  27. #define BOOST_CLASS_TEST_CASE( test_function, tc_instance ) \
  28. boost::unit_test::make_test_case( (test_function), \
  29. BOOST_TEST_STRINGIZE( test_function ), \
  30. __FILE__, __LINE__, tc_instance )
  31. // ************************************************************************** //
  32. // ************** BOOST_TEST_SUITE ************** //
  33. // ************************************************************************** //
  34. #define BOOST_TEST_SUITE( testsuite_name ) \
  35. ( new boost::unit_test::test_suite( testsuite_name, __FILE__, __LINE__ ) )
  36. // ************************************************************************** //
  37. // ************** BOOST_AUTO_TEST_SUITE ************** //
  38. // ************************************************************************** //
  39. #define BOOST_AUTO_TEST_SUITE_WITH_DECOR( suite_name, decorators ) \
  40. namespace suite_name { \
  41. BOOST_AUTO_TU_REGISTRAR( suite_name )( \
  42. BOOST_STRINGIZE( suite_name ), \
  43. __FILE__, __LINE__, \
  44. decorators ); \
  45. /**/
  46. #define BOOST_AUTO_TEST_SUITE_NO_DECOR( suite_name ) \
  47. BOOST_AUTO_TEST_SUITE_WITH_DECOR( \
  48. suite_name, \
  49. boost::unit_test::decorator::collector::instance() ) \
  50. /**/
  51. #if BOOST_PP_VARIADICS
  52. #define BOOST_AUTO_TEST_SUITE( ... ) \
  53. BOOST_TEST_INVOKE_IF_N_ARGS( 1, \
  54. BOOST_AUTO_TEST_SUITE_NO_DECOR, \
  55. BOOST_AUTO_TEST_SUITE_WITH_DECOR, \
  56. __VA_ARGS__) \
  57. /**/
  58. #else /* BOOST_PP_VARIADICS */
  59. #define BOOST_AUTO_TEST_SUITE( suite_name ) \
  60. BOOST_AUTO_TEST_SUITE_NO_DECOR( suite_name ) \
  61. /**/
  62. #endif /* BOOST_PP_VARIADICS */
  63. // ************************************************************************** //
  64. // ************** BOOST_FIXTURE_TEST_SUITE ************** //
  65. // ************************************************************************** //
  66. #define BOOST_FIXTURE_TEST_SUITE_WITH_DECOR(suite_name, F, decorators) \
  67. BOOST_AUTO_TEST_SUITE_WITH_DECOR( suite_name, decorators ) \
  68. typedef F BOOST_AUTO_TEST_CASE_FIXTURE; \
  69. /**/
  70. #define BOOST_FIXTURE_TEST_SUITE_NO_DECOR( suite_name, F ) \
  71. BOOST_AUTO_TEST_SUITE_NO_DECOR( suite_name ) \
  72. typedef F BOOST_AUTO_TEST_CASE_FIXTURE; \
  73. /**/
  74. #if BOOST_PP_VARIADICS
  75. #define BOOST_FIXTURE_TEST_SUITE( ... ) \
  76. BOOST_TEST_INVOKE_IF_N_ARGS( 2, \
  77. BOOST_FIXTURE_TEST_SUITE_NO_DECOR, \
  78. BOOST_FIXTURE_TEST_SUITE_WITH_DECOR, \
  79. __VA_ARGS__) \
  80. /**/
  81. #else /* BOOST_PP_VARIADICS */
  82. #define BOOST_FIXTURE_TEST_SUITE( suite_name, F ) \
  83. BOOST_FIXTURE_TEST_SUITE_NO_DECOR( suite_name, F ) \
  84. /**/
  85. #endif /* BOOST_PP_VARIADICS */
  86. // ************************************************************************** //
  87. // ************** BOOST_AUTO_TEST_SUITE_END ************** //
  88. // ************************************************************************** //
  89. #define BOOST_AUTO_TEST_SUITE_END() \
  90. BOOST_AUTO_TU_REGISTRAR( BOOST_JOIN( end_suite, __LINE__ ) )( 1 ); \
  91. } \
  92. /**/
  93. // ************************************************************************** //
  94. // ************** BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES ************** //
  95. // ************************************************************************** //
  96. /// @deprecated use decorator instead
  97. #define BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES( test_name, n ) \
  98. BOOST_TEST_DECORATOR( * boost::unit_test::expected_failures( n ) ) \
  99. /**/
  100. // ************************************************************************** //
  101. // ************** BOOST_FIXTURE_TEST_CASE ************** //
  102. // ************************************************************************** //
  103. #define BOOST_FIXTURE_TEST_CASE_WITH_DECOR( test_name, F, decorators ) \
  104. struct test_name : public F { void test_method(); }; \
  105. \
  106. static void BOOST_AUTO_TC_INVOKER( test_name )() \
  107. { \
  108. BOOST_TEST_CHECKPOINT('"' << #test_name << "\" fixture entry."); \
  109. test_name t; \
  110. BOOST_TEST_CHECKPOINT('"' << #test_name << "\" entry."); \
  111. t.test_method(); \
  112. BOOST_TEST_CHECKPOINT('"' << #test_name << "\" exit."); \
  113. } \
  114. \
  115. struct BOOST_AUTO_TC_UNIQUE_ID( test_name ) {}; \
  116. \
  117. BOOST_AUTO_TU_REGISTRAR( test_name )( \
  118. boost::unit_test::make_test_case( \
  119. &BOOST_AUTO_TC_INVOKER( test_name ), \
  120. #test_name, __FILE__, __LINE__ ), \
  121. decorators ); \
  122. \
  123. void test_name::test_method() \
  124. /**/
  125. #define BOOST_FIXTURE_TEST_CASE_NO_DECOR( test_name, F ) \
  126. BOOST_FIXTURE_TEST_CASE_WITH_DECOR( test_name, F, \
  127. boost::unit_test::decorator::collector::instance() ) \
  128. /**/
  129. #if BOOST_PP_VARIADICS
  130. #define BOOST_FIXTURE_TEST_CASE( ... ) \
  131. BOOST_TEST_INVOKE_IF_N_ARGS( 2, \
  132. BOOST_FIXTURE_TEST_CASE_NO_DECOR, \
  133. BOOST_FIXTURE_TEST_CASE_WITH_DECOR, \
  134. __VA_ARGS__) \
  135. /**/
  136. #else /* BOOST_PP_VARIADICS */
  137. #define BOOST_FIXTURE_TEST_CASE( test_name, F ) \
  138. BOOST_FIXTURE_TEST_CASE_NO_DECOR(test_name, F) \
  139. /**/
  140. #endif /* BOOST_PP_VARIADICS */
  141. // ************************************************************************** //
  142. // ************** BOOST_AUTO_TEST_CASE ************** //
  143. // ************************************************************************** //
  144. #define BOOST_AUTO_TEST_CASE_NO_DECOR( test_name ) \
  145. BOOST_FIXTURE_TEST_CASE_NO_DECOR( test_name, \
  146. BOOST_AUTO_TEST_CASE_FIXTURE ) \
  147. /**/
  148. #define BOOST_AUTO_TEST_CASE_WITH_DECOR( test_name, decorators ) \
  149. BOOST_FIXTURE_TEST_CASE_WITH_DECOR( test_name, \
  150. BOOST_AUTO_TEST_CASE_FIXTURE, decorators ) \
  151. /**/
  152. #if BOOST_PP_VARIADICS
  153. #define BOOST_AUTO_TEST_CASE( ... ) \
  154. BOOST_TEST_INVOKE_IF_N_ARGS( 1, \
  155. BOOST_AUTO_TEST_CASE_NO_DECOR, \
  156. BOOST_AUTO_TEST_CASE_WITH_DECOR, \
  157. __VA_ARGS__) \
  158. /**/
  159. #else /* BOOST_PP_VARIADICS */
  160. #define BOOST_AUTO_TEST_CASE( test_name ) \
  161. BOOST_AUTO_TEST_CASE_NO_DECOR( test_name ) \
  162. /**/
  163. #endif /* BOOST_PP_VARIADICS */
  164. // ************************************************************************** //
  165. // ************** BOOST_FIXTURE_TEST_CASE_TEMPLATE ************** //
  166. // ************************************************************************** //
  167. #define BOOST_FIXTURE_TEST_CASE_TEMPLATE( test_name, type_name, TL, F ) \
  168. template<typename type_name> \
  169. struct test_name : public F \
  170. { void test_method(); }; \
  171. \
  172. struct BOOST_AUTO_TC_INVOKER( test_name ) { \
  173. template<typename TestType> \
  174. static void run( boost::type<TestType>* = 0 ) \
  175. { \
  176. BOOST_TEST_CHECKPOINT('"' << #test_name <<"\" fixture entry."); \
  177. test_name<TestType> t; \
  178. BOOST_TEST_CHECKPOINT('"' << #test_name << "\" entry."); \
  179. t.test_method(); \
  180. BOOST_TEST_CHECKPOINT('"' << #test_name << "\" exit."); \
  181. } \
  182. }; \
  183. \
  184. BOOST_AUTO_TU_REGISTRAR( test_name )( \
  185. boost::unit_test::ut_detail::template_test_case_gen< \
  186. BOOST_AUTO_TC_INVOKER( test_name ),TL >( \
  187. BOOST_STRINGIZE( test_name ), __FILE__, __LINE__ ), \
  188. boost::unit_test::decorator::collector::instance() ); \
  189. \
  190. template<typename type_name> \
  191. void test_name<type_name>::test_method() \
  192. /**/
  193. // ************************************************************************** //
  194. // ************** BOOST_AUTO_TEST_CASE_TEMPLATE ************** //
  195. // ************************************************************************** //
  196. #define BOOST_AUTO_TEST_CASE_TEMPLATE( test_name, type_name, TL ) \
  197. BOOST_FIXTURE_TEST_CASE_TEMPLATE( test_name, type_name, TL, \
  198. BOOST_AUTO_TEST_CASE_FIXTURE ) \
  199. /**/
  200. // ************************************************************************** //
  201. // ************** BOOST_TEST_CASE_TEMPLATE ************** //
  202. // ************************************************************************** //
  203. #define BOOST_TEST_CASE_TEMPLATE( name, typelist ) \
  204. boost::unit_test::ut_detail::template_test_case_gen<name,typelist>( \
  205. BOOST_TEST_STRINGIZE( name ), __FILE__, __LINE__ ) \
  206. /**/
  207. // ************************************************************************** //
  208. // ************** BOOST_TEST_CASE_TEMPLATE_FUNCTION ************** //
  209. // ************************************************************************** //
  210. #define BOOST_TEST_CASE_TEMPLATE_FUNCTION( name, type_name ) \
  211. template<typename type_name> \
  212. void BOOST_JOIN( name, _impl )( boost::type<type_name>* ); \
  213. \
  214. struct name { \
  215. template<typename TestType> \
  216. static void run( boost::type<TestType>* frwrd = 0 ) \
  217. { \
  218. BOOST_JOIN( name, _impl )( frwrd ); \
  219. } \
  220. }; \
  221. \
  222. template<typename type_name> \
  223. void BOOST_JOIN( name, _impl )( boost::type<type_name>* ) \
  224. /**/
  225. // ************************************************************************** //
  226. // ************** BOOST_GLOBAL_FIXTURE ************** //
  227. // ************************************************************************** //
  228. #define BOOST_GLOBAL_FIXTURE( F ) \
  229. static boost::unit_test::ut_detail::global_fixture_impl<F> BOOST_JOIN( gf_, F ) \
  230. /**/
  231. // ************************************************************************** //
  232. // ************** BOOST_TEST_DECORATOR ************** //
  233. // ************************************************************************** //
  234. #define BOOST_TEST_DECORATOR( D ) \
  235. static boost::unit_test::decorator::collector const& \
  236. BOOST_JOIN(decorator_collector,__LINE__) = D; \
  237. /**/
  238. // ************************************************************************** //
  239. // ************** BOOST_AUTO_TEST_CASE_FIXTURE ************** //
  240. // ************************************************************************** //
  241. namespace boost { namespace unit_test { namespace ut_detail {
  242. struct nil_t {};
  243. } // namespace ut_detail
  244. } // unit_test
  245. } // namespace boost
  246. // Intentionally is in global namespace, so that FIXTURE_TEST_SUITE can reset it in user code.
  247. typedef ::boost::unit_test::ut_detail::nil_t BOOST_AUTO_TEST_CASE_FIXTURE;
  248. // ************************************************************************** //
  249. // ************** Auto registration facility helper macros ************** //
  250. // ************************************************************************** //
  251. #define BOOST_AUTO_TU_REGISTRAR( test_name ) \
  252. static boost::unit_test::ut_detail::auto_test_unit_registrar \
  253. BOOST_JOIN( BOOST_JOIN( test_name, _registrar ), __LINE__ ) \
  254. /**/
  255. #define BOOST_AUTO_TC_INVOKER( test_name ) BOOST_JOIN( test_name, _invoker )
  256. #define BOOST_AUTO_TC_UNIQUE_ID( test_name ) BOOST_JOIN( test_name, _id )
  257. // ************************************************************************** //
  258. // ************** BOOST_TEST_MAIN ************** //
  259. // ************************************************************************** //
  260. #if defined(BOOST_TEST_MAIN)
  261. #ifdef BOOST_TEST_ALTERNATIVE_INIT_API
  262. bool init_unit_test() {
  263. #else
  264. ::boost::unit_test::test_suite*
  265. init_unit_test_suite( int, char* [] ) {
  266. #endif
  267. #ifdef BOOST_TEST_MODULE
  268. using namespace ::boost::unit_test;
  269. assign_op( framework::master_test_suite().p_name.value, BOOST_TEST_STRINGIZE( BOOST_TEST_MODULE ).trim( "\"" ), 0 );
  270. #endif
  271. #ifdef BOOST_TEST_ALTERNATIVE_INIT_API
  272. return true;
  273. }
  274. #else
  275. return 0;
  276. }
  277. #endif
  278. #endif
  279. //____________________________________________________________________________//
  280. #include <boost/test/detail/enable_warnings.hpp>
  281. #endif // BOOST_TEST_UNIT_TEST_SUITE_HPP_071894GER