mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 00:06:07 +00:00

Change MemoryBufferCache to InMemoryModuleCache, moving it from Basic to Serialization. Another patch will start using it to manage module build more explicitly, but this is split out because it's mostly mechanical. Because of the move to Serialization we can no longer abuse the Preprocessor to forward it to the ASTReader. Besides the rename and file move, that means Preprocessor::Preprocessor has one fewer parameter and ASTReader::ASTReader has one more. llvm-svn: 355777
96 lines
3.3 KiB
C++
96 lines
3.3 KiB
C++
//===- unittests/Lex/HeaderSearchTest.cpp ------ HeaderSearch 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 "clang/Lex/HeaderSearch.h"
|
|
#include "clang/Basic/Diagnostic.h"
|
|
#include "clang/Basic/DiagnosticOptions.h"
|
|
#include "clang/Basic/FileManager.h"
|
|
#include "clang/Basic/LangOptions.h"
|
|
#include "clang/Basic/SourceManager.h"
|
|
#include "clang/Basic/TargetInfo.h"
|
|
#include "clang/Basic/TargetOptions.h"
|
|
#include "clang/Lex/HeaderSearch.h"
|
|
#include "clang/Lex/HeaderSearchOptions.h"
|
|
#include "clang/Serialization/InMemoryModuleCache.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace clang {
|
|
namespace {
|
|
|
|
// The test fixture.
|
|
class HeaderSearchTest : public ::testing::Test {
|
|
protected:
|
|
HeaderSearchTest()
|
|
: VFS(new llvm::vfs::InMemoryFileSystem), FileMgr(FileMgrOpts, VFS),
|
|
DiagID(new DiagnosticIDs()),
|
|
Diags(DiagID, new DiagnosticOptions, new IgnoringDiagConsumer()),
|
|
SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions),
|
|
Search(std::make_shared<HeaderSearchOptions>(), SourceMgr, Diags,
|
|
LangOpts, Target.get()) {
|
|
TargetOpts->Triple = "x86_64-apple-darwin11.1.0";
|
|
Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
|
|
}
|
|
|
|
void addSearchDir(llvm::StringRef Dir) {
|
|
VFS->addFile(Dir, 0, llvm::MemoryBuffer::getMemBuffer(""), /*User=*/None,
|
|
/*Group=*/None, llvm::sys::fs::file_type::directory_file);
|
|
const DirectoryEntry *DE = FileMgr.getDirectory(Dir);
|
|
assert(DE);
|
|
auto DL = DirectoryLookup(DE, SrcMgr::C_User, /*isFramework=*/false);
|
|
Search.AddSearchPath(DL, /*isAngled=*/false);
|
|
}
|
|
|
|
IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> VFS;
|
|
FileSystemOptions FileMgrOpts;
|
|
FileManager FileMgr;
|
|
IntrusiveRefCntPtr<DiagnosticIDs> DiagID;
|
|
DiagnosticsEngine Diags;
|
|
SourceManager SourceMgr;
|
|
LangOptions LangOpts;
|
|
std::shared_ptr<TargetOptions> TargetOpts;
|
|
IntrusiveRefCntPtr<TargetInfo> Target;
|
|
HeaderSearch Search;
|
|
};
|
|
|
|
TEST_F(HeaderSearchTest, NoSearchDir) {
|
|
EXPECT_EQ(Search.search_dir_size(), 0u);
|
|
EXPECT_EQ(Search.suggestPathToFileForDiagnostics("/x/y/z", /*WorkingDir=*/""),
|
|
"/x/y/z");
|
|
}
|
|
|
|
TEST_F(HeaderSearchTest, SimpleShorten) {
|
|
addSearchDir("/x");
|
|
addSearchDir("/x/y");
|
|
EXPECT_EQ(Search.suggestPathToFileForDiagnostics("/x/y/z", /*WorkingDir=*/""),
|
|
"z");
|
|
addSearchDir("/a/b/");
|
|
EXPECT_EQ(Search.suggestPathToFileForDiagnostics("/a/b/c", /*WorkingDir=*/""),
|
|
"c");
|
|
}
|
|
|
|
TEST_F(HeaderSearchTest, ShortenWithWorkingDir) {
|
|
addSearchDir("x/y");
|
|
EXPECT_EQ(Search.suggestPathToFileForDiagnostics("/a/b/c/x/y/z",
|
|
/*WorkingDir=*/"/a/b/c"),
|
|
"z");
|
|
}
|
|
|
|
TEST_F(HeaderSearchTest, Dots) {
|
|
addSearchDir("/x/./y/");
|
|
EXPECT_EQ(Search.suggestPathToFileForDiagnostics("/x/y/./z",
|
|
/*WorkingDir=*/""),
|
|
"z");
|
|
addSearchDir("a/.././c/");
|
|
EXPECT_EQ(Search.suggestPathToFileForDiagnostics("/m/n/./c/z",
|
|
/*WorkingDir=*/"/m/n/"),
|
|
"z");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace clang
|