1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
//===- unittests/ASTMatchers/GTestMatchersTest.cpp - GTest matcher unit tests //
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "ASTMatchersTest.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/ASTMatchers/GtestMatchers.h"
namespace clang {
namespace ast_matchers {
constexpr llvm::StringLiteral GtestMockDecls = R"cc(
static int testerr;
#define GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
switch (0) \
case 0: \
default: // NOLINT
#define GTEST_NONFATAL_FAILURE_(code) testerr = code
#define GTEST_FATAL_FAILURE_(code) testerr = code
#define GTEST_ASSERT_(expression, on_failure) \
GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
if (const int gtest_ar = (expression)) \
; \
else \
on_failure(gtest_ar)
// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2.
// Don't use this in your code.
#define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure) \
GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), on_failure)
#define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \
GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_)
#define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \
GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_)
#define EXPECT_EQ(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2)
#define EXPECT_NE(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)
#define EXPECT_GE(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)
#define EXPECT_GT(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)
#define EXPECT_LE(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)
#define EXPECT_LT(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)
#define ASSERT_EQ(val1, val2) \
ASSERT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2)
#define ASSERT_NE(val1, val2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)
namespace testing {
namespace internal {
class EqHelper {
public:
// This templatized version is for the general case.
template <typename T1, typename T2>
static int Compare(const char* lhs_expression, const char* rhs_expression,
const T1& lhs, const T2& rhs) {
return 0;
}
};
template <typename T1, typename T2>
int CmpHelperNE(const char* expr1, const char* expr2, const T1& val1,
const T2& val2) {
return 0;
}
template <typename T1, typename T2>
int CmpHelperGE(const char* expr1, const char* expr2, const T1& val1,
const T2& val2) {
return 0;
}
template <typename T1, typename T2>
int CmpHelperGT(const char* expr1, const char* expr2, const T1& val1,
const T2& val2) {
return 0;
}
template <typename T1, typename T2>
int CmpHelperLE(const char* expr1, const char* expr2, const T1& val1,
const T2& val2) {
return 0;
}
template <typename T1, typename T2>
int CmpHelperLT(const char* expr1, const char* expr2, const T1& val1,
const T2& val2) {
return 0;
}
} // namespace internal
} // namespace testing
)cc";
static std::string wrapGtest(llvm::StringRef Input) {
return (GtestMockDecls + Input).str();
}
TEST(GtestAssertTest, ShouldMatchAssert) {
std::string Input = R"cc(
void Test() { ASSERT_EQ(1010, 4321); }
)cc";
EXPECT_TRUE(matches(wrapGtest(Input),
gtestAssert(GtestCmp::Eq, integerLiteral(equals(1010)),
integerLiteral(equals(4321)))));
}
TEST(GtestAssertTest, ShouldNotMatchExpect) {
std::string Input = R"cc(
void Test() { EXPECT_EQ(2, 3); }
)cc";
EXPECT_TRUE(
notMatches(wrapGtest(Input), gtestAssert(GtestCmp::Eq, expr(), expr())));
}
TEST(GtestAssertTest, ShouldMatchNestedAssert) {
std::string Input = R"cc(
#define WRAPPER(a, b) ASSERT_EQ(a, b)
void Test() { WRAPPER(2, 3); }
)cc";
EXPECT_TRUE(
matches(wrapGtest(Input), gtestAssert(GtestCmp::Eq, expr(), expr())));
}
TEST(GtestExpectTest, ShouldMatchExpect) {
std::string Input = R"cc(
void Test() { EXPECT_EQ(1010, 4321); }
)cc";
EXPECT_TRUE(matches(wrapGtest(Input),
gtestExpect(GtestCmp::Eq, integerLiteral(equals(1010)),
integerLiteral(equals(4321)))));
}
TEST(GtestExpectTest, ShouldNotMatchAssert) {
std::string Input = R"cc(
void Test() { ASSERT_EQ(2, 3); }
)cc";
EXPECT_TRUE(
notMatches(wrapGtest(Input), gtestExpect(GtestCmp::Eq, expr(), expr())));
}
TEST(GtestExpectTest, NeShouldMatchExpectNe) {
std::string Input = R"cc(
void Test() { EXPECT_NE(2, 3); }
)cc";
EXPECT_TRUE(
matches(wrapGtest(Input), gtestExpect(GtestCmp::Ne, expr(), expr())));
}
TEST(GtestExpectTest, LeShouldMatchExpectLe) {
std::string Input = R"cc(
void Test() { EXPECT_LE(2, 3); }
)cc";
EXPECT_TRUE(
matches(wrapGtest(Input), gtestExpect(GtestCmp::Le, expr(), expr())));
}
TEST(GtestExpectTest, LtShouldMatchExpectLt) {
std::string Input = R"cc(
void Test() { EXPECT_LT(2, 3); }
)cc";
EXPECT_TRUE(
matches(wrapGtest(Input), gtestExpect(GtestCmp::Lt, expr(), expr())));
}
TEST(GtestExpectTest, GeShouldMatchExpectGe) {
std::string Input = R"cc(
void Test() { EXPECT_GE(2, 3); }
)cc";
EXPECT_TRUE(
matches(wrapGtest(Input), gtestExpect(GtestCmp::Ge, expr(), expr())));
}
TEST(GtestExpectTest, GtShouldMatchExpectGt) {
std::string Input = R"cc(
void Test() { EXPECT_GT(2, 3); }
)cc";
EXPECT_TRUE(
matches(wrapGtest(Input), gtestExpect(GtestCmp::Gt, expr(), expr())));
}
} // end namespace ast_matchers
} // end namespace clang
|