2010-11-10 00:24:00 +01:00
|
|
|
/*
|
2012-08-08 09:50:38 +02:00
|
|
|
* Created by Phil on 8/8/12
|
|
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
2010-11-10 00:24:00 +01:00
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
*/
|
2012-10-16 09:27:21 +02:00
|
|
|
#ifndef TWOBLUECUBES_CATCH_ASSERTIONRESULT_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_ASSERTIONRESULT_HPP_INCLUDED
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-10-16 09:31:05 +02:00
|
|
|
#include "catch_assertionresult.h"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2012-11-13 10:44:52 +01:00
|
|
|
|
2017-08-01 17:21:06 +02:00
|
|
|
AssertionInfo::AssertionInfo():macroName(""), capturedExpression(""), resultDisposition(ResultDisposition::Normal), secondArg(""){}
|
2017-07-31 12:28:13 +02:00
|
|
|
|
2017-06-21 20:34:58 +02:00
|
|
|
AssertionInfo::AssertionInfo( char const * _macroName,
|
2013-04-23 19:58:56 +02:00
|
|
|
SourceLineInfo const& _lineInfo,
|
2017-06-21 20:34:58 +02:00
|
|
|
char const * _capturedExpression,
|
|
|
|
ResultDisposition::Flags _resultDisposition,
|
|
|
|
char const * _secondArg)
|
2012-11-13 10:44:52 +01:00
|
|
|
: macroName( _macroName ),
|
|
|
|
lineInfo( _lineInfo ),
|
|
|
|
capturedExpression( _capturedExpression ),
|
2017-06-21 20:34:58 +02:00
|
|
|
resultDisposition( _resultDisposition ),
|
|
|
|
secondArg( _secondArg )
|
2013-05-17 20:35:33 +02:00
|
|
|
{}
|
2012-11-13 10:44:52 +01:00
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
AssertionResult::AssertionResult() {}
|
2012-08-08 09:50:38 +02:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data )
|
2012-10-24 22:59:47 +02:00
|
|
|
: m_info( info ),
|
|
|
|
m_resultData( data )
|
|
|
|
{}
|
2012-10-05 19:35:01 +02:00
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
AssertionResult::~AssertionResult() {}
|
2011-01-11 20:48:48 +01:00
|
|
|
|
2012-11-13 10:44:52 +01:00
|
|
|
// Result was a success
|
|
|
|
bool AssertionResult::succeeded() const {
|
|
|
|
return Catch::isOk( m_resultData.resultType );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Result was a success, or failure is suppressed
|
|
|
|
bool AssertionResult::isOk() const {
|
|
|
|
return Catch::isOk( m_resultData.resultType ) || shouldSuppressFailure( m_info.resultDisposition );
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
2011-01-11 20:48:48 +01:00
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
ResultWas::OfType AssertionResult::getResultType() const {
|
2012-10-24 22:59:47 +02:00
|
|
|
return m_resultData.resultType;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
2010-11-11 08:21:57 +01:00
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
bool AssertionResult::hasExpression() const {
|
2017-06-21 20:34:58 +02:00
|
|
|
return m_info.capturedExpression[0] != 0;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
bool AssertionResult::hasMessage() const {
|
2012-10-24 22:59:47 +02:00
|
|
|
return !m_resultData.message.empty();
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
2017-06-21 20:34:58 +02:00
|
|
|
std::string capturedExpressionWithSecondArgument( char const * capturedExpression, char const * secondArg ) {
|
|
|
|
return (secondArg[0] == 0 || secondArg[0] == '"' && secondArg[1] == '"')
|
|
|
|
? capturedExpression
|
|
|
|
: std::string(capturedExpression) + ", " + secondArg;
|
|
|
|
}
|
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
std::string AssertionResult::getExpression() const {
|
2014-05-29 09:00:20 +02:00
|
|
|
if( isFalseTest( m_info.resultDisposition ) )
|
2017-10-13 20:44:20 +02:00
|
|
|
return "!(" + capturedExpressionWithSecondArgument(m_info.capturedExpression, m_info.secondArg) + ")";
|
2013-05-17 20:35:33 +02:00
|
|
|
else
|
2017-06-21 20:34:58 +02:00
|
|
|
return capturedExpressionWithSecondArgument(m_info.capturedExpression, m_info.secondArg);
|
2013-05-17 20:35:33 +02:00
|
|
|
}
|
|
|
|
std::string AssertionResult::getExpressionInMacro() const {
|
2017-06-21 20:34:58 +02:00
|
|
|
if( m_info.macroName[0] == 0 )
|
|
|
|
return capturedExpressionWithSecondArgument(m_info.capturedExpression, m_info.secondArg);
|
2013-05-17 20:35:33 +02:00
|
|
|
else
|
2017-06-21 20:34:58 +02:00
|
|
|
return std::string(m_info.macroName) + "( " + capturedExpressionWithSecondArgument(m_info.capturedExpression, m_info.secondArg) + " )";
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
bool AssertionResult::hasExpandedExpression() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return hasExpression() && getExpandedExpression() != getExpression();
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
std::string AssertionResult::getExpandedExpression() const {
|
2017-01-09 13:23:10 +01:00
|
|
|
return m_resultData.reconstructExpression();
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
std::string AssertionResult::getMessage() const {
|
2012-10-24 22:59:47 +02:00
|
|
|
return m_resultData.message;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
2012-10-24 22:59:47 +02:00
|
|
|
SourceLineInfo AssertionResult::getSourceInfo() const {
|
|
|
|
return m_info.lineInfo;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
std::string AssertionResult::getTestMacroName() const {
|
2012-10-24 22:59:47 +02:00
|
|
|
return m_info.macroName;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
2011-03-01 10:55:17 +01:00
|
|
|
|
2017-01-09 13:23:10 +01:00
|
|
|
void AssertionResult::discardDecomposedExpression() const {
|
|
|
|
m_resultData.decomposedExpression = CATCH_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssertionResult::expandDecomposedExpression() const {
|
|
|
|
m_resultData.reconstructExpression();
|
|
|
|
}
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
} // end namespace Catch
|
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_ASSERTIONRESULT_HPP_INCLUDED
|