2018-04-28 13:04:30 +00:00
|
|
|
// nameof test
|
2018-03-26 12:02:43 +00:00
|
|
|
//
|
|
|
|
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
2018-04-01 20:48:03 +00:00
|
|
|
// Copyright (c) 2018 Daniil Goncharov <neargye@gmail.com>.
|
2018-03-26 12:02:43 +00:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
|
|
|
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
|
|
#include <catch.hpp>
|
2018-04-10 18:09:44 +00:00
|
|
|
|
2018-03-26 12:02:43 +00:00
|
|
|
#include <nameof.hpp>
|
2018-04-10 18:09:44 +00:00
|
|
|
|
2018-03-26 12:02:43 +00:00
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
2018-04-29 20:37:25 +00:00
|
|
|
#include <stdexcept>
|
2018-03-26 12:02:43 +00:00
|
|
|
|
|
|
|
struct SomeStruct {
|
2018-07-13 19:02:03 +00:00
|
|
|
int somefield = 0;
|
2018-04-10 18:09:44 +00:00
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
void SomeMethod1(const int i) { somefield = i; }
|
2018-04-10 18:09:44 +00:00
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
int SomeMethod2() const { return somefield; }
|
2018-03-26 12:02:43 +00:00
|
|
|
};
|
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
void SomeMethod3() {
|
|
|
|
std::cout << NAMEOF(SomeMethod3) << " no called!" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T SomeMethod4() {
|
|
|
|
return T{};
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
class SomeClass {
|
|
|
|
public:
|
|
|
|
void SomeMethod5() const {}
|
|
|
|
|
|
|
|
template <typename C>
|
|
|
|
C SomeMethod6() const { return C{}; }
|
|
|
|
};
|
2018-03-26 12:02:43 +00:00
|
|
|
|
|
|
|
struct Long {
|
|
|
|
struct LL {
|
2018-07-13 19:02:03 +00:00
|
|
|
int field = 0;
|
2018-03-26 12:02:43 +00:00
|
|
|
};
|
2018-04-10 18:09:44 +00:00
|
|
|
LL ll;
|
2018-03-26 12:02:43 +00:00
|
|
|
};
|
|
|
|
|
2018-03-27 14:00:06 +00:00
|
|
|
enum class Color { RED, GREEN, BLUE };
|
|
|
|
|
2018-05-03 19:46:41 +00:00
|
|
|
SomeStruct somevar;
|
|
|
|
Long othervar;
|
2018-07-13 19:02:03 +00:00
|
|
|
SomeStruct* ptrvar = &somevar;
|
2018-04-02 11:25:43 +00:00
|
|
|
|
2018-05-03 19:46:41 +00:00
|
|
|
TEST_CASE("constexpr") {
|
2018-04-02 11:25:43 +00:00
|
|
|
SECTION("NAMEOF") {
|
2018-04-14 17:51:07 +00:00
|
|
|
// variable
|
2018-08-02 14:51:44 +00:00
|
|
|
constexpr auto cx1 = NAMEOF(somevar);
|
|
|
|
static_assert(cx1 == "somevar", "");
|
|
|
|
// member
|
|
|
|
constexpr auto cx2 = NAMEOF((&somevar)->somefield);
|
|
|
|
static_assert(cx2 == "somefield", "");
|
2018-04-14 17:51:07 +00:00
|
|
|
// function
|
|
|
|
constexpr auto cx3 = NAMEOF(&SomeStruct::SomeMethod2);
|
2018-08-02 14:51:44 +00:00
|
|
|
static_assert(cx3 == "SomeMethod2", "");
|
2018-04-14 17:51:07 +00:00
|
|
|
// enum
|
|
|
|
constexpr auto cx4 = NAMEOF(Color::RED);
|
2018-08-02 14:51:44 +00:00
|
|
|
static_assert(cx4 == "RED", "");
|
2018-04-02 11:25:43 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
SECTION("NAMEOF_RAW") {
|
2018-04-14 17:51:07 +00:00
|
|
|
// variable
|
2018-08-02 14:51:44 +00:00
|
|
|
constexpr auto cx1 = NAMEOF_RAW(somevar);
|
|
|
|
static_assert(cx1 == "somevar", "");
|
|
|
|
// member
|
|
|
|
constexpr auto cx2 = NAMEOF_RAW((&somevar)->somefield);
|
|
|
|
static_assert(cx2 == "(&somevar)->somefield", "");
|
2018-04-14 17:51:07 +00:00
|
|
|
// type
|
2018-08-02 14:51:44 +00:00
|
|
|
constexpr auto cx3 = NAMEOF_RAW(std::string);
|
|
|
|
static_assert(cx3 == "std::string", "");
|
2018-04-14 17:51:07 +00:00
|
|
|
// function
|
2018-08-02 14:51:44 +00:00
|
|
|
constexpr auto cx4 = NAMEOF_RAW(&SomeStruct::SomeMethod2);
|
|
|
|
static_assert(cx4 == "&SomeStruct::SomeMethod2", "");
|
2018-04-14 17:51:07 +00:00
|
|
|
// enum
|
2018-08-02 14:51:44 +00:00
|
|
|
constexpr auto cx5 = NAMEOF_RAW(Color::RED);
|
|
|
|
static_assert(cx5 == "Color::RED", "");
|
2018-04-14 19:12:32 +00:00
|
|
|
// macros
|
2018-08-02 14:51:44 +00:00
|
|
|
constexpr auto cx6 = NAMEOF_RAW(__cplusplus);
|
|
|
|
static_assert(cx6 == "__cplusplus", "");
|
2018-07-13 15:18:52 +00:00
|
|
|
}
|
2018-04-02 11:25:43 +00:00
|
|
|
}
|
|
|
|
|
2018-07-13 15:18:52 +00:00
|
|
|
TEST_CASE("simple name") {
|
2018-04-14 17:51:07 +00:00
|
|
|
SECTION("variable") {
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF(somevar) == "somevar");
|
|
|
|
REQUIRE(NAMEOF(::somevar) == "somevar");
|
|
|
|
REQUIRE(NAMEOF(ptrvar) == "ptrvar");
|
2018-03-26 12:02:43 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
SECTION("member") {
|
|
|
|
REQUIRE(NAMEOF(somevar.somefield) == "somefield");
|
|
|
|
REQUIRE(NAMEOF((&somevar)->somefield) == "somefield");
|
|
|
|
REQUIRE(NAMEOF(othervar.ll.field) == "field");
|
2018-04-04 12:19:02 +00:00
|
|
|
}
|
|
|
|
|
2018-04-14 17:51:07 +00:00
|
|
|
SECTION("function") {
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF(&SomeStruct::SomeMethod1) == "SomeMethod1");
|
|
|
|
REQUIRE(NAMEOF(&SomeStruct::SomeMethod2) == "SomeMethod2");
|
|
|
|
REQUIRE(NAMEOF(SomeMethod3) == "SomeMethod3");
|
|
|
|
REQUIRE(NAMEOF(SomeMethod4<int>) == "SomeMethod4");
|
|
|
|
REQUIRE(NAMEOF(&SomeClass<int>::SomeMethod5) == "SomeMethod5");
|
|
|
|
REQUIRE(NAMEOF(&SomeClass<int>::SomeMethod6<long int>) == "SomeMethod6");
|
2018-03-26 12:02:43 +00:00
|
|
|
}
|
2018-04-02 11:25:43 +00:00
|
|
|
|
2018-04-14 17:51:07 +00:00
|
|
|
SECTION("enum") {
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF(Color::RED) == "RED");
|
|
|
|
REQUIRE(NAMEOF(Color::BLUE) == "BLUE");
|
2018-04-14 19:12:32 +00:00
|
|
|
}
|
2018-03-26 12:02:43 +00:00
|
|
|
}
|
2018-08-02 14:51:44 +00:00
|
|
|
TEST_CASE("raw name") {
|
2018-04-14 17:51:07 +00:00
|
|
|
SECTION("variable") {
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW(somevar) == "somevar");
|
|
|
|
REQUIRE(NAMEOF_RAW(&somevar) == "&somevar");
|
|
|
|
REQUIRE(NAMEOF_RAW(::somevar) == "::somevar");
|
|
|
|
REQUIRE(NAMEOF_RAW(ptrvar) == "ptrvar");
|
|
|
|
REQUIRE(NAMEOF_RAW(*ptrvar) == "*ptrvar");
|
|
|
|
REQUIRE(NAMEOF_RAW(+somevar.somefield) == "+somevar.somefield");
|
|
|
|
REQUIRE(NAMEOF_RAW(-somevar.somefield) == "-somevar.somefield");
|
|
|
|
REQUIRE(NAMEOF_RAW(~somevar.somefield) == "~somevar.somefield");
|
|
|
|
REQUIRE(NAMEOF_RAW(!somevar.somefield) == "!somevar.somefield");
|
|
|
|
}
|
2018-03-26 12:02:43 +00:00
|
|
|
|
2018-08-02 14:51:44 +00:00
|
|
|
SECTION("member") {
|
|
|
|
REQUIRE(NAMEOF_RAW(somevar.somefield) == "somevar.somefield");
|
|
|
|
REQUIRE(NAMEOF_RAW((&somevar)->somefield) == "(&somevar)->somefield");
|
|
|
|
REQUIRE(NAMEOF_RAW(othervar.ll.field) == "othervar.ll.field");
|
2018-03-26 12:02:43 +00:00
|
|
|
}
|
2018-04-04 12:19:02 +00:00
|
|
|
|
2018-04-14 17:51:07 +00:00
|
|
|
SECTION("type") {
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW(int[]) == "int[]");
|
|
|
|
REQUIRE(NAMEOF_RAW(int) == "int");
|
|
|
|
REQUIRE(NAMEOF_RAW(const volatile int[]) == "const volatile int[]");
|
|
|
|
REQUIRE(NAMEOF_RAW(std::string) == "std::string");
|
|
|
|
REQUIRE(NAMEOF_RAW(SomeStruct) == "SomeStruct");
|
|
|
|
REQUIRE(NAMEOF_RAW(Long::LL) == "Long::LL");
|
|
|
|
REQUIRE(NAMEOF_RAW(Color) == "Color");
|
2018-04-04 12:19:02 +00:00
|
|
|
}
|
|
|
|
|
2018-04-14 17:51:07 +00:00
|
|
|
SECTION("function") {
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW(&SomeStruct::SomeMethod1) == "&SomeStruct::SomeMethod1");
|
|
|
|
REQUIRE(NAMEOF_RAW(&SomeStruct::SomeMethod2) == "&SomeStruct::SomeMethod2");
|
|
|
|
REQUIRE(NAMEOF_RAW(SomeMethod3) == "SomeMethod3");
|
|
|
|
REQUIRE(NAMEOF_RAW(SomeMethod4<int>) == "SomeMethod4<int>");
|
|
|
|
REQUIRE(NAMEOF_RAW(&SomeClass<int>::SomeMethod5) == "&SomeClass<int>::SomeMethod5");
|
|
|
|
REQUIRE(NAMEOF_RAW(&SomeClass<int>::SomeMethod6<int>) == "&SomeClass<int>::SomeMethod6<int>");
|
2018-03-26 12:02:43 +00:00
|
|
|
}
|
2018-04-02 11:25:43 +00:00
|
|
|
|
2018-04-14 17:51:07 +00:00
|
|
|
SECTION("enum") {
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW(Color::RED) == "Color::RED");
|
|
|
|
REQUIRE(NAMEOF_RAW(Color::BLUE) == "Color::BLUE");
|
2018-04-02 11:25:43 +00:00
|
|
|
}
|
2018-04-14 19:12:32 +00:00
|
|
|
|
|
|
|
SECTION("macros") {
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW(__cplusplus) == "__cplusplus");
|
|
|
|
REQUIRE(NAMEOF_RAW(__LINE__) == "__LINE__");
|
|
|
|
REQUIRE(NAMEOF_RAW(__FILE__) == "__FILE__");
|
2018-04-14 19:12:32 +00:00
|
|
|
}
|
2018-03-26 12:02:43 +00:00
|
|
|
}
|
2018-05-03 19:50:08 +00:00
|
|
|
|
2018-05-03 20:18:02 +00:00
|
|
|
TEST_CASE("Spaces and Tabs ignored") {
|
2018-05-03 20:10:17 +00:00
|
|
|
SECTION("Spaces") {
|
|
|
|
// variable
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF( somevar ) == "somevar");
|
|
|
|
REQUIRE(NAMEOF_RAW( somevar ) == "somevar");
|
|
|
|
// member
|
|
|
|
REQUIRE(NAMEOF( (&somevar)->somefield ) == "somefield");
|
|
|
|
REQUIRE(NAMEOF_RAW( (&somevar)->somefield ) == "(&somevar)->somefield");
|
2018-05-03 20:10:17 +00:00
|
|
|
// type
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW( std::string ) == "std::string");
|
2018-05-03 20:10:17 +00:00
|
|
|
// function
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF( &SomeStruct::SomeMethod2 ) == "SomeMethod2");
|
|
|
|
REQUIRE(NAMEOF_RAW( &SomeStruct::SomeMethod2 ) == "&SomeStruct::SomeMethod2");
|
2018-05-03 20:10:17 +00:00
|
|
|
// enum
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF( Color::RED ) == "RED");
|
|
|
|
REQUIRE(NAMEOF_RAW( Color::RED ) == "Color::RED");
|
2018-05-03 20:10:17 +00:00
|
|
|
// macros
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW( __cplusplus ) == "__cplusplus");
|
2018-05-03 20:10:17 +00:00
|
|
|
}
|
2018-07-13 15:18:52 +00:00
|
|
|
|
2018-05-03 20:10:17 +00:00
|
|
|
SECTION("Tabs") {
|
|
|
|
// variable
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF( somevar ) == "somevar");
|
|
|
|
REQUIRE(NAMEOF_RAW( somevar ) == "somevar");
|
|
|
|
// member
|
|
|
|
REQUIRE(NAMEOF( (&somevar)->somefield ) == "somefield");
|
|
|
|
REQUIRE(NAMEOF_RAW( (&somevar)->somefield ) == "(&somevar)->somefield");
|
2018-05-03 20:10:17 +00:00
|
|
|
// type
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW( std::string ) == "std::string");
|
2018-05-03 20:10:17 +00:00
|
|
|
// function
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF( &SomeStruct::SomeMethod2 ) == "SomeMethod2");
|
|
|
|
REQUIRE(NAMEOF_RAW( &SomeStruct::SomeMethod2 ) == "&SomeStruct::SomeMethod2");
|
2018-05-03 20:10:17 +00:00
|
|
|
// enum
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF( Color::RED ) == "RED");
|
|
|
|
REQUIRE(NAMEOF_RAW( Color::RED ) == "Color::RED");
|
2018-05-03 20:10:17 +00:00
|
|
|
// macros
|
2018-08-02 14:51:44 +00:00
|
|
|
REQUIRE(NAMEOF_RAW( __cplusplus ) == "__cplusplus");
|
2018-07-13 15:18:52 +00:00
|
|
|
}
|
|
|
|
}
|