unit_test_log.hpp 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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 singleton class unit_test_log and all manipulators.
  9. /// unit_test_log has output stream like interface. It's implementation is
  10. /// completely hidden with pimple idiom
  11. // ***************************************************************************
  12. #ifndef BOOST_TEST_UNIT_TEST_LOG_HPP_071894GER
  13. #define BOOST_TEST_UNIT_TEST_LOG_HPP_071894GER
  14. // Boost.Test
  15. #include <boost/test/tree/observer.hpp>
  16. #include <boost/test/detail/global_typedef.hpp>
  17. #include <boost/test/detail/log_level.hpp>
  18. #include <boost/test/detail/fwd_decl.hpp>
  19. #include <boost/test/utils/wrap_stringstream.hpp>
  20. #include <boost/test/utils/trivial_singleton.hpp>
  21. #include <boost/test/utils/lazy_ostream.hpp>
  22. // Boost
  23. // STL
  24. #include <iosfwd> // for std::ostream&
  25. #include <boost/test/detail/suppress_warnings.hpp>
  26. //____________________________________________________________________________//
  27. namespace boost {
  28. namespace unit_test {
  29. // ************************************************************************** //
  30. // ************** log manipulators ************** //
  31. // ************************************************************************** //
  32. namespace log {
  33. struct BOOST_TEST_DECL begin {
  34. begin( const_string fn, std::size_t ln )
  35. : m_file_name( fn )
  36. , m_line_num( ln )
  37. {}
  38. const_string m_file_name;
  39. std::size_t m_line_num;
  40. };
  41. struct end {};
  42. } // namespace log
  43. // ************************************************************************** //
  44. // ************** entry_value_collector ************** //
  45. // ************************************************************************** //
  46. namespace ut_detail {
  47. class BOOST_TEST_DECL entry_value_collector {
  48. public:
  49. // Constructors
  50. entry_value_collector() : m_last( true ) {}
  51. entry_value_collector( entry_value_collector const& rhs ) : m_last( true ) { rhs.m_last = false; }
  52. ~entry_value_collector();
  53. // collection interface
  54. entry_value_collector const& operator<<( lazy_ostream const& ) const;
  55. entry_value_collector const& operator<<( const_string ) const;
  56. private:
  57. // Data members
  58. mutable bool m_last;
  59. };
  60. } // namespace ut_detail
  61. // ************************************************************************** //
  62. // ************** unit_test_log ************** //
  63. // ************************************************************************** //
  64. class BOOST_TEST_DECL unit_test_log_t : public test_observer, public singleton<unit_test_log_t> {
  65. public:
  66. // test_observer interface implementation
  67. virtual void test_start( counter_t test_cases_amount );
  68. virtual void test_finish();
  69. virtual void test_aborted();
  70. virtual void test_unit_start( test_unit const& );
  71. virtual void test_unit_finish( test_unit const&, unsigned long elapsed );
  72. virtual void test_unit_skipped( test_unit const&, const_string );
  73. virtual void exception_caught( execution_exception const& ex );
  74. virtual int priority() { return 1; }
  75. // log configuration methods
  76. void set_stream( std::ostream& );
  77. void set_threshold_level( log_level );
  78. void set_format( output_format );
  79. void set_formatter( unit_test_log_formatter* );
  80. // test progress logging
  81. void set_checkpoint( const_string file, std::size_t line_num, const_string msg = const_string() );
  82. // entry logging
  83. unit_test_log_t& operator<<( log::begin const& ); // begin entry
  84. unit_test_log_t& operator<<( log::end const& ); // end entry
  85. unit_test_log_t& operator<<( log_level ); // set entry level
  86. unit_test_log_t& operator<<( const_string ); // log entry value
  87. unit_test_log_t& operator<<( lazy_ostream const& ); // log entry value
  88. ut_detail::entry_value_collector operator()( log_level ); // initiate entry collection
  89. private:
  90. // Implementation helpers
  91. bool log_entry_start();
  92. void log_entry_context( log_level l );
  93. void clear_entry_context();
  94. BOOST_TEST_SINGLETON_CONS( unit_test_log_t )
  95. }; // unit_test_log_t
  96. BOOST_TEST_SINGLETON_INST( unit_test_log )
  97. // helper macros
  98. #define BOOST_TEST_LOG_ENTRY( ll ) \
  99. (::boost::unit_test::unit_test_log \
  100. << ::boost::unit_test::log::begin( BOOST_TEST_L(__FILE__), __LINE__ ))(ll) \
  101. /**/
  102. } // namespace unit_test
  103. } // namespace boost
  104. // ************************************************************************** //
  105. // ************** Unit test log interface helpers ************** //
  106. // ************************************************************************** //
  107. #define BOOST_TEST_MESSAGE( M ) \
  108. BOOST_TEST_LOG_ENTRY( ::boost::unit_test::log_messages ) \
  109. << BOOST_TEST_LAZY_MSG( M ) \
  110. /**/
  111. //____________________________________________________________________________//
  112. #define BOOST_TEST_PASSPOINT() \
  113. ::boost::unit_test::unit_test_log.set_checkpoint( \
  114. BOOST_TEST_L(__FILE__), \
  115. static_cast<std::size_t>(__LINE__) ) \
  116. /**/
  117. //____________________________________________________________________________//
  118. #define BOOST_TEST_CHECKPOINT( M ) \
  119. ::boost::unit_test::unit_test_log.set_checkpoint( \
  120. BOOST_TEST_L(__FILE__), \
  121. static_cast<std::size_t>(__LINE__), \
  122. (::boost::wrap_stringstream().ref() << M).str() ) \
  123. /**/
  124. //____________________________________________________________________________//
  125. #include <boost/test/detail/enable_warnings.hpp>
  126. #endif // BOOST_TEST_UNIT_TEST_LOG_HPP_071894GER