| 
									
										
										
										
											2010-11-09 23:24:00 +00: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)
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 14:25:38 +02:00
										 |  |  | #include "catch_list.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "catch_interfaces_registry_hub.h"
 | 
					
						
							|  |  |  | #include "catch_interfaces_reporter.h"
 | 
					
						
							|  |  |  | #include "catch_interfaces_testcase.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 16:44:02 +02:00
										 |  |  | #include "catch_stream.h"
 | 
					
						
							| 
									
										
										
										
											2017-07-25 21:57:35 +02:00
										 |  |  | #include "catch_text.h"
 | 
					
						
							| 
									
										
										
										
											2017-07-18 20:27:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-07 11:24:33 +01:00
										 |  |  | #include "catch_console_colour.h"
 | 
					
						
							|  |  |  | #include "catch_test_spec_parser.h"
 | 
					
						
							| 
									
										
										
										
											2017-07-20 19:50:47 +01:00
										 |  |  | #include "catch_tostring.h"
 | 
					
						
							| 
									
										
										
										
											2017-07-25 21:57:35 +02:00
										 |  |  | #include "catch_string_manip.h"
 | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 20:42:16 +00:00
										 |  |  | #include <limits>
 | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  | #include <algorithm>
 | 
					
						
							| 
									
										
										
										
											2017-07-10 14:25:38 +02:00
										 |  |  | #include <iomanip>
 | 
					
						
							| 
									
										
										
										
											2010-11-11 20:56:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-15 23:58:23 +01:00
										 |  |  | namespace Catch { | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 14:25:38 +02:00
										 |  |  |     std::size_t listTests( Config const& config ) { | 
					
						
							| 
									
										
										
										
											2014-05-16 18:24:07 +01:00
										 |  |  |         TestSpec testSpec = config.testSpec(); | 
					
						
							| 
									
										
										
										
											2018-02-09 00:18:32 +02:00
										 |  |  |         if( config.hasTestFilters() ) | 
					
						
							| 
									
										
										
										
											2014-10-02 19:08:19 +01:00
										 |  |  |             Catch::cout() << "Matching test cases:\n"; | 
					
						
							| 
									
										
										
										
											2014-05-16 18:24:07 +01:00
										 |  |  |         else { | 
					
						
							| 
									
										
										
										
											2014-10-02 19:08:19 +01:00
										 |  |  |             Catch::cout() << "All available test cases:\n"; | 
					
						
							| 
									
										
										
										
											2014-05-16 18:24:07 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-18 20:27:42 +01:00
										 |  |  |         auto matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config ); | 
					
						
							| 
									
										
										
										
											2017-04-25 11:06:52 +01:00
										 |  |  |         for( auto const& testCaseInfo : matchedTestCases ) { | 
					
						
							| 
									
										
										
										
											2014-07-03 08:09:57 +01:00
										 |  |  |             Colour::Code colour = testCaseInfo.isHidden() | 
					
						
							| 
									
										
										
										
											2014-04-15 18:44:37 +01:00
										 |  |  |                 ? Colour::SecondaryText | 
					
						
							|  |  |  |                 : Colour::None; | 
					
						
							|  |  |  |             Colour colourGuard( colour ); | 
					
						
							| 
									
										
										
										
											2013-11-12 18:59:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-18 20:27:42 +01:00
										 |  |  |             Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n"; | 
					
						
							| 
									
										
										
										
											2017-06-20 22:14:38 +03:00
										 |  |  |             if( config.verbosity() >= Verbosity::High ) { | 
					
						
							| 
									
										
										
										
											2017-07-20 19:50:47 +01:00
										 |  |  |                 Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::endl; | 
					
						
							| 
									
										
										
										
											2017-06-20 22:14:38 +03:00
										 |  |  |                 std::string description = testCaseInfo.description; | 
					
						
							| 
									
										
										
										
											2017-07-25 15:45:50 +02:00
										 |  |  |                 if( description.empty() ) | 
					
						
							| 
									
										
										
										
											2017-06-20 22:14:38 +03:00
										 |  |  |                     description = "(NO DESCRIPTION)"; | 
					
						
							| 
									
										
										
										
											2017-07-20 19:50:47 +01:00
										 |  |  |                 Catch::cout() << Column( description ).indent(4) << std::endl; | 
					
						
							| 
									
										
										
										
											2017-06-20 22:14:38 +03:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2014-04-15 18:44:37 +01:00
										 |  |  |             if( !testCaseInfo.tags.empty() ) | 
					
						
							| 
									
										
										
										
											2017-07-27 22:31:27 +02:00
										 |  |  |                 Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) << "\n"; | 
					
						
							| 
									
										
										
										
											2014-04-15 18:44:37 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-11-12 18:59:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-09 00:18:32 +02:00
										 |  |  |         if( !config.hasTestFilters() ) | 
					
						
							| 
									
										
										
										
											2017-07-18 20:27:42 +01:00
										 |  |  |             Catch::cout() << pluralise( matchedTestCases.size(), "test case" ) << '\n' << std::endl; | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2017-07-18 20:27:42 +01:00
										 |  |  |             Catch::cout() << pluralise( matchedTestCases.size(), "matching test case" ) << '\n' << std::endl; | 
					
						
							|  |  |  |         return matchedTestCases.size(); | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-03 19:14:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 14:25:38 +02:00
										 |  |  |     std::size_t listTestsNamesOnly( Config const& config ) { | 
					
						
							| 
									
										
										
										
											2014-05-16 18:24:07 +01:00
										 |  |  |         TestSpec testSpec = config.testSpec(); | 
					
						
							| 
									
										
										
										
											2013-11-26 20:57:34 +00:00
										 |  |  |         std::size_t matchedTests = 0; | 
					
						
							| 
									
										
										
										
											2015-08-04 23:11:56 +01:00
										 |  |  |         std::vector<TestCase> matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config ); | 
					
						
							| 
									
										
										
										
											2017-04-25 11:06:52 +01:00
										 |  |  |         for( auto const& testCaseInfo : matchedTestCases ) { | 
					
						
							| 
									
										
										
										
											2014-04-15 18:44:37 +01:00
										 |  |  |             matchedTests++; | 
					
						
							| 
									
										
										
										
											2017-01-15 09:41:33 +01:00
										 |  |  |             if( startsWith( testCaseInfo.name, '#' ) ) | 
					
						
							| 
									
										
										
										
											2017-06-20 22:14:38 +03:00
										 |  |  |                Catch::cout() << '"' << testCaseInfo.name << '"'; | 
					
						
							| 
									
										
										
										
											2016-09-27 10:43:03 +01:00
										 |  |  |             else | 
					
						
							| 
									
										
										
										
											2017-06-20 22:14:38 +03:00
										 |  |  |                Catch::cout() << testCaseInfo.name; | 
					
						
							|  |  |  |             if ( config.verbosity() >= Verbosity::High ) | 
					
						
							|  |  |  |                 Catch::cout() << "\t@" << testCaseInfo.lineInfo; | 
					
						
							|  |  |  |             Catch::cout() << std::endl; | 
					
						
							| 
									
										
										
										
											2014-04-15 18:44:37 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-11-26 20:57:34 +00:00
										 |  |  |         return matchedTests; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 14:25:38 +02:00
										 |  |  |     void TagInfo::add( std::string const& spelling ) { | 
					
						
							|  |  |  |         ++count; | 
					
						
							|  |  |  |         spellings.insert( spelling ); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-05-20 19:02:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 14:25:38 +02:00
										 |  |  |     std::string TagInfo::all() const { | 
					
						
							|  |  |  |         std::string out; | 
					
						
							|  |  |  |         for( auto const& spelling : spellings ) | 
					
						
							|  |  |  |             out += "[" + spelling + "]"; | 
					
						
							|  |  |  |         return out; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::size_t listTags( Config const& config ) { | 
					
						
							| 
									
										
										
										
											2014-05-16 18:24:07 +01:00
										 |  |  |         TestSpec testSpec = config.testSpec(); | 
					
						
							| 
									
										
										
										
											2018-02-09 00:18:32 +02:00
										 |  |  |         if( config.hasTestFilters() ) | 
					
						
							| 
									
										
										
										
											2014-10-02 19:08:19 +01:00
										 |  |  |             Catch::cout() << "Tags for matching test cases:\n"; | 
					
						
							| 
									
										
										
										
											2014-05-16 18:24:07 +01:00
										 |  |  |         else { | 
					
						
							| 
									
										
										
										
											2014-10-02 19:08:19 +01:00
										 |  |  |             Catch::cout() << "All available tags:\n"; | 
					
						
							| 
									
										
										
										
											2014-05-16 18:24:07 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-03-29 11:42:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-20 18:03:54 +01:00
										 |  |  |         std::map<std::string, TagInfo> tagCounts; | 
					
						
							| 
									
										
										
										
											2013-07-03 19:14:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 23:11:56 +01:00
										 |  |  |         std::vector<TestCase> matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config ); | 
					
						
							| 
									
										
										
										
											2017-04-25 11:06:52 +01:00
										 |  |  |         for( auto const& testCase : matchedTestCases ) { | 
					
						
							|  |  |  |             for( auto const& tagName : testCase.getTestCaseInfo().tags ) { | 
					
						
							| 
									
										
										
										
											2014-05-20 18:03:54 +01:00
										 |  |  |                 std::string lcaseTagName = toLower( tagName ); | 
					
						
							| 
									
										
										
										
											2017-04-25 11:06:52 +01:00
										 |  |  |                 auto countIt = tagCounts.find( lcaseTagName ); | 
					
						
							| 
									
										
										
										
											2014-04-15 18:44:37 +01:00
										 |  |  |                 if( countIt == tagCounts.end() ) | 
					
						
							| 
									
										
										
										
											2014-05-20 18:03:54 +01:00
										 |  |  |                     countIt = tagCounts.insert( std::make_pair( lcaseTagName, TagInfo() ) ).first; | 
					
						
							|  |  |  |                 countIt->second.add( tagName ); | 
					
						
							| 
									
										
										
										
											2013-03-29 11:42:10 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-03 19:14:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 11:06:52 +01:00
										 |  |  |         for( auto const& tagCount : tagCounts ) { | 
					
						
							| 
									
										
										
										
											2017-11-07 18:01:10 +00:00
										 |  |  |             ReusableStringStream rss; | 
					
						
							|  |  |  |             rss << "  " << std::setw(2) << tagCount.second.count << "  "; | 
					
						
							|  |  |  |             auto str = rss.str(); | 
					
						
							| 
									
										
										
										
											2017-07-18 20:27:42 +01:00
										 |  |  |             auto wrapper = Column( tagCount.second.all() ) | 
					
						
							|  |  |  |                                                     .initialIndent( 0 ) | 
					
						
							| 
									
										
										
										
											2017-11-07 18:01:10 +00:00
										 |  |  |                                                     .indent( str.size() ) | 
					
						
							| 
									
										
										
										
											2017-07-18 20:27:42 +01:00
										 |  |  |                                                     .width( CATCH_CONFIG_CONSOLE_WIDTH-10 ); | 
					
						
							| 
									
										
										
										
											2017-11-07 18:01:10 +00:00
										 |  |  |             Catch::cout() << str << wrapper << '\n'; | 
					
						
							| 
									
										
										
										
											2013-03-29 11:42:10 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-29 23:07:15 +01:00
										 |  |  |         Catch::cout() << pluralise( tagCounts.size(), "tag" ) << '\n' << std::endl; | 
					
						
							| 
									
										
										
										
											2013-06-06 22:54:42 +01:00
										 |  |  |         return tagCounts.size(); | 
					
						
							| 
									
										
										
										
											2013-03-29 11:42:10 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 14:25:38 +02:00
										 |  |  |     std::size_t listReporters( Config const& /*config*/ ) { | 
					
						
							| 
									
										
										
										
											2014-12-19 17:52:33 +00:00
										 |  |  |         Catch::cout() << "Available reporters:\n"; | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  |         IReporterRegistry::FactoryMap const& factories = getRegistryHub().getReporterRegistry().getFactories(); | 
					
						
							| 
									
										
										
										
											2013-06-07 18:56:43 +01:00
										 |  |  |         std::size_t maxNameLen = 0; | 
					
						
							| 
									
										
										
										
											2017-07-25 15:45:50 +02:00
										 |  |  |         for( auto const& factoryKvp : factories ) | 
					
						
							| 
									
										
										
										
											2017-04-25 11:06:52 +01:00
										 |  |  |             maxNameLen = (std::max)( maxNameLen, factoryKvp.first.size() ); | 
					
						
							| 
									
										
										
										
											2013-07-03 19:14:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-25 15:45:50 +02:00
										 |  |  |         for( auto const& factoryKvp : factories ) { | 
					
						
							| 
									
										
										
										
											2017-07-18 20:27:42 +01:00
										 |  |  |             Catch::cout() | 
					
						
							| 
									
										
										
										
											2017-07-20 23:32:35 +01:00
										 |  |  |                     << Column( factoryKvp.first + ":" ) | 
					
						
							|  |  |  |                             .indent(2) | 
					
						
							|  |  |  |                             .width( 5+maxNameLen ) | 
					
						
							|  |  |  |                     +  Column( factoryKvp.second->getDescription() ) | 
					
						
							|  |  |  |                             .initialIndent(0) | 
					
						
							|  |  |  |                             .indent(2) | 
					
						
							|  |  |  |                             .width( CATCH_CONFIG_CONSOLE_WIDTH - maxNameLen-8 ) | 
					
						
							|  |  |  |                     << "\n"; | 
					
						
							| 
									
										
										
										
											2013-06-07 18:56:43 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-10-02 19:08:19 +01:00
										 |  |  |         Catch::cout() << std::endl; | 
					
						
							| 
									
										
										
										
											2013-06-06 22:54:42 +01:00
										 |  |  |         return factories.size(); | 
					
						
							| 
									
										
										
										
											2013-03-28 22:13:31 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-03 19:14:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-10 14:25:38 +02:00
										 |  |  |     Option<std::size_t> list( Config const& config ) { | 
					
						
							| 
									
										
										
										
											2013-06-06 22:54:42 +01:00
										 |  |  |         Option<std::size_t> listedCount; | 
					
						
							| 
									
										
										
										
											2013-06-07 18:41:22 +01:00
										 |  |  |         if( config.listTests() ) | 
					
						
							| 
									
										
										
										
											2013-06-06 22:54:42 +01:00
										 |  |  |             listedCount = listedCount.valueOr(0) + listTests( config ); | 
					
						
							| 
									
										
										
										
											2013-11-26 20:57:34 +00:00
										 |  |  |         if( config.listTestNamesOnly() ) | 
					
						
							|  |  |  |             listedCount = listedCount.valueOr(0) + listTestsNamesOnly( config ); | 
					
						
							| 
									
										
										
										
											2013-06-07 18:41:22 +01:00
										 |  |  |         if( config.listTags() ) | 
					
						
							| 
									
										
										
										
											2013-06-06 22:54:42 +01:00
										 |  |  |             listedCount = listedCount.valueOr(0) + listTags( config ); | 
					
						
							| 
									
										
										
										
											2013-06-07 18:41:22 +01:00
										 |  |  |         if( config.listReporters() ) | 
					
						
							| 
									
										
										
										
											2013-06-06 22:54:42 +01:00
										 |  |  |             listedCount = listedCount.valueOr(0) + listReporters( config ); | 
					
						
							|  |  |  |         return listedCount; | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-03 19:14:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-09 23:24:00 +00:00
										 |  |  | } // end namespace Catch
 |