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