2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* catch_runner.hpp
|
|
|
|
* Catch
|
|
|
|
*
|
|
|
|
* Created by Phil on 31/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_RUNNER_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_RUNNER_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "internal/catch_commandline.hpp"
|
|
|
|
#include "internal/catch_list.hpp"
|
|
|
|
#include "catch_reporter_basic.hpp"
|
|
|
|
#include "catch_reporter_xml.hpp"
|
2010-11-29 20:40:44 +01:00
|
|
|
#include "catch_reporter_junit.hpp"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
namespace Catch
|
|
|
|
{
|
|
|
|
inline int Main( int argc, char * const argv[] )
|
|
|
|
{
|
|
|
|
ReporterRegistry::instance().registerReporter<BasicReporter>( "basic" );
|
|
|
|
ReporterRegistry::instance().registerReporter<XmlReporter>( "xml" );
|
2010-11-29 20:40:44 +01:00
|
|
|
ReporterRegistry::instance().registerReporter<JunitReporter>( "junit" );
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
RunnerConfig config;
|
|
|
|
ArgParser( argc, argv, config );
|
|
|
|
|
|
|
|
if( !config.m_message.empty() )
|
|
|
|
{
|
|
|
|
std::cerr << config.m_message << std::endl;
|
|
|
|
return std::numeric_limits<int>::max();
|
|
|
|
}
|
|
|
|
|
2010-12-30 19:51:02 +01:00
|
|
|
// Handle help
|
|
|
|
if( config.showHelp() )
|
|
|
|
{
|
|
|
|
std::string exeName( argv[0] );
|
|
|
|
std::string::size_type pos = exeName.find_last_of( "/\\" );
|
|
|
|
if( pos != std::string::npos )
|
|
|
|
{
|
|
|
|
exeName = exeName.substr( pos+1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << exeName << " is a CATCH host application. Options are as follows:\n\n"
|
|
|
|
<< "\t-l, --list <tests | reporters> [xml]\n"
|
|
|
|
<< "\t-t, --test <testspec> [<testspec>...]\n"
|
|
|
|
<< "\t-r, --reporter <reporter name>\n"
|
|
|
|
<< "\t-o, --out <file name>\n"
|
|
|
|
<< "\t-s, --success\n"
|
|
|
|
<< "\t-b, --break\n\n"
|
|
|
|
<< "For more detail usage please see: https://github.com/philsquared/Catch/wiki/Command-line" << std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
// Handle list request
|
|
|
|
if( config.listWhat() != RunnerConfig::listNone )
|
|
|
|
return List( config );
|
|
|
|
|
|
|
|
// Open output file, if specified
|
|
|
|
std::ofstream ofs;
|
|
|
|
if( !config.getFilename().empty() )
|
|
|
|
{
|
|
|
|
ofs.open( config.getFilename().c_str() );
|
|
|
|
if( ofs.fail() )
|
|
|
|
{
|
|
|
|
std::cerr << "Unable to open file: '" << config.getFilename() << "'" << std::endl;
|
|
|
|
return std::numeric_limits<int>::max();
|
|
|
|
}
|
|
|
|
config.getReporterConfig().setStreamBuf( ofs.rdbuf() );
|
|
|
|
}
|
|
|
|
|
2010-12-27 21:49:19 +01:00
|
|
|
Runner runner( config );
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
// Run test specs specified on the command line - or default to all
|
|
|
|
if( config.m_testSpecs.size() == 0 )
|
|
|
|
{
|
2010-11-29 20:40:44 +01:00
|
|
|
config.getReporter()->StartGroup( "" );
|
2010-11-10 00:24:00 +01:00
|
|
|
runner.runAll();
|
2010-11-29 20:40:44 +01:00
|
|
|
config.getReporter()->EndGroup( "", runner.getSuccessCount(), runner.getFailureCount() );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// !TBD We should get all the testcases upfront, report any missing,
|
|
|
|
// then just run them
|
|
|
|
std::vector<std::string>::const_iterator it = config.m_testSpecs.begin();
|
|
|
|
std::vector<std::string>::const_iterator itEnd = config.m_testSpecs.end();
|
|
|
|
for(; it != itEnd; ++it )
|
|
|
|
{
|
2010-11-29 20:40:44 +01:00
|
|
|
size_t prevSuccess = runner.getSuccessCount();
|
|
|
|
size_t prevFail = runner.getFailureCount();
|
|
|
|
config.getReporter()->StartGroup( *it );
|
2010-11-10 00:24:00 +01:00
|
|
|
if( runner.runMatching( *it ) == 0 )
|
|
|
|
{
|
|
|
|
// Use reporter?
|
2010-12-27 12:09:34 +01:00
|
|
|
// std::cerr << "\n[Unable to match any test cases with: " << *it << "]" << std::endl;
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2010-11-29 20:40:44 +01:00
|
|
|
config.getReporter()->EndGroup( *it, runner.getSuccessCount()-prevSuccess, runner.getFailureCount()-prevFail );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-12 20:32:13 +01:00
|
|
|
return runner.getFailureCount();
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_RUNNER_HPP_INCLUDED
|