clang-tools  11.0.0
TestFS.h
Go to the documentation of this file.
1 //===-- TestFS.h ------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Allows setting up fake filesystem environments for tests.
10 //
11 //===----------------------------------------------------------------------===//
12 #ifndef LLVM_CLANG_TOOLS_EXTRA_UNITTESTS_CLANGD_TESTFS_H
13 #define LLVM_CLANG_TOOLS_EXTRA_UNITTESTS_CLANGD_TESTFS_H
14 #include "ClangdServer.h"
16 #include "support/Path.h"
17 #include "support/ThreadsafeFS.h"
18 #include "llvm/ADT/IntrusiveRefCntPtr.h"
19 #include "llvm/ADT/None.h"
20 #include "llvm/ADT/Optional.h"
21 #include "llvm/Support/Path.h"
22 #include "llvm/Support/VirtualFileSystem.h"
23 
24 namespace clang {
25 namespace clangd {
26 
27 // Builds a VFS that provides access to the provided files, plus temporary
28 // directories.
29 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem>
30 buildTestFS(llvm::StringMap<std::string> const &Files,
31  llvm::StringMap<time_t> const &Timestamps = {});
32 
33 // A VFS provider that returns TestFSes containing a provided set of files.
34 class MockFS : public ThreadsafeFS {
35 public:
36  IntrusiveRefCntPtr<llvm::vfs::FileSystem> viewImpl() const override {
37  return buildTestFS(Files, Timestamps);
38  }
39 
40  // If relative paths are used, they are resolved with testPath().
41  llvm::StringMap<std::string> Files;
42  llvm::StringMap<time_t> Timestamps;
43 };
44 
45 // A Compilation database that returns a fixed set of compile flags.
47 public:
48  /// If \p Directory is not empty, use that as the Directory field of the
49  /// CompileCommand, and as project SourceRoot.
50  ///
51  /// If \p RelPathPrefix is not empty, use that as a prefix in front of the
52  /// source file name, instead of using an absolute path.
53  MockCompilationDatabase(StringRef Directory = StringRef(),
54  StringRef RelPathPrefix = StringRef());
55 
56  llvm::Optional<tooling::CompileCommand>
57  getCompileCommand(PathRef File) const override;
58 
59  llvm::Optional<ProjectInfo> getProjectInfo(PathRef File) const override;
60 
61  std::vector<std::string> ExtraClangFlags;
62 
63 private:
64  StringRef Directory;
65  StringRef RelPathPrefix;
66 };
67 
68 // Returns an absolute (fake) test directory for this OS.
69 const char *testRoot();
70 
71 // Returns a suitable absolute path for this OS.
72 std::string testPath(PathRef File,
73  llvm::sys::path::Style = llvm::sys::path::Style::native);
74 
75 // unittest: is a scheme that refers to files relative to testRoot()
76 // This anchor is used to force the linker to link in the generated object file
77 // and thus register unittest: URI scheme plugin.
78 extern volatile int UnittestSchemeAnchorSource;
79 
80 } // namespace clangd
81 } // namespace clang
82 #endif
clang::clangd::testPath
std::string testPath(PathRef File, llvm::sys::path::Style Style)
Definition: TestFS.cpp:82
Path.h
clang::clangd::MockFS::viewImpl
IntrusiveRefCntPtr< llvm::vfs::FileSystem > viewImpl() const override
Overridden by implementations to provide a vfs::FileSystem.
Definition: TestFS.h:36
clang::clangd::GlobalCompilationDatabase
Provides compilation arguments used for parsing C and C++ files.
Definition: GlobalCompilationDatabase.h:35
clang::clangd::UnittestSchemeAnchorSource
volatile int UnittestSchemeAnchorSource
Definition: TestFS.cpp:132
clang::clangd::MockCompilationDatabase::getCompileCommand
llvm::Optional< tooling::CompileCommand > getCompileCommand(PathRef File) const override
If there are any known-good commands for building this file, returns one.
Definition: TestFS.cpp:49
ThreadsafeFS.h
clang::clangd::MockCompilationDatabase::MockCompilationDatabase
MockCompilationDatabase(StringRef Directory=StringRef(), StringRef RelPathPrefix=StringRef())
If Directory is not empty, use that as the Directory field of the CompileCommand, and as project Sour...
Definition: TestFS.cpp:36
clang::clangd::testRoot
const char * testRoot()
Definition: TestFS.cpp:74
GlobalCompilationDatabase.h
clang::clangd::MockFS
Definition: TestFS.h:34
clang::clangd::buildTestFS
llvm::IntrusiveRefCntPtr< llvm::vfs::FileSystem > buildTestFS(llvm::StringMap< std::string > const &Files, llvm::StringMap< time_t > const &Timestamps)
Definition: TestFS.cpp:22
clang::clangd::MockFS::Timestamps
llvm::StringMap< time_t > Timestamps
Definition: TestFS.h:42
clang::clangd::MockCompilationDatabase::getProjectInfo
llvm::Optional< ProjectInfo > getProjectInfo(PathRef File) const override
Finds the closest project to File.
Definition: TestFS.cpp:44
clang::clangd::CompletionItemKind::File
clang::clangd::PathRef
llvm::StringRef PathRef
A typedef to represent a ref to file path.
Definition: Path.h:23
clang::clangd::ThreadsafeFS
Wrapper for vfs::FileSystem for use in multithreaded programs like clangd.
Definition: ThreadsafeFS.h:28
clang
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Definition: ApplyReplacements.h:27
ClangdServer.h
clang::clangd::MockFS::Files
llvm::StringMap< std::string > Files
Definition: TestFS.h:41
clang::clangd::MockCompilationDatabase::ExtraClangFlags
std::vector< std::string > ExtraClangFlags
Definition: TestFS.h:61
clang::clangd::MockCompilationDatabase
Definition: TestFS.h:46