2010-11-09 23:24:00 +00:00
|
|
|
/*
|
2012-08-08 08:50:38 +01:00
|
|
|
* Created by Phil on 8/8/12
|
|
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
2010-11-09 23:24:00 +00: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 08:31:05 +01:00
|
|
|
#include "catch_assertionresult.h"
|
2010-11-09 23:24:00 +00:00
|
|
|
|
2012-05-15 07:42:26 +01:00
|
|
|
namespace Catch {
|
2017-08-29 14:02:14 +02:00
|
|
|
AssertionResultData::AssertionResultData(ResultWas::OfType _resultType, LazyExpression const & _lazyExpression):
|
2017-09-07 16:51:33 +02:00
|
|
|
lazyExpression(_lazyExpression),
|
|
|
|
resultType(_resultType) {}
|
2012-05-15 07:42:26 +01:00
|
|
|
|
2017-08-08 17:53:01 +01:00
|
|
|
std::string AssertionResultData::reconstructExpression() const {
|
|
|
|
|
|
|
|
if( reconstructedExpression.empty() ) {
|
|
|
|
if( lazyExpression ) {
|
2017-11-07 18:01:10 +00:00
|
|
|
ReusableStringStream rss;
|
|
|
|
rss << lazyExpression;
|
|
|
|
reconstructedExpression = rss.str();
|
2017-07-19 10:13:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return reconstructedExpression;
|
|
|
|
}
|
|
|
|
|
2013-04-23 18:58:56 +01:00
|
|
|
AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data )
|
2012-10-24 21:59:47 +01:00
|
|
|
: m_info( info ),
|
|
|
|
m_resultData( data )
|
|
|
|
{}
|
2012-10-05 18:35:01 +01:00
|
|
|
|
2012-11-13 09:44:52 +00: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 08:50:38 +01:00
|
|
|
}
|
2011-01-11 19:48:48 +00:00
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
ResultWas::OfType AssertionResult::getResultType() const {
|
2012-10-24 21:59:47 +01:00
|
|
|
return m_resultData.resultType;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
2010-11-11 07:21:57 +00:00
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
bool AssertionResult::hasExpression() const {
|
2019-09-08 12:17:44 +02:00
|
|
|
return !m_info.capturedExpression.empty();
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
bool AssertionResult::hasMessage() const {
|
2012-10-24 21:59:47 +01:00
|
|
|
return !m_resultData.message.empty();
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::string AssertionResult::getExpression() const {
|
2019-09-08 21:01:33 +02:00
|
|
|
// Possibly overallocating by 3 characters should be basically free
|
|
|
|
std::string expr; expr.reserve(m_info.capturedExpression.size() + 3);
|
|
|
|
if (isFalseTest(m_info.resultDisposition)) {
|
|
|
|
expr += "!(";
|
|
|
|
}
|
|
|
|
expr += m_info.capturedExpression;
|
|
|
|
if (isFalseTest(m_info.resultDisposition)) {
|
|
|
|
expr += ')';
|
|
|
|
}
|
|
|
|
return expr;
|
2013-05-17 19:35:33 +01:00
|
|
|
}
|
2017-06-22 18:13:05 +02:00
|
|
|
|
2013-05-17 19:35:33 +01:00
|
|
|
std::string AssertionResult::getExpressionInMacro() const {
|
2017-08-14 08:54:57 +01:00
|
|
|
std::string expr;
|
2019-09-08 17:44:56 +02:00
|
|
|
if( m_info.macroName.empty() )
|
2019-09-08 14:49:40 +02:00
|
|
|
expr = static_cast<std::string>(m_info.capturedExpression);
|
2017-08-14 08:54:57 +01:00
|
|
|
else {
|
|
|
|
expr.reserve( m_info.macroName.size() + m_info.capturedExpression.size() + 4 );
|
2018-02-28 16:02:25 +01:00
|
|
|
expr += m_info.macroName;
|
2017-08-14 08:54:57 +01:00
|
|
|
expr += "( ";
|
2018-02-28 16:02:25 +01:00
|
|
|
expr += m_info.capturedExpression;
|
2017-08-14 08:54:57 +01:00
|
|
|
expr += " )";
|
|
|
|
}
|
|
|
|
return expr;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
bool AssertionResult::hasExpandedExpression() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return hasExpression() && getExpandedExpression() != getExpression();
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::string AssertionResult::getExpandedExpression() const {
|
2017-08-08 17:53:01 +01:00
|
|
|
std::string expr = m_resultData.reconstructExpression();
|
|
|
|
return expr.empty()
|
|
|
|
? getExpression()
|
|
|
|
: expr;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::string AssertionResult::getMessage() const {
|
2012-10-24 21:59:47 +01:00
|
|
|
return m_resultData.message;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
2012-10-24 21:59:47 +01:00
|
|
|
SourceLineInfo AssertionResult::getSourceInfo() const {
|
|
|
|
return m_info.lineInfo;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
2017-11-13 12:49:13 +01:00
|
|
|
StringRef AssertionResult::getTestMacroName() const {
|
2017-08-14 08:54:57 +01:00
|
|
|
return m_info.macroName;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
2011-03-01 09:55:17 +00:00
|
|
|
|
2010-11-09 23:24:00 +00:00
|
|
|
} // end namespace Catch
|