catch2/include/internal/catch_assertionresult_build...

103 lines
3.7 KiB
C++
Raw Normal View History

/*
2012-08-08 09:58:28 +02:00
* Created by Phil on 8/8/2012.
* Copyright 2012 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)
*/
2012-10-16 09:27:21 +02:00
#ifndef TWOBLUECUBES_CATCH_ASSERTIONRESULT_BUILDER_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_ASSERTIONRESULT_BUILDER_HPP_INCLUDED
#include "catch_assertionresult_builder.h"
2012-05-15 08:42:26 +02:00
namespace Catch {
2012-10-16 09:27:21 +02:00
AssertionResultBuilder::AssertionResultBuilder() {}
2012-10-04 09:09:09 +02:00
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setResultType( ResultWas::OfType result ) {
2012-10-09 12:59:11 +02:00
// Flip bool results if isFalse is set
if( m_isFalse && result == ResultWas::Ok )
m_data.resultType = ResultWas::ExpressionFailed;
2012-10-09 12:59:11 +02:00
else if( m_isFalse && result == ResultWas::ExpressionFailed )
m_data.resultType = ResultWas::Ok;
else
m_data.resultType = result;
return *this;
}
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setCapturedExpression( const std::string& capturedExpression ) {
m_data.capturedExpression = capturedExpression;
return *this;
}
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setIsFalse( bool isFalse ) {
2012-10-09 12:59:11 +02:00
m_isFalse = isFalse;
2012-10-04 09:09:09 +02:00
return *this;
}
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setMessage( const std::string& message ) {
m_data.message = message;
2012-10-04 09:09:09 +02:00
return *this;
}
2012-08-08 09:58:28 +02:00
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setLineInfo( const SourceLineInfo& lineInfo ) {
m_data.lineInfo = lineInfo;
return *this;
}
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setMacroName( const std::string& macroName ) {
m_data.macroName = macroName;
2012-10-04 09:09:09 +02:00
return *this;
}
2012-08-08 09:58:28 +02:00
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setLhs( const std::string& lhs ) {
m_lhs = lhs;
2012-10-04 09:09:09 +02:00
return *this;
}
2012-08-08 09:58:28 +02:00
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setRhs( const std::string& rhs ) {
m_rhs = rhs;
2012-10-04 09:09:09 +02:00
return *this;
}
2012-10-16 09:27:21 +02:00
AssertionResultBuilder& AssertionResultBuilder::setOp( const std::string& op ) {
m_op = op;
2012-10-04 09:09:09 +02:00
return *this;
}
2012-10-16 09:27:21 +02:00
AssertionResult AssertionResultBuilder::build() const
{
ResultData data = m_data;
data.reconstructedExpression = reconstructExpression();
2012-10-09 12:59:11 +02:00
if( m_isFalse ) {
if( m_op == "" ) {
data.capturedExpression = "!" + data.capturedExpression;
data.reconstructedExpression = "!" + data.reconstructedExpression;
}
else {
data.capturedExpression = "!(" + data.capturedExpression + ")";
data.reconstructedExpression = "!(" + data.reconstructedExpression + ")";
}
}
2012-10-16 09:27:21 +02:00
return AssertionResult( data );
}
2012-10-16 09:27:21 +02:00
std::string AssertionResultBuilder::reconstructExpression() const {
if( m_op == "" )
return m_lhs.empty() ? m_data.capturedExpression : m_op + m_lhs;
else if( m_op == "matches" )
return m_lhs + " " + m_rhs;
else if( m_op != "!" ) {
if( m_lhs.size() + m_rhs.size() < 30 )
return m_lhs + " " + m_op + " " + m_rhs;
else if( m_lhs.size() < 70 && m_rhs.size() < 70 )
return "\n\t" + m_lhs + "\n\t" + m_op + "\n\t" + m_rhs;
else
return "\n" + m_lhs + "\n" + m_op + "\n" + m_rhs + "\n\n";
}
else
return "{can't expand - use " + m_data.macroName + "_FALSE( " + m_data.capturedExpression.substr(1) + " ) instead of " + m_data.macroName + "( " + m_data.capturedExpression + " ) for better diagnostics}";
}
} // end namespace Catch
2012-10-16 09:27:21 +02:00
#endif // TWOBLUECUBES_CATCH_ASSERTIONRESULT_BUILDER_HPP_INCLUDED