2010-11-09 23:24:00 +00:00
|
|
|
/*
|
|
|
|
|
* 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
|
|
|
|
|
|
2020-03-30 10:34:21 +02:00
|
|
|
#include <catch2/internal/catch_assertionhandler.hpp>
|
|
|
|
|
#include <catch2/interfaces/catch_interfaces_capture.hpp>
|
|
|
|
|
#include <catch2/catch_stringref.hpp>
|
2013-04-22 08:19:17 +01:00
|
|
|
|
2020-02-22 15:03:18 +01:00
|
|
|
// We need this suppression to leak, because it took until GCC 9
|
|
|
|
|
// for the front end to handle local suppression via _Pragma properly
|
|
|
|
|
#if defined(__GNUC__) && !defined(__clang__) && !defined(__ICC) && __GNUC__ < 9
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wparentheses"
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-08-27 17:03:32 +02:00
|
|
|
#if !defined(CATCH_CONFIG_DISABLE)
|
|
|
|
|
|
2017-08-26 15:14:27 +02:00
|
|
|
#if !defined(CATCH_CONFIG_DISABLE_STRINGIFICATION)
|
|
|
|
|
#define CATCH_INTERNAL_STRINGIFY(...) #__VA_ARGS__
|
|
|
|
|
#else
|
|
|
|
|
#define CATCH_INTERNAL_STRINGIFY(...) "Disabled by CATCH_CONFIG_DISABLE_STRINGIFICATION"
|
|
|
|
|
#endif
|
2012-10-29 19:55:13 +00:00
|
|
|
|
2018-09-03 17:52:48 +02:00
|
|
|
#if defined(CATCH_CONFIG_FAST_COMPILE) || defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
|
2017-03-17 13:21:40 +01:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Another way to speed-up compilation is to omit local try-catch for REQUIRE*
|
|
|
|
|
// macros.
|
2017-11-23 16:52:46 +00:00
|
|
|
#define INTERNAL_CATCH_TRY
|
|
|
|
|
#define INTERNAL_CATCH_CATCH( capturer )
|
2017-08-07 00:09:54 +01:00
|
|
|
|
|
|
|
|
#else // CATCH_CONFIG_FAST_COMPILE
|
|
|
|
|
|
2017-11-23 16:52:46 +00:00
|
|
|
#define INTERNAL_CATCH_TRY try
|
2017-11-24 19:15:46 +00:00
|
|
|
#define INTERNAL_CATCH_CATCH( handler ) catch(...) { handler.handleUnexpectedInflightException(); }
|
2017-08-07 00:09:54 +01:00
|
|
|
|
|
|
|
|
#endif
|
2010-12-27 20:49:19 +00:00
|
|
|
|
2017-11-23 19:14:26 +00:00
|
|
|
#define INTERNAL_CATCH_REACT( handler ) handler.complete();
|
|
|
|
|
|
2012-10-24 21:59:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-04-26 16:10:18 +01:00
|
|
|
#define INTERNAL_CATCH_TEST( macroName, resultDisposition, ... ) \
|
2012-10-29 19:55:13 +00:00
|
|
|
do { \
|
2020-03-18 20:59:25 +01:00
|
|
|
/* The expression should not be evaluated, but warnings should hopefully be checked */ \
|
|
|
|
|
CATCH_INTERNAL_IGNORE_BUT_WARN(__VA_ARGS__); \
|
2018-07-23 13:55:14 +02:00
|
|
|
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition ); \
|
2017-11-23 16:52:46 +00:00
|
|
|
INTERNAL_CATCH_TRY { \
|
2019-10-27 21:07:21 +01:00
|
|
|
CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
|
2016-02-29 08:01:06 +00:00
|
|
|
CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleExpr( Catch::Decomposer() <= __VA_ARGS__ ); \
|
2019-10-27 21:07:21 +01:00
|
|
|
CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
|
2017-08-09 11:36:33 +01:00
|
|
|
} INTERNAL_CATCH_CATCH( catchAssertionHandler ) \
|
|
|
|
|
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
|
2020-03-18 20:59:25 +01:00
|
|
|
} while( false )
|
2010-11-09 23:24:00 +00:00
|
|
|
|
2012-02-10 08:30:13 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-05-03 19:10:27 +02:00
|
|
|
#define INTERNAL_CATCH_IF( macroName, resultDisposition, ... ) \
|
|
|
|
|
INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \
|
2017-06-26 14:30:23 -05:00
|
|
|
if( Catch::getResultCapture().lastAssertionPassed() )
|
2012-02-10 08:30:13 +00:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-05-03 19:10:27 +02:00
|
|
|
#define INTERNAL_CATCH_ELSE( macroName, resultDisposition, ... ) \
|
|
|
|
|
INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \
|
2017-06-26 14:30:23 -05:00
|
|
|
if( !Catch::getResultCapture().lastAssertionPassed() )
|
2012-02-10 08:30:13 +00:00
|
|
|
|
2011-03-14 08:45:55 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-05-03 19:10:27 +02:00
|
|
|
#define INTERNAL_CATCH_NO_THROW( macroName, resultDisposition, ... ) \
|
2012-10-29 19:55:13 +00:00
|
|
|
do { \
|
2018-07-23 13:55:14 +02:00
|
|
|
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition ); \
|
2012-10-29 19:55:13 +00:00
|
|
|
try { \
|
2017-05-03 19:10:27 +02:00
|
|
|
static_cast<void>(__VA_ARGS__); \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleExceptionNotThrownAsExpected(); \
|
2012-10-29 19:55:13 +00:00
|
|
|
} \
|
|
|
|
|
catch( ... ) { \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleUnexpectedInflightException(); \
|
2012-10-29 19:55:13 +00:00
|
|
|
} \
|
2017-08-09 11:36:33 +01:00
|
|
|
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
|
2017-11-21 21:39:40 +01:00
|
|
|
} while( false )
|
2011-03-14 08:45:55 +00:00
|
|
|
|
2011-02-03 20:00:46 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-06-26 20:48:41 +02:00
|
|
|
#define INTERNAL_CATCH_THROWS( macroName, resultDisposition, ... ) \
|
2012-10-29 19:55:13 +00:00
|
|
|
do { \
|
2018-07-23 13:55:14 +02:00
|
|
|
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition); \
|
2017-08-09 00:52:20 +01:00
|
|
|
if( catchAssertionHandler.allowThrows() ) \
|
2014-06-05 18:11:31 +01:00
|
|
|
try { \
|
2017-05-03 19:10:27 +02:00
|
|
|
static_cast<void>(__VA_ARGS__); \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
|
2014-06-05 18:11:31 +01:00
|
|
|
} \
|
|
|
|
|
catch( ... ) { \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleExceptionThrownAsExpected(); \
|
2014-06-05 18:11:31 +01:00
|
|
|
} \
|
|
|
|
|
else \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleThrowingCallSkipped(); \
|
2017-08-09 11:36:33 +01:00
|
|
|
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
|
2017-11-21 21:39:40 +01:00
|
|
|
} while( false )
|
2012-10-29 19:55:13 +00:00
|
|
|
|
2011-02-03 20:00:46 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-03-21 13:22:39 +00:00
|
|
|
#define INTERNAL_CATCH_THROWS_AS( macroName, exceptionType, resultDisposition, expr ) \
|
2012-10-29 19:55:13 +00:00
|
|
|
do { \
|
2018-07-23 13:55:14 +02:00
|
|
|
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(expr) ", " CATCH_INTERNAL_STRINGIFY(exceptionType), resultDisposition ); \
|
2017-08-08 19:43:07 +01:00
|
|
|
if( catchAssertionHandler.allowThrows() ) \
|
2014-06-05 18:11:31 +01:00
|
|
|
try { \
|
2017-01-31 18:02:11 +01:00
|
|
|
static_cast<void>(expr); \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
|
2014-06-05 18:11:31 +01:00
|
|
|
} \
|
2017-07-19 21:30:00 +02:00
|
|
|
catch( exceptionType const& ) { \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleExceptionThrownAsExpected(); \
|
2014-06-05 18:11:31 +01:00
|
|
|
} \
|
|
|
|
|
catch( ... ) { \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleUnexpectedInflightException(); \
|
2014-06-05 18:11:31 +01:00
|
|
|
} \
|
|
|
|
|
else \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleThrowingCallSkipped(); \
|
2017-08-09 11:36:33 +01:00
|
|
|
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
|
2017-11-21 21:39:40 +01:00
|
|
|
} while( false )
|
2010-11-09 23:24:00 +00:00
|
|
|
|
2013-02-02 19:58:04 +00:00
|
|
|
|
2019-02-01 09:11:30 -06:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-08-09 12:10:14 +01:00
|
|
|
// Although this is matcher-based, it can be used with just a string
|
2017-06-26 20:48:41 +02:00
|
|
|
#define INTERNAL_CATCH_THROWS_STR_MATCHES( macroName, resultDisposition, matcher, ... ) \
|
|
|
|
|
do { \
|
2018-07-23 13:55:14 +02:00
|
|
|
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__) ", " CATCH_INTERNAL_STRINGIFY(matcher), resultDisposition ); \
|
2017-08-09 00:44:30 +01:00
|
|
|
if( catchAssertionHandler.allowThrows() ) \
|
2017-06-26 20:48:41 +02:00
|
|
|
try { \
|
|
|
|
|
static_cast<void>(__VA_ARGS__); \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
|
2017-06-26 20:48:41 +02:00
|
|
|
} \
|
|
|
|
|
catch( ... ) { \
|
2018-07-23 13:55:14 +02:00
|
|
|
Catch::handleExceptionMatchExpr( catchAssertionHandler, matcher, #matcher##_catch_sr ); \
|
2017-06-26 20:48:41 +02:00
|
|
|
} \
|
|
|
|
|
else \
|
2017-11-24 19:15:46 +00:00
|
|
|
catchAssertionHandler.handleThrowingCallSkipped(); \
|
2017-08-09 11:36:33 +01:00
|
|
|
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
|
2017-11-21 21:39:40 +01:00
|
|
|
} while( false )
|
2017-06-26 20:48:41 +02:00
|
|
|
|
2017-08-27 17:03:32 +02:00
|
|
|
#endif // CATCH_CONFIG_DISABLE
|
2017-06-26 20:48:41 +02:00
|
|
|
|
2010-11-09 23:24:00 +00:00
|
|
|
#endif // TWOBLUECUBES_CATCH_CAPTURE_HPP_INCLUDED
|