catch2/tests/SelfTest/IntrospectiveTests/Tag.tests.cpp

72 lines
2.8 KiB
C++
Raw Normal View History

2014-06-30 08:33:17 +02:00
/*
* 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)
*/
#include <catch2/matchers/catch_matchers_string.hpp>
#include <catch2/matchers/catch_matchers_vector.hpp>
#include <catch2/internal/catch_tag_alias_registry.hpp>
#include <catch2/catch_test_macros.hpp>
#include <catch2/catch_test_case_info.hpp>
2014-06-30 08:33:17 +02:00
TEST_CASE( "Tag alias can be registered against tag patterns" ) {
2014-06-30 08:33:17 +02:00
Catch::TagAliasRegistry registry;
registry.add( "[@zzz]", "[one][two]", Catch::SourceLineInfo( "file", 2 ) );
SECTION( "The same tag alias can only be registered once" ) {
2014-06-30 08:33:17 +02:00
try {
registry.add( "[@zzz]", "[one][two]", Catch::SourceLineInfo( "file", 10 ) );
FAIL( "expected exception" );
}
catch( std::exception& ex ) {
std::string what = ex.what();
using namespace Catch::Matchers;
2014-06-30 08:33:17 +02:00
CHECK_THAT( what, Contains( "[@zzz]" ) );
CHECK_THAT( what, Contains( "file" ) );
CHECK_THAT( what, Contains( "2" ) );
CHECK_THAT( what, Contains( "10" ) );
}
}
SECTION( "Tag aliases must be of the form [@name]" ) {
2014-06-30 08:33:17 +02:00
CHECK_THROWS( registry.add( "[no ampersat]", "", Catch::SourceLineInfo( "file", 3 ) ) );
CHECK_THROWS( registry.add( "[the @ is not at the start]", "", Catch::SourceLineInfo( "file", 3 ) ) );
CHECK_THROWS( registry.add( "@no square bracket at start]", "", Catch::SourceLineInfo( "file", 3 ) ) );
CHECK_THROWS( registry.add( "[@no square bracket at end", "", Catch::SourceLineInfo( "file", 3 ) ) );
}
}
// Dummy line info for creating dummy test cases below
constexpr Catch::SourceLineInfo dummySourceLineInfo = CATCH_INTERNAL_LINEINFO;
2021-05-12 21:43:14 +02:00
TEST_CASE("shortened hide tags are split apart", "[tags]") {
using Catch::StringRef;
using Catch::Matchers::VectorContains;
2021-05-28 23:07:50 +02:00
Catch::TestCaseInfo testcase("", {"fake test name", "[.magic-tag]"}, dummySourceLineInfo);
2021-05-12 21:43:14 +02:00
// Extract parsed tags into strings
std::vector<StringRef> tags;
2021-05-28 23:07:50 +02:00
for (auto const& tag : testcase.tags) {
2021-05-12 21:43:14 +02:00
tags.push_back(tag.lowerCased);
}
REQUIRE_THAT(tags, VectorContains("magic-tag"_catch_sr) && VectorContains("."_catch_sr));
}
2021-05-12 21:43:14 +02:00
TEST_CASE("tags with dots in later positions are not parsed as hidden", "[tags]") {
using Catch::StringRef;
using Catch::Matchers::VectorContains;
2021-05-28 23:07:50 +02:00
Catch::TestCaseInfo testcase("", { "fake test name", "[magic.tag]" }, dummySourceLineInfo);
2021-05-12 21:43:14 +02:00
2021-05-28 23:07:50 +02:00
REQUIRE(testcase.tags.size() == 1);
REQUIRE(testcase.tags[0].original == "magic.tag"_catch_sr);
2021-05-12 21:43:14 +02:00
}
TEST_CASE( "empty tags are not allowed", "[tags]" ) {
REQUIRE_THROWS(
Catch::TestCaseInfo("", { "test with an empty tag", "[]" }, dummySourceLineInfo)
);
}