2012-12-05 09:40:53 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 5/12/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)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_REPORTER_CONSOLE_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_REPORTER_CONSOLE_HPP_INCLUDED
|
|
|
|
|
2013-12-03 19:52:41 +01:00
|
|
|
#include "catch_reporter_bases.hpp"
|
|
|
|
|
2012-12-05 09:40:53 +01:00
|
|
|
#include "../internal/catch_reporter_registrars.hpp"
|
|
|
|
#include "../internal/catch_console_colour.hpp"
|
|
|
|
|
2017-02-27 11:34:15 +01:00
|
|
|
#include <cfloat>
|
|
|
|
#include <cstdio>
|
|
|
|
|
2012-12-05 09:40:53 +01:00
|
|
|
namespace Catch {
|
|
|
|
|
2017-02-27 11:34:15 +01:00
|
|
|
|
2013-01-03 10:04:46 +01:00
|
|
|
struct ConsoleReporter : StreamingReporterBase {
|
2012-12-05 09:40:53 +01:00
|
|
|
ConsoleReporter( ReporterConfig const& _config )
|
2013-01-03 10:04:46 +01:00
|
|
|
: StreamingReporterBase( _config ),
|
2014-07-03 20:06:59 +02:00
|
|
|
m_headerPrinted( false )
|
2012-12-05 09:40:53 +01:00
|
|
|
{}
|
|
|
|
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual ~ConsoleReporter() CATCH_OVERRIDE;
|
2012-12-05 09:40:53 +01:00
|
|
|
static std::string getDescription() {
|
|
|
|
return "Reports test results as plain lines of text";
|
|
|
|
}
|
2013-03-12 20:06:40 +01:00
|
|
|
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual void noMatchingTestCases( std::string const& spec ) CATCH_OVERRIDE {
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << "No test cases matched '" << spec << '\'' << std::endl;
|
2013-03-12 20:06:40 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE {
|
2012-12-05 09:40:53 +01:00
|
|
|
}
|
|
|
|
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual bool assertionEnded( AssertionStats const& _assertionStats ) CATCH_OVERRIDE {
|
2013-01-03 10:04:46 +01:00
|
|
|
AssertionResult const& result = _assertionStats.assertionResult;
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-03-03 15:19:41 +01:00
|
|
|
bool includeResults = m_config->includeSuccessfulResults() || !result.isOk();
|
2013-11-13 09:07:38 +01:00
|
|
|
|
2017-03-03 15:19:41 +01:00
|
|
|
// Drop out if result was successful but we're not printing them.
|
|
|
|
if( !includeResults && result.getResultType() != ResultWas::Warning )
|
|
|
|
return false;
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-12-09 12:20:46 +01:00
|
|
|
lazyPrint();
|
|
|
|
|
2017-03-03 15:19:41 +01:00
|
|
|
AssertionPrinter printer( stream, _assertionStats, includeResults );
|
2013-01-18 18:50:21 +01:00
|
|
|
printer.print();
|
2013-01-13 22:51:44 +01:00
|
|
|
stream << std::endl;
|
2013-06-28 17:25:49 +02:00
|
|
|
return true;
|
2013-01-13 22:51:44 +01:00
|
|
|
}
|
2013-01-26 21:17:52 +01:00
|
|
|
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual void sectionStarting( SectionInfo const& _sectionInfo ) CATCH_OVERRIDE {
|
2013-03-06 20:40:16 +01:00
|
|
|
m_headerPrinted = false;
|
2013-01-26 21:17:52 +01:00
|
|
|
StreamingReporterBase::sectionStarting( _sectionInfo );
|
|
|
|
}
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual void sectionEnded( SectionStats const& _sectionStats ) CATCH_OVERRIDE {
|
2013-01-18 18:50:21 +01:00
|
|
|
if( _sectionStats.missingAssertions ) {
|
|
|
|
lazyPrint();
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colour( Colour::ResultError );
|
2013-08-08 09:05:19 +02:00
|
|
|
if( m_sectionStack.size() > 1 )
|
2013-07-26 20:19:44 +02:00
|
|
|
stream << "\nNo assertions in section";
|
|
|
|
else
|
|
|
|
stream << "\nNo assertions in test case";
|
|
|
|
stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl;
|
2013-01-18 18:50:21 +01:00
|
|
|
}
|
2017-02-17 15:07:56 +01:00
|
|
|
if( m_config->showDurations() == ShowDurations::Always ) {
|
2017-02-27 11:34:15 +01:00
|
|
|
stream << getFormattedDuration(_sectionStats.durationInSeconds) << " s: " << _sectionStats.sectionInfo.name << std::endl;
|
2017-02-17 15:07:56 +01:00
|
|
|
}
|
2013-08-16 19:57:41 +02:00
|
|
|
if( m_headerPrinted ) {
|
|
|
|
m_headerPrinted = false;
|
|
|
|
}
|
2013-01-18 18:50:21 +01:00
|
|
|
StreamingReporterBase::sectionEnded( _sectionStats );
|
|
|
|
}
|
|
|
|
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual void testCaseEnded( TestCaseStats const& _testCaseStats ) CATCH_OVERRIDE {
|
2013-01-18 18:50:21 +01:00
|
|
|
StreamingReporterBase::testCaseEnded( _testCaseStats );
|
2013-03-06 20:40:16 +01:00
|
|
|
m_headerPrinted = false;
|
2013-01-17 13:07:34 +01:00
|
|
|
}
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual void testGroupEnded( TestGroupStats const& _testGroupStats ) CATCH_OVERRIDE {
|
2013-08-08 09:24:37 +02:00
|
|
|
if( currentGroupInfo.used ) {
|
2013-01-18 18:50:21 +01:00
|
|
|
printSummaryDivider();
|
|
|
|
stream << "Summary for group '" << _testGroupStats.groupInfo.name << "':\n";
|
|
|
|
printTotals( _testGroupStats.totals );
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << '\n' << std::endl;
|
2013-01-18 18:50:21 +01:00
|
|
|
}
|
|
|
|
StreamingReporterBase::testGroupEnded( _testGroupStats );
|
|
|
|
}
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual void testRunEnded( TestRunStats const& _testRunStats ) CATCH_OVERRIDE {
|
2014-07-03 09:09:57 +02:00
|
|
|
printTotalsDivider( _testRunStats.totals );
|
2013-01-18 18:50:21 +01:00
|
|
|
printTotals( _testRunStats.totals );
|
2014-07-03 09:09:57 +02:00
|
|
|
stream << std::endl;
|
2013-01-18 18:50:21 +01:00
|
|
|
StreamingReporterBase::testRunEnded( _testRunStats );
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-01-18 18:50:21 +01:00
|
|
|
class AssertionPrinter {
|
2013-07-03 09:25:11 +02:00
|
|
|
void operator= ( AssertionPrinter const& );
|
2013-01-18 18:50:21 +01:00
|
|
|
public:
|
2013-11-13 09:07:38 +01:00
|
|
|
AssertionPrinter( std::ostream& _stream, AssertionStats const& _stats, bool _printInfoMessages )
|
2013-01-18 18:50:21 +01:00
|
|
|
: stream( _stream ),
|
|
|
|
stats( _stats ),
|
|
|
|
result( _stats.assertionResult ),
|
2013-04-05 08:59:28 +02:00
|
|
|
colour( Colour::None ),
|
2013-02-02 20:58:04 +01:00
|
|
|
message( result.getMessage() ),
|
2013-11-13 09:07:38 +01:00
|
|
|
messages( _stats.infoMessages ),
|
|
|
|
printInfoMessages( _printInfoMessages )
|
2013-01-14 20:28:28 +01:00
|
|
|
{
|
2013-01-18 18:50:21 +01:00
|
|
|
switch( result.getResultType() ) {
|
2013-01-14 20:28:28 +01:00
|
|
|
case ResultWas::Ok:
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::Success;
|
2013-01-17 13:07:34 +01:00
|
|
|
passOrFail = "PASSED";
|
2013-02-02 20:58:04 +01:00
|
|
|
//if( result.hasMessage() )
|
|
|
|
if( _stats.infoMessages.size() == 1 )
|
2013-01-14 20:28:28 +01:00
|
|
|
messageLabel = "with message";
|
2013-02-02 20:58:04 +01:00
|
|
|
if( _stats.infoMessages.size() > 1 )
|
|
|
|
messageLabel = "with messages";
|
2013-01-14 20:28:28 +01:00
|
|
|
break;
|
|
|
|
case ResultWas::ExpressionFailed:
|
2013-01-18 18:50:21 +01:00
|
|
|
if( result.isOk() ) {
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::Success;
|
2013-01-17 13:07:34 +01:00
|
|
|
passOrFail = "FAILED - but was ok";
|
2013-01-14 20:28:28 +01:00
|
|
|
}
|
|
|
|
else {
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::Error;
|
2013-01-17 13:07:34 +01:00
|
|
|
passOrFail = "FAILED";
|
2013-01-14 20:28:28 +01:00
|
|
|
}
|
2013-02-02 20:58:04 +01:00
|
|
|
if( _stats.infoMessages.size() == 1 )
|
2013-01-14 20:28:28 +01:00
|
|
|
messageLabel = "with message";
|
2013-02-02 20:58:04 +01:00
|
|
|
if( _stats.infoMessages.size() > 1 )
|
|
|
|
messageLabel = "with messages";
|
2013-01-14 20:28:28 +01:00
|
|
|
break;
|
|
|
|
case ResultWas::ThrewException:
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::Error;
|
2013-01-17 13:07:34 +01:00
|
|
|
passOrFail = "FAILED";
|
2013-01-14 20:28:28 +01:00
|
|
|
messageLabel = "due to unexpected exception with message";
|
|
|
|
break;
|
2014-08-22 09:07:39 +02:00
|
|
|
case ResultWas::FatalErrorCondition:
|
|
|
|
colour = Colour::Error;
|
|
|
|
passOrFail = "FAILED";
|
|
|
|
messageLabel = "due to a fatal error condition";
|
|
|
|
break;
|
2013-01-14 20:28:28 +01:00
|
|
|
case ResultWas::DidntThrowException:
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::Error;
|
2013-01-17 13:07:34 +01:00
|
|
|
passOrFail = "FAILED";
|
2013-01-14 20:28:28 +01:00
|
|
|
messageLabel = "because no exception was thrown where one was expected";
|
|
|
|
break;
|
|
|
|
case ResultWas::Info:
|
|
|
|
messageLabel = "info";
|
|
|
|
break;
|
|
|
|
case ResultWas::Warning:
|
|
|
|
messageLabel = "warning";
|
|
|
|
break;
|
|
|
|
case ResultWas::ExplicitFailure:
|
2013-01-17 13:07:34 +01:00
|
|
|
passOrFail = "FAILED";
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::Error;
|
2013-02-02 20:58:04 +01:00
|
|
|
if( _stats.infoMessages.size() == 1 )
|
|
|
|
messageLabel = "explicitly with message";
|
|
|
|
if( _stats.infoMessages.size() > 1 )
|
|
|
|
messageLabel = "explicitly with messages";
|
2013-01-14 20:28:28 +01:00
|
|
|
break;
|
2013-01-15 09:09:20 +01:00
|
|
|
// These cases are here to prevent compiler warnings
|
|
|
|
case ResultWas::Unknown:
|
2013-01-14 20:28:28 +01:00
|
|
|
case ResultWas::FailureBit:
|
2013-04-08 13:05:32 +02:00
|
|
|
case ResultWas::Exception:
|
2013-01-14 20:28:28 +01:00
|
|
|
passOrFail = "** internal error **";
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::Error;
|
2013-01-14 20:28:28 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-01-18 18:50:21 +01:00
|
|
|
void print() const {
|
2013-03-04 12:19:15 +01:00
|
|
|
printSourceInfo();
|
2013-01-18 18:50:21 +01:00
|
|
|
if( stats.totals.assertions.total() > 0 ) {
|
2013-03-04 12:19:15 +01:00
|
|
|
if( result.isOk() )
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << '\n';
|
2013-01-18 18:50:21 +01:00
|
|
|
printResultType();
|
|
|
|
printOriginalExpression();
|
|
|
|
printReconstructedExpression();
|
|
|
|
}
|
2013-03-04 12:19:15 +01:00
|
|
|
else {
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << '\n';
|
2013-03-04 12:19:15 +01:00
|
|
|
}
|
2013-01-18 18:50:21 +01:00
|
|
|
printMessage();
|
2013-01-14 09:34:50 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-01-18 18:50:21 +01:00
|
|
|
private:
|
|
|
|
void printResultType() const {
|
|
|
|
if( !passOrFail.empty() ) {
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( colour );
|
2013-01-18 18:50:21 +01:00
|
|
|
stream << passOrFail << ":\n";
|
|
|
|
}
|
2013-01-14 09:34:50 +01:00
|
|
|
}
|
2013-01-18 18:50:21 +01:00
|
|
|
void printOriginalExpression() const {
|
|
|
|
if( result.hasExpression() ) {
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( Colour::OriginalExpression );
|
2013-01-18 18:50:21 +01:00
|
|
|
stream << " ";
|
2013-05-17 20:35:33 +02:00
|
|
|
stream << result.getExpressionInMacro();
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << '\n';
|
2013-01-18 18:50:21 +01:00
|
|
|
}
|
2013-01-14 09:34:50 +01:00
|
|
|
}
|
2013-01-18 18:50:21 +01:00
|
|
|
void printReconstructedExpression() const {
|
|
|
|
if( result.hasExpandedExpression() ) {
|
|
|
|
stream << "with expansion:\n";
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( Colour::ReconstructedExpression );
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << Text( result.getExpandedExpression(), TextAttributes().setIndent(2) ) << '\n';
|
2013-01-18 18:50:21 +01:00
|
|
|
}
|
2013-01-14 09:34:50 +01:00
|
|
|
}
|
2013-01-18 18:50:21 +01:00
|
|
|
void printMessage() const {
|
|
|
|
if( !messageLabel.empty() )
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << messageLabel << ':' << '\n';
|
2013-02-02 20:58:04 +01:00
|
|
|
for( std::vector<MessageInfo>::const_iterator it = messages.begin(), itEnd = messages.end();
|
|
|
|
it != itEnd;
|
2013-07-03 20:14:59 +02:00
|
|
|
++it ) {
|
2013-11-13 09:07:38 +01:00
|
|
|
// If this assertion is a warning ignore any INFO messages
|
|
|
|
if( printInfoMessages || it->type != ResultWas::Info )
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << Text( it->message, TextAttributes().setIndent(2) ) << '\n';
|
2013-02-02 20:58:04 +01:00
|
|
|
}
|
2012-12-09 12:20:46 +01:00
|
|
|
}
|
2013-01-18 18:50:21 +01:00
|
|
|
void printSourceInfo() const {
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( Colour::FileName );
|
2013-03-04 12:19:15 +01:00
|
|
|
stream << result.getSourceInfo() << ": ";
|
2012-12-09 12:20:46 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-01-18 18:50:21 +01:00
|
|
|
std::ostream& stream;
|
|
|
|
AssertionStats const& stats;
|
|
|
|
AssertionResult const& result;
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour::Code colour;
|
2013-01-18 18:50:21 +01:00
|
|
|
std::string passOrFail;
|
|
|
|
std::string messageLabel;
|
|
|
|
std::string message;
|
2013-02-02 20:58:04 +01:00
|
|
|
std::vector<MessageInfo> messages;
|
2013-11-13 09:07:38 +01:00
|
|
|
bool printInfoMessages;
|
2013-01-18 18:50:21 +01:00
|
|
|
};
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-01-14 19:51:49 +01:00
|
|
|
void lazyPrint() {
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-08-08 09:24:37 +02:00
|
|
|
if( !currentTestRunInfo.used )
|
2013-01-14 19:51:49 +01:00
|
|
|
lazyPrintRunInfo();
|
2013-08-08 09:24:37 +02:00
|
|
|
if( !currentGroupInfo.used )
|
2013-01-14 19:51:49 +01:00
|
|
|
lazyPrintGroupInfo();
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-03-06 20:40:16 +01:00
|
|
|
if( !m_headerPrinted ) {
|
|
|
|
printTestCaseAndSectionHeader();
|
|
|
|
m_headerPrinted = true;
|
|
|
|
}
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
|
|
|
void lazyPrintRunInfo() {
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << '\n' << getLineOfChars<'~'>() << '\n';
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colour( Colour::SecondaryText );
|
2013-08-08 09:24:37 +02:00
|
|
|
stream << currentTestRunInfo->name
|
2015-06-29 19:05:23 +02:00
|
|
|
<< " is a Catch v" << libraryVersion << " host application.\n"
|
2013-01-14 19:51:49 +01:00
|
|
|
<< "Run with -? for options\n\n";
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2014-09-15 19:39:31 +02:00
|
|
|
if( m_config->rngSeed() != 0 )
|
|
|
|
stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n";
|
|
|
|
|
2013-08-08 09:24:37 +02:00
|
|
|
currentTestRunInfo.used = true;
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
|
|
|
void lazyPrintGroupInfo() {
|
2013-08-08 09:24:37 +02:00
|
|
|
if( !currentGroupInfo->name.empty() && currentGroupInfo->groupsCounts > 1 ) {
|
|
|
|
printClosedHeader( "Group: " + currentGroupInfo->name );
|
|
|
|
currentGroupInfo.used = true;
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
|
|
|
}
|
2013-03-06 20:40:16 +01:00
|
|
|
void printTestCaseAndSectionHeader() {
|
2013-08-08 09:05:19 +02:00
|
|
|
assert( !m_sectionStack.empty() );
|
2013-08-08 09:24:37 +02:00
|
|
|
printOpenHeader( currentTestCaseInfo->name );
|
2013-08-08 09:05:19 +02:00
|
|
|
|
|
|
|
if( m_sectionStack.size() > 1 ) {
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( Colour::Headers );
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-08-15 19:39:55 +02:00
|
|
|
std::vector<SectionInfo>::const_iterator
|
2013-08-08 09:05:19 +02:00
|
|
|
it = m_sectionStack.begin()+1, // Skip first section (test case)
|
|
|
|
itEnd = m_sectionStack.end();
|
|
|
|
for( ; it != itEnd; ++it )
|
2013-08-15 19:39:55 +02:00
|
|
|
printHeaderString( it->name, 2 );
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
2013-08-08 09:05:19 +02:00
|
|
|
|
2017-02-10 12:56:46 +01:00
|
|
|
SourceLineInfo lineInfo = m_sectionStack.back().lineInfo;
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-04-17 01:05:25 +02:00
|
|
|
if( !lineInfo.empty() ){
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << getLineOfChars<'-'>() << '\n';
|
2013-04-17 01:05:25 +02:00
|
|
|
Colour colourGuard( Colour::FileName );
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << lineInfo << '\n';
|
2013-04-17 01:05:25 +02:00
|
|
|
}
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << getLineOfChars<'.'>() << '\n' << std::endl;
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
2013-01-16 10:39:08 +01:00
|
|
|
|
2013-03-06 20:40:16 +01:00
|
|
|
void printClosedHeader( std::string const& _name ) {
|
|
|
|
printOpenHeader( _name );
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << getLineOfChars<'.'>() << '\n';
|
2013-03-06 20:40:16 +01:00
|
|
|
}
|
2013-04-19 20:08:32 +02:00
|
|
|
void printOpenHeader( std::string const& _name ) {
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << getLineOfChars<'-'>() << '\n';
|
2013-04-01 12:25:54 +02:00
|
|
|
{
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( Colour::Headers );
|
2013-04-19 20:08:32 +02:00
|
|
|
printHeaderString( _name );
|
2013-04-01 12:25:54 +02:00
|
|
|
}
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
2013-04-19 20:08:32 +02:00
|
|
|
|
2013-04-05 21:55:57 +02:00
|
|
|
// if string has a : in first line will set indent to follow it on
|
|
|
|
// subsequent lines
|
2013-04-19 20:08:32 +02:00
|
|
|
void printHeaderString( std::string const& _string, std::size_t indent = 0 ) {
|
2013-04-05 21:55:57 +02:00
|
|
|
std::size_t i = _string.find( ": " );
|
|
|
|
if( i != std::string::npos )
|
|
|
|
i+=2;
|
|
|
|
else
|
|
|
|
i = 0;
|
2013-04-20 20:36:40 +02:00
|
|
|
stream << Text( _string, TextAttributes()
|
|
|
|
.setIndent( indent+i)
|
2017-01-29 23:07:15 +01:00
|
|
|
.setInitialIndent( indent ) ) << '\n';
|
2013-04-05 21:55:57 +02:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2014-07-09 20:20:24 +02:00
|
|
|
struct SummaryColumn {
|
|
|
|
|
|
|
|
SummaryColumn( std::string const& _label, Colour::Code _colour )
|
|
|
|
: label( _label ),
|
|
|
|
colour( _colour )
|
|
|
|
{}
|
|
|
|
SummaryColumn addRow( std::size_t count ) {
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << count;
|
|
|
|
std::string row = oss.str();
|
|
|
|
for( std::vector<std::string>::iterator it = rows.begin(); it != rows.end(); ++it ) {
|
|
|
|
while( it->size() < row.size() )
|
2017-01-29 23:07:15 +01:00
|
|
|
*it = ' ' + *it;
|
2014-07-09 20:20:24 +02:00
|
|
|
while( it->size() > row.size() )
|
2017-01-29 23:07:15 +01:00
|
|
|
row = ' ' + row;
|
2014-07-09 20:20:24 +02:00
|
|
|
}
|
|
|
|
rows.push_back( row );
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string label;
|
|
|
|
Colour::Code colour;
|
|
|
|
std::vector<std::string> rows;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-07-03 09:09:57 +02:00
|
|
|
void printTotals( Totals const& totals ) {
|
2013-11-12 20:06:08 +01:00
|
|
|
if( totals.testCases.total() == 0 ) {
|
2014-07-03 09:09:57 +02:00
|
|
|
stream << Colour( Colour::Warning ) << "No tests ran\n";
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
2016-03-14 20:13:34 +01:00
|
|
|
else if( totals.assertions.total() > 0 && totals.testCases.allPassed() ) {
|
2014-07-03 09:09:57 +02:00
|
|
|
stream << Colour( Colour::ResultSuccess ) << "All tests passed";
|
|
|
|
stream << " ("
|
2013-01-14 19:51:49 +01:00
|
|
|
<< pluralise( totals.assertions.passed, "assertion" ) << " in "
|
2017-01-29 23:07:15 +01:00
|
|
|
<< pluralise( totals.testCases.passed, "test case" ) << ')'
|
|
|
|
<< '\n';
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
2014-07-09 20:20:24 +02:00
|
|
|
else {
|
|
|
|
|
|
|
|
std::vector<SummaryColumn> columns;
|
|
|
|
columns.push_back( SummaryColumn( "", Colour::None )
|
|
|
|
.addRow( totals.testCases.total() )
|
|
|
|
.addRow( totals.assertions.total() ) );
|
|
|
|
columns.push_back( SummaryColumn( "passed", Colour::Success )
|
|
|
|
.addRow( totals.testCases.passed )
|
|
|
|
.addRow( totals.assertions.passed ) );
|
|
|
|
columns.push_back( SummaryColumn( "failed", Colour::ResultError )
|
|
|
|
.addRow( totals.testCases.failed )
|
|
|
|
.addRow( totals.assertions.failed ) );
|
|
|
|
columns.push_back( SummaryColumn( "failed as expected", Colour::ResultExpectedFailure )
|
|
|
|
.addRow( totals.testCases.failedButOk )
|
|
|
|
.addRow( totals.assertions.failedButOk ) );
|
|
|
|
|
|
|
|
printSummaryRow( "test cases", columns, 0 );
|
|
|
|
printSummaryRow( "assertions", columns, 1 );
|
|
|
|
}
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
2014-07-09 20:20:24 +02:00
|
|
|
void printSummaryRow( std::string const& label, std::vector<SummaryColumn> const& cols, std::size_t row ) {
|
|
|
|
for( std::vector<SummaryColumn>::const_iterator it = cols.begin(); it != cols.end(); ++it ) {
|
|
|
|
std::string value = it->rows[row];
|
|
|
|
if( it->label.empty() ) {
|
|
|
|
stream << label << ": ";
|
|
|
|
if( value != "0" )
|
|
|
|
stream << value;
|
|
|
|
else
|
|
|
|
stream << Colour( Colour::Warning ) << "- none -";
|
|
|
|
}
|
|
|
|
else if( value != "0" ) {
|
|
|
|
stream << Colour( Colour::LightGrey ) << " | ";
|
|
|
|
stream << Colour( it->colour )
|
2017-01-29 23:07:15 +01:00
|
|
|
<< value << ' ' << it->label;
|
2014-07-09 20:20:24 +02:00
|
|
|
}
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << '\n';
|
2013-01-14 19:51:49 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2014-07-03 09:09:57 +02:00
|
|
|
static std::size_t makeRatio( std::size_t number, std::size_t total ) {
|
|
|
|
std::size_t ratio = total > 0 ? CATCH_CONFIG_CONSOLE_WIDTH * number/ total : 0;
|
|
|
|
return ( ratio == 0 && number > 0 ) ? 1 : ratio;
|
|
|
|
}
|
|
|
|
static std::size_t& findMax( std::size_t& i, std::size_t& j, std::size_t& k ) {
|
|
|
|
if( i > j && i > k )
|
|
|
|
return i;
|
|
|
|
else if( j > k )
|
|
|
|
return j;
|
|
|
|
else
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
|
|
|
|
void printTotalsDivider( Totals const& totals ) {
|
|
|
|
if( totals.testCases.total() > 0 ) {
|
|
|
|
std::size_t failedRatio = makeRatio( totals.testCases.failed, totals.testCases.total() );
|
|
|
|
std::size_t failedButOkRatio = makeRatio( totals.testCases.failedButOk, totals.testCases.total() );
|
|
|
|
std::size_t passedRatio = makeRatio( totals.testCases.passed, totals.testCases.total() );
|
|
|
|
while( failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH-1 )
|
|
|
|
findMax( failedRatio, failedButOkRatio, passedRatio )++;
|
|
|
|
while( failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH-1 )
|
|
|
|
findMax( failedRatio, failedButOkRatio, passedRatio )--;
|
|
|
|
|
|
|
|
stream << Colour( Colour::Error ) << std::string( failedRatio, '=' );
|
|
|
|
stream << Colour( Colour::ResultExpectedFailure ) << std::string( failedButOkRatio, '=' );
|
2014-07-09 19:24:24 +02:00
|
|
|
if( totals.testCases.allPassed() )
|
|
|
|
stream << Colour( Colour::ResultSuccess ) << std::string( passedRatio, '=' );
|
|
|
|
else
|
|
|
|
stream << Colour( Colour::Success ) << std::string( passedRatio, '=' );
|
2014-07-03 09:09:57 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
stream << Colour( Colour::Warning ) << std::string( CATCH_CONFIG_CONSOLE_WIDTH-1, '=' );
|
|
|
|
}
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << '\n';
|
2012-12-13 13:46:47 +01:00
|
|
|
}
|
2013-01-13 22:51:44 +01:00
|
|
|
void printSummaryDivider() {
|
2017-01-29 23:07:15 +01:00
|
|
|
stream << getLineOfChars<'-'>() << '\n';
|
2012-12-11 10:02:31 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-01-13 22:51:44 +01:00
|
|
|
private:
|
2013-03-06 20:40:16 +01:00
|
|
|
bool m_headerPrinted;
|
2012-12-05 09:40:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
INTERNAL_CATCH_REGISTER_REPORTER( "console", ConsoleReporter )
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_CONSOLE_HPP_INCLUDED
|