2012-04-04 20:07:46 +08:00
|
|
|
//===- unittest/Tooling/ToolingTest.cpp - Tooling unit tests --------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/ASTConsumer.h"
|
|
|
|
#include "clang/AST/DeclCXX.h"
|
|
|
|
#include "clang/AST/DeclGroup.h"
|
2013-11-07 04:12:45 +08:00
|
|
|
#include "clang/Frontend/ASTUnit.h"
|
2012-11-28 05:31:01 +08:00
|
|
|
#include "clang/Frontend/CompilerInstance.h"
|
2012-04-04 20:07:46 +08:00
|
|
|
#include "clang/Frontend/FrontendAction.h"
|
|
|
|
#include "clang/Frontend/FrontendActions.h"
|
|
|
|
#include "clang/Tooling/CompilationDatabase.h"
|
|
|
|
#include "clang/Tooling/Tooling.h"
|
2013-11-07 04:12:45 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2014-03-13 00:07:46 +08:00
|
|
|
#include "llvm/Config/config.h"
|
2014-01-07 19:51:46 +08:00
|
|
|
#include "gtest/gtest.h"
|
2012-06-01 22:50:43 +08:00
|
|
|
#include <string>
|
2012-04-04 20:07:46 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tooling {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// Takes an ast consumer and returns it from CreateASTConsumer. This only
|
|
|
|
/// works with single translation unit compilations.
|
|
|
|
class TestAction : public clang::ASTFrontendAction {
|
|
|
|
public:
|
|
|
|
/// Takes ownership of TestConsumer.
|
|
|
|
explicit TestAction(clang::ASTConsumer *TestConsumer)
|
|
|
|
: TestConsumer(TestConsumer) {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual clang::ASTConsumer* CreateASTConsumer(
|
|
|
|
clang::CompilerInstance& compiler, StringRef dummy) {
|
|
|
|
/// TestConsumer will be deleted by the framework calling us.
|
|
|
|
return TestConsumer;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
clang::ASTConsumer * const TestConsumer;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FindTopLevelDeclConsumer : public clang::ASTConsumer {
|
|
|
|
public:
|
|
|
|
explicit FindTopLevelDeclConsumer(bool *FoundTopLevelDecl)
|
|
|
|
: FoundTopLevelDecl(FoundTopLevelDecl) {}
|
|
|
|
virtual bool HandleTopLevelDecl(clang::DeclGroupRef DeclGroup) {
|
|
|
|
*FoundTopLevelDecl = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
bool * const FoundTopLevelDecl;
|
|
|
|
};
|
|
|
|
} // end namespace
|
|
|
|
|
2012-06-16 11:34:49 +08:00
|
|
|
TEST(runToolOnCode, FindsNoTopLevelDeclOnEmptyCode) {
|
2012-04-04 20:07:46 +08:00
|
|
|
bool FoundTopLevelDecl = false;
|
|
|
|
EXPECT_TRUE(runToolOnCode(
|
|
|
|
new TestAction(new FindTopLevelDeclConsumer(&FoundTopLevelDecl)), ""));
|
2012-06-16 11:34:49 +08:00
|
|
|
EXPECT_FALSE(FoundTopLevelDecl);
|
2012-04-04 20:07:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class FindClassDeclXConsumer : public clang::ASTConsumer {
|
|
|
|
public:
|
|
|
|
FindClassDeclXConsumer(bool *FoundClassDeclX)
|
|
|
|
: FoundClassDeclX(FoundClassDeclX) {}
|
|
|
|
virtual bool HandleTopLevelDecl(clang::DeclGroupRef GroupRef) {
|
|
|
|
if (CXXRecordDecl* Record = dyn_cast<clang::CXXRecordDecl>(
|
|
|
|
*GroupRef.begin())) {
|
|
|
|
if (Record->getName() == "X") {
|
|
|
|
*FoundClassDeclX = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
bool *FoundClassDeclX;
|
|
|
|
};
|
2013-11-07 04:12:45 +08:00
|
|
|
bool FindClassDeclX(ASTUnit *AST) {
|
|
|
|
for (std::vector<Decl *>::iterator i = AST->top_level_begin(),
|
|
|
|
e = AST->top_level_end();
|
|
|
|
i != e; ++i) {
|
|
|
|
if (CXXRecordDecl* Record = dyn_cast<clang::CXXRecordDecl>(*i)) {
|
|
|
|
if (Record->getName() == "X") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-04-04 20:07:46 +08:00
|
|
|
} // end namespace
|
|
|
|
|
|
|
|
TEST(runToolOnCode, FindsClassDecl) {
|
|
|
|
bool FoundClassDeclX = false;
|
|
|
|
EXPECT_TRUE(runToolOnCode(new TestAction(
|
|
|
|
new FindClassDeclXConsumer(&FoundClassDeclX)), "class X;"));
|
|
|
|
EXPECT_TRUE(FoundClassDeclX);
|
|
|
|
|
|
|
|
FoundClassDeclX = false;
|
|
|
|
EXPECT_TRUE(runToolOnCode(new TestAction(
|
|
|
|
new FindClassDeclXConsumer(&FoundClassDeclX)), "class Y;"));
|
|
|
|
EXPECT_FALSE(FoundClassDeclX);
|
|
|
|
}
|
|
|
|
|
2013-11-07 04:12:45 +08:00
|
|
|
TEST(buildASTFromCode, FindsClassDecl) {
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<ASTUnit> AST(buildASTFromCode("class X;"));
|
2013-11-07 04:12:45 +08:00
|
|
|
ASSERT_TRUE(AST.get());
|
|
|
|
EXPECT_TRUE(FindClassDeclX(AST.get()));
|
|
|
|
|
|
|
|
AST.reset(buildASTFromCode("class Y;"));
|
|
|
|
ASSERT_TRUE(AST.get());
|
|
|
|
EXPECT_FALSE(FindClassDeclX(AST.get()));
|
|
|
|
}
|
|
|
|
|
2012-04-04 20:07:46 +08:00
|
|
|
TEST(newFrontendActionFactory, CreatesFrontendActionFactoryFromType) {
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<FrontendActionFactory> Factory(
|
2013-01-13 03:30:44 +08:00
|
|
|
newFrontendActionFactory<SyntaxOnlyAction>());
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<FrontendAction> Action(Factory->create());
|
2012-04-04 20:07:46 +08:00
|
|
|
EXPECT_TRUE(Action.get() != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct IndependentFrontendActionCreator {
|
2012-07-06 02:13:01 +08:00
|
|
|
ASTConsumer *newASTConsumer() {
|
|
|
|
return new FindTopLevelDeclConsumer(NULL);
|
|
|
|
}
|
2012-04-04 20:07:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
TEST(newFrontendActionFactory, CreatesFrontendActionFactoryFromFactoryType) {
|
|
|
|
IndependentFrontendActionCreator Creator;
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<FrontendActionFactory> Factory(
|
2013-01-13 03:30:44 +08:00
|
|
|
newFrontendActionFactory(&Creator));
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<FrontendAction> Action(Factory->create());
|
2012-04-04 20:07:46 +08:00
|
|
|
EXPECT_TRUE(Action.get() != NULL);
|
|
|
|
}
|
|
|
|
|
2012-06-01 22:50:43 +08:00
|
|
|
TEST(ToolInvocation, TestMapVirtualFile) {
|
2013-11-07 04:12:45 +08:00
|
|
|
IntrusiveRefCntPtr<clang::FileManager> Files(
|
|
|
|
new clang::FileManager(clang::FileSystemOptions()));
|
2012-06-01 22:50:43 +08:00
|
|
|
std::vector<std::string> Args;
|
|
|
|
Args.push_back("tool-executable");
|
|
|
|
Args.push_back("-Idef");
|
|
|
|
Args.push_back("-fsyntax-only");
|
|
|
|
Args.push_back("test.cpp");
|
2013-11-07 04:12:45 +08:00
|
|
|
clang::tooling::ToolInvocation Invocation(Args, new SyntaxOnlyAction,
|
|
|
|
Files.getPtr());
|
2012-06-01 22:50:43 +08:00
|
|
|
Invocation.mapVirtualFile("test.cpp", "#include <abc>\n");
|
|
|
|
Invocation.mapVirtualFile("def/abc", "\n");
|
|
|
|
EXPECT_TRUE(Invocation.run());
|
|
|
|
}
|
|
|
|
|
Use the same SourceManager for ModuleMaps and compilations.
This allows using virtual file mappings on the original SourceManager to
map in virtual module.map files. Without this patch, the ModuleMap
search will find a module.map file (as the FileEntry exists in the
FileManager), but will be unable to get the content from the
SourceManager (as ModuleMap previously created its own SourceManager).
Two problems needed to be fixed which this patch exposed:
1. Storing the inferred module map
When writing out a module, the ASTWriter stores the names of the files
in the main source manager; when loading the AST again, the ASTReader
errs out if such a file is found missing, unless it is overridden.
Previously CompilerInstance's compileModule method would store the
inferred module map to a temporary file; the problem with this approach
is that now that the module map is handled by the main source manager,
the ASTWriter stores the name of the temporary module map as source to
the compilation; later, when the module is loaded, the temporary file
has already been deleted, which leads to a compilation error. This patch
changes the inferred module map to instead inject a virtual file into
the source manager. This both saves some disk IO, and works with how the
ASTWriter/ASTReader handle overridden source files.
2. Changing test input in test/Modules/Inputs/*
Now that the module map file is handled by the main source manager, the
VerifyDiagnosticConsumer will not ignore diagnostics created while
parsing the module map file. The module test test/Modules/renamed.m uses
-I test/Modules/Inputs and triggers recursive loading of all module maps
in test/Modules/Inputs, some of which had conflicting names, thus
leading errors while parsing the module maps. Those diagnostics already
occur on trunk, but before this patch they would not break the test, as
they were ignored by the VerifyDiagnosticConsumer. This patch thus
changes the module maps that have been recently introduced which broke
the invariant of compatible modules maps in test/Modules/Inputs.
llvm-svn: 193314
2013-10-24 15:51:24 +08:00
|
|
|
TEST(ToolInvocation, TestVirtualModulesCompilation) {
|
|
|
|
// FIXME: Currently, this only tests that we don't exit with an error if a
|
|
|
|
// mapped module.map is found on the include path. In the future, expand this
|
|
|
|
// test to run a full modules enabled compilation, so we make sure we can
|
|
|
|
// rerun modules compilations with a virtual file system.
|
2013-11-07 04:12:45 +08:00
|
|
|
IntrusiveRefCntPtr<clang::FileManager> Files(
|
|
|
|
new clang::FileManager(clang::FileSystemOptions()));
|
Use the same SourceManager for ModuleMaps and compilations.
This allows using virtual file mappings on the original SourceManager to
map in virtual module.map files. Without this patch, the ModuleMap
search will find a module.map file (as the FileEntry exists in the
FileManager), but will be unable to get the content from the
SourceManager (as ModuleMap previously created its own SourceManager).
Two problems needed to be fixed which this patch exposed:
1. Storing the inferred module map
When writing out a module, the ASTWriter stores the names of the files
in the main source manager; when loading the AST again, the ASTReader
errs out if such a file is found missing, unless it is overridden.
Previously CompilerInstance's compileModule method would store the
inferred module map to a temporary file; the problem with this approach
is that now that the module map is handled by the main source manager,
the ASTWriter stores the name of the temporary module map as source to
the compilation; later, when the module is loaded, the temporary file
has already been deleted, which leads to a compilation error. This patch
changes the inferred module map to instead inject a virtual file into
the source manager. This both saves some disk IO, and works with how the
ASTWriter/ASTReader handle overridden source files.
2. Changing test input in test/Modules/Inputs/*
Now that the module map file is handled by the main source manager, the
VerifyDiagnosticConsumer will not ignore diagnostics created while
parsing the module map file. The module test test/Modules/renamed.m uses
-I test/Modules/Inputs and triggers recursive loading of all module maps
in test/Modules/Inputs, some of which had conflicting names, thus
leading errors while parsing the module maps. Those diagnostics already
occur on trunk, but before this patch they would not break the test, as
they were ignored by the VerifyDiagnosticConsumer. This patch thus
changes the module maps that have been recently introduced which broke
the invariant of compatible modules maps in test/Modules/Inputs.
llvm-svn: 193314
2013-10-24 15:51:24 +08:00
|
|
|
std::vector<std::string> Args;
|
|
|
|
Args.push_back("tool-executable");
|
|
|
|
Args.push_back("-Idef");
|
|
|
|
Args.push_back("-fsyntax-only");
|
|
|
|
Args.push_back("test.cpp");
|
2013-11-07 04:12:45 +08:00
|
|
|
clang::tooling::ToolInvocation Invocation(Args, new SyntaxOnlyAction,
|
|
|
|
Files.getPtr());
|
Use the same SourceManager for ModuleMaps and compilations.
This allows using virtual file mappings on the original SourceManager to
map in virtual module.map files. Without this patch, the ModuleMap
search will find a module.map file (as the FileEntry exists in the
FileManager), but will be unable to get the content from the
SourceManager (as ModuleMap previously created its own SourceManager).
Two problems needed to be fixed which this patch exposed:
1. Storing the inferred module map
When writing out a module, the ASTWriter stores the names of the files
in the main source manager; when loading the AST again, the ASTReader
errs out if such a file is found missing, unless it is overridden.
Previously CompilerInstance's compileModule method would store the
inferred module map to a temporary file; the problem with this approach
is that now that the module map is handled by the main source manager,
the ASTWriter stores the name of the temporary module map as source to
the compilation; later, when the module is loaded, the temporary file
has already been deleted, which leads to a compilation error. This patch
changes the inferred module map to instead inject a virtual file into
the source manager. This both saves some disk IO, and works with how the
ASTWriter/ASTReader handle overridden source files.
2. Changing test input in test/Modules/Inputs/*
Now that the module map file is handled by the main source manager, the
VerifyDiagnosticConsumer will not ignore diagnostics created while
parsing the module map file. The module test test/Modules/renamed.m uses
-I test/Modules/Inputs and triggers recursive loading of all module maps
in test/Modules/Inputs, some of which had conflicting names, thus
leading errors while parsing the module maps. Those diagnostics already
occur on trunk, but before this patch they would not break the test, as
they were ignored by the VerifyDiagnosticConsumer. This patch thus
changes the module maps that have been recently introduced which broke
the invariant of compatible modules maps in test/Modules/Inputs.
llvm-svn: 193314
2013-10-24 15:51:24 +08:00
|
|
|
Invocation.mapVirtualFile("test.cpp", "#include <abc>\n");
|
|
|
|
Invocation.mapVirtualFile("def/abc", "\n");
|
|
|
|
// Add a module.map file in the include directory of our header, so we trigger
|
|
|
|
// the module.map header search logic.
|
|
|
|
Invocation.mapVirtualFile("def/module.map", "\n");
|
|
|
|
EXPECT_TRUE(Invocation.run());
|
|
|
|
}
|
|
|
|
|
2013-05-30 00:01:10 +08:00
|
|
|
struct VerifyEndCallback : public SourceFileCallbacks {
|
|
|
|
VerifyEndCallback() : BeginCalled(0), EndCalled(0), Matched(false) {}
|
2013-05-30 21:59:44 +08:00
|
|
|
virtual bool handleBeginSource(CompilerInstance &CI,
|
2014-03-02 17:32:10 +08:00
|
|
|
StringRef Filename) override {
|
2013-05-30 00:01:10 +08:00
|
|
|
++BeginCalled;
|
|
|
|
return true;
|
|
|
|
}
|
2013-05-30 21:59:44 +08:00
|
|
|
virtual void handleEndSource() {
|
2013-05-30 00:01:10 +08:00
|
|
|
++EndCalled;
|
2012-10-25 16:49:11 +08:00
|
|
|
}
|
|
|
|
ASTConsumer *newASTConsumer() {
|
|
|
|
return new FindTopLevelDeclConsumer(&Matched);
|
|
|
|
}
|
2013-05-30 00:01:10 +08:00
|
|
|
unsigned BeginCalled;
|
|
|
|
unsigned EndCalled;
|
2012-10-25 16:49:11 +08:00
|
|
|
bool Matched;
|
|
|
|
};
|
|
|
|
|
2014-03-13 00:07:46 +08:00
|
|
|
#if !defined(LLVM_ON_WIN32)
|
2013-05-30 00:01:10 +08:00
|
|
|
TEST(newFrontendActionFactory, InjectsSourceFileCallbacks) {
|
2012-10-25 16:49:11 +08:00
|
|
|
VerifyEndCallback EndCallback;
|
|
|
|
|
|
|
|
FixedCompilationDatabase Compilations("/", std::vector<std::string>());
|
|
|
|
std::vector<std::string> Sources;
|
|
|
|
Sources.push_back("/a.cc");
|
|
|
|
Sources.push_back("/b.cc");
|
|
|
|
ClangTool Tool(Compilations, Sources);
|
|
|
|
|
|
|
|
Tool.mapVirtualFile("/a.cc", "void a() {}");
|
|
|
|
Tool.mapVirtualFile("/b.cc", "void b() {}");
|
|
|
|
|
2014-04-24 11:48:09 +08:00
|
|
|
std::unique_ptr<FrontendActionFactory> Action(
|
|
|
|
newFrontendActionFactory(&EndCallback, &EndCallback));
|
|
|
|
Tool.run(Action.get());
|
2012-10-25 16:49:11 +08:00
|
|
|
|
|
|
|
EXPECT_TRUE(EndCallback.Matched);
|
2013-05-30 00:01:10 +08:00
|
|
|
EXPECT_EQ(2u, EndCallback.BeginCalled);
|
|
|
|
EXPECT_EQ(2u, EndCallback.EndCalled);
|
2012-10-25 16:49:11 +08:00
|
|
|
}
|
2012-10-25 17:38:41 +08:00
|
|
|
#endif
|
2012-10-25 16:49:11 +08:00
|
|
|
|
2012-11-28 05:31:01 +08:00
|
|
|
struct SkipBodyConsumer : public clang::ASTConsumer {
|
|
|
|
/// Skip the 'skipMe' function.
|
|
|
|
virtual bool shouldSkipFunctionBody(Decl *D) {
|
|
|
|
FunctionDecl *F = dyn_cast<FunctionDecl>(D);
|
|
|
|
return F && F->getNameAsString() == "skipMe";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SkipBodyAction : public clang::ASTFrontendAction {
|
|
|
|
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &Compiler,
|
|
|
|
StringRef) {
|
|
|
|
Compiler.getFrontendOpts().SkipFunctionBodies = true;
|
|
|
|
return new SkipBodyConsumer;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-28 12:37:38 +08:00
|
|
|
TEST(runToolOnCode, TestSkipFunctionBody) {
|
2012-11-28 05:31:01 +08:00
|
|
|
EXPECT_TRUE(runToolOnCode(new SkipBodyAction,
|
|
|
|
"int skipMe() { an_error_here }"));
|
|
|
|
EXPECT_FALSE(runToolOnCode(new SkipBodyAction,
|
|
|
|
"int skipMeNot() { an_error_here }"));
|
|
|
|
}
|
|
|
|
|
2014-03-03 07:37:26 +08:00
|
|
|
TEST(runToolOnCodeWithArgs, TestNoDepFile) {
|
|
|
|
llvm::SmallString<32> DepFilePath;
|
|
|
|
ASSERT_FALSE(
|
|
|
|
llvm::sys::fs::createTemporaryFile("depfile", "d", DepFilePath));
|
2014-03-03 16:13:06 +08:00
|
|
|
std::vector<std::string> Args;
|
|
|
|
Args.push_back("-MMD");
|
|
|
|
Args.push_back("-MT");
|
|
|
|
Args.push_back(DepFilePath.str());
|
|
|
|
Args.push_back("-MF");
|
|
|
|
Args.push_back(DepFilePath.str());
|
2014-03-03 15:49:35 +08:00
|
|
|
EXPECT_TRUE(runToolOnCodeWithArgs(new SkipBodyAction, "", Args));
|
2014-03-03 07:37:26 +08:00
|
|
|
EXPECT_FALSE(llvm::sys::fs::exists(DepFilePath.str()));
|
|
|
|
EXPECT_FALSE(llvm::sys::fs::remove(DepFilePath.str()));
|
|
|
|
}
|
|
|
|
|
2013-06-04 22:44:44 +08:00
|
|
|
struct CheckSyntaxOnlyAdjuster: public ArgumentsAdjuster {
|
|
|
|
bool &Found;
|
|
|
|
bool &Ran;
|
|
|
|
|
|
|
|
CheckSyntaxOnlyAdjuster(bool &Found, bool &Ran) : Found(Found), Ran(Ran) { }
|
|
|
|
|
|
|
|
virtual CommandLineArguments
|
2014-03-02 17:32:10 +08:00
|
|
|
Adjust(const CommandLineArguments &Args) override {
|
2013-06-04 22:44:44 +08:00
|
|
|
Ran = true;
|
|
|
|
for (unsigned I = 0, E = Args.size(); I != E; ++I) {
|
|
|
|
if (Args[I] == "-fsyntax-only") {
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Args;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(ClangToolTest, ArgumentAdjusters) {
|
|
|
|
FixedCompilationDatabase Compilations("/", std::vector<std::string>());
|
|
|
|
|
|
|
|
ClangTool Tool(Compilations, std::vector<std::string>(1, "/a.cc"));
|
|
|
|
Tool.mapVirtualFile("/a.cc", "void a() {}");
|
|
|
|
|
2014-04-24 11:48:09 +08:00
|
|
|
std::unique_ptr<FrontendActionFactory> Action(
|
|
|
|
newFrontendActionFactory<SyntaxOnlyAction>());
|
|
|
|
|
2013-06-04 22:44:44 +08:00
|
|
|
bool Found = false;
|
|
|
|
bool Ran = false;
|
|
|
|
Tool.appendArgumentsAdjuster(new CheckSyntaxOnlyAdjuster(Found, Ran));
|
2014-04-24 11:48:09 +08:00
|
|
|
Tool.run(Action.get());
|
2013-06-04 22:44:44 +08:00
|
|
|
EXPECT_TRUE(Ran);
|
|
|
|
EXPECT_TRUE(Found);
|
|
|
|
|
|
|
|
Ran = Found = false;
|
|
|
|
Tool.clearArgumentsAdjusters();
|
|
|
|
Tool.appendArgumentsAdjuster(new CheckSyntaxOnlyAdjuster(Found, Ran));
|
|
|
|
Tool.appendArgumentsAdjuster(new ClangSyntaxOnlyAdjuster());
|
2014-04-24 11:48:09 +08:00
|
|
|
Tool.run(Action.get());
|
2013-06-04 22:44:44 +08:00
|
|
|
EXPECT_TRUE(Ran);
|
|
|
|
EXPECT_FALSE(Found);
|
|
|
|
}
|
|
|
|
|
2014-03-13 00:07:46 +08:00
|
|
|
#ifndef LLVM_ON_WIN32
|
2013-11-07 04:12:45 +08:00
|
|
|
TEST(ClangToolTest, BuildASTs) {
|
|
|
|
FixedCompilationDatabase Compilations("/", std::vector<std::string>());
|
|
|
|
|
|
|
|
std::vector<std::string> Sources;
|
|
|
|
Sources.push_back("/a.cc");
|
|
|
|
Sources.push_back("/b.cc");
|
|
|
|
ClangTool Tool(Compilations, Sources);
|
|
|
|
|
|
|
|
Tool.mapVirtualFile("/a.cc", "void a() {}");
|
|
|
|
Tool.mapVirtualFile("/b.cc", "void b() {}");
|
|
|
|
|
|
|
|
std::vector<ASTUnit *> ASTs;
|
|
|
|
EXPECT_EQ(0, Tool.buildASTs(ASTs));
|
|
|
|
EXPECT_EQ(2u, ASTs.size());
|
|
|
|
|
|
|
|
llvm::DeleteContainerPointers(ASTs);
|
|
|
|
}
|
|
|
|
|
2013-11-08 07:18:05 +08:00
|
|
|
struct TestDiagnosticConsumer : public DiagnosticConsumer {
|
|
|
|
TestDiagnosticConsumer() : NumDiagnosticsSeen(0) {}
|
|
|
|
virtual void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
|
|
|
|
const Diagnostic &Info) {
|
|
|
|
++NumDiagnosticsSeen;
|
|
|
|
}
|
|
|
|
unsigned NumDiagnosticsSeen;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(ClangToolTest, InjectDiagnosticConsumer) {
|
|
|
|
FixedCompilationDatabase Compilations("/", std::vector<std::string>());
|
|
|
|
ClangTool Tool(Compilations, std::vector<std::string>(1, "/a.cc"));
|
|
|
|
Tool.mapVirtualFile("/a.cc", "int x = undeclared;");
|
|
|
|
TestDiagnosticConsumer Consumer;
|
|
|
|
Tool.setDiagnosticConsumer(&Consumer);
|
2014-04-24 11:48:09 +08:00
|
|
|
std::unique_ptr<FrontendActionFactory> Action(
|
|
|
|
newFrontendActionFactory<SyntaxOnlyAction>());
|
|
|
|
Tool.run(Action.get());
|
2013-11-08 07:18:05 +08:00
|
|
|
EXPECT_EQ(1u, Consumer.NumDiagnosticsSeen);
|
|
|
|
}
|
|
|
|
|
2013-11-13 01:53:18 +08:00
|
|
|
TEST(ClangToolTest, InjectDiagnosticConsumerInBuildASTs) {
|
|
|
|
FixedCompilationDatabase Compilations("/", std::vector<std::string>());
|
|
|
|
ClangTool Tool(Compilations, std::vector<std::string>(1, "/a.cc"));
|
|
|
|
Tool.mapVirtualFile("/a.cc", "int x = undeclared;");
|
|
|
|
TestDiagnosticConsumer Consumer;
|
|
|
|
Tool.setDiagnosticConsumer(&Consumer);
|
|
|
|
std::vector<ASTUnit*> ASTs;
|
|
|
|
Tool.buildASTs(ASTs);
|
|
|
|
EXPECT_EQ(1u, ASTs.size());
|
|
|
|
EXPECT_EQ(1u, Consumer.NumDiagnosticsSeen);
|
2014-04-25 20:58:42 +08:00
|
|
|
llvm::DeleteContainerPointers(ASTs);
|
2013-11-13 01:53:18 +08:00
|
|
|
}
|
2013-11-13 08:18:50 +08:00
|
|
|
#endif
|
2013-11-13 01:53:18 +08:00
|
|
|
|
2012-04-04 20:07:46 +08:00
|
|
|
} // end namespace tooling
|
|
|
|
} // end namespace clang
|