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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
//===- unittest/Tooling/SourceCodeBuildersTest.cpp ------------------------===//
//
// 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 "clang/Tooling/Transformer/SourceCodeBuilders.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/Testing/Support/SupportHelpers.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
using namespace clang;
using namespace tooling;
using namespace ast_matchers;
namespace {
using MatchResult = MatchFinder::MatchResult;
using llvm::ValueIs;
// Create a valid translation unit from a statement.
static std::string wrapSnippet(StringRef StatementCode) {
return ("struct S { S(); S(int); int field; };\n"
"S operator+(const S &a, const S &b);\n"
"auto test_snippet = []{" +
StatementCode + "};")
.str();
}
static DeclarationMatcher wrapMatcher(const StatementMatcher &Matcher) {
return varDecl(hasName("test_snippet"),
hasDescendant(compoundStmt(hasAnySubstatement(Matcher))));
}
struct TestMatch {
// The AST unit from which `result` is built. We bundle it because it backs
// the result. Users are not expected to access it.
std::unique_ptr<ASTUnit> AstUnit;
// The result to use in the test. References `ast_unit`.
MatchResult Result;
};
// Matches `Matcher` against the statement `StatementCode` and returns the
// result. Handles putting the statement inside a function and modifying the
// matcher correspondingly. `Matcher` should match one of the statements in
// `StatementCode` exactly -- that is, produce exactly one match. However,
// `StatementCode` may contain other statements not described by `Matcher`.
static llvm::Optional<TestMatch> matchStmt(StringRef StatementCode,
StatementMatcher Matcher) {
auto AstUnit = buildASTFromCode(wrapSnippet(StatementCode));
if (AstUnit == nullptr) {
ADD_FAILURE() << "AST construction failed";
return llvm::None;
}
ASTContext &Context = AstUnit->getASTContext();
auto Matches = ast_matchers::match(wrapMatcher(Matcher), Context);
// We expect a single, exact match for the statement.
if (Matches.size() != 1) {
ADD_FAILURE() << "Wrong number of matches: " << Matches.size();
return llvm::None;
}
return TestMatch{std::move(AstUnit), MatchResult(Matches[0], &Context)};
}
static void testPredicate(bool (*Pred)(const Expr &), StringRef Snippet,
bool Expected) {
auto StmtMatch = matchStmt(Snippet, expr().bind("expr"));
ASSERT_TRUE(StmtMatch) << "Snippet: " << Snippet;
EXPECT_EQ(Expected, Pred(*StmtMatch->Result.Nodes.getNodeAs<Expr>("expr")))
<< "Snippet: " << Snippet;
}
// Tests the predicate on the call argument, assuming `Snippet` is a function
// call.
static void testPredicateOnArg(bool (*Pred)(const Expr &), StringRef Snippet,
bool Expected) {
auto StmtMatch = matchStmt(
Snippet, expr(ignoringImplicit(callExpr(hasArgument(
0, ignoringElidableConstructorCall(expr().bind("arg")))))));
ASSERT_TRUE(StmtMatch) << "Snippet: " << Snippet;
EXPECT_EQ(Expected, Pred(*StmtMatch->Result.Nodes.getNodeAs<Expr>("arg")))
<< "Snippet: " << Snippet;
}
TEST(SourceCodeBuildersTest, needParensAfterUnaryOperator) {
testPredicate(needParensAfterUnaryOperator, "3 + 5;", true);
testPredicate(needParensAfterUnaryOperator, "true ? 3 : 5;", true);
testPredicate(needParensAfterUnaryOperator, "S(3) + S(5);", true);
testPredicate(needParensAfterUnaryOperator, "int x; x;", false);
testPredicate(needParensAfterUnaryOperator, "int(3.0);", false);
testPredicate(needParensAfterUnaryOperator, "void f(); f();", false);
testPredicate(needParensAfterUnaryOperator, "int a[3]; a[0];", false);
testPredicate(needParensAfterUnaryOperator, "S x; x.field;", false);
testPredicate(needParensAfterUnaryOperator, "int x = 1; --x;", false);
testPredicate(needParensAfterUnaryOperator, "int x = 1; -x;", false);
}
TEST(SourceCodeBuildersTest, needParensAfterUnaryOperatorInImplicitConversion) {
// The binary operation will be embedded in various implicit
// expressions. Verify they are ignored.
testPredicateOnArg(needParensAfterUnaryOperator, "void f(S); f(3 + 5);",
true);
}
TEST(SourceCodeBuildersTest, mayEverNeedParens) {
testPredicate(mayEverNeedParens, "3 + 5;", true);
testPredicate(mayEverNeedParens, "true ? 3 : 5;", true);
testPredicate(mayEverNeedParens, "int x = 1; --x;", true);
testPredicate(mayEverNeedParens, "int x = 1; -x;", true);
testPredicate(mayEverNeedParens, "int x; x;", false);
testPredicate(mayEverNeedParens, "int(3.0);", false);
testPredicate(mayEverNeedParens, "void f(); f();", false);
testPredicate(mayEverNeedParens, "int a[3]; a[0];", false);
testPredicate(mayEverNeedParens, "S x; x.field;", false);
}
TEST(SourceCodeBuildersTest, mayEverNeedParensInImplictConversion) {
// The binary operation will be embedded in various implicit
// expressions. Verify they are ignored.
testPredicateOnArg(mayEverNeedParens, "void f(S); f(3 + 5);", true);
}
static void testBuilder(
llvm::Optional<std::string> (*Builder)(const Expr &, const ASTContext &),
StringRef Snippet, StringRef Expected) {
auto StmtMatch = matchStmt(Snippet, expr().bind("expr"));
ASSERT_TRUE(StmtMatch);
EXPECT_THAT(Builder(*StmtMatch->Result.Nodes.getNodeAs<Expr>("expr"),
*StmtMatch->Result.Context),
ValueIs(std::string(Expected)));
}
TEST(SourceCodeBuildersTest, BuildParensUnaryOp) {
testBuilder(buildParens, "-4;", "(-4)");
}
TEST(SourceCodeBuildersTest, BuildParensBinOp) {
testBuilder(buildParens, "4 + 4;", "(4 + 4)");
}
TEST(SourceCodeBuildersTest, BuildParensValue) {
testBuilder(buildParens, "4;", "4");
}
TEST(SourceCodeBuildersTest, BuildParensSubscript) {
testBuilder(buildParens, "int a[3]; a[0];", "a[0]");
}
TEST(SourceCodeBuildersTest, BuildParensCall) {
testBuilder(buildParens, "int f(int); f(4);", "f(4)");
}
TEST(SourceCodeBuildersTest, BuildAddressOfValue) {
testBuilder(buildAddressOf, "S x; x;", "&x");
}
TEST(SourceCodeBuildersTest, BuildAddressOfPointerDereference) {
testBuilder(buildAddressOf, "S *x; *x;", "x");
}
TEST(SourceCodeBuildersTest, BuildAddressOfPointerDereferenceIgnoresParens) {
testBuilder(buildAddressOf, "S *x; *(x);", "x");
}
TEST(SourceCodeBuildersTest, BuildAddressOfBinaryOperation) {
testBuilder(buildAddressOf, "S x; x + x;", "&(x + x)");
}
TEST(SourceCodeBuildersTest, BuildAddressOfImplicitThis) {
StringRef Snippet = R"cc(
struct Struct {
void foo() {}
void bar() {
foo();
}
};
)cc";
auto StmtMatch = matchStmt(
Snippet,
cxxMemberCallExpr(onImplicitObjectArgument(cxxThisExpr().bind("expr"))));
ASSERT_TRUE(StmtMatch);
EXPECT_THAT(buildAddressOf(*StmtMatch->Result.Nodes.getNodeAs<Expr>("expr"),
*StmtMatch->Result.Context),
ValueIs(std::string("this")));
}
TEST(SourceCodeBuildersTest, BuildDereferencePointer) {
testBuilder(buildDereference, "S *x; x;", "*x");
}
TEST(SourceCodeBuildersTest, BuildDereferenceValueAddress) {
testBuilder(buildDereference, "S x; &x;", "x");
}
TEST(SourceCodeBuildersTest, BuildDereferenceValueAddressIgnoresParens) {
testBuilder(buildDereference, "S x; &(x);", "x");
}
TEST(SourceCodeBuildersTest, BuildDereferenceBinaryOperation) {
testBuilder(buildDereference, "S *x; x + 1;", "*(x + 1)");
}
TEST(SourceCodeBuildersTest, BuildDotValue) {
testBuilder(buildDot, "S x; x;", "x.");
}
TEST(SourceCodeBuildersTest, BuildDotPointerDereference) {
testBuilder(buildDot, "S *x; *x;", "x->");
}
TEST(SourceCodeBuildersTest, BuildDotPointerDereferenceIgnoresParens) {
testBuilder(buildDot, "S *x; *(x);", "x->");
}
TEST(SourceCodeBuildersTest, BuildDotBinaryOperation) {
testBuilder(buildDot, "S x; x + x;", "(x + x).");
}
TEST(SourceCodeBuildersTest, BuildDotPointerDereferenceExprWithParens) {
testBuilder(buildDot, "S *x; *(x + 1);", "(x + 1)->");
}
TEST(SourceCodeBuildersTest, BuildArrowPointer) {
testBuilder(buildArrow, "S *x; x;", "x->");
}
TEST(SourceCodeBuildersTest, BuildArrowValueAddress) {
testBuilder(buildArrow, "S x; &x;", "x.");
}
TEST(SourceCodeBuildersTest, BuildArrowValueAddressIgnoresParens) {
testBuilder(buildArrow, "S x; &(x);", "x.");
}
TEST(SourceCodeBuildersTest, BuildArrowBinaryOperation) {
testBuilder(buildArrow, "S *x; x + 1;", "(x + 1)->");
}
TEST(SourceCodeBuildersTest, BuildArrowValueAddressWithParens) {
testBuilder(buildArrow, "S x; &(true ? x : x);", "(true ? x : x).");
}
} // namespace
|