mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
2666c96d4e
- Removed spurious (re-)throw when catching unexpected exception
185 lines
9.1 KiB
C++
185 lines
9.1 KiB
C++
/*
|
|
* Created by Phil on 18/10/2010.
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
*
|
|
* 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)
|
|
*/
|
|
#ifndef TWOBLUECUBES_CATCH_CAPTURE_HPP_INCLUDED
|
|
#define TWOBLUECUBES_CATCH_CAPTURE_HPP_INCLUDED
|
|
|
|
#include "catch_expression_decomposer.hpp"
|
|
#include "catch_expressionresult_builder.h"
|
|
#include "catch_message.h"
|
|
#include "catch_interfaces_capture.h"
|
|
#include "catch_debugger.hpp"
|
|
#include "catch_context.h"
|
|
#include "catch_common.h"
|
|
#include "catch_interfaces_registry_hub.h"
|
|
#include <ostream>
|
|
|
|
namespace Catch {
|
|
|
|
inline IResultCapture& getResultCapture() {
|
|
return getCurrentContext().getResultCapture();
|
|
}
|
|
|
|
template<typename MatcherT>
|
|
ExpressionResultBuilder expressionResultBuilderFromMatcher( const MatcherT& matcher,
|
|
const std::string& matcherCallAsString ) {
|
|
std::string matcherAsString = matcher.toString();
|
|
if( matcherAsString == "{?}" )
|
|
matcherAsString = matcherCallAsString;
|
|
return ExpressionResultBuilder()
|
|
.setRhs( matcherAsString )
|
|
.setOp( "matches" );
|
|
}
|
|
|
|
template<typename MatcherT, typename ArgT>
|
|
ExpressionResultBuilder expressionResultBuilderFromMatcher( const MatcherT& matcher,
|
|
const ArgT& arg,
|
|
const std::string& matcherCallAsString ) {
|
|
return expressionResultBuilderFromMatcher( matcher, matcherCallAsString )
|
|
.setLhs( Catch::toString( arg ) )
|
|
.setResultType( matcher.match( arg ) );
|
|
}
|
|
|
|
template<typename MatcherT, typename ArgT>
|
|
ExpressionResultBuilder expressionResultBuilderFromMatcher( const MatcherT& matcher,
|
|
ArgT* arg,
|
|
const std::string& matcherCallAsString ) {
|
|
return expressionResultBuilderFromMatcher( matcher, matcherCallAsString )
|
|
.setLhs( Catch::toString( arg ) )
|
|
.setResultType( matcher.match( arg ) );
|
|
}
|
|
|
|
struct TestFailureException{};
|
|
|
|
|
|
// This is just here to avoid compiler warnings with macro constants and boolean literals
|
|
inline bool isTrue( bool value ){ return value; }
|
|
|
|
} // end namespace Catch
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_ASSERTIONINFO_NAME INTERNAL_CATCH_UNIQUE_NAME( __assertionInfo )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_ACCEPT_EXPR( evaluatedExpr, resultDisposition, originalExpr ) \
|
|
if( Catch::ResultAction::Value internal_catch_action = Catch::getResultCapture().acceptExpression( evaluatedExpr, INTERNAL_CATCH_ASSERTIONINFO_NAME ) ) { \
|
|
if( internal_catch_action & Catch::ResultAction::Debug ) BreakIntoDebugger(); \
|
|
if( internal_catch_action & Catch::ResultAction::Abort ) throw Catch::TestFailureException(); \
|
|
if( !Catch::shouldContinueOnFailure( resultDisposition ) ) throw Catch::TestFailureException(); \
|
|
Catch::isTrue( false && originalExpr ); \
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_ACCEPT_INFO( expr, macroName, resultDisposition ) \
|
|
Catch::AssertionInfo INTERNAL_CATCH_ASSERTIONINFO_NAME( macroName, CATCH_INTERNAL_LINEINFO, expr, resultDisposition );
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_TEST( expr, resultDisposition, macroName ) \
|
|
do { \
|
|
INTERNAL_CATCH_ACCEPT_INFO( #expr, macroName, resultDisposition ); \
|
|
try { \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionDecomposer()->*expr ).endExpression( resultDisposition ), resultDisposition, expr ); \
|
|
} catch( Catch::TestFailureException& ) { \
|
|
throw; \
|
|
} catch( ... ) { \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionResultBuilder( Catch::ResultWas::ThrewException ) << Catch::translateActiveException(), \
|
|
resultDisposition | Catch::ResultDisposition::ContinueOnFailure, expr ); \
|
|
} \
|
|
} while( Catch::isTrue( false ) )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_IF( expr, resultDisposition, macroName ) \
|
|
INTERNAL_CATCH_TEST( expr, resultDisposition, macroName ); \
|
|
if( Catch::getResultCapture().getLastResult()->succeeded() )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_ELSE( expr, resultDisposition, macroName ) \
|
|
INTERNAL_CATCH_TEST( expr, resultDisposition, macroName ); \
|
|
if( !Catch::getResultCapture().getLastResult()->succeeded() )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_NO_THROW( expr, resultDisposition, macroName ) \
|
|
do { \
|
|
INTERNAL_CATCH_ACCEPT_INFO( #expr, macroName, resultDisposition ); \
|
|
try { \
|
|
expr; \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionResultBuilder( Catch::ResultWas::Ok ), resultDisposition, false ); \
|
|
} \
|
|
catch( ... ) { \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionResultBuilder( Catch::ResultWas::ThrewException ) << Catch::translateActiveException(), resultDisposition, false ); \
|
|
} \
|
|
} while( Catch::isTrue( false ) )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_THROWS_IMPL( expr, exceptionType, resultDisposition ) \
|
|
try { \
|
|
if( Catch::getCurrentContext().getConfig()->allowThrows() ) { \
|
|
expr; \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionResultBuilder( Catch::ResultWas::DidntThrowException ), resultDisposition, false ); \
|
|
} \
|
|
} \
|
|
catch( Catch::TestFailureException& ) { \
|
|
throw; \
|
|
} \
|
|
catch( exceptionType ) { \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionResultBuilder( Catch::ResultWas::Ok ), resultDisposition, false ); \
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_THROWS( expr, exceptionType, resultDisposition, macroName ) \
|
|
do { \
|
|
INTERNAL_CATCH_ACCEPT_INFO( #expr, macroName, resultDisposition ); \
|
|
INTERNAL_CATCH_THROWS_IMPL( expr, exceptionType, resultDisposition ) \
|
|
} while( Catch::isTrue( false ) )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_THROWS_AS( expr, exceptionType, resultDisposition, macroName ) \
|
|
do { \
|
|
INTERNAL_CATCH_ACCEPT_INFO( #expr, macroName, resultDisposition ); \
|
|
INTERNAL_CATCH_THROWS_IMPL( expr, exceptionType, resultDisposition ) \
|
|
catch( ... ) { \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionResultBuilder( Catch::ResultWas::ThrewException ) << Catch::translateActiveException() ), \
|
|
resultDisposition | Catch::ResultDisposition::ContinueOnFailure, false ); \
|
|
} \
|
|
} while( Catch::isTrue( false ) )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_INFO( log, macroName ) \
|
|
do { \
|
|
Catch::getResultCapture().acceptMessage( Catch::MessageBuilder( macroName, CATCH_INTERNAL_LINEINFO, Catch::ResultWas::Info ) << log ); \
|
|
} while( Catch::isTrue( false ) )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_MSG( log, messageType, resultDisposition, macroName ) \
|
|
do { \
|
|
INTERNAL_CATCH_ACCEPT_INFO( "", macroName, resultDisposition ); \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionResultBuilder( messageType ) << log, resultDisposition, true ) \
|
|
} while( Catch::isTrue( false ) )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CATCH_SCOPED_INFO( log, macroName ) \
|
|
Catch::ScopedMessageBuilder INTERNAL_CATCH_UNIQUE_NAME( scopedMessage )( macroName, CATCH_INTERNAL_LINEINFO, Catch::ResultWas::Info ); \
|
|
INTERNAL_CATCH_UNIQUE_NAME( scopedMessage ) << log; \
|
|
Catch::getResultCapture().pushScopedMessage( INTERNAL_CATCH_UNIQUE_NAME( scopedMessage ) )
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#define INTERNAL_CHECK_THAT( arg, matcher, resultDisposition, macroName ) \
|
|
do { \
|
|
INTERNAL_CATCH_ACCEPT_INFO( #arg " " #matcher, macroName, resultDisposition ); \
|
|
try { \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::expressionResultBuilderFromMatcher( ::Catch::Matchers::matcher, arg, #matcher ) ), resultDisposition, false ); \
|
|
} catch( Catch::TestFailureException& ) { \
|
|
throw; \
|
|
} catch( ... ) { \
|
|
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionResultBuilder( Catch::ResultWas::ThrewException ) << Catch::translateActiveException() ), \
|
|
resultDisposition | Catch::ResultDisposition::ContinueOnFailure, false ); \
|
|
} \
|
|
} while( Catch::isTrue( false ) )
|
|
|
|
#endif // TWOBLUECUBES_CATCH_CAPTURE_HPP_INCLUDED
|