mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-09 15:49:53 +01:00
846 lines
31 KiB
C++
846 lines
31 KiB
C++
/*
|
|
* Created by Phil on 22/10/2010.
|
|
* Copyright 2010 Two Blue Cubes Ltd
|
|
*
|
|
* 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)
|
|
*/
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic ignored "-Wpadded"
|
|
#endif
|
|
|
|
#include "catch.hpp"
|
|
#include "catch_text.h"
|
|
|
|
namespace Clara {
|
|
namespace Detail {
|
|
template<typename T> struct RemoveConstRef{ typedef T type; };
|
|
template<typename T> struct RemoveConstRef<T&>{ typedef T type; };
|
|
template<typename T> struct RemoveConstRef<T const&>{ typedef T type; };
|
|
template<typename T> struct RemoveConstRef<T const>{ typedef T type; };
|
|
|
|
template<typename T> struct IsBool { static const bool value = false; };
|
|
template<> struct IsBool<bool> { static const bool value = true; };
|
|
|
|
template<typename T>
|
|
void convertInto( std::string const& _source, T& _dest ) {
|
|
std::stringstream ss;
|
|
ss << _source;
|
|
ss >> _dest;
|
|
if( ss.fail() )
|
|
throw std::runtime_error( "Unable to convert " + _source + " to destination type" );
|
|
}
|
|
inline void convertInto( std::string const& _source, std::string& _dest ) {
|
|
_dest = _source;
|
|
}
|
|
inline void convertInto( std::string const& _source, bool& _dest ) {
|
|
std::string sourceLC = _source;
|
|
std::transform( sourceLC.begin(), sourceLC.end(), sourceLC.begin(), ::tolower );
|
|
if( sourceLC == "1" || sourceLC == "true" || sourceLC == "yes" || sourceLC == "on" )
|
|
_dest = true;
|
|
else if( sourceLC == "0" || sourceLC == "false" || sourceLC == "no" || sourceLC == "off" )
|
|
_dest = false;
|
|
else
|
|
throw std::runtime_error( "Expected a boolean value but did recognise: '" + _source + "'" );
|
|
}
|
|
inline void convertInto( bool _source, bool& _dest ) {
|
|
_dest = _source;
|
|
}
|
|
template<typename T>
|
|
inline void convertInto( bool, T& ) {
|
|
throw std::runtime_error( "Invalid conversion" );
|
|
}
|
|
|
|
template<typename ConfigT>
|
|
struct IArgFunction {
|
|
virtual ~IArgFunction() {}
|
|
virtual void set( ConfigT& config, std::string const& value ) const = 0;
|
|
virtual void setFlag( ConfigT& config ) const = 0;
|
|
virtual bool takesArg() const = 0;
|
|
virtual IArgFunction* clone() const = 0;
|
|
};
|
|
|
|
template<typename ConfigT>
|
|
class BoundArgFunction {
|
|
public:
|
|
BoundArgFunction( IArgFunction<ConfigT>* _functionObj ) : functionObj( _functionObj ) {}
|
|
BoundArgFunction( BoundArgFunction const& other ) : functionObj( other.functionObj->clone() ) {}
|
|
BoundArgFunction& operator = ( BoundArgFunction const& other ) {
|
|
IArgFunction<ConfigT> newFunctionObj = other.clone();
|
|
delete functionObj;
|
|
functionObj = newFunctionObj;
|
|
return *this;
|
|
}
|
|
~BoundArgFunction() { delete functionObj; }
|
|
|
|
void set( ConfigT& config, std::string const& value ) const {
|
|
functionObj->set( config, value );
|
|
}
|
|
void setFlag( ConfigT& config ) const {
|
|
functionObj->setFlag( config );
|
|
}
|
|
bool takesArg() const { return functionObj->takesArg(); }
|
|
private:
|
|
IArgFunction<ConfigT>* functionObj;
|
|
};
|
|
|
|
|
|
template<typename C, typename M>
|
|
struct BoundDataMember : IArgFunction<C>{
|
|
BoundDataMember( M C::* _member ) : member( _member ) {}
|
|
virtual void set( C& p, std::string const& stringValue ) const {
|
|
convertInto( stringValue, p.*member );
|
|
}
|
|
virtual void setFlag( C& p ) const {
|
|
convertInto( true, p.*member );
|
|
}
|
|
virtual bool takesArg() const { return !IsBool<M>::value; }
|
|
virtual IArgFunction<C>* clone() const { return new BoundDataMember( *this ); }
|
|
M C::* member;
|
|
};
|
|
template<typename C, typename M>
|
|
struct BoundUnaryMethod : IArgFunction<C>{
|
|
BoundUnaryMethod( void (C::*_member)( M ) ) : member( _member ) {}
|
|
virtual void set( C& p, std::string const& stringValue ) const {
|
|
typename RemoveConstRef<M>::type value;
|
|
convertInto( stringValue, value );
|
|
(p.*member)( value );
|
|
}
|
|
virtual void setFlag( C& p ) const {
|
|
typename RemoveConstRef<M>::type value;
|
|
convertInto( true, value );
|
|
(p.*member)( value );
|
|
}
|
|
virtual bool takesArg() const { return !IsBool<M>::value; }
|
|
virtual IArgFunction<C>* clone() const { return new BoundUnaryMethod( *this ); }
|
|
void (C::*member)( M );
|
|
};
|
|
template<typename C>
|
|
struct BoundNullaryMethod : IArgFunction<C>{
|
|
BoundNullaryMethod( void (C::*_member)() ) : member( _member ) {}
|
|
virtual void set( C& p, std::string const& stringValue ) const {
|
|
bool value;
|
|
convertInto( stringValue, value );
|
|
if( value )
|
|
(p.*member)();
|
|
}
|
|
virtual void setFlag( C& p ) const {
|
|
(p.*member)();
|
|
}
|
|
virtual bool takesArg() const { return false; }
|
|
virtual IArgFunction<C>* clone() const { return new BoundNullaryMethod( *this ); }
|
|
void (C::*member)();
|
|
};
|
|
|
|
template<typename C>
|
|
struct BoundUnaryFunction : IArgFunction<C>{
|
|
BoundUnaryFunction( void (*_function)( C& ) ) : function( _function ) {}
|
|
virtual void set( C& obj, std::string const& stringValue ) const {
|
|
bool value;
|
|
convertInto( stringValue, value );
|
|
if( value )
|
|
function( obj );
|
|
}
|
|
virtual void setFlag( C& p ) const {
|
|
function( p );
|
|
}
|
|
virtual bool takesArg() const { return false; }
|
|
virtual IArgFunction<C>* clone() const { return new BoundUnaryFunction( *this ); }
|
|
void (*function)( C& );
|
|
};
|
|
|
|
template<typename C, typename T>
|
|
struct BoundBinaryFunction : IArgFunction<C>{
|
|
BoundBinaryFunction( void (*_function)( C&, T ) ) : function( _function ) {}
|
|
virtual void set( C& obj, std::string const& stringValue ) const {
|
|
typename RemoveConstRef<T>::type value;
|
|
convertInto( stringValue, value );
|
|
function( obj, value );
|
|
}
|
|
virtual void setFlag( C& obj ) const {
|
|
typename RemoveConstRef<T>::type value;
|
|
convertInto( true, value );
|
|
function( obj, value );
|
|
}
|
|
virtual bool takesArg() const { return !IsBool<T>::value; }
|
|
virtual IArgFunction<C>* clone() const { return new BoundBinaryFunction( *this ); }
|
|
void (*function)( C&, T );
|
|
};
|
|
|
|
template<typename C, typename M>
|
|
BoundArgFunction<C> makeBoundField( M C::* _member ) {
|
|
return BoundArgFunction<C>( new BoundDataMember<C,M>( _member ) );
|
|
}
|
|
template<typename C, typename M>
|
|
BoundArgFunction<C> makeBoundField( void (C::*_member)( M ) ) {
|
|
return BoundArgFunction<C>( new BoundUnaryMethod<C,M>( _member ) );
|
|
}
|
|
template<typename C>
|
|
BoundArgFunction<C> makeBoundField( void (C::*_member)() ) {
|
|
return BoundArgFunction<C>( new BoundNullaryMethod<C>( _member ) );
|
|
}
|
|
template<typename C>
|
|
BoundArgFunction<C> makeBoundField( void (*_function)( C& ) ) {
|
|
return BoundArgFunction<C>( new BoundUnaryFunction<C>( _function ) );
|
|
}
|
|
template<typename C, typename T>
|
|
BoundArgFunction<C> makeBoundField( void (*_function)( C&, T ) ) {
|
|
return BoundArgFunction<C>( new BoundBinaryFunction<C, T>( _function ) );
|
|
}
|
|
} // namespace Detail
|
|
|
|
struct Parser {
|
|
Parser() : separators( " \t=:" ) {}
|
|
|
|
struct Token {
|
|
enum Type { Positional, ShortOpt, LongOpt };
|
|
Token( Type _type, std::string const& _data ) : type( _type ), data( _data ) {}
|
|
Type type;
|
|
std::string data;
|
|
};
|
|
|
|
void parseIntoTokens( int argc, char const* argv[], std::vector<Parser::Token>& tokens ) const {
|
|
for( int i = 1; i < argc; ++i )
|
|
parseIntoTokens( argv[i] , tokens);
|
|
}
|
|
void parseIntoTokens( std::string arg, std::vector<Parser::Token>& tokens ) const {
|
|
while( !arg.empty() ) {
|
|
Parser::Token token( Parser::Token::Positional, arg );
|
|
arg = "";
|
|
if( token.data[0] == '-' ) {
|
|
if( token.data.size() > 1 && token.data[1] == '-' ) {
|
|
token = Parser::Token( Parser::Token::LongOpt, token.data.substr( 2 ) );
|
|
}
|
|
else {
|
|
token = Parser::Token( Parser::Token::ShortOpt, token.data.substr( 1 ) );
|
|
if( token.data.size() > 1 && separators.find( token.data[1] ) == std::string::npos ) {
|
|
arg = "-" + token.data.substr( 1 );
|
|
token.data = token.data.substr( 0, 1 );
|
|
}
|
|
}
|
|
}
|
|
if( token.type != Parser::Token::Positional ) {
|
|
std::size_t pos = token.data.find_first_of( separators );
|
|
if( pos != std::string::npos ) {
|
|
arg = token.data.substr( pos+1 );
|
|
token.data = token.data.substr( 0, pos );
|
|
}
|
|
}
|
|
tokens.push_back( token );
|
|
}
|
|
}
|
|
std::string separators;
|
|
};
|
|
|
|
template<typename ConfigT>
|
|
class CommandLine {
|
|
|
|
struct Arg {
|
|
Arg( Detail::BoundArgFunction<ConfigT> const& _boundField ) : boundField( _boundField ), position( -1 ) {}
|
|
|
|
bool hasShortName( std::string const& shortName ) const {
|
|
for( std::vector<std::string>::const_iterator
|
|
it = shortNames.begin(), itEnd = shortNames.end();
|
|
it != itEnd;
|
|
++it )
|
|
if( *it == shortName )
|
|
return true;
|
|
return false;
|
|
}
|
|
bool hasLongName( std::string const& _longName ) const {
|
|
return _longName == longName;
|
|
}
|
|
bool takesArg() const {
|
|
return !argName.empty();
|
|
}
|
|
bool isFixedPositional() const {
|
|
return position != -1;
|
|
}
|
|
bool isAnyPositional() const {
|
|
return position == -1 && shortNames.empty() && longName.empty();
|
|
}
|
|
std::string dbgName() const {
|
|
if( !longName.empty() )
|
|
return "--" + longName;
|
|
if( !shortNames.empty() )
|
|
return "-" + shortNames[0];
|
|
return "positional args";
|
|
}
|
|
void validate() const {
|
|
if( boundField.takesArg() && !takesArg() )
|
|
throw std::logic_error( dbgName() + " must specify an arg name" );
|
|
}
|
|
std::string commands() const {
|
|
std::ostringstream oss;
|
|
bool first = true;
|
|
std::vector<std::string>::const_iterator it = shortNames.begin(), itEnd = shortNames.end();
|
|
for(; it != itEnd; ++it ) {
|
|
if( first )
|
|
first = false;
|
|
else
|
|
oss << ", ";
|
|
oss << "-" << *it;
|
|
}
|
|
if( !longName.empty() ) {
|
|
if( !first )
|
|
oss << ", ";
|
|
oss << "--" << longName;
|
|
}
|
|
if( !argName.empty() )
|
|
oss << " <" << argName << ">";
|
|
return oss.str();
|
|
}
|
|
|
|
Detail::BoundArgFunction<ConfigT> boundField;
|
|
std::vector<std::string> shortNames;
|
|
std::string longName;
|
|
std::string description;
|
|
std::string argName;
|
|
int position;
|
|
};
|
|
|
|
class ArgBinder {
|
|
public:
|
|
template<typename F>
|
|
ArgBinder( CommandLine* cl, F f )
|
|
: m_cl( cl ),
|
|
m_arg( Detail::makeBoundField( f ) )
|
|
{}
|
|
ArgBinder( ArgBinder& other )
|
|
: m_cl( other.m_cl ),
|
|
m_arg( other.m_arg )
|
|
{
|
|
other.m_cl = NULL;
|
|
}
|
|
~ArgBinder() {
|
|
if( m_cl ) {
|
|
m_arg.validate();
|
|
if( m_arg.isFixedPositional() ) {
|
|
m_cl->m_positionalArgs.insert( std::make_pair( m_arg.position, m_arg ) );
|
|
if( m_arg.position > m_cl->m_highestSpecifiedArgPosition )
|
|
m_cl->m_highestSpecifiedArgPosition = m_arg.position;
|
|
}
|
|
else if( m_arg.isAnyPositional() ) {
|
|
if( m_cl->m_arg.get() )
|
|
throw std::logic_error( "Only one unpositional argument can be added" );
|
|
m_cl->m_arg = std::auto_ptr<Arg>( new Arg( m_arg ) );
|
|
}
|
|
else
|
|
m_cl->m_options.push_back( m_arg );
|
|
}
|
|
}
|
|
ArgBinder& shortOpt( std::string const& name ) {
|
|
m_arg.shortNames.push_back( name );
|
|
return *this;
|
|
}
|
|
ArgBinder& longOpt( std::string const& name ) {
|
|
m_arg.longName = name;
|
|
return *this;
|
|
}
|
|
ArgBinder& describe( std::string const& description ) {
|
|
m_arg.description = description;
|
|
return *this;
|
|
}
|
|
ArgBinder& argName( std::string const& argName ) {
|
|
m_arg.argName = argName;
|
|
return *this;
|
|
}
|
|
ArgBinder& position( int position ) {
|
|
m_arg.position = position;
|
|
return *this;
|
|
}
|
|
private:
|
|
CommandLine* m_cl;
|
|
Arg m_arg;
|
|
};
|
|
|
|
public:
|
|
|
|
CommandLine() : m_highestSpecifiedArgPosition( 0 ) {}
|
|
|
|
template<typename F>
|
|
ArgBinder bind( F f ) {
|
|
ArgBinder binder( this, f );
|
|
return binder;
|
|
}
|
|
|
|
void optUsage( std::ostream& os, std::size_t indent = 0, std::size_t width = CATCH_CONFIG_CONSOLE_WIDTH ) const {
|
|
typename std::vector<Arg>::const_iterator itBegin = m_options.begin(), itEnd = m_options.end(), it;
|
|
std::size_t maxWidth = 0;
|
|
for( it = itBegin; it != itEnd; ++it )
|
|
maxWidth = (std::max)( maxWidth, it->commands().size() );
|
|
|
|
for( it = itBegin; it != itEnd; ++it ) {
|
|
Catch::Text usage( it->commands(), Catch::TextAttributes()
|
|
.setWidth( maxWidth+indent )
|
|
.setIndent( indent ) );
|
|
// !TBD handle longer usage strings
|
|
Catch::Text desc( it->description, Catch::TextAttributes()
|
|
.setWidth( width - maxWidth -3 ) );
|
|
|
|
for( std::size_t i = 0; i < std::max( usage.size(), desc.size() ); ++i ) {
|
|
std::string usageCol = i < usage.size() ? usage[i] : "";
|
|
os << usageCol;
|
|
|
|
if( i < desc.size() && !desc[i].empty() )
|
|
os << std::string( indent + 2 + maxWidth - usageCol.size(), ' ' )
|
|
<< desc[i];
|
|
os << "\n";
|
|
}
|
|
}
|
|
}
|
|
std::string optUsage() const {
|
|
std::ostringstream oss;
|
|
optUsage( oss );
|
|
return oss.str();
|
|
}
|
|
|
|
void argSynopsis( std::ostream& os ) const {
|
|
for( int i = 1; i <= m_highestSpecifiedArgPosition; ++i ) {
|
|
if( i > 1 )
|
|
os << " ";
|
|
typename std::map<int, Arg>::const_iterator it = m_positionalArgs.find( i );
|
|
if( it != m_positionalArgs.end() )
|
|
os << "<" << it->second.argName << ">";
|
|
else if( m_arg.get() )
|
|
os << "<" << m_arg->argName << ">";
|
|
else
|
|
throw std::logic_error( "non consecutive positional arguments with no floating args" );
|
|
}
|
|
// !TBD No indication of mandatory args
|
|
if( m_arg.get() ) {
|
|
if( m_highestSpecifiedArgPosition > 1 )
|
|
os << " ";
|
|
os << "[<" << m_arg->argName << "> ...]";
|
|
}
|
|
}
|
|
std::string argSynopsis() const {
|
|
std::ostringstream oss;
|
|
argSynopsis( oss );
|
|
return oss.str();
|
|
}
|
|
|
|
|
|
void usage( std::ostream& os, std::string const& procName ) const {
|
|
os << "usage:\n " << procName << " ";
|
|
argSynopsis( os );
|
|
if( !m_options.empty() ) {
|
|
os << " [options]\n\nwhere options are: \n";
|
|
optUsage( os, 2 );
|
|
}
|
|
os << "\n";
|
|
}
|
|
std::string usage( std::string const& procName ) const {
|
|
std::ostringstream oss;
|
|
usage( oss, procName );
|
|
return oss.str();
|
|
}
|
|
|
|
std::vector<Parser::Token> parseInto( int argc, char const* argv[], ConfigT& config ) const {
|
|
std::vector<Parser::Token> tokens;
|
|
Parser parser;
|
|
parser.parseIntoTokens( argc, argv, tokens );
|
|
return populate( tokens, config );
|
|
}
|
|
|
|
std::vector<Parser::Token> populate( std::vector<Parser::Token> const& tokens, ConfigT& config ) const {
|
|
if( m_options.empty() && m_positionalArgs.empty() )
|
|
throw std::logic_error( "No options or arguments specified" );
|
|
|
|
std::vector<Parser::Token> unusedTokens = populateOptions( tokens, config );
|
|
unusedTokens = populateFixedArgs( unusedTokens, config );
|
|
unusedTokens = populateFloatingArgs( unusedTokens, config );
|
|
return unusedTokens;
|
|
}
|
|
|
|
std::vector<Parser::Token> populateOptions( std::vector<Parser::Token> const& tokens, ConfigT& config ) const {
|
|
std::vector<Parser::Token> unusedTokens;
|
|
for( std::size_t i = 0; i < tokens.size(); ++i ) {
|
|
Parser::Token const& token = tokens[i];
|
|
typename std::vector<Arg>::const_iterator it = m_options.begin(), itEnd = m_options.end();
|
|
for(; it != itEnd; ++it ) {
|
|
Arg const& arg = *it;
|
|
|
|
if( ( token.type == Parser::Token::ShortOpt && arg.hasShortName( token.data ) ) ||
|
|
( token.type == Parser::Token::LongOpt && arg.hasLongName( token.data ) ) ) {
|
|
if( arg.takesArg() ) {
|
|
if( i == tokens.size()-1 || tokens[i+1].type != Parser::Token::Positional )
|
|
throw std::domain_error( "Expected argument to option " + token.data );
|
|
arg.boundField.set( config, tokens[++i].data );
|
|
}
|
|
else {
|
|
arg.boundField.setFlag( config );
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
if( it == itEnd )
|
|
unusedTokens.push_back( token );
|
|
}
|
|
return unusedTokens;
|
|
}
|
|
std::vector<Parser::Token> populateFixedArgs( std::vector<Parser::Token> const& tokens, ConfigT& config ) const {
|
|
std::vector<Parser::Token> unusedTokens;
|
|
int position = 1;
|
|
for( std::size_t i = 0; i < tokens.size(); ++i ) {
|
|
Parser::Token const& token = tokens[i];
|
|
typename std::map<int, Arg>::const_iterator it = m_positionalArgs.find( position );
|
|
if( it != m_positionalArgs.end() )
|
|
it->second.boundField.set( config, token.data );
|
|
else
|
|
unusedTokens.push_back( token );
|
|
if( token.type == Parser::Token::Positional )
|
|
position++;
|
|
}
|
|
return unusedTokens;
|
|
}
|
|
std::vector<Parser::Token> populateFloatingArgs( std::vector<Parser::Token> const& tokens, ConfigT& config ) const {
|
|
if( !m_arg.get() )
|
|
return tokens;
|
|
std::vector<Parser::Token> unusedTokens;
|
|
for( std::size_t i = 0; i < tokens.size(); ++i ) {
|
|
Parser::Token const& token = tokens[i];
|
|
if( token.type == Parser::Token::Positional )
|
|
m_arg->boundField.set( config, token.data );
|
|
else
|
|
unusedTokens.push_back( token );
|
|
}
|
|
return unusedTokens;
|
|
}
|
|
|
|
private:
|
|
std::vector<Arg> m_options;
|
|
std::map<int, Arg> m_positionalArgs;
|
|
std::auto_ptr<Arg> m_arg;
|
|
int m_highestSpecifiedArgPosition;
|
|
};
|
|
|
|
} // end namespace Clara
|
|
|
|
// Helper to deduce size from array literals and pass on to parser
|
|
template<size_t size, typename ConfigT>
|
|
std::vector<Clara::Parser::Token> parseInto( Clara::CommandLine<ConfigT>& cli, char const* (&argv)[size], ConfigT& config ) {
|
|
return cli.parseInto( size, argv, config );
|
|
}
|
|
|
|
|
|
struct TestOpt {
|
|
TestOpt() : number( 0 ), index( 0 ), flag( false ) {}
|
|
|
|
std::string fileName;
|
|
int number;
|
|
int index;
|
|
bool flag;
|
|
std::string firstPos;
|
|
std::string secondPos;
|
|
std::string unpositional;
|
|
|
|
void setValidIndex( int i ) {
|
|
if( i < 0 || i > 10 )
|
|
throw std::domain_error( "index must be between 0 and 10" );
|
|
index = i;
|
|
}
|
|
};
|
|
|
|
struct TestOpt2 {
|
|
std::string description;
|
|
};
|
|
|
|
#ifdef CATCH_CONFIG_VARIADIC_MACROS
|
|
|
|
TEST_CASE( "cmdline" ) {
|
|
|
|
TestOpt config;
|
|
Clara::CommandLine<TestOpt> cli;
|
|
cli.bind( &TestOpt::fileName )
|
|
.describe( "specifies output file" )
|
|
.shortOpt( "o" )
|
|
.longOpt( "output" )
|
|
.argName( "filename" );
|
|
|
|
SECTION( "arg separated by spaces" ) {
|
|
const char* argv[] = { "test", "-o filename.ext" };
|
|
parseInto( cli, argv, config );
|
|
|
|
CHECK( config.fileName == "filename.ext" );
|
|
}
|
|
SECTION( "arg separated by colon" ) {
|
|
const char* argv[] = { "test", "-o:filename.ext" };
|
|
parseInto( cli, argv, config );
|
|
|
|
CHECK( config.fileName == "filename.ext" );
|
|
}
|
|
SECTION( "arg separated by =" ) {
|
|
const char* argv[] = { "test", "-o=filename.ext" };
|
|
parseInto( cli, argv, config );
|
|
|
|
CHECK( config.fileName == "filename.ext" );
|
|
}
|
|
SECTION( "long opt" ) {
|
|
const char* argv[] = { "test", "--output %stdout" };
|
|
parseInto( cli, argv, config );
|
|
|
|
CHECK( config.fileName == "%stdout" );
|
|
}
|
|
|
|
cli.bind( &TestOpt::number )
|
|
.shortOpt( "n" )
|
|
.argName( "an integral value" );
|
|
|
|
SECTION( "a number" ) {
|
|
const char* argv[] = { "test", "-n 42" };
|
|
parseInto( cli, argv, config );
|
|
|
|
CHECK( config.number == 42 );
|
|
}
|
|
SECTION( "not a number" ) {
|
|
const char* argv[] = { "test", "-n forty-two" };
|
|
CHECK_THROWS( parseInto( cli, argv, config ) );
|
|
|
|
CHECK( config.number == 0 );
|
|
}
|
|
|
|
SECTION( "two parsers" ) {
|
|
|
|
TestOpt config1;
|
|
TestOpt2 config2;
|
|
Clara::CommandLine<TestOpt2> cli2;
|
|
|
|
cli2.bind( &TestOpt2::description )
|
|
.describe( "description" )
|
|
.shortOpt( "d" )
|
|
.longOpt( "description" )
|
|
.argName( "some text" );
|
|
|
|
const char* argv[] = { "test", "-n 42", "-d some text" };
|
|
std::vector<Clara::Parser::Token> unusedTokens = parseInto( cli, argv, config1 );
|
|
|
|
CHECK( config1.number == 42 );
|
|
|
|
REQUIRE_FALSE( unusedTokens.empty() );
|
|
cli2.populate( unusedTokens, config2 );
|
|
CHECK( config2.description == "some text" );
|
|
}
|
|
|
|
SECTION( "methods" ) {
|
|
cli.bind( &TestOpt::setValidIndex )
|
|
.describe( "An index, which is an integer between 0 and 10, inclusive" )
|
|
.shortOpt( "i" )
|
|
.argName( "index" );
|
|
|
|
SECTION( "in range" ) {
|
|
const char* argv[] = { "test", "-i 3" };
|
|
parseInto( cli, argv, config );
|
|
|
|
REQUIRE( config.index == 3 );
|
|
}
|
|
SECTION( "out of range" ) {
|
|
const char* argv[] = { "test", "-i 42" };
|
|
|
|
REQUIRE_THROWS( parseInto( cli, argv, config ) );
|
|
}
|
|
}
|
|
|
|
SECTION( "flags" ) {
|
|
cli.bind( &TestOpt::flag )
|
|
.describe( "A flag" )
|
|
.shortOpt( "f" );
|
|
|
|
SECTION( "set" ) {
|
|
const char* argv[] = { "test", "-f" };
|
|
parseInto( cli, argv, config );
|
|
|
|
REQUIRE( config.flag );
|
|
}
|
|
SECTION( "not set" ) {
|
|
const char* argv[] = { "test" };
|
|
parseInto( cli, argv, config );
|
|
|
|
REQUIRE( config.flag == false );
|
|
}
|
|
}
|
|
SECTION( "positional" ) {
|
|
cli.bind( &TestOpt::secondPos )
|
|
.describe( "Second position" )
|
|
.argName( "second arg" )
|
|
.position( 2 );
|
|
cli.bind( &TestOpt::unpositional )
|
|
.argName( "any arg" )
|
|
.describe( "Unpositional" );
|
|
cli.bind( &TestOpt::firstPos )
|
|
.describe( "First position" )
|
|
.argName( "first arg" )
|
|
.position( 1 );
|
|
|
|
std::cout << cli.usage( "testApp" ) << std::endl;
|
|
|
|
const char* argv[] = { "test", "-f", "1st", "-o", "filename", "2nd", "3rd" };
|
|
parseInto( cli, argv, config );
|
|
|
|
REQUIRE( config.firstPos == "1st" );
|
|
REQUIRE( config.secondPos == "2nd" );
|
|
REQUIRE( config.unpositional == "3rd" );
|
|
}
|
|
}
|
|
|
|
struct Config {
|
|
Config()
|
|
: listTests( false ),
|
|
listTags( false ),
|
|
showPassingTests( false ),
|
|
breakIntoDebugger( false ),
|
|
noThrow( false ),
|
|
showHelp( false ),
|
|
abortAfter( 0 )
|
|
{}
|
|
|
|
bool listTests;
|
|
bool listTags;
|
|
bool showPassingTests;
|
|
bool breakIntoDebugger;
|
|
bool noThrow;
|
|
bool showHelp;
|
|
|
|
int abortAfter;
|
|
std::string reporterName;
|
|
std::string fileName;
|
|
std::string suiteName;
|
|
std::string reporter;
|
|
std::vector<std::string> warnings;
|
|
std::vector<std::string> testsOrTags;
|
|
};
|
|
|
|
inline void abortAfterFirst( Config& config ) { config.abortAfter = 1; }
|
|
inline void abortAfterX( Config& config, int x ) { config.abortAfter = x; }
|
|
inline void addWarning( Config& config, std::string const& _warning ) { config.warnings.push_back( _warning ); }
|
|
inline void addTestOrTags( Config& config, std::string const& _testSpec ) { config.testsOrTags.push_back( _testSpec ); }
|
|
|
|
|
|
SCENARIO( "New Catch commandline interface", "[cli]" ) {
|
|
|
|
GIVEN( "A built cli parser for Catch" ) {
|
|
Clara::CommandLine<Config> cli;
|
|
|
|
cli.bind( &Config::showHelp )
|
|
.describe( "display usage information" )
|
|
.shortOpt( "?")
|
|
.shortOpt( "h")
|
|
.longOpt( "help" );
|
|
|
|
cli.bind( &Config::listTests )
|
|
.describe( "list all (or matching) test cases" )
|
|
.shortOpt( "l")
|
|
.longOpt( "list" );
|
|
|
|
cli.bind( &Config::listTags )
|
|
.describe( "list all (or matching) tags" )
|
|
.shortOpt( "t")
|
|
.longOpt( "tags" );
|
|
|
|
cli.bind( &Config::showPassingTests )
|
|
.describe( "show passing test output" )
|
|
.shortOpt( "p")
|
|
.longOpt( "passing" );
|
|
|
|
cli.bind( &Config::breakIntoDebugger )
|
|
.describe( "break into debugger on failure" )
|
|
.shortOpt( "b")
|
|
.longOpt( "break" );
|
|
|
|
cli.bind( &Config::noThrow )
|
|
.describe( "Skip exception tests" )
|
|
.shortOpt( "e")
|
|
.longOpt( "nothrow" );
|
|
|
|
cli.bind( &Config::fileName )
|
|
.describe( "output filename" )
|
|
.shortOpt( "o")
|
|
.longOpt( "out" )
|
|
.argName( "filename" );
|
|
|
|
cli.bind( &Config::reporter )
|
|
.describe( "reporter to use - defaults to console" )
|
|
.shortOpt( "r")
|
|
.longOpt( "reporter" )
|
|
.argName( "name[:filename]" );
|
|
|
|
cli.bind( &Config::suiteName )
|
|
.describe( "suite name" )
|
|
.shortOpt( "n")
|
|
.longOpt( "name" )
|
|
.argName( "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" )
|
|
.argName( "number of failures" );
|
|
|
|
cli.bind( &addWarning )
|
|
.describe( "enables warnings" )
|
|
.shortOpt( "w")
|
|
.longOpt( "warn" )
|
|
.argName( "warning name" );
|
|
|
|
cli.bind( &addTestOrTags )
|
|
.describe( "which test or tests to use" )
|
|
.argName( "test name, pattern or tags" );
|
|
|
|
WHEN( "We ask for usage strings" )
|
|
THEN( "It prints the usage strings" )
|
|
std::cout << cli.usage( "CatchTestApp" ) << std::endl;
|
|
|
|
Config config;
|
|
|
|
WHEN( "Multiple flags are combined" ) {
|
|
|
|
CHECK_FALSE( config.showPassingTests );
|
|
CHECK_FALSE( config.noThrow );
|
|
CHECK_FALSE( config.breakIntoDebugger );
|
|
|
|
const char* argv[] = { "test", "-peb" };
|
|
parseInto( cli, argv, config );
|
|
|
|
THEN( "All the flags are set" ) {
|
|
CHECK( config.showPassingTests );
|
|
CHECK( config.noThrow );
|
|
CHECK( config.breakIntoDebugger );
|
|
}
|
|
}
|
|
WHEN( "A flag is set via a nullary method" ) {
|
|
CHECK( config.abortAfter == 0 );
|
|
|
|
const char* argv[] = { "test", "-a" };
|
|
parseInto( cli, argv, config );
|
|
|
|
THEN( "The flag is set" )
|
|
REQUIRE( config.abortAfter == 1 );
|
|
}
|
|
WHEN( "A flag is set via a unary method" ) {
|
|
CHECK( config.abortAfter == 0 );
|
|
|
|
const char* argv[] = { "test", "-x", "2" };
|
|
parseInto( cli, argv, config );
|
|
|
|
THEN( "The flag is set" )
|
|
REQUIRE( config.abortAfter == 2 );
|
|
}
|
|
WHEN( "A positional argument is supplied" ) {
|
|
|
|
const char* argv[] = { "test", "[hello]" };
|
|
parseInto( cli, argv, config );
|
|
|
|
THEN( "The argument is in the testOrTags collection" ) {
|
|
REQUIRE( config.testsOrTags.size() == 1 );
|
|
REQUIRE( config.testsOrTags[0] == "[hello]" );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif
|