#include "TestFS.h"
#include "GlobalCompilationDatabase.h"
#include "URI.h"
#include "support/Logger.h"
#include "support/Path.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/Path.h"
#include <optional>
namespace clang {
namespace clangd {
namespace {
bool pathConsumeFront(PathRef &Path, PathRef Prefix) {
if (!pathStartsWith(Prefix, Path))
return false;
Path = Path.drop_front(Prefix.size());
return true;
}
}
llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem>
buildTestFS(llvm::StringMap<std::string> const &Files,
llvm::StringMap<time_t> const &Timestamps) {
llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> MemFS(
new llvm::vfs::InMemoryFileSystem);
MemFS->setCurrentWorkingDirectory(testRoot());
for (auto &FileAndContents : Files) {
llvm::StringRef File = FileAndContents.first();
MemFS->addFile(
File, Timestamps.lookup(File),
llvm::MemoryBuffer::getMemBufferCopy(FileAndContents.second, File));
}
return MemFS;
}
MockCompilationDatabase::MockCompilationDatabase(llvm::StringRef Directory,
llvm::StringRef RelPathPrefix)
: ExtraClangFlags({"-ffreestanding"}), Directory(Directory),
RelPathPrefix(RelPathPrefix) {
}
std::optional<ProjectInfo>
MockCompilationDatabase::getProjectInfo(PathRef File) const {
return ProjectInfo{std::string(Directory)};
}
std::optional<tooling::CompileCommand>
MockCompilationDatabase::getCompileCommand(PathRef File) const {
if (ExtraClangFlags.empty())
return std::nullopt;
auto FileName = llvm::sys::path::filename(File);
auto CommandLine = ExtraClangFlags;
CommandLine.insert(CommandLine.begin(), "clang");
if (RelPathPrefix.empty()) {
CommandLine.push_back(std::string(File));
} else {
llvm::SmallString<32> RelativeFilePath(RelPathPrefix);
llvm::sys::path::append(RelativeFilePath, FileName);
CommandLine.push_back(std::string(RelativeFilePath.str()));
}
return {tooling::CompileCommand(Directory != llvm::StringRef()
? Directory
: llvm::sys::path::parent_path(File),
FileName, std::move(CommandLine), "")};
}
const char *testRoot() {
#ifdef _WIN32
return "C:\\clangd-test";
#else
return "/clangd-test";
#endif
}
std::string testPath(PathRef File, llvm::sys::path::Style Style) {
assert(llvm::sys::path::is_relative(File) && "FileName should be relative");
llvm::SmallString<32> NativeFile = File;
llvm::sys::path::native(NativeFile, Style);
llvm::SmallString<32> Path;
llvm::sys::path::append(Path, Style, testRoot(), NativeFile);
return std::string(Path.str());
}
class TestScheme : public URIScheme {
public:
static const char *Scheme;
llvm::Expected<std::string>
getAbsolutePath(llvm::StringRef , llvm::StringRef Body,
llvm::StringRef HintPath) const override {
if (!HintPath.empty() && !pathStartsWith(testRoot(), HintPath))
return error("Hint path is not empty and doesn't start with {0}: {1}",
testRoot(), HintPath);
if (!Body.consume_front("/"))
return error("Body of an unittest: URI must start with '/'");
llvm::SmallString<16> Path(Body.begin(), Body.end());
llvm::sys::path::native(Path);
return testPath(Path);
}
llvm::Expected<URI>
uriFromAbsolutePath(llvm::StringRef AbsolutePath) const override {
if (!pathConsumeFront(AbsolutePath, testRoot()))
return error("{0} does not start with {1}", AbsolutePath, testRoot());
return URI(Scheme, "",
llvm::sys::path::convert_to_slash(AbsolutePath));
}
};
const char *TestScheme::Scheme = "unittest";
static URISchemeRegistry::Add<TestScheme> X(TestScheme::Scheme, "Test schema");
volatile int UnittestSchemeAnchorSource = 0;
}
}