This commit is contained in:
Phil Nash 2012-12-14 07:50:08 +00:00
parent 86ad6348d4
commit cf5ced59d1
3 changed files with 90 additions and 48 deletions

2
README
View File

@ -1,4 +1,4 @@
CATCH v0.9 build 11 (integration branch) CATCH v0.9 build 12 (integration branch)
--------------------------------------------- ---------------------------------------------
CATCH is an automated test framework for C, C++ and Objective-C. CATCH is an automated test framework for C, C++ and Objective-C.

View File

@ -13,7 +13,7 @@
namespace Catch { namespace Catch {
// These numbers are maintained by a script // These numbers are maintained by a script
Version libraryVersion( 0, 9, 11, "integration" ); Version libraryVersion( 0, 9, 12, "integration" );
} }
#endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED #endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED

View File

@ -1,6 +1,6 @@
/* /*
* CATCH v0.9 build 11 (integration branch) * CATCH v0.9 build 12 (integration branch)
* Generated: 2012-12-11 09:02:46.394854 * Generated: 2012-12-14 07:49:28.360647
* ---------------------------------------------------------- * ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly * This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
@ -593,7 +593,7 @@ inline std::string toString( bool value ) {
inline std::string toString( char value ) { inline std::string toString( char value ) {
return value < ' ' return value < ' '
? toString( (unsigned int)value ) ? toString( static_cast<unsigned int>( value ) )
: Detail::makeString( value ); : Detail::makeString( value );
} }
@ -601,6 +601,10 @@ inline std::string toString( signed char value ) {
return toString( static_cast<char>( value ) ); return toString( static_cast<char>( value ) );
} }
inline std::string toString( unsigned char value ) {
return toString( static_cast<char>( value ) );
}
#ifdef CATCH_CONFIG_CPP11_NULLPTR #ifdef CATCH_CONFIG_CPP11_NULLPTR
inline std::string toString( std::nullptr_t ) { inline std::string toString( std::nullptr_t ) {
return "nullptr"; return "nullptr";
@ -5710,7 +5714,7 @@ namespace Catch {
namespace Catch { namespace Catch {
// These numbers are maintained by a script // These numbers are maintained by a script
Version libraryVersion( 0, 9, 11, "integration" ); Version libraryVersion( 0, 9, 12, "integration" );
} }
// #included from: ../reporters/catch_reporter_basic.hpp // #included from: ../reporters/catch_reporter_basic.hpp
@ -6694,7 +6698,8 @@ namespace Catch {
struct ConsoleReporter : AccumulatingReporter { struct ConsoleReporter : AccumulatingReporter {
ConsoleReporter( ReporterConfig const& _config ) ConsoleReporter( ReporterConfig const& _config )
: AccumulatingReporter( _config ) : AccumulatingReporter( _config ),
m_atLeastOneTestCasePrinted( false )
{} {}
virtual ~ConsoleReporter(); virtual ~ConsoleReporter();
@ -6708,19 +6713,18 @@ namespace Catch {
} }
void lazyPrintRunInfo() { void lazyPrintRunInfo() {
stream << "[Started testing: " << testRunInfo->name << "]" << std::endl; printHeader( "Started testing", testRunInfo->name );
testRunInfo.reset(); testRunInfo.reset();
} }
void lazyPrintGroupInfo() { void lazyPrintGroupInfo() {
if( !unusedGroupInfo->name.empty() ) if( !unusedGroupInfo->name.empty() )
stream << "[Group: '" << unusedGroupInfo->name << "']" << std::endl; printHeader( "Group", unusedGroupInfo->name );
unusedGroupInfo.reset(); unusedGroupInfo.reset();
} }
void lazyPrintTestCaseInfo() { void lazyPrintTestCaseInfo() {
stream << "[Test case: '" << unusedTestCaseInfo->name << "']" << std::endl; printHeader( "Test case", unusedTestCaseInfo->name );
unusedTestCaseInfo.reset(); unusedTestCaseInfo.reset();
} }
void lazyPrintSectionInfo() { void lazyPrintSectionInfo() {
std::vector<ThreadedSectionInfo*> sections; std::vector<ThreadedSectionInfo*> sections;
for( ThreadedSectionInfo* section = unusedSectionInfo.get(); for( ThreadedSectionInfo* section = unusedSectionInfo.get();
@ -6730,11 +6734,36 @@ namespace Catch {
typedef std::vector<ThreadedSectionInfo*>::const_reverse_iterator It; typedef std::vector<ThreadedSectionInfo*>::const_reverse_iterator It;
for( It it = sections.rbegin(), itEnd = sections.rend(); it != itEnd; ++it ) { for( It it = sections.rbegin(), itEnd = sections.rend(); it != itEnd; ++it ) {
stream << "[Section: " << "'" + (*it)->name + "'" << "]" << std::endl; printHeader( "Section", (*it)->name );
(*it)->printed = true; (*it)->printed = true;
} }
unusedSectionInfo.reset(); unusedSectionInfo.reset();
} }
static std::string const& getDashes() {
static const std::string dashes = "----------------------------------------------------------------";
return dashes;
}
static std::string const& getDoubleDashes() {
static const std::string doubleDashes = "================================================================";
return doubleDashes;
}
static std::string const& getSpaces() {
static const std::string spaces = " ";
return spaces;
}
static std::string getSpaces( int spaces ) {
return getSpaces().substr( 0, spaces > 0 ? static_cast<std::size_t>( spaces ) : 0 );
}
void printHeader( std::string const& _type, std::string const& _name ) {
std::size_t labelLen = _type.size() + _name.size() + 8;
std::size_t dashLen = getDashes().size();
stream << "-- " << _type << ": '" << _name << "' "
<< getDashes().substr( 0, labelLen < dashLen ? dashLen - labelLen : 0 )
<< std::endl;
}
void lazyPrint() { void lazyPrint() {
if( testRunInfo ) if( testRunInfo )
lazyPrintRunInfo(); lazyPrintRunInfo();
@ -6758,18 +6787,18 @@ namespace Catch {
lazyPrint(); lazyPrint();
printLineInfo( result.getSourceInfo() ); int inset = printLineInfo( result.getSourceInfo() );
if( result.hasExpression() ) { if( result.hasExpression() ) {
TextColour colour( TextColour::OriginalExpression ); TextColour colour( TextColour::OriginalExpression );
stream << result.getExpression(); stream << result.getExpression() << "\n";
if( result.succeeded() ) { if( result.succeeded() ) {
TextColour successColour( TextColour::Success ); TextColour successColour( TextColour::Success );
stream << " succeeded"; stream << "succeeded";
} }
else { else {
TextColour errorColour( TextColour::Error ); TextColour errorColour( TextColour::Error );
stream << " failed"; stream << "failed";
if( result.isOk() ) { if( result.isOk() ) {
TextColour okAnywayColour( TextColour::Success ); TextColour okAnywayColour( TextColour::Success );
stream << " - but was ok"; stream << " - but was ok";
@ -6843,17 +6872,12 @@ namespace Catch {
} }
if( result.hasExpandedExpression() ) { if( result.hasExpandedExpression() ) {
stream << " for: "; stream << "\nfor: ";
if( result.getExpandedExpression().size() > 40 ) {
stream << "\n";
if( result.getExpandedExpression().size() < 70 )
stream << "\t";
}
TextColour colour( TextColour::ReconstructedExpression ); TextColour colour( TextColour::ReconstructedExpression );
stream << result.getExpandedExpression(); stream << getSpaces( inset-5 ) << result.getExpandedExpression();
} }
stream << std::endl; stream << "\n" << std::endl;
} }
void streamVariableLengthText( std::string const& prefix, std::string const& text ) { void streamVariableLengthText( std::string const& prefix, std::string const& text ) {
@ -6923,7 +6947,8 @@ namespace Catch {
stream << "\nNo assertions in section, '" << _sectionStats->sectionInfo.name << "'\n" << std::endl; stream << "\nNo assertions in section, '" << _sectionStats->sectionInfo.name << "'\n" << std::endl;
} }
if( currentSectionInfo && currentSectionInfo->printed ) { if( currentSectionInfo && currentSectionInfo->printed ) {
stream << "[Summary for section '" << _sectionStats->sectionInfo.name << "': "; printSummarDivider();
stream << "Summary for section '" << _sectionStats->sectionInfo.name << "':\n";
Counts const& assertions = _sectionStats->assertions; Counts const& assertions = _sectionStats->assertions;
if( assertions.failed ) { if( assertions.failed ) {
TextColour colour( TextColour::ResultError ); TextColour colour( TextColour::ResultError );
@ -6934,7 +6959,7 @@ namespace Catch {
stream << ( assertions.passed > 1 ? "All " : "" ) stream << ( assertions.passed > 1 ? "All " : "" )
<< pluralise( assertions.passed, "assertion" ) << " passed" ; << pluralise( assertions.passed, "assertion" ) << " passed" ;
} }
stream << "]\n" << std::endl; stream << "\n" << std::endl;
} }
AccumulatingReporter::sectionEnded( _sectionStats ); AccumulatingReporter::sectionEnded( _sectionStats );
} }
@ -6946,47 +6971,64 @@ namespace Catch {
stream << "\nNo assertions in test case, '" << _testCaseStats->testInfo.name << "'\n" << std::endl; stream << "\nNo assertions in test case, '" << _testCaseStats->testInfo.name << "'\n" << std::endl;
} }
if( !unusedTestCaseInfo ) { if( !unusedTestCaseInfo ) {
stream << "[Summary for test case '" << _testCaseStats->testInfo.name << "': "; m_atLeastOneTestCasePrinted = true;
printSummarDivider();
stream << "Summary for test case '" << _testCaseStats->testInfo.name << "':\n";
printTotals( _testCaseStats->totals ); printTotals( _testCaseStats->totals );
stream << "]\n" << std::endl; stream << "\n" << std::endl;
} }
AccumulatingReporter::testCaseEnded( _testCaseStats ); AccumulatingReporter::testCaseEnded( _testCaseStats );
} }
virtual void testGroupEnded( Ptr<TestGroupStats const> const& _testGroupStats ) { virtual void testGroupEnded( Ptr<TestGroupStats const> const& _testGroupStats ) {
if( !unusedGroupInfo ) { if( !unusedGroupInfo ) {
stream << "[Summary for group '" << _testGroupStats->groupInfo.name << "': "; printSummarDivider();
stream << "Summary for group '" << _testGroupStats->groupInfo.name << "':\n";
printTotals( _testGroupStats->totals ); printTotals( _testGroupStats->totals );
stream << "]\n" << std::endl; stream << "\n" << std::endl;
} }
AccumulatingReporter::testGroupEnded( _testGroupStats ); AccumulatingReporter::testGroupEnded( _testGroupStats );
} }
virtual void testRunEnded( Ptr<TestRunStats const> const& _testRunStats ) { virtual void testRunEnded( Ptr<TestRunStats const> const& _testRunStats ) {
if( !unusedTestCaseInfo ) { if( m_atLeastOneTestCasePrinted )
stream << "[Summary for '" << _testRunStats->runInfo.name << "': "; printTotalsDivider();
printTotals( _testRunStats->totals ); stream << "Summary for all tests in '" << _testRunStats->runInfo.name << "':\n";
stream << "]\n" << std::endl; printTotals( _testRunStats->totals );
} stream << "\n" << std::endl;
AccumulatingReporter::testRunEnded( _testRunStats ); AccumulatingReporter::testRunEnded( _testRunStats );
} }
void printLineInfo( SourceLineInfo const& lineInfo ) { private:
if( !lineInfo.empty() ) { void printTotalsDivider() {
if( m_lastPrintedLine.empty() || stream << "================================================================\n";
m_lastPrintedLine.file != lineInfo.file || }
abs( static_cast<int>( m_lastPrintedLine.line ) - static_cast<int>( lineInfo.line ) ) > 20 ) { void printSummarDivider() {
TextColour colour( TextColour::FileName ); stream << "----------------------------------------------------------------\n";
stream << lineInfo << "\n"; }
m_lastPrintedLine = lineInfo; static int countDigits( std::size_t number ) {
} int digits = 1;
else if( lineInfo.line != m_lastPrintedLine.line ) { for( ; number != 0; digits++, number /= 10 );
TextColour colour( TextColour::FileName ); return digits;
stream << "line " << lineInfo.line << ":\n"; }
}
// Returns number of characters printed
int printLineInfo( SourceLineInfo const& lineInfo ) {
if( lineInfo.empty() )
return 0;
if( m_lastPrintedLine.empty() ||
m_lastPrintedLine.file != lineInfo.file ||
abs( static_cast<int>( m_lastPrintedLine.line ) - static_cast<int>( lineInfo.line ) ) > 20 ) {
TextColour colour( TextColour::FileName );
stream << lineInfo << "\n";
} }
TextColour colour( TextColour::FileName );
stream << "[" << lineInfo.line << "] ";
m_lastPrintedLine = lineInfo;
return 3 + countDigits( lineInfo.line );
} }
void resetLastPrintedLine() { void resetLastPrintedLine() {
m_lastPrintedLine = SourceLineInfo(); m_lastPrintedLine = SourceLineInfo();
} }
bool m_atLeastOneTestCasePrinted;
SourceLineInfo m_lastPrintedLine; SourceLineInfo m_lastPrintedLine;
}; };