2015-08-05 20:02:17 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 5/08/2015.
|
|
|
|
* Copyright 2015 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_MULTI_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_REPORTER_MULTI_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "../internal/catch_interfaces_reporter.h"
|
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
class MultipleReporters : public SharedImpl<IStreamingReporter> {
|
|
|
|
typedef std::vector<Ptr<IStreamingReporter> > Reporters;
|
|
|
|
Reporters m_reporters;
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
public:
|
|
|
|
void add( Ptr<IStreamingReporter> const& reporter ) {
|
|
|
|
m_reporters.push_back( reporter );
|
|
|
|
}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
public: // IStreamingReporter
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
virtual ReporterPreferences getPreferences() const CATCH_OVERRIDE {
|
|
|
|
return m_reporters[0]->getPreferences();
|
|
|
|
}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
virtual void noMatchingTestCases( std::string const& spec ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->noMatchingTestCases( spec );
|
|
|
|
}
|
|
|
|
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
virtual void testRunStarting( TestRunInfo const& testRunInfo ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->testRunStarting( testRunInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void testGroupStarting( GroupInfo const& groupInfo ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->testGroupStarting( groupInfo );
|
|
|
|
}
|
|
|
|
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
virtual void testCaseStarting( TestCaseInfo const& testInfo ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->testCaseStarting( testInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void sectionStarting( SectionInfo const& sectionInfo ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->sectionStarting( sectionInfo );
|
|
|
|
}
|
|
|
|
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
virtual void assertionStarting( AssertionInfo const& assertionInfo ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->assertionStarting( assertionInfo );
|
|
|
|
}
|
|
|
|
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
// The return value indicates if the messages buffer should be cleared:
|
|
|
|
virtual bool assertionEnded( AssertionStats const& assertionStats ) CATCH_OVERRIDE {
|
|
|
|
bool clearBuffer = false;
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
clearBuffer |= (*it)->assertionEnded( assertionStats );
|
|
|
|
return clearBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void sectionEnded( SectionStats const& sectionStats ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->sectionEnded( sectionStats );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void testCaseEnded( TestCaseStats const& testCaseStats ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->testCaseEnded( testCaseStats );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void testGroupEnded( TestGroupStats const& testGroupStats ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->testGroupEnded( testGroupStats );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void testRunEnded( TestRunStats const& testRunStats ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->testRunEnded( testRunStats );
|
|
|
|
}
|
|
|
|
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
virtual void skipTest( TestCaseInfo const& testInfo ) CATCH_OVERRIDE {
|
|
|
|
for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
(*it)->skipTest( testInfo );
|
|
|
|
}
|
2017-01-26 23:13:12 +01:00
|
|
|
|
2016-04-28 08:54:57 +02:00
|
|
|
virtual MultipleReporters* tryAsMulti() CATCH_OVERRIDE {
|
|
|
|
return this;
|
|
|
|
}
|
2017-01-26 23:13:12 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
Ptr<IStreamingReporter> addReporter( Ptr<IStreamingReporter> const& existingReporter, Ptr<IStreamingReporter> const& additionalReporter ) {
|
|
|
|
Ptr<IStreamingReporter> resultingReporter;
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
if( existingReporter ) {
|
2016-04-28 08:54:57 +02:00
|
|
|
MultipleReporters* multi = existingReporter->tryAsMulti();
|
2015-08-05 20:02:17 +02:00
|
|
|
if( !multi ) {
|
|
|
|
multi = new MultipleReporters;
|
|
|
|
resultingReporter = Ptr<IStreamingReporter>( multi );
|
|
|
|
if( existingReporter )
|
|
|
|
multi->add( existingReporter );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
resultingReporter = existingReporter;
|
|
|
|
multi->add( additionalReporter );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
resultingReporter = additionalReporter;
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
return resultingReporter;
|
|
|
|
}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_MULTI_HPP_INCLUDED
|