2017-07-19 10:13:47 +02:00
|
|
|
/*
|
|
|
|
* Created by Martin on 19/07/2017.
|
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "catch_interfaces_reporter.h"
|
2018-04-07 11:42:24 +02:00
|
|
|
#include "../reporters/catch_reporter_listening.h"
|
2017-07-19 10:13:47 +02:00
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig )
|
|
|
|
: m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {}
|
|
|
|
|
|
|
|
ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream )
|
|
|
|
: m_stream( &_stream ), m_fullConfig( _fullConfig ) {}
|
|
|
|
|
|
|
|
std::ostream& ReporterConfig::stream() const { return *m_stream; }
|
|
|
|
IConfigPtr ReporterConfig::fullConfig() const { return m_fullConfig; }
|
|
|
|
|
|
|
|
|
|
|
|
TestRunInfo::TestRunInfo( std::string const& _name ) : name( _name ) {}
|
|
|
|
|
|
|
|
GroupInfo::GroupInfo( std::string const& _name,
|
|
|
|
std::size_t _groupIndex,
|
|
|
|
std::size_t _groupsCount )
|
|
|
|
: name( _name ),
|
|
|
|
groupIndex( _groupIndex ),
|
|
|
|
groupsCounts( _groupsCount )
|
|
|
|
{}
|
|
|
|
|
|
|
|
AssertionStats::AssertionStats( AssertionResult const& _assertionResult,
|
|
|
|
std::vector<MessageInfo> const& _infoMessages,
|
|
|
|
Totals const& _totals )
|
|
|
|
: assertionResult( _assertionResult ),
|
|
|
|
infoMessages( _infoMessages ),
|
|
|
|
totals( _totals )
|
|
|
|
{
|
2017-08-08 18:53:01 +02:00
|
|
|
assertionResult.m_resultData.lazyExpression.m_transientExpression = _assertionResult.m_resultData.lazyExpression.m_transientExpression;
|
|
|
|
|
2017-07-19 10:13:47 +02:00
|
|
|
if( assertionResult.hasMessage() ) {
|
|
|
|
// Copy message into messages list.
|
|
|
|
// !TBD This should have been done earlier, somewhere
|
2017-08-14 09:54:57 +02:00
|
|
|
MessageBuilder builder( assertionResult.getTestMacroName(), assertionResult.getSourceInfo(), assertionResult.getResultType() );
|
2017-07-19 10:13:47 +02:00
|
|
|
builder << assertionResult.getMessage();
|
|
|
|
builder.m_info.message = builder.m_stream.str();
|
|
|
|
|
|
|
|
infoMessages.push_back( builder.m_info );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
AssertionStats::~AssertionStats() = default;
|
|
|
|
|
2017-07-19 10:13:47 +02:00
|
|
|
SectionStats::SectionStats( SectionInfo const& _sectionInfo,
|
|
|
|
Counts const& _assertions,
|
|
|
|
double _durationInSeconds,
|
|
|
|
bool _missingAssertions )
|
|
|
|
: sectionInfo( _sectionInfo ),
|
|
|
|
assertions( _assertions ),
|
|
|
|
durationInSeconds( _durationInSeconds ),
|
|
|
|
missingAssertions( _missingAssertions )
|
|
|
|
{}
|
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
SectionStats::~SectionStats() = default;
|
|
|
|
|
2017-07-19 10:13:47 +02:00
|
|
|
|
|
|
|
TestCaseStats::TestCaseStats( TestCaseInfo const& _testInfo,
|
|
|
|
Totals const& _totals,
|
|
|
|
std::string const& _stdOut,
|
|
|
|
std::string const& _stdErr,
|
|
|
|
bool _aborting )
|
|
|
|
: testInfo( _testInfo ),
|
|
|
|
totals( _totals ),
|
|
|
|
stdOut( _stdOut ),
|
|
|
|
stdErr( _stdErr ),
|
|
|
|
aborting( _aborting )
|
|
|
|
{}
|
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
TestCaseStats::~TestCaseStats() = default;
|
|
|
|
|
2017-07-19 10:13:47 +02:00
|
|
|
|
|
|
|
TestGroupStats::TestGroupStats( GroupInfo const& _groupInfo,
|
|
|
|
Totals const& _totals,
|
|
|
|
bool _aborting )
|
|
|
|
: groupInfo( _groupInfo ),
|
|
|
|
totals( _totals ),
|
|
|
|
aborting( _aborting )
|
|
|
|
{}
|
|
|
|
|
|
|
|
TestGroupStats::TestGroupStats( GroupInfo const& _groupInfo )
|
|
|
|
: groupInfo( _groupInfo ),
|
|
|
|
aborting( false )
|
|
|
|
{}
|
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
TestGroupStats::~TestGroupStats() = default;
|
|
|
|
|
2017-07-19 10:13:47 +02:00
|
|
|
TestRunStats::TestRunStats( TestRunInfo const& _runInfo,
|
|
|
|
Totals const& _totals,
|
|
|
|
bool _aborting )
|
|
|
|
: runInfo( _runInfo ),
|
|
|
|
totals( _totals ),
|
|
|
|
aborting( _aborting )
|
|
|
|
{}
|
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
TestRunStats::~TestRunStats() = default;
|
|
|
|
|
2017-09-18 18:13:17 +02:00
|
|
|
void IStreamingReporter::fatalErrorEncountered( StringRef ) {}
|
2017-07-19 10:13:47 +02:00
|
|
|
bool IStreamingReporter::isMulti() const { return false; }
|
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
IReporterFactory::~IReporterFactory() = default;
|
|
|
|
IReporterRegistry::~IReporterRegistry() = default;
|
|
|
|
|
2017-07-19 10:13:47 +02:00
|
|
|
} // end namespace Catch
|