2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 5/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_LIST_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_LIST_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_commandline.hpp"
|
2013-03-28 23:13:31 +01:00
|
|
|
#include "catch_line_wrap.h"
|
|
|
|
|
2010-11-11 21:42:16 +01:00
|
|
|
#include <limits>
|
2013-03-28 23:13:31 +01:00
|
|
|
#include <algorithm>
|
2010-11-11 21:56:38 +01:00
|
|
|
|
2012-05-16 00:58:23 +02:00
|
|
|
namespace Catch {
|
2012-11-22 20:17:20 +01:00
|
|
|
inline bool matchesFilters( const std::vector<TestCaseFilters>& filters, const TestCase& testCase ) {
|
2012-08-23 21:08:50 +02:00
|
|
|
std::vector<TestCaseFilters>::const_iterator it = filters.begin();
|
|
|
|
std::vector<TestCaseFilters>::const_iterator itEnd = filters.end();
|
|
|
|
for(; it != itEnd; ++it )
|
|
|
|
if( !it->shouldInclude( testCase ) )
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2013-03-28 23:13:31 +01:00
|
|
|
|
|
|
|
inline void listTests( const ConfigData& config ) {
|
|
|
|
if( config.filters.empty() )
|
|
|
|
std::cout << "All available test cases:\n";
|
|
|
|
else
|
|
|
|
std::cout << "Matching test cases:\n";
|
|
|
|
std::vector<TestCase> const& allTests = getRegistryHub().getTestCaseRegistry().getAllTests();
|
|
|
|
std::vector<TestCase>::const_iterator it = allTests.begin(), itEnd = allTests.end();
|
|
|
|
|
|
|
|
// First pass - get max tags
|
|
|
|
std::size_t maxTagLen = 0;
|
|
|
|
std::size_t maxNameLen = 0;
|
|
|
|
for(; it != itEnd; ++it ) {
|
2013-03-29 12:42:10 +01:00
|
|
|
if( matchesFilters( config.filters, *it ) ) {
|
|
|
|
maxTagLen = (std::max)( it->getTestCaseInfo().tagsAsString.size(), maxTagLen );
|
|
|
|
maxNameLen = (std::max)( it->getTestCaseInfo().name.size(), maxNameLen );
|
|
|
|
}
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2012-05-16 00:58:23 +02:00
|
|
|
|
2013-03-28 23:13:31 +01:00
|
|
|
// Try to fit everything in. If not shrink tag column first, down to 30
|
|
|
|
// then shrink name column until it all fits (strings will be wrapped within column)
|
|
|
|
while( maxTagLen + maxNameLen > CATCH_CONFIG_CONSOLE_WIDTH-5 ) {
|
|
|
|
if( maxTagLen > 30 )
|
|
|
|
--maxTagLen;
|
2012-08-23 21:08:50 +02:00
|
|
|
else
|
2013-03-28 23:13:31 +01:00
|
|
|
--maxNameLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t matchedTests = 0;
|
|
|
|
for( it = allTests.begin(); it != itEnd; ++it ) {
|
|
|
|
if( matchesFilters( config.filters, *it ) ) {
|
|
|
|
matchedTests++;
|
|
|
|
// !TBD: consider listAs()
|
|
|
|
LineWrapper nameWrapper;
|
|
|
|
nameWrapper.setRight( maxNameLen ).setIndent( 2 ).wrap( it->getTestCaseInfo().name );
|
|
|
|
|
|
|
|
LineWrapper tagsWrapper;
|
|
|
|
tagsWrapper.setRight( maxTagLen ).wrap( it->getTestCaseInfo().tagsAsString );
|
|
|
|
|
|
|
|
for( std::size_t i = 0; i < std::max( nameWrapper.size(), tagsWrapper.size() ); ++i ) {
|
|
|
|
std::string nameCol;
|
|
|
|
if( i < nameWrapper.size() )
|
|
|
|
nameCol = nameWrapper[i];
|
|
|
|
else
|
|
|
|
nameCol = " ...";
|
2013-03-29 12:42:10 +01:00
|
|
|
std::cout << nameCol;
|
|
|
|
if( i < tagsWrapper.size() && !tagsWrapper[i].empty() ) {
|
|
|
|
if( i == 0 )
|
|
|
|
std::cout << " " << std::string( maxNameLen - nameCol.size(), '.' ) << " " << tagsWrapper[i];
|
|
|
|
else
|
|
|
|
std::cout << std::string( maxNameLen - nameCol.size(), ' ' ) << " " << tagsWrapper[i];
|
|
|
|
}
|
2013-03-28 23:13:31 +01:00
|
|
|
std::cout << "\n";
|
2012-08-23 21:08:50 +02:00
|
|
|
}
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
}
|
2013-03-28 23:13:31 +01:00
|
|
|
if( config.filters.empty() )
|
|
|
|
std::cout << pluralise( matchedTests, "test case" ) << std::endl;
|
|
|
|
else
|
|
|
|
std::cout << pluralise( matchedTests, "matching test case" ) << std::endl;
|
|
|
|
}
|
2013-03-29 12:42:10 +01:00
|
|
|
|
|
|
|
inline void listTags( const ConfigData& config ) {
|
|
|
|
if( config.filters.empty() )
|
|
|
|
std::cout << "All available tags:\n";
|
|
|
|
else
|
|
|
|
std::cout << "Matching tags:\n";
|
|
|
|
std::vector<TestCase> const& allTests = getRegistryHub().getTestCaseRegistry().getAllTests();
|
|
|
|
std::vector<TestCase>::const_iterator it = allTests.begin(), itEnd = allTests.end();
|
|
|
|
|
|
|
|
std::map<std::string, int> tagCounts;
|
|
|
|
|
|
|
|
std::size_t maxTagLen = 0;
|
|
|
|
|
|
|
|
for(; it != itEnd; ++it ) {
|
|
|
|
if( matchesFilters( config.filters, *it ) ) {
|
|
|
|
for( std::set<std::string>::const_iterator tagIt = it->getTestCaseInfo().tags.begin(),
|
|
|
|
tagItEnd = it->getTestCaseInfo().tags.end();
|
|
|
|
tagIt != tagItEnd;
|
|
|
|
++tagIt ) {
|
|
|
|
std::string tagName = "[" + *tagIt + "]";
|
|
|
|
maxTagLen = (std::max)( maxTagLen, tagName.size() );
|
|
|
|
std::map<std::string, int>::iterator countIt = tagCounts.find( tagName );
|
|
|
|
if( countIt == tagCounts.end() )
|
|
|
|
tagCounts.insert( std::make_pair( tagName, 1 ) );
|
|
|
|
else
|
|
|
|
countIt->second++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
maxTagLen +=2;
|
|
|
|
if( maxTagLen > CATCH_CONFIG_CONSOLE_WIDTH-10 )
|
|
|
|
maxTagLen = CATCH_CONFIG_CONSOLE_WIDTH-10;
|
|
|
|
|
|
|
|
for( std::map<std::string, int>::const_iterator countIt = tagCounts.begin(), countItEnd = tagCounts.end();
|
|
|
|
countIt != countItEnd;
|
|
|
|
++countIt ) {
|
|
|
|
LineWrapper wrapper;
|
|
|
|
wrapper.setIndent(2).setRight( maxTagLen ).wrap( countIt->first );
|
|
|
|
|
|
|
|
std::cout << wrapper;
|
|
|
|
if( maxTagLen > wrapper.last().size() )
|
|
|
|
std::cout << std::string( maxTagLen - wrapper.last().size(), '.' );
|
|
|
|
std::cout << ".. "
|
|
|
|
<< countIt->second
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
std::cout << pluralise( tagCounts.size(), "tag" ) << std::endl;
|
|
|
|
}
|
2013-03-28 23:13:31 +01:00
|
|
|
|
|
|
|
inline void listReporters( const ConfigData& /*config*/ ) {
|
|
|
|
std::cout << "Available reports:\n";
|
|
|
|
IReporterRegistry::FactoryMap const& factories = getRegistryHub().getReporterRegistry().getFactories();
|
|
|
|
IReporterRegistry::FactoryMap::const_iterator it = factories.begin(), itEnd = factories.end();
|
|
|
|
for(; it != itEnd; ++it ) {
|
|
|
|
// !TBD: consider listAs()
|
|
|
|
std::cout << "\t" << it->first << "\n\t\t'" << it->second->getDescription() << "'\n";
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2013-03-28 23:13:31 +01:00
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void list( const ConfigData& config ) {
|
|
|
|
if( config.listSpec & List::Tests )
|
|
|
|
listTests( config );
|
2013-03-29 12:42:10 +01:00
|
|
|
if( config.listSpec & List::Tags )
|
|
|
|
listTags( config );
|
|
|
|
if( config.listSpec & List::Reports )
|
2013-03-28 23:13:31 +01:00
|
|
|
listReporters( config );
|
2013-03-29 12:42:10 +01:00
|
|
|
if( ( config.listSpec & List::All ) == 0 )
|
2013-03-28 23:13:31 +01:00
|
|
|
throw std::logic_error( "Unknown list type" );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
2010-11-11 21:42:16 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_LIST_HPP_INCLUDED
|