mirror of
https://github.com/boostorg/test.git
synced 2026-01-29 08:02:12 +00:00
113 lines
3.6 KiB
C++
113 lines
3.6 KiB
C++
// (C) Copyright Gennadiy Rozental 2001-2004.
|
|
// (C) Copyright Ullrich Koethe 2001.
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// See http://www.boost.org/libs/test for the library home page.
|
|
//
|
|
// File : $RCSfile$
|
|
//
|
|
// Version : $Revision$
|
|
//
|
|
// Description : implements specific subclass of Executon Monitor used by Unit
|
|
// Test Framework to monitor test cases run.
|
|
// ***************************************************************************
|
|
|
|
// Boost.Test
|
|
#include <boost/test/detail/unit_test_monitor.hpp>
|
|
#include <boost/test/unit_test_log.hpp>
|
|
#include <boost/test/unit_test_result.hpp>
|
|
#include <boost/test/unit_test_suite.hpp>
|
|
#include <boost/test/test_tools.hpp>
|
|
|
|
namespace boost {
|
|
|
|
namespace unit_test {
|
|
|
|
namespace detail {
|
|
|
|
// ************************************************************************** //
|
|
// ************** unit_test_monitor ************** //
|
|
// ************************************************************************** //
|
|
|
|
bool unit_test_monitor::s_catch_system_errors = true;
|
|
|
|
unit_test_monitor::error_level
|
|
unit_test_monitor::execute_and_translate( test_case* target_test_case, function_to_monitor f, int timeout )
|
|
{
|
|
m_test_case = target_test_case;
|
|
m_test_case_method = f;
|
|
|
|
try {
|
|
execute( s_catch_system_errors, timeout );
|
|
}
|
|
catch( execution_exception const& exex ) {
|
|
log_level loglevel =
|
|
exex.code() <= execution_exception::cpp_exception_error ? log_cpp_exception_errors :
|
|
(exex.code() <= execution_exception::timeout_error ? log_system_errors :
|
|
log_fatal_errors);
|
|
unit_test_log::instance()
|
|
<< begin() << level( loglevel ) << log_exception( exex.what() ) << end();
|
|
|
|
unit_test_result::instance().caught_exception();
|
|
|
|
// translate execution_exception::error_code to error_level
|
|
switch( exex.code() ) {
|
|
case execution_exception::no_error: return test_ok;
|
|
case execution_exception::user_error: return unexpected_exception;
|
|
case execution_exception::cpp_exception_error: return unexpected_exception;
|
|
case execution_exception::system_error: return os_exception;
|
|
case execution_exception::timeout_error: return os_timeout;
|
|
case execution_exception::user_fatal_error:
|
|
case execution_exception::system_fatal_error: return fatal_error;
|
|
default: return unexpected_exception;
|
|
}
|
|
}
|
|
|
|
return test_ok;
|
|
}
|
|
|
|
//____________________________________________________________________________//
|
|
|
|
int
|
|
unit_test_monitor::function()
|
|
{
|
|
try {
|
|
(m_test_case->*m_test_case_method)();
|
|
}
|
|
catch( test_tools::detail::test_tool_failed const& /*e*/ ) { // e not used; error already reported
|
|
// nothing to do
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
//____________________________________________________________________________//
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace unit_test
|
|
|
|
} // namespace boost
|
|
|
|
// ***************************************************************************
|
|
// Revision History :
|
|
//
|
|
// $Log$
|
|
// Revision 1.14 2004/05/21 06:26:10 rogeeff
|
|
// licence update
|
|
//
|
|
// Revision 1.13 2004/05/11 11:05:04 rogeeff
|
|
// basic_cstring introduced and used everywhere
|
|
// class properties reworked
|
|
// namespace names shortened
|
|
//
|
|
// Revision 1.12 2003/12/01 00:42:37 rogeeff
|
|
// prerelease cleaning
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
// EOF
|