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-04-20 20:36:40 +02:00
|
|
|
#include "catch_text.h"
|
2013-03-29 22:55:19 +01:00
|
|
|
#include "catch_console_colour.hpp"
|
2013-03-28 23:13:31 +01:00
|
|
|
|
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 {
|
2013-04-23 19:58:56 +02:00
|
|
|
inline bool matchesFilters( std::vector<TestCaseFilters> const& filters, TestCase const& 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
|
|
|
|
2013-06-07 19:41:22 +02:00
|
|
|
inline std::size_t listTests( Config const& config ) {
|
|
|
|
if( config.filters().empty() )
|
2013-03-28 23:13:31 +01:00
|
|
|
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-06-07 19:41:22 +02:00
|
|
|
if( matchesFilters( config.filters(), *it ) ) {
|
2013-03-29 12:42:10 +01:00
|
|
|
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 ) {
|
2013-06-07 19:41:22 +02:00
|
|
|
if( matchesFilters( config.filters(), *it ) ) {
|
2013-03-28 23:13:31 +01:00
|
|
|
matchedTests++;
|
2013-04-20 20:36:40 +02:00
|
|
|
Text nameWrapper( it->getTestCaseInfo().name,
|
2013-06-07 20:06:30 +02:00
|
|
|
TextAttributes()
|
|
|
|
.setWidth( maxNameLen )
|
|
|
|
.setInitialIndent(2)
|
|
|
|
.setIndent(4) );
|
2013-03-28 23:13:31 +01:00
|
|
|
|
2013-04-20 20:36:40 +02:00
|
|
|
Text tagsWrapper( it->getTestCaseInfo().tagsAsString,
|
2013-06-07 20:06:30 +02:00
|
|
|
TextAttributes()
|
|
|
|
.setWidth( maxTagLen )
|
|
|
|
.setInitialIndent(0)
|
|
|
|
.setIndent( 2 ) );
|
2013-03-28 23:13:31 +01:00
|
|
|
|
|
|
|
for( std::size_t i = 0; i < std::max( nameWrapper.size(), tagsWrapper.size() ); ++i ) {
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour::Code colour = Colour::None;
|
2013-03-29 22:55:19 +01:00
|
|
|
if( it->getTestCaseInfo().isHidden )
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::SecondaryText;
|
2013-03-28 23:13:31 +01:00
|
|
|
std::string nameCol;
|
2013-03-29 22:55:19 +01:00
|
|
|
if( i < nameWrapper.size() ) {
|
2013-03-28 23:13:31 +01:00
|
|
|
nameCol = nameWrapper[i];
|
2013-03-29 22:55:19 +01:00
|
|
|
}
|
|
|
|
else {
|
2013-03-28 23:13:31 +01:00
|
|
|
nameCol = " ...";
|
2013-04-05 08:59:28 +02:00
|
|
|
colour = Colour::SecondaryText;
|
2013-03-29 22:55:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( colour );
|
2013-03-29 22:55:19 +01:00
|
|
|
std::cout << nameCol;
|
|
|
|
}
|
2013-03-29 12:42:10 +01:00
|
|
|
if( i < tagsWrapper.size() && !tagsWrapper[i].empty() ) {
|
2013-03-29 22:55:19 +01:00
|
|
|
if( i == 0 ) {
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( Colour::SecondaryText );
|
2013-03-29 22:55:19 +01:00
|
|
|
std::cout << " " << std::string( maxNameLen - nameCol.size(), '.' ) << " ";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
std::cout << std::string( maxNameLen - nameCol.size(), ' ' ) << " ";
|
|
|
|
}
|
|
|
|
std::cout << tagsWrapper[i];
|
2013-03-29 12:42:10 +01:00
|
|
|
}
|
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-06-07 19:41:22 +02:00
|
|
|
if( config.filters().empty() )
|
2013-06-07 19:56:43 +02:00
|
|
|
std::cout << pluralise( matchedTests, "test case" ) << "\n" << std::endl;
|
2013-03-28 23:13:31 +01:00
|
|
|
else
|
2013-06-07 19:56:43 +02:00
|
|
|
std::cout << pluralise( matchedTests, "matching test case" ) << "\n" << std::endl;
|
2013-06-06 23:54:42 +02:00
|
|
|
return matchedTests;
|
2013-03-28 23:13:31 +01:00
|
|
|
}
|
2013-03-29 12:42:10 +01:00
|
|
|
|
2013-06-07 19:41:22 +02:00
|
|
|
inline std::size_t listTags( Config const& config ) {
|
|
|
|
if( config.filters().empty() )
|
2013-03-29 12:42:10 +01:00
|
|
|
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 ) {
|
2013-06-07 19:41:22 +02:00
|
|
|
if( matchesFilters( config.filters(), *it ) ) {
|
2013-03-29 12:42:10 +01:00
|
|
|
for( std::set<std::string>::const_iterator tagIt = it->getTestCaseInfo().tags.begin(),
|
|
|
|
tagItEnd = it->getTestCaseInfo().tags.end();
|
|
|
|
tagIt != tagItEnd;
|
|
|
|
++tagIt ) {
|
2013-04-05 08:47:36 +02:00
|
|
|
std::string tagName = *tagIt;
|
2013-03-29 12:42:10 +01:00
|
|
|
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++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-05 08:47:36 +02:00
|
|
|
maxTagLen +=4;
|
2013-03-29 12:42:10 +01:00
|
|
|
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 ) {
|
2013-04-20 20:36:40 +02:00
|
|
|
Text wrapper( "[" + countIt->first + "]", TextAttributes()
|
|
|
|
.setIndent(2)
|
|
|
|
.setWidth( maxTagLen ) );
|
2013-03-29 12:42:10 +01:00
|
|
|
std::cout << wrapper;
|
2013-03-29 22:55:19 +01:00
|
|
|
std::size_t dots = 2;
|
2013-03-29 12:42:10 +01:00
|
|
|
if( maxTagLen > wrapper.last().size() )
|
2013-03-29 22:55:19 +01:00
|
|
|
dots += maxTagLen - wrapper.last().size();
|
|
|
|
{
|
2013-04-05 08:59:28 +02:00
|
|
|
Colour colourGuard( Colour::SecondaryText );
|
2013-03-29 22:55:19 +01:00
|
|
|
std::cout << std::string( dots, '.' );
|
|
|
|
}
|
|
|
|
std::cout << countIt->second
|
2013-03-29 12:42:10 +01:00
|
|
|
<< "\n";
|
|
|
|
}
|
2013-06-07 19:56:43 +02:00
|
|
|
std::cout << pluralise( tagCounts.size(), "tag" ) << "\n" << std::endl;
|
2013-06-06 23:54:42 +02:00
|
|
|
return tagCounts.size();
|
2013-03-29 12:42:10 +01:00
|
|
|
}
|
2013-03-28 23:13:31 +01:00
|
|
|
|
2013-06-07 19:41:22 +02:00
|
|
|
inline std::size_t listReporters( Config const& /*config*/ ) {
|
2013-03-28 23:13:31 +01:00
|
|
|
std::cout << "Available reports:\n";
|
|
|
|
IReporterRegistry::FactoryMap const& factories = getRegistryHub().getReporterRegistry().getFactories();
|
2013-06-07 19:56:43 +02:00
|
|
|
IReporterRegistry::FactoryMap::const_iterator itBegin = factories.begin(), itEnd = factories.end(), it;
|
|
|
|
std::size_t maxNameLen = 0;
|
|
|
|
for(it = itBegin; it != itEnd; ++it )
|
|
|
|
maxNameLen = (std::max)( maxNameLen, it->first.size() );
|
|
|
|
|
|
|
|
for(it = itBegin; it != itEnd; ++it ) {
|
|
|
|
Text wrapper( it->second->getDescription(), TextAttributes()
|
|
|
|
.setInitialIndent( 0 )
|
|
|
|
.setIndent( 7+maxNameLen )
|
|
|
|
.setWidth( CATCH_CONFIG_CONSOLE_WIDTH - maxNameLen-8 ) );
|
|
|
|
std::cout << " "
|
|
|
|
<< it->first
|
|
|
|
<< ":"
|
|
|
|
<< std::string( maxNameLen - it->first.size() + 2, ' ' )
|
|
|
|
<< wrapper << "\n";
|
|
|
|
}
|
2013-03-28 23:13:31 +01:00
|
|
|
std::cout << std::endl;
|
2013-06-06 23:54:42 +02:00
|
|
|
return factories.size();
|
2013-03-28 23:13:31 +01:00
|
|
|
}
|
|
|
|
|
2013-06-07 19:41:22 +02:00
|
|
|
inline Option<std::size_t> list( Config const& config ) {
|
2013-06-06 23:54:42 +02:00
|
|
|
Option<std::size_t> listedCount;
|
2013-06-07 19:41:22 +02:00
|
|
|
if( config.listTests() )
|
2013-06-06 23:54:42 +02:00
|
|
|
listedCount = listedCount.valueOr(0) + listTests( config );
|
2013-06-07 19:41:22 +02:00
|
|
|
if( config.listTags() )
|
2013-06-06 23:54:42 +02:00
|
|
|
listedCount = listedCount.valueOr(0) + listTags( config );
|
2013-06-07 19:41:22 +02:00
|
|
|
if( config.listReporters() )
|
2013-06-06 23:54:42 +02:00
|
|
|
listedCount = listedCount.valueOr(0) + listReporters( config );
|
|
|
|
return listedCount;
|
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
|