2012-05-08 14:29:51 -04:00
/*
2012-08-08 03:58:28 -04:00
* Created by Phil on 8 / 8 / 2012.
2012-05-08 14:29:51 -04:00
* 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-26 03:45:23 -04:00
# ifndef TWOBLUECUBES_CATCH_EXPRESSIONRESULT_BUILDER_HPP_INCLUDED
# define TWOBLUECUBES_CATCH_EXPRESSIONRESULT_BUILDER_HPP_INCLUDED
2012-05-08 14:29:51 -04:00
2012-10-26 03:45:23 -04:00
# include "catch_expressionresult_builder.h"
2012-05-08 14:29:51 -04:00
2012-10-19 03:01:34 -04:00
# include <assert.h>
2012-05-15 02:42:26 -04:00
namespace Catch {
2012-05-08 14:29:51 -04:00
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder : : ExpressionResultBuilder ( ResultWas : : OfType resultType ) {
2012-10-19 03:01:34 -04:00
m_data . resultType = resultType ;
}
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder : : ExpressionResultBuilder ( const ExpressionResultBuilder & other )
2012-10-18 03:39:44 -04:00
: m_data ( other . m_data ) ,
m_exprComponents ( other . m_exprComponents )
{
m_stream < < other . m_stream . str ( ) ;
}
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder & ExpressionResultBuilder : : operator = ( const ExpressionResultBuilder & other ) {
2012-10-18 03:39:44 -04:00
m_data = other . m_data ;
m_exprComponents = other . m_exprComponents ;
m_stream . clear ( ) ;
m_stream < < other . m_stream . str ( ) ;
return * this ;
}
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder & ExpressionResultBuilder : : setResultType ( ResultWas : : OfType result ) {
2012-10-19 03:01:34 -04:00
m_data . resultType = result ;
2012-10-05 13:35:01 -04:00
return * this ;
}
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder & ExpressionResultBuilder : : setResultType ( bool result ) {
2012-10-24 16:59:47 -04:00
m_data . resultType = result ? ResultWas : : Ok : ResultWas : : ExpressionFailed ;
2012-10-05 13:35:01 -04:00
return * this ;
}
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder & ExpressionResultBuilder : : negate ( bool shouldNegate ) {
2012-10-24 16:59:47 -04:00
m_exprComponents . shouldNegate = shouldNegate ;
2012-10-04 03:09:09 -04:00
return * this ;
2012-05-08 14:29:51 -04:00
}
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder & ExpressionResultBuilder : : setLhs ( const std : : string & lhs ) {
2012-10-18 03:39:44 -04:00
m_exprComponents . lhs = lhs ;
2012-10-04 03:09:09 -04:00
return * this ;
2012-05-08 14:29:51 -04:00
}
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder & ExpressionResultBuilder : : setRhs ( const std : : string & rhs ) {
2012-10-18 03:39:44 -04:00
m_exprComponents . rhs = rhs ;
2012-10-04 03:09:09 -04:00
return * this ;
2012-05-08 14:29:51 -04:00
}
2012-10-26 03:45:23 -04:00
ExpressionResultBuilder & ExpressionResultBuilder : : setOp ( const std : : string & op ) {
2012-10-18 03:39:44 -04:00
m_exprComponents . op = op ;
2012-10-04 03:09:09 -04:00
return * this ;
}
2012-10-26 03:45:23 -04:00
AssertionResultData ExpressionResultBuilder : : build ( const AssertionInfo & info ) const
2012-10-05 13:35:01 -04:00
{
2012-10-19 03:01:34 -04:00
assert ( m_data . resultType ! = ResultWas : : Unknown ) ;
2012-10-16 03:33:13 -04:00
AssertionResultData data = m_data ;
2012-10-19 03:01:34 -04:00
2012-10-24 16:59:47 -04:00
// Flip bool results if shouldNegate is set
if ( m_exprComponents . shouldNegate & & data . resultType = = ResultWas : : Ok )
2012-10-19 03:01:34 -04:00
data . resultType = ResultWas : : ExpressionFailed ;
2012-10-24 16:59:47 -04:00
else if ( m_exprComponents . shouldNegate & & data . resultType = = ResultWas : : ExpressionFailed )
2012-10-19 03:01:34 -04:00
data . resultType = ResultWas : : Ok ;
2012-10-18 03:39:44 -04:00
data . message = m_stream . str ( ) ;
2012-10-24 16:59:47 -04:00
data . reconstructedExpression = reconstructExpression ( info ) ;
if ( m_exprComponents . shouldNegate ) {
if ( m_exprComponents . op = = " " )
2012-10-09 06:48:55 -04:00
data . reconstructedExpression = " ! " + data . reconstructedExpression ;
2012-10-24 16:59:47 -04:00
else
2012-10-09 06:48:55 -04:00
data . reconstructedExpression = " !( " + data . reconstructedExpression + " ) " ;
}
2012-10-24 16:59:47 -04:00
return data ;
2012-05-08 14:29:51 -04:00
}
2012-10-26 03:45:23 -04:00
std : : string ExpressionResultBuilder : : reconstructExpression ( const AssertionInfo & info ) const {
2012-10-18 03:39:44 -04:00
if ( m_exprComponents . op = = " " )
2012-10-24 16:59:47 -04:00
return m_exprComponents . lhs . empty ( ) ? info . capturedExpression : m_exprComponents . op + m_exprComponents . lhs ;
2012-10-18 03:39:44 -04:00
else if ( m_exprComponents . op = = " matches " )
return m_exprComponents . lhs + " " + m_exprComponents . rhs ;
else if ( m_exprComponents . op ! = " ! " ) {
if ( m_exprComponents . lhs . size ( ) + m_exprComponents . rhs . size ( ) < 30 )
return m_exprComponents . lhs + " " + m_exprComponents . op + " " + m_exprComponents . rhs ;
else if ( m_exprComponents . lhs . size ( ) < 70 & & m_exprComponents . rhs . size ( ) < 70 )
return " \n \t " + m_exprComponents . lhs + " \n \t " + m_exprComponents . op + " \n \t " + m_exprComponents . rhs ;
2012-10-05 13:35:01 -04:00
else
2012-10-18 03:39:44 -04:00
return " \n " + m_exprComponents . lhs + " \n " + m_exprComponents . op + " \n " + m_exprComponents . rhs + " \n \n " ;
2012-10-05 13:35:01 -04:00
}
else
2012-10-24 16:59:47 -04:00
return " {can't expand - use " + info . macroName + " _FALSE( " + info . capturedExpression . substr ( 1 ) + " ) instead of " + info . macroName + " ( " + info . capturedExpression + " ) for better diagnostics} " ;
2012-10-05 13:35:01 -04:00
}
2012-05-08 14:29:51 -04:00
} // end namespace Catch
2012-10-26 03:45:23 -04:00
# endif // TWOBLUECUBES_CATCH_EXPRESSIONRESULT_BUILDER_HPP_INCLUDED