mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
782c2b5891
- use -f to specify filename. Blank lines and lines starting with # are ignored - also added --list-test-names-only to list test names out to file in a form that can be immediate read in by -f
167 lines
5.4 KiB
C++
167 lines
5.4 KiB
C++
/*
|
|
* Created by Phil on 02/11/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_COMMANDLINE_HPP_INCLUDED
|
|
#define TWOBLUECUBES_CATCH_COMMANDLINE_HPP_INCLUDED
|
|
|
|
#include "catch_config.hpp"
|
|
#include "catch_common.h"
|
|
#include "clara.h"
|
|
|
|
#include <fstream>
|
|
|
|
namespace Catch {
|
|
|
|
inline void abortAfterFirst( ConfigData& config ) { config.abortAfter = 1; }
|
|
inline void abortAfterX( ConfigData& config, int x ) {
|
|
if( x < 1 )
|
|
throw std::runtime_error( "Value after -x or --abortAfter must be greater than zero" );
|
|
config.abortAfter = x;
|
|
}
|
|
inline void addTestOrTags( ConfigData& config, std::string const& _testSpec ) { config.testsOrTags.push_back( _testSpec ); }
|
|
|
|
inline void addWarning( ConfigData& config, std::string const& _warning ) {
|
|
if( _warning == "NoAssertions" )
|
|
config.warnings = (WarnAbout::What)( config.warnings | WarnAbout::NoAssertions );
|
|
else
|
|
throw std::runtime_error( "Unrecognised warning: '" + _warning + "'" );
|
|
|
|
}
|
|
inline void setVerbosity( ConfigData& config, int level ) {
|
|
// !TBD: accept strings?
|
|
config.verbosity = (Verbosity::Level)level;
|
|
}
|
|
inline void setShowDurations( ConfigData& config, bool _showDurations ) {
|
|
config.showDurations = _showDurations
|
|
? ShowDurations::Always
|
|
: ShowDurations::Never;
|
|
}
|
|
inline void loadTestNamesFromFile( ConfigData& config, std::string const& _filename ) {
|
|
std::ifstream f( _filename.c_str() );
|
|
if( !f.is_open() )
|
|
throw std::domain_error( "Unable to load input file: " + _filename );
|
|
|
|
std::string line;
|
|
while( std::getline( f, line ) ) {
|
|
line = trim(line);
|
|
if( !line.empty() && !startsWith( line, "#" ) )
|
|
addTestOrTags( config, line );
|
|
}
|
|
}
|
|
|
|
inline Clara::CommandLine<ConfigData> makeCommandLineParser() {
|
|
|
|
Clara::CommandLine<ConfigData> cli;
|
|
|
|
cli.bindProcessName( &ConfigData::processName );
|
|
|
|
cli.bind( &ConfigData::showHelp )
|
|
.describe( "display usage information" )
|
|
.shortOpt( "?")
|
|
.shortOpt( "h")
|
|
.longOpt( "help" );
|
|
|
|
cli.bind( &ConfigData::listTests )
|
|
.describe( "list all/matching test cases" )
|
|
.shortOpt( "l")
|
|
.longOpt( "list-tests" );
|
|
|
|
cli.bind( &ConfigData::listTags )
|
|
.describe( "list all/matching tags" )
|
|
.shortOpt( "t")
|
|
.longOpt( "list-tags" );
|
|
|
|
cli.bind( &ConfigData::showSuccessfulTests )
|
|
.describe( "include successful tests in output" )
|
|
.shortOpt( "s")
|
|
.longOpt( "success" );
|
|
|
|
cli.bind( &ConfigData::shouldDebugBreak )
|
|
.describe( "break into debugger on failure" )
|
|
.shortOpt( "b")
|
|
.longOpt( "break" );
|
|
|
|
cli.bind( &ConfigData::noThrow )
|
|
.describe( "skip exception tests" )
|
|
.shortOpt( "e")
|
|
.longOpt( "nothrow" );
|
|
|
|
cli.bind( &ConfigData::outputFilename )
|
|
.describe( "output filename" )
|
|
.shortOpt( "o")
|
|
.longOpt( "out" )
|
|
.hint( "filename" );
|
|
|
|
cli.bind( &ConfigData::reporterName )
|
|
.describe( "reporter to use (defaults to console)" )
|
|
.shortOpt( "r")
|
|
.longOpt( "reporter" )
|
|
// .hint( "name[:filename]" );
|
|
.hint( "name" );
|
|
|
|
cli.bind( &ConfigData::name )
|
|
.describe( "suite name" )
|
|
.shortOpt( "n")
|
|
.longOpt( "name" )
|
|
.hint( "name" );
|
|
|
|
cli.bind( &abortAfterFirst )
|
|
.describe( "abort at first failure" )
|
|
.shortOpt( "a")
|
|
.longOpt( "abort" );
|
|
|
|
cli.bind( &abortAfterX )
|
|
.describe( "abort after x failures" )
|
|
.shortOpt( "x")
|
|
.longOpt( "abortx" )
|
|
.hint( "number of failures" );
|
|
|
|
cli.bind( &addWarning )
|
|
.describe( "enable warnings" )
|
|
.shortOpt( "w")
|
|
.longOpt( "warn" )
|
|
.hint( "warning name" );
|
|
|
|
// cli.bind( &setVerbosity )
|
|
// .describe( "level of verbosity (0=no output)" )
|
|
// .shortOpt( "v")
|
|
// .longOpt( "verbosity" )
|
|
// .hint( "level" );
|
|
|
|
cli.bind( &addTestOrTags )
|
|
.describe( "which test or tests to use" )
|
|
.hint( "test name, pattern or tags" );
|
|
|
|
cli.bind( &setShowDurations )
|
|
.describe( "show test durations" )
|
|
.shortOpt( "d")
|
|
.longOpt( "durations" )
|
|
.hint( "yes/no" );
|
|
|
|
cli.bind( &loadTestNamesFromFile )
|
|
.describe( "load test names to run from a file" )
|
|
.shortOpt( "f")
|
|
.longOpt( "input-file" )
|
|
.hint( "filename" );
|
|
|
|
// Less common commands which don't have a short form
|
|
cli.bind( &ConfigData::listTestNamesOnly )
|
|
.describe( "list all/matching test cases names only" )
|
|
.longOpt( "list-test-names-only" );
|
|
|
|
cli.bind( &ConfigData::listReporters )
|
|
.describe( "list all reporters" )
|
|
.longOpt( "list-reporters" );
|
|
|
|
|
|
return cli;
|
|
}
|
|
|
|
} // end namespace Catch
|
|
|
|
#endif // TWOBLUECUBES_CATCH_COMMANDLINE_HPP_INCLUDED
|