2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* catch_reporter_basic.hpp
|
|
|
|
* Catch
|
|
|
|
*
|
|
|
|
* Created by Phil on 28/10/2010.
|
|
|
|
* Copyright 2010 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_BASIC_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_REPORTER_BASIC_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "internal/catch_capture.hpp"
|
|
|
|
#include "internal/catch_reporter_registry.hpp"
|
|
|
|
|
|
|
|
namespace Catch
|
|
|
|
{
|
|
|
|
class BasicReporter : public ITestReporter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
BasicReporter( const ReporterConfig& config )
|
|
|
|
: m_config( config )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
static std::string getDescription()
|
|
|
|
{
|
|
|
|
return "Reports test results as lines of text";
|
|
|
|
}
|
|
|
|
|
2010-11-29 20:40:44 +01:00
|
|
|
private:
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
void ReportCounts( std::size_t succeeded, std::size_t failed )
|
|
|
|
{
|
|
|
|
if( failed + succeeded == 0 )
|
|
|
|
m_config.stream() << "No tests ran";
|
|
|
|
else if( failed == 0 )
|
|
|
|
m_config.stream() << "All " << succeeded << " test(s) succeeded";
|
|
|
|
else if( succeeded == 0 )
|
|
|
|
m_config.stream() << "All " << failed << " test(s) failed";
|
|
|
|
else
|
|
|
|
m_config.stream() << succeeded << " test(s) passed but " << failed << " test(s) failed";
|
|
|
|
}
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
private: // ITestReporter
|
2010-11-29 20:40:44 +01:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void StartTesting()
|
|
|
|
{
|
|
|
|
m_config.stream() << "[Started testing]" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void EndTesting( std::size_t succeeded, std::size_t failed )
|
|
|
|
{
|
|
|
|
m_config.stream() << "[Testing completed. ";
|
|
|
|
ReportCounts( succeeded, failed );
|
|
|
|
m_config.stream() << "]" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void StartGroup( const std::string& groupName )
|
|
|
|
{
|
|
|
|
if( !groupName.empty() )
|
|
|
|
m_config.stream() << "[Started group: '" << groupName << "']" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void EndGroup( const std::string& groupName, std::size_t succeeded, std::size_t failed )
|
|
|
|
{
|
|
|
|
if( !groupName.empty() )
|
|
|
|
{
|
|
|
|
m_config.stream() << "[End of group: '" << groupName << "'. ";
|
|
|
|
ReportCounts( succeeded, failed );
|
|
|
|
m_config.stream() << "]\n" << std::endl;
|
|
|
|
}
|
|
|
|
}
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void StartTestCase( const TestCaseInfo& testInfo )
|
|
|
|
{
|
|
|
|
m_config.stream() << std::endl << "[Running: " << testInfo.getName() << "]" << std::endl;
|
2010-11-29 20:40:44 +01:00
|
|
|
m_firstSectionInTestCase = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void StartSection( const std::string& sectionName, const std::string /*description*/ )
|
|
|
|
{
|
|
|
|
if( m_firstSectionInTestCase )
|
|
|
|
{
|
|
|
|
m_config.stream() << "\n";
|
|
|
|
m_firstSectionInTestCase = false;
|
|
|
|
}
|
|
|
|
m_config.stream() << "[Started section: '" << sectionName << "']" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void EndSection( const std::string& sectionName, std::size_t succeeded, std::size_t failed )
|
|
|
|
{
|
|
|
|
m_config.stream() << "[End of section: '" << sectionName << "'. ";
|
|
|
|
ReportCounts( succeeded, failed );
|
|
|
|
m_config.stream() << "]\n" << std::endl;
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
virtual void Result( const ResultInfo& resultInfo )
|
|
|
|
{
|
|
|
|
if( !m_config.includeSuccessfulResults() && resultInfo.ok() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( !resultInfo.getFilename().empty() )
|
|
|
|
m_config.stream() << resultInfo.getFilename() << "(" << resultInfo.getLine() << "): ";
|
|
|
|
|
|
|
|
if( resultInfo.hasExpression() )
|
|
|
|
{
|
|
|
|
m_config.stream() << resultInfo.getExpression();
|
|
|
|
if( resultInfo.ok() )
|
|
|
|
m_config.stream() << " succeeded";
|
|
|
|
else
|
|
|
|
m_config.stream() << " failed";
|
|
|
|
}
|
|
|
|
switch( resultInfo.getResultType() )
|
|
|
|
{
|
|
|
|
case ResultWas::ThrewException:
|
|
|
|
if( resultInfo.hasExpression() )
|
|
|
|
m_config.stream() << " with unexpected";
|
|
|
|
else
|
|
|
|
m_config.stream() << "Unexpected";
|
|
|
|
m_config.stream() << " exception with message: '" << resultInfo.getMessage() << "'";
|
|
|
|
break;
|
|
|
|
case ResultWas::Info:
|
|
|
|
m_config.stream() << "info: '" << resultInfo.getMessage() << "'";
|
|
|
|
break;
|
|
|
|
case ResultWas::Warning:
|
|
|
|
m_config.stream() << "warning: '" << resultInfo.getMessage() << "'";
|
|
|
|
break;
|
|
|
|
case ResultWas::ExplicitFailure:
|
|
|
|
m_config.stream() << "failed with message: '" << resultInfo.getMessage() << "'";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( resultInfo.hasExpression() )
|
|
|
|
{
|
|
|
|
m_config.stream() << " for: " << resultInfo.getExpandedExpression();
|
|
|
|
}
|
|
|
|
m_config.stream() << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2010-11-30 07:48:21 +01:00
|
|
|
virtual void EndTestCase( const TestCaseInfo& testInfo, const std::string& stdOut, const std::string& stdErr )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
2010-11-30 07:48:21 +01:00
|
|
|
if( !stdOut.empty() )
|
2010-12-10 21:06:54 +01:00
|
|
|
m_config.stream() << "[stdout: " << trim( stdOut ) << "]\n";
|
2010-11-30 07:48:21 +01:00
|
|
|
|
|
|
|
if( !stdErr.empty() )
|
2010-12-10 21:06:54 +01:00
|
|
|
m_config.stream() << "[stderr: " << trim( stdErr ) << "]\n";
|
2010-11-30 07:48:21 +01:00
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
m_config.stream() << "[Finished: " << testInfo.getName() << "]" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const ReporterConfig& m_config;
|
2010-11-29 20:40:44 +01:00
|
|
|
bool m_firstSectionInTestCase;
|
2010-11-10 00:24:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_BASIC_HPP_INCLUDED
|