blob: b2059f83198010777e05ff63a309c080dcb14c75 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// (C) Copyright Gennadiy Rozental 2002-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)
5
6// See http://www.boost.org/libs/test for the library home page.
7//
8// File : $RCSfile$
9//
10// Version : $Revision: 49312 $
11//
12// Description : simple minimal testing definitions and implementation
13// ***************************************************************************
14
Jeff Thompson3d613fd2013-10-15 15:39:04 -070015#ifndef NDNBOOST_TEST_MINIMAL_HPP_071894GER
16#define NDNBOOST_TEST_MINIMAL_HPP_071894GER
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070017
Jeff Thompson3d613fd2013-10-15 15:39:04 -070018#define NDNBOOST_CHECK(exp) \
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070019 ( (exp) \
20 ? static_cast<void>(0) \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070021 : ndnboost::minimal_test::report_error(#exp,__FILE__,__LINE__, NDNBOOST_CURRENT_FUNCTION) )
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070022
Jeff Thompson3d613fd2013-10-15 15:39:04 -070023#define NDNBOOST_REQUIRE(exp) \
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070024 ( (exp) \
25 ? static_cast<void>(0) \
Jeff Thompson3d613fd2013-10-15 15:39:04 -070026 : ndnboost::minimal_test::report_critical_error(#exp,__FILE__,__LINE__,NDNBOOST_CURRENT_FUNCTION))
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070027
Jeff Thompson3d613fd2013-10-15 15:39:04 -070028#define NDNBOOST_ERROR( msg_ ) \
29 ndnboost::minimal_test::report_error( (msg_),__FILE__,__LINE__, NDNBOOST_CURRENT_FUNCTION, true )
30#define NDNBOOST_FAIL( msg_ ) \
31 ndnboost::minimal_test::report_critical_error( (msg_),__FILE__,__LINE__, NDNBOOST_CURRENT_FUNCTION, true )
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070032
33//____________________________________________________________________________//
34
35// Boost.Test
36#include <ndnboost/test/detail/global_typedef.hpp>
37#include <ndnboost/test/impl/execution_monitor.ipp>
38#include <ndnboost/test/impl/debug.ipp>
39#include <ndnboost/test/utils/class_properties.hpp>
40#include <ndnboost/test/utils/basic_cstring/io.hpp>
41
42// Boost
43#include <ndnboost/cstdlib.hpp> // for exit codes#include <ndnboost/cstdlib.hpp> // for exit codes
Jeff Thompson3d613fd2013-10-15 15:39:04 -070044#include <ndnboost/current_function.hpp> // for NDNBOOST_CURRENT_FUNCTION
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070045
46// STL
47#include <iostream> // std::cerr, std::endl
48#include <string> // std::string
49
50#include <ndnboost/test/detail/suppress_warnings.hpp>
51
52//____________________________________________________________________________//
53
54int test_main( int argc, char* argv[] ); // prototype for users test_main()
55
56namespace ndnboost {
57namespace minimal_test {
58
59typedef ndnboost::unit_test::const_string const_string;
60
61inline unit_test::counter_t& errors_counter() { static unit_test::counter_t ec = 0; return ec; }
62
63inline void
64report_error( const char* msg, const char* file, int line, const_string func_name, bool is_msg = false )
65{
66 ++errors_counter();
67 std::cerr << file << "(" << line << "): ";
68
69 if( is_msg )
70 std::cerr << msg;
71 else
72 std::cerr << "test " << msg << " failed";
73
74 if( func_name != "(unknown)" )
75 std::cerr << " in function: '" << func_name << "'";
76
77 std::cerr << std::endl;
78}
79
80inline void
81report_critical_error( const char* msg, const char* file, int line, const_string func_name, bool is_msg = false )
82{
83 report_error( msg, file, line, func_name, is_msg );
84
85 throw ndnboost::execution_aborted();
86}
87
88class caller {
89public:
90 // constructor
91 caller( int argc, char** argv )
92 : m_argc( argc ), m_argv( argv ) {}
93
94 // execution monitor hook implementation
95 int operator()() { return test_main( m_argc, m_argv ); }
96
97private:
98 // Data members
99 int m_argc;
100 char** m_argv;
101}; // monitor
102
103} // namespace minimal_test
104
105} // namespace ndnboost
106
107//____________________________________________________________________________//
108
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700109int NDNBOOST_TEST_CALL_DECL main( int argc, char* argv[] )
Jeff Thompsonef2d5a42013-08-22 19:09:24 -0700110{
111 using namespace ndnboost::minimal_test;
112
113 try {
114 ::ndnboost::execution_monitor ex_mon;
115 int run_result = ex_mon.execute( caller( argc, argv ) );
116
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700117 NDNBOOST_CHECK( run_result == 0 || run_result == ndnboost::exit_success );
Jeff Thompsonef2d5a42013-08-22 19:09:24 -0700118 }
119 catch( ndnboost::execution_exception const& exex ) {
120 if( exex.code() != ndnboost::execution_exception::no_error )
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700121 NDNBOOST_ERROR( (std::string( "exception \"" ).
Jeff Thompsonef2d5a42013-08-22 19:09:24 -0700122 append( exex.what().begin(), exex.what().end() ).
123 append( "\" caught" ) ).c_str() );
124 std::cerr << "\n**** Testing aborted.";
125 }
126
127 if( ndnboost::minimal_test::errors_counter() != 0 ) {
128 std::cerr << "\n**** " << errors_counter()
129 << " error" << (errors_counter() > 1 ? "s" : "" ) << " detected\n";
130
131 return ndnboost::exit_test_failure;
132 }
133
134 std::cout << "\n**** no errors detected\n";
135
136 return ndnboost::exit_success;
137}
138
139//____________________________________________________________________________//
140
141#include <ndnboost/test/detail/enable_warnings.hpp>
142
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700143#endif // NDNBOOST_TEST_MINIMAL_HPP_071894GER