mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 13:19:55 +01:00
e1e6872c4c
This is both a really big and a really small commit. It is small in that it only contains renaming, moving and modification of include directives caused by this. It is really big in the obvious way of touching something like 200 files. The new rules for naming files is simple: headers use the `.hpp` extension. The rules for physical file layout is still kinda in progress, but the basics are also simple: * Significant parts of functionality get their own subfolder * Benchmarking is in `catch2/benchmark` * Matchers are in `catch2/matchers` * Generators are in `catch2/generators` * Reporters are in `catch2/reporters` * Baseline testing facilities are in `catch2/` * Various top level folders also contain `internal` subfolder, with files that users probably do not want to include directly, at least not until they have to write something like their own reporter. * The exact files in these subfolders is likely to change later on Note that while some includes were cleaned up in this commit, it is only the low hanging fruit and further cleanup using automatic tooling will happen later. Also note that various include guards, copyright notices and file headers will also be standardized later, rather than in this commit.
68 lines
2.9 KiB
C++
68 lines
2.9 KiB
C++
#include <catch2/catch_test_macros.hpp>
|
|
#include <catch2/matchers/catch_matchers_vector.hpp>
|
|
#include <catch2/internal/catch_string_manip.hpp>
|
|
|
|
static const char * const no_whitespace = "There is no extra whitespace here";
|
|
static const char * const leading_whitespace = " \r \t\n There is no extra whitespace here";
|
|
static const char * const trailing_whitespace = "There is no extra whitespace here \t \n \r ";
|
|
static const char * const whitespace_at_both_ends = " \r\n \t There is no extra whitespace here \t\t\t \n";
|
|
|
|
TEST_CASE("Trim strings", "[string-manip]") {
|
|
using Catch::trim; using Catch::StringRef;
|
|
static_assert(std::is_same<std::string, decltype(trim(std::string{}))>::value, "Trimming std::string should return std::string");
|
|
static_assert(std::is_same<StringRef, decltype(trim(StringRef{}))>::value, "Trimming StringRef should return StringRef");
|
|
|
|
REQUIRE(trim(std::string(no_whitespace)) == no_whitespace);
|
|
REQUIRE(trim(std::string(leading_whitespace)) == no_whitespace);
|
|
REQUIRE(trim(std::string(trailing_whitespace)) == no_whitespace);
|
|
REQUIRE(trim(std::string(whitespace_at_both_ends)) == no_whitespace);
|
|
|
|
REQUIRE(trim(StringRef(no_whitespace)) == StringRef(no_whitespace));
|
|
REQUIRE(trim(StringRef(leading_whitespace)) == StringRef(no_whitespace));
|
|
REQUIRE(trim(StringRef(trailing_whitespace)) == StringRef(no_whitespace));
|
|
REQUIRE(trim(StringRef(whitespace_at_both_ends)) == StringRef(no_whitespace));
|
|
}
|
|
|
|
TEST_CASE("replaceInPlace", "[string-manip]") {
|
|
std::string letters = "abcdefcg";
|
|
SECTION("replace single char") {
|
|
CHECK(Catch::replaceInPlace(letters, "b", "z"));
|
|
CHECK(letters == "azcdefcg");
|
|
}
|
|
SECTION("replace two chars") {
|
|
CHECK(Catch::replaceInPlace(letters, "c", "z"));
|
|
CHECK(letters == "abzdefzg");
|
|
}
|
|
SECTION("replace first char") {
|
|
CHECK(Catch::replaceInPlace(letters, "a", "z"));
|
|
CHECK(letters == "zbcdefcg");
|
|
}
|
|
SECTION("replace last char") {
|
|
CHECK(Catch::replaceInPlace(letters, "g", "z"));
|
|
CHECK(letters == "abcdefcz");
|
|
}
|
|
SECTION("replace all chars") {
|
|
CHECK(Catch::replaceInPlace(letters, letters, "replaced"));
|
|
CHECK(letters == "replaced");
|
|
}
|
|
SECTION("replace no chars") {
|
|
CHECK_FALSE(Catch::replaceInPlace(letters, "x", "z"));
|
|
CHECK(letters == letters);
|
|
}
|
|
SECTION("escape '") {
|
|
std::string s = "didn't";
|
|
CHECK(Catch::replaceInPlace(s, "'", "|'"));
|
|
CHECK(s == "didn|'t");
|
|
}
|
|
}
|
|
|
|
TEST_CASE("splitString", "[string-manip]") {
|
|
using namespace Catch::Matchers;
|
|
using Catch::splitStringRef;
|
|
using Catch::StringRef;
|
|
|
|
CHECK_THAT(splitStringRef("", ','), Equals(std::vector<StringRef>()));
|
|
CHECK_THAT(splitStringRef("abc", ','), Equals(std::vector<StringRef>{"abc"}));
|
|
CHECK_THAT(splitStringRef("abc,def", ','), Equals(std::vector<StringRef>{"abc", "def"}));
|
|
}
|