2012-12-04 17:45:34 +08:00
|
|
|
//===- unittest/Tooling/RefactoringCallbacksTest.cpp ----------------------===//
|
2012-07-16 17:18:17 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-07-17 16:03:01 +08:00
|
|
|
#include "RewriterTestContext.h"
|
2012-12-04 17:45:34 +08:00
|
|
|
#include "clang/ASTMatchers/ASTMatchFinder.h"
|
2012-12-04 17:53:37 +08:00
|
|
|
#include "clang/ASTMatchers/ASTMatchers.h"
|
2017-05-10 15:48:45 +08:00
|
|
|
#include "clang/Tooling/RefactoringCallbacks.h"
|
2012-10-24 07:13:50 +08:00
|
|
|
#include "gtest/gtest.h"
|
2012-07-16 17:18:17 +08:00
|
|
|
|
|
|
|
namespace clang {
|
2012-07-17 16:37:03 +08:00
|
|
|
namespace tooling {
|
|
|
|
|
|
|
|
using namespace ast_matchers;
|
2012-07-16 17:18:17 +08:00
|
|
|
|
|
|
|
template <typename T>
|
2017-05-10 15:48:45 +08:00
|
|
|
void expectRewritten(const std::string &Code, const std::string &Expected,
|
|
|
|
const T &AMatcher, RefactoringCallback &Callback) {
|
|
|
|
std::map<std::string, Replacements> FileToReplace;
|
|
|
|
ASTMatchRefactorer Finder(FileToReplace);
|
2012-07-16 17:18:17 +08:00
|
|
|
Finder.addMatcher(AMatcher, &Callback);
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<tooling::FrontendActionFactory> Factory(
|
2012-07-16 17:18:17 +08:00
|
|
|
tooling::newFrontendActionFactory(&Finder));
|
|
|
|
ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), Code))
|
|
|
|
<< "Parsing error in \"" << Code << "\"";
|
|
|
|
RewriterTestContext Context;
|
|
|
|
FileID ID = Context.createInMemoryFile("input.cc", Code);
|
2017-05-10 15:48:45 +08:00
|
|
|
EXPECT_TRUE(tooling::applyAllReplacements(FileToReplace["input.cc"],
|
2012-07-16 17:18:17 +08:00
|
|
|
Context.Rewrite));
|
|
|
|
EXPECT_EQ(Expected, Context.getRewrittenText(ID));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, ReplacesStmtsWithString) {
|
|
|
|
std::string Code = "void f() { int i = 1; }";
|
|
|
|
std::string Expected = "void f() { ; }";
|
|
|
|
ReplaceStmtWithText Callback("id", ";");
|
2012-08-24 13:12:34 +08:00
|
|
|
expectRewritten(Code, Expected, id("id", declStmt()), Callback);
|
2012-07-16 17:18:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, ReplacesStmtsInCalledMacros) {
|
|
|
|
std::string Code = "#define A void f() { int i = 1; }\nA";
|
|
|
|
std::string Expected = "#define A void f() { ; }\nA";
|
|
|
|
ReplaceStmtWithText Callback("id", ";");
|
2012-08-24 13:12:34 +08:00
|
|
|
expectRewritten(Code, Expected, id("id", declStmt()), Callback);
|
2012-07-16 17:18:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, IgnoresStmtsInUncalledMacros) {
|
|
|
|
std::string Code = "#define A void f() { int i = 1; }";
|
|
|
|
std::string Expected = "#define A void f() { int i = 1; }";
|
|
|
|
ReplaceStmtWithText Callback("id", ";");
|
2012-08-24 13:12:34 +08:00
|
|
|
expectRewritten(Code, Expected, id("id", declStmt()), Callback);
|
2012-07-16 17:18:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, ReplacesInteger) {
|
|
|
|
std::string Code = "void f() { int i = 1; }";
|
|
|
|
std::string Expected = "void f() { int i = 2; }";
|
|
|
|
ReplaceStmtWithText Callback("id", "2");
|
2017-05-10 15:48:45 +08:00
|
|
|
expectRewritten(Code, Expected, id("id", expr(integerLiteral())), Callback);
|
2012-07-16 17:18:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, ReplacesStmtWithStmt) {
|
|
|
|
std::string Code = "void f() { int i = false ? 1 : i * 2; }";
|
|
|
|
std::string Expected = "void f() { int i = i * 2; }";
|
|
|
|
ReplaceStmtWithStmt Callback("always-false", "should-be");
|
2017-05-10 15:48:45 +08:00
|
|
|
expectRewritten(
|
|
|
|
Code, Expected,
|
|
|
|
id("always-false",
|
|
|
|
conditionalOperator(hasCondition(cxxBoolLiteral(equals(false))),
|
|
|
|
hasFalseExpression(id("should-be", expr())))),
|
2012-07-16 17:18:17 +08:00
|
|
|
Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, ReplacesIfStmt) {
|
|
|
|
std::string Code = "bool a; void f() { if (a) f(); else a = true; }";
|
|
|
|
std::string Expected = "bool a; void f() { f(); }";
|
|
|
|
ReplaceIfStmtWithItsBody Callback("id", true);
|
2017-05-10 15:48:45 +08:00
|
|
|
expectRewritten(
|
|
|
|
Code, Expected,
|
|
|
|
id("id", ifStmt(hasCondition(implicitCastExpr(hasSourceExpression(
|
|
|
|
declRefExpr(to(varDecl(hasName("a"))))))))),
|
2012-07-16 17:18:17 +08:00
|
|
|
Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, RemovesEntireIfOnEmptyElse) {
|
|
|
|
std::string Code = "void f() { if (false) int i = 0; }";
|
|
|
|
std::string Expected = "void f() { }";
|
|
|
|
ReplaceIfStmtWithItsBody Callback("id", false);
|
|
|
|
expectRewritten(Code, Expected,
|
2017-05-10 15:48:45 +08:00
|
|
|
id("id", ifStmt(hasCondition(cxxBoolLiteral(equals(false))))),
|
|
|
|
Callback);
|
2012-07-16 17:18:17 +08:00
|
|
|
}
|
|
|
|
|
2017-05-10 15:48:45 +08:00
|
|
|
TEST(RefactoringCallbacksTest, TemplateJustText) {
|
|
|
|
std::string Code = "void f() { int i = 1; }";
|
|
|
|
std::string Expected = "void f() { FOO }";
|
|
|
|
auto Callback = ReplaceNodeWithTemplate::create("id", "FOO");
|
|
|
|
EXPECT_FALSE(Callback.takeError());
|
|
|
|
expectRewritten(Code, Expected, id("id", declStmt()), **Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, TemplateSimpleSubst) {
|
|
|
|
std::string Code = "void f() { int i = 1; }";
|
|
|
|
std::string Expected = "void f() { long x = 1; }";
|
|
|
|
auto Callback = ReplaceNodeWithTemplate::create("decl", "long x = ${init}");
|
|
|
|
EXPECT_FALSE(Callback.takeError());
|
|
|
|
expectRewritten(Code, Expected,
|
|
|
|
id("decl", varDecl(hasInitializer(id("init", expr())))),
|
|
|
|
**Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, TemplateLiteral) {
|
|
|
|
std::string Code = "void f() { int i = 1; }";
|
|
|
|
std::string Expected = "void f() { string x = \"$-1\"; }";
|
|
|
|
auto Callback = ReplaceNodeWithTemplate::create("decl",
|
|
|
|
"string x = \"$$-${init}\"");
|
|
|
|
EXPECT_FALSE(Callback.takeError());
|
|
|
|
expectRewritten(Code, Expected,
|
|
|
|
id("decl", varDecl(hasInitializer(id("init", expr())))),
|
|
|
|
**Callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ExpectStringError(const std::string &Expected,
|
|
|
|
llvm::Error E) {
|
|
|
|
std::string Found;
|
|
|
|
handleAllErrors(std::move(E), [&](const llvm::StringError &SE) {
|
|
|
|
llvm::raw_string_ostream Stream(Found);
|
|
|
|
SE.log(Stream);
|
|
|
|
});
|
|
|
|
EXPECT_EQ(Expected, Found);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, TemplateUnterminated) {
|
|
|
|
auto Callback = ReplaceNodeWithTemplate::create("decl",
|
|
|
|
"string x = \"$$-${init\"");
|
|
|
|
ExpectStringError("Unterminated ${...} in replacement template near ${init\"",
|
|
|
|
Callback.takeError());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(RefactoringCallbacksTest, TemplateUnknownDollar) {
|
|
|
|
auto Callback = ReplaceNodeWithTemplate::create("decl",
|
|
|
|
"string x = \"$<");
|
|
|
|
ExpectStringError("Invalid $ in replacement template near $<",
|
|
|
|
Callback.takeError());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-23 07:07:51 +08:00
|
|
|
} // end namespace ast_matchers
|
2012-07-16 17:18:17 +08:00
|
|
|
} // end namespace clang
|