2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* 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)
|
|
|
|
*/
|
2013-11-19 20:03:11 +01:00
|
|
|
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
|
|
#include "catch.hpp"
|
2015-08-07 18:28:48 +02:00
|
|
|
#include "../include/reporters/catch_reporter_teamcity.hpp"
|
2017-02-22 13:28:36 +01:00
|
|
|
#include "../include/reporters/catch_reporter_tap.hpp"
|
|
|
|
#include "../include/reporters/catch_reporter_automake.hpp"
|
|
|
|
|
2013-11-19 20:03:11 +01:00
|
|
|
|
2014-06-30 08:33:17 +02:00
|
|
|
// Some example tag aliases
|
|
|
|
CATCH_REGISTER_TAG_ALIAS( "[@nhf]", "[failing]~[.]" )
|
|
|
|
CATCH_REGISTER_TAG_ALIAS( "[@tricky]", "[tricky]~[.]" )
|
|
|
|
|
|
|
|
|
2012-08-16 19:48:32 +02:00
|
|
|
#ifdef __clang__
|
2015-07-03 19:27:36 +02:00
|
|
|
# pragma clang diagnostic ignored "-Wpadded"
|
|
|
|
# pragma clang diagnostic ignored "-Wweak-vtables"
|
|
|
|
# pragma clang diagnostic ignored "-Wc++98-compat"
|
2012-08-16 19:48:32 +02:00
|
|
|
#endif
|
2012-08-13 08:46:10 +02:00
|
|
|
|
2014-06-30 08:33:17 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
//template<size_t size>
|
|
|
|
//void parseIntoConfig( const char * (&argv)[size], Catch::ConfigData& config ) {
|
|
|
|
// auto parser = Catch::makeCommandLineParser();
|
|
|
|
// parser.parseInto( Catch::Clara::argsToVector( size, argv ), config );
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//template<size_t size>
|
|
|
|
//std::string parseIntoConfigAndReturnError( const char * (&argv)[size], Catch::ConfigData& config ) {
|
|
|
|
// try {
|
|
|
|
// parseIntoConfig( argv, config );
|
|
|
|
// FAIL( "expected exception" );
|
|
|
|
// }
|
|
|
|
// catch( std::exception& ex ) {
|
|
|
|
// return ex.what();
|
|
|
|
// }
|
|
|
|
// return "";
|
|
|
|
//}
|
|
|
|
//
|
2017-04-25 12:41:30 +02:00
|
|
|
inline Catch::TestCase fakeTestCase( const char* name, const char* desc = "" ){ return Catch::makeTestCase( nullptr, "", name, desc, CATCH_INTERNAL_LINEINFO ); }
|
2012-08-23 21:08:50 +02:00
|
|
|
|
2013-06-04 09:37:28 +02:00
|
|
|
TEST_CASE( "Process can be configured on command line", "[config][command-line]" ) {
|
2012-06-08 09:22:56 +02:00
|
|
|
|
2017-08-09 13:10:14 +02:00
|
|
|
#ifndef CATCH_CONFIG_DISABLE_MATCHERS
|
2015-11-05 19:10:33 +01:00
|
|
|
using namespace Catch::Matchers;
|
2017-08-09 13:10:14 +02:00
|
|
|
#endif
|
2015-11-05 19:10:33 +01:00
|
|
|
|
2012-06-08 09:22:56 +02:00
|
|
|
Catch::ConfigData config;
|
2017-06-13 00:04:24 +02:00
|
|
|
auto cli = Catch::makeCommandLineParser(config);
|
2012-05-31 20:40:26 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("empty args don't cause a crash") {
|
|
|
|
auto result = cli.parse({""});
|
|
|
|
CHECK(result);
|
|
|
|
CHECK(config.processName == "");
|
2017-03-13 12:00:58 +01:00
|
|
|
}
|
|
|
|
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("default - no arguments") {
|
|
|
|
auto result = cli.parse({"test"});
|
|
|
|
CHECK(result);
|
|
|
|
CHECK(config.processName == "test");
|
|
|
|
CHECK(config.shouldDebugBreak == false);
|
|
|
|
CHECK(config.abortAfter == -1);
|
|
|
|
CHECK(config.noThrow == false);
|
|
|
|
CHECK(config.reporterNames.empty());
|
2012-05-31 20:40:26 +02:00
|
|
|
}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("test lists") {
|
|
|
|
SECTION("1 test", "Specify one test case using") {
|
|
|
|
auto result = cli.parse({"test", "test1"});
|
|
|
|
CHECK(result);
|
2012-08-23 21:08:50 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
Catch::Config cfg(config);
|
|
|
|
REQUIRE(cfg.testSpec().matches(fakeTestCase("notIncluded")) == false);
|
|
|
|
REQUIRE(cfg.testSpec().matches(fakeTestCase("test1")));
|
2012-08-23 21:08:50 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("Specify one test case exclusion using exclude:") {
|
|
|
|
auto result = cli.parse({"test", "exclude:test1"});
|
|
|
|
CHECK(result);
|
2012-08-23 21:08:50 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
Catch::Config cfg(config);
|
|
|
|
REQUIRE(cfg.testSpec().matches(fakeTestCase("test1")) == false);
|
|
|
|
REQUIRE(cfg.testSpec().matches(fakeTestCase("alwaysIncluded")));
|
2012-05-31 20:40:26 +02:00
|
|
|
}
|
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("Specify one test case exclusion using ~") {
|
|
|
|
auto result = cli.parse({"test", "~test1"});
|
|
|
|
CHECK(result);
|
2012-08-24 20:01:35 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
Catch::Config cfg(config);
|
|
|
|
REQUIRE(cfg.testSpec().matches(fakeTestCase("test1")) == false);
|
|
|
|
REQUIRE(cfg.testSpec().matches(fakeTestCase("alwaysIncluded")));
|
2012-08-24 20:01:35 +02:00
|
|
|
}
|
2012-05-31 20:40:26 +02:00
|
|
|
|
|
|
|
}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("reporter") {
|
|
|
|
SECTION("-r/console") {
|
|
|
|
CHECK(cli.parse({"test", "-r", "console"}));
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.reporterNames[0] == "console");
|
2012-05-31 20:40:26 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("-r/xml") {
|
|
|
|
CHECK(cli.parse({"test", "-r", "xml"}));
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.reporterNames[0] == "xml");
|
2015-08-05 20:02:17 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("-r xml and junit") {
|
|
|
|
CHECK(cli.parse({"test", "-r", "xml", "-r", "junit"}));
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.reporterNames.size() == 2);
|
|
|
|
REQUIRE(config.reporterNames[0] == "xml");
|
|
|
|
REQUIRE(config.reporterNames[1] == "junit");
|
2012-05-31 20:40:26 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("--reporter/junit") {
|
|
|
|
CHECK(cli.parse({"test", "--reporter", "junit"}));
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.reporterNames[0] == "junit");
|
2012-05-31 20:40:26 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("debugger") {
|
|
|
|
SECTION("-b") {
|
|
|
|
CHECK(cli.parse({"test", "-b"}));
|
|
|
|
|
|
|
|
REQUIRE(config.shouldDebugBreak == true);
|
2012-05-31 20:40:26 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("--break") {
|
|
|
|
CHECK(cli.parse({"test", "--break"}));
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.shouldDebugBreak);
|
2012-05-31 20:40:26 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2012-06-01 20:40:27 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("abort") {
|
|
|
|
SECTION("-a aborts after first failure") {
|
|
|
|
CHECK(cli.parse({"test", "-a"}));
|
2012-06-01 20:40:27 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.abortAfter == 1);
|
2012-06-01 20:40:27 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("-x 2 aborts after two failures") {
|
|
|
|
CHECK(cli.parse({"test", "-x", "2"}));
|
|
|
|
|
|
|
|
REQUIRE(config.abortAfter == 2);
|
2012-07-28 21:22:40 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("-x must be numeric") {
|
|
|
|
auto result = cli.parse({"test", "-x", "oops"});
|
|
|
|
CHECK(!result);
|
|
|
|
|
2017-08-09 13:10:14 +02:00
|
|
|
#ifndef CATCH_CONFIG_DISABLE_MATCHERS
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE_THAT(result.errorMessage(), Contains("convert") && Contains("oops"));
|
2017-08-09 13:10:14 +02:00
|
|
|
#endif
|
2012-06-01 20:40:27 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("nothrow") {
|
|
|
|
SECTION("-e") {
|
|
|
|
CHECK(cli.parse({"test", "-e"}));
|
2012-06-05 21:50:47 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.noThrow);
|
2012-06-05 21:50:47 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("--nothrow") {
|
|
|
|
CHECK(cli.parse({"test", "--nothrow"}));
|
2012-06-05 21:50:47 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.noThrow);
|
2012-06-05 21:50:47 +02:00
|
|
|
}
|
|
|
|
}
|
2012-09-26 19:38:26 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("output filename") {
|
|
|
|
SECTION("-o filename") {
|
|
|
|
CHECK(cli.parse({"test", "-o", "filename.ext"}));
|
2012-09-26 19:38:26 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.outputFilename == "filename.ext");
|
2012-09-26 19:38:26 +02:00
|
|
|
}
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("--out") {
|
|
|
|
CHECK(cli.parse({"test", "--out", "filename.ext"}));
|
2012-09-26 19:38:26 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
REQUIRE(config.outputFilename == "filename.ext");
|
2012-09-26 19:38:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION("combinations") {
|
|
|
|
SECTION("Single character flags can be combined") {
|
|
|
|
CHECK(cli.parse({"test", "-abe"}));
|
2012-06-01 20:40:27 +02:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
CHECK(config.abortAfter == 1);
|
|
|
|
CHECK(config.shouldDebugBreak);
|
|
|
|
CHECK(config.noThrow == true);
|
2012-06-01 20:40:27 +02:00
|
|
|
}
|
2015-02-11 21:40:20 +01:00
|
|
|
}
|
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
|
|
|
|
SECTION( "use-colour") {
|
2017-01-26 23:13:12 +01:00
|
|
|
|
2016-02-24 19:51:01 +01:00
|
|
|
using Catch::UseColour;
|
2017-01-26 23:13:12 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION( "without option" ) {
|
|
|
|
CHECK(cli.parse({"test"}));
|
2017-01-26 23:13:12 +01:00
|
|
|
|
2016-02-24 19:51:01 +01:00
|
|
|
REQUIRE( config.useColour == UseColour::Auto );
|
|
|
|
}
|
2015-02-11 21:40:20 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION( "auto" ) {
|
|
|
|
CHECK(cli.parse({"test", "--use-colour", "auto"}));
|
2016-02-24 19:51:01 +01:00
|
|
|
|
|
|
|
REQUIRE( config.useColour == UseColour::Auto );
|
2015-02-11 21:40:20 +01:00
|
|
|
}
|
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION( "yes" ) {
|
|
|
|
CHECK(cli.parse({"test", "--use-colour", "yes"}));
|
2017-01-26 23:13:12 +01:00
|
|
|
|
2016-02-24 19:51:01 +01:00
|
|
|
REQUIRE( config.useColour == UseColour::Yes );
|
|
|
|
}
|
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION( "no" ) {
|
|
|
|
CHECK(cli.parse({"test", "--use-colour", "no"}));
|
2017-01-26 23:13:12 +01:00
|
|
|
|
2016-02-24 19:51:01 +01:00
|
|
|
REQUIRE( config.useColour == UseColour::No );
|
|
|
|
}
|
2015-02-11 21:40:20 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
SECTION( "error" ) {
|
|
|
|
auto result = cli.parse({"test", "--use-colour", "wrong"});
|
|
|
|
CHECK( !result );
|
2017-08-09 13:10:14 +02:00
|
|
|
#ifndef CATCH_CONFIG_DISABLE_MATCHERS
|
2017-06-13 00:04:24 +02:00
|
|
|
CHECK_THAT( result.errorMessage(), Contains( "colour mode must be one of" ) );
|
2017-08-09 13:10:14 +02:00
|
|
|
#endif
|
2015-02-11 21:40:20 +01:00
|
|
|
}
|
|
|
|
}
|
2012-05-31 20:40:26 +02:00
|
|
|
}
|
2012-08-16 19:48:32 +02:00
|
|
|
|
2013-03-25 10:20:51 +01:00
|
|
|
|
2017-06-13 00:04:24 +02:00
|
|
|
TEST_CASE( "replaceInPlace" ) {
|
2014-12-19 19:16:19 +01:00
|
|
|
std::string letters = "abcdefcg";
|
|
|
|
SECTION( "replace single char" ) {
|
2017-07-21 00:09:50 +02:00
|
|
|
CHECK( Catch::replaceInPlace( letters, "b", "z" ) );
|
2014-12-19 19:16:19 +01:00
|
|
|
CHECK( letters == "azcdefcg" );
|
|
|
|
}
|
|
|
|
SECTION( "replace two chars" ) {
|
2017-07-21 00:09:50 +02:00
|
|
|
CHECK( Catch::replaceInPlace( letters, "c", "z" ) );
|
2014-12-19 19:16:19 +01:00
|
|
|
CHECK( letters == "abzdefzg" );
|
|
|
|
}
|
|
|
|
SECTION( "replace first char" ) {
|
2017-07-21 00:09:50 +02:00
|
|
|
CHECK( Catch::replaceInPlace( letters, "a", "z" ) );
|
2014-12-19 19:16:19 +01:00
|
|
|
CHECK( letters == "zbcdefcg" );
|
|
|
|
}
|
|
|
|
SECTION( "replace last char" ) {
|
2017-07-21 00:09:50 +02:00
|
|
|
CHECK( Catch::replaceInPlace( letters, "g", "z" ) );
|
2014-12-19 19:16:19 +01:00
|
|
|
CHECK( letters == "abcdefcz" );
|
|
|
|
}
|
|
|
|
SECTION( "replace all chars" ) {
|
2017-07-21 00:09:50 +02:00
|
|
|
CHECK( Catch::replaceInPlace( letters, letters, "replaced" ) );
|
2014-12-19 19:16:19 +01:00
|
|
|
CHECK( letters == "replaced" );
|
|
|
|
}
|
|
|
|
SECTION( "replace no chars" ) {
|
2017-07-21 00:09:50 +02:00
|
|
|
CHECK_FALSE( Catch::replaceInPlace( letters, "x", "z" ) );
|
2014-12-19 19:16:19 +01:00
|
|
|
CHECK( letters == letters );
|
|
|
|
}
|
2014-12-30 19:24:31 +01:00
|
|
|
SECTION( "escape '" ) {
|
|
|
|
std::string s = "didn't";
|
2017-07-21 00:09:50 +02:00
|
|
|
CHECK( Catch::replaceInPlace( s, "'", "|'" ) );
|
2014-12-30 19:24:31 +01:00
|
|
|
CHECK( s == "didn|'t" );
|
|
|
|
}
|
2014-12-19 19:16:19 +01:00
|
|
|
}
|
|
|
|
|
2015-11-20 17:54:07 +01:00
|
|
|
|
|
|
|
inline void manuallyRegisteredTestFunction() {
|
|
|
|
SUCCEED( "was called" );
|
|
|
|
}
|
|
|
|
struct AutoTestReg {
|
|
|
|
AutoTestReg() {
|
2017-07-13 10:20:37 +02:00
|
|
|
REGISTER_TEST_CASE( manuallyRegisteredTestFunction, "ManuallyRegistered" );
|
2015-11-20 17:54:07 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
AutoTestReg autoTestReg;
|