1 //===- unittests/Basic/FileMangerTest.cpp ------------ FileManger tests ---===//
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
7 //===----------------------------------------------------------------------===//
9 #include "clang/Basic/FileManager.h"
10 #include "clang/Basic/FileSystemOptions.h"
11 #include "clang/Basic/FileSystemStatCache.h"
12 #include "llvm/ADT/STLExtras.h"
13 #include "llvm/Support/Path.h"
14 #include "llvm/Support/VirtualFileSystem.h"
15 #include "llvm/Testing/Support/Error.h"
16 #include "gtest/gtest.h"
19 using namespace clang
;
23 // Used to create a fake file system for running the tests with such
24 // that the tests are not affected by the structure/contents of the
25 // file system on the machine running the tests.
26 class FakeStatCache
: public FileSystemStatCache
{
28 // Maps a file/directory path to its desired stat result. Anything
29 // not in this map is considered to not exist in the file system.
30 llvm::StringMap
<llvm::vfs::Status
, llvm::BumpPtrAllocator
> StatCalls
;
32 void InjectFileOrDirectory(const char *Path
, ino_t INode
, bool IsFile
,
33 const char *StatPath
) {
34 SmallString
<128> NormalizedPath(Path
);
35 SmallString
<128> NormalizedStatPath
;
36 if (is_style_posix(llvm::sys::path::Style::native
)) {
37 llvm::sys::path::native(NormalizedPath
);
38 Path
= NormalizedPath
.c_str();
41 NormalizedStatPath
= StatPath
;
42 llvm::sys::path::native(NormalizedStatPath
);
43 StatPath
= NormalizedStatPath
.c_str();
47 auto fileType
= IsFile
?
48 llvm::sys::fs::file_type::regular_file
:
49 llvm::sys::fs::file_type::directory_file
;
50 llvm::vfs::Status
Status(StatPath
? StatPath
: Path
,
51 llvm::sys::fs::UniqueID(1, INode
),
52 /*MTime*/{}, /*User*/0, /*Group*/0,
54 llvm::sys::fs::perms::all_all
);
56 Status
.ExposesExternalVFSPath
= true;
57 StatCalls
[Path
] = Status
;
61 // Inject a file with the given inode value to the fake file system.
62 void InjectFile(const char *Path
, ino_t INode
,
63 const char *StatPath
= nullptr) {
64 InjectFileOrDirectory(Path
, INode
, /*IsFile=*/true, StatPath
);
67 // Inject a directory with the given inode value to the fake file system.
68 void InjectDirectory(const char *Path
, ino_t INode
) {
69 InjectFileOrDirectory(Path
, INode
, /*IsFile=*/false, nullptr);
72 // Implement FileSystemStatCache::getStat().
73 std::error_code
getStat(StringRef Path
, llvm::vfs::Status
&Status
,
75 std::unique_ptr
<llvm::vfs::File
> *F
,
76 llvm::vfs::FileSystem
&FS
) override
{
77 SmallString
<128> NormalizedPath(Path
);
78 if (is_style_posix(llvm::sys::path::Style::native
)) {
79 llvm::sys::path::native(NormalizedPath
);
80 Path
= NormalizedPath
.c_str();
83 if (StatCalls
.count(Path
) != 0) {
84 Status
= StatCalls
[Path
];
85 return std::error_code();
88 return std::make_error_code(std::errc::no_such_file_or_directory
);
93 class FileManagerTest
: public ::testing::Test
{
95 FileManagerTest() : manager(options
) {
98 FileSystemOptions options
;
102 // When a virtual file is added, its getDir() field has correct name.
103 TEST_F(FileManagerTest
, getVirtualFileSetsTheDirFieldCorrectly
) {
104 FileEntryRef file
= manager
.getVirtualFileRef("foo.cpp", 42, 0);
105 EXPECT_EQ(".", file
.getDir().getName());
107 file
= manager
.getVirtualFileRef("x/y/z.cpp", 42, 0);
108 EXPECT_EQ("x/y", file
.getDir().getName());
111 // Before any virtual file is added, no virtual directory exists.
112 TEST_F(FileManagerTest
, NoVirtualDirectoryExistsBeforeAVirtualFileIsAdded
) {
113 // An empty FakeStatCache causes all stat calls made by the
114 // FileManager to report "file/directory doesn't exist". This
115 // avoids the possibility of the result of this test being affected
116 // by what's in the real file system.
117 manager
.setStatCache(std::make_unique
<FakeStatCache
>());
119 ASSERT_FALSE(manager
.getDirectory("virtual/dir/foo"));
120 ASSERT_FALSE(manager
.getDirectory("virtual/dir"));
121 ASSERT_FALSE(manager
.getDirectory("virtual"));
124 // When a virtual file is added, all of its ancestors should be created.
125 TEST_F(FileManagerTest
, getVirtualFileCreatesDirectoryEntriesForAncestors
) {
126 // Fake an empty real file system.
127 manager
.setStatCache(std::make_unique
<FakeStatCache
>());
129 manager
.getVirtualFile("virtual/dir/bar.h", 100, 0);
130 ASSERT_FALSE(manager
.getDirectory("virtual/dir/foo"));
132 auto dir
= manager
.getDirectoryRef("virtual/dir");
133 ASSERT_THAT_EXPECTED(dir
, llvm::Succeeded());
134 EXPECT_EQ("virtual/dir", dir
->getName());
136 dir
= manager
.getDirectoryRef("virtual");
137 ASSERT_THAT_EXPECTED(dir
, llvm::Succeeded());
138 EXPECT_EQ("virtual", dir
->getName());
141 // getFileRef() succeeds if a real file exists at the given path.
142 TEST_F(FileManagerTest
, getFileReturnsValidFileEntryForExistingRealFile
) {
143 // Inject fake files into the file system.
144 auto statCache
= std::make_unique
<FakeStatCache
>();
145 statCache
->InjectDirectory("/tmp", 42);
146 statCache
->InjectFile("/tmp/test", 43);
149 const char *DirName
= "C:.";
150 const char *FileName
= "C:test";
151 statCache
->InjectDirectory(DirName
, 44);
152 statCache
->InjectFile(FileName
, 45);
155 manager
.setStatCache(std::move(statCache
));
157 auto file
= manager
.getFileRef("/tmp/test");
158 ASSERT_THAT_EXPECTED(file
, llvm::Succeeded());
159 EXPECT_EQ("/tmp/test", file
->getName());
161 EXPECT_EQ("/tmp", file
->getDir().getName());
164 file
= manager
.getFileRef(FileName
);
165 ASSERT_THAT_EXPECTED(file
, llvm::Succeeded());
166 EXPECT_EQ(DirName
, file
->getDir().getName());
170 // getFileRef() succeeds if a virtual file exists at the given path.
171 TEST_F(FileManagerTest
, getFileReturnsValidFileEntryForExistingVirtualFile
) {
172 // Fake an empty real file system.
173 manager
.setStatCache(std::make_unique
<FakeStatCache
>());
175 manager
.getVirtualFile("virtual/dir/bar.h", 100, 0);
176 auto file
= manager
.getFileRef("virtual/dir/bar.h");
177 ASSERT_THAT_EXPECTED(file
, llvm::Succeeded());
178 EXPECT_EQ("virtual/dir/bar.h", file
->getName());
179 EXPECT_EQ("virtual/dir", file
->getDir().getName());
182 // getFile() returns different FileEntries for different paths when
183 // there's no aliasing.
184 TEST_F(FileManagerTest
, getFileReturnsDifferentFileEntriesForDifferentFiles
) {
185 // Inject two fake files into the file system. Different inodes
186 // mean the files are not symlinked together.
187 auto statCache
= std::make_unique
<FakeStatCache
>();
188 statCache
->InjectDirectory(".", 41);
189 statCache
->InjectFile("foo.cpp", 42);
190 statCache
->InjectFile("bar.cpp", 43);
191 manager
.setStatCache(std::move(statCache
));
193 auto fileFoo
= manager
.getFile("foo.cpp");
194 auto fileBar
= manager
.getFile("bar.cpp");
195 ASSERT_TRUE(fileFoo
);
196 ASSERT_TRUE(fileBar
);
197 EXPECT_NE(*fileFoo
, *fileBar
);
200 // getFile() returns an error if neither a real file nor a virtual file
201 // exists at the given path.
202 TEST_F(FileManagerTest
, getFileReturnsErrorForNonexistentFile
) {
203 // Inject a fake foo.cpp into the file system.
204 auto statCache
= std::make_unique
<FakeStatCache
>();
205 statCache
->InjectDirectory(".", 41);
206 statCache
->InjectFile("foo.cpp", 42);
207 statCache
->InjectDirectory("MyDirectory", 49);
208 manager
.setStatCache(std::move(statCache
));
210 // Create a virtual bar.cpp file.
211 manager
.getVirtualFile("bar.cpp", 200, 0);
213 auto file
= manager
.getFile("xyz.txt");
215 ASSERT_EQ(file
.getError(), std::errc::no_such_file_or_directory
);
217 auto readingDirAsFile
= manager
.getFile("MyDirectory");
218 ASSERT_FALSE(readingDirAsFile
);
219 ASSERT_EQ(readingDirAsFile
.getError(), std::errc::is_a_directory
);
221 auto readingFileAsDir
= manager
.getDirectory("foo.cpp");
222 ASSERT_FALSE(readingFileAsDir
);
223 ASSERT_EQ(readingFileAsDir
.getError(), std::errc::not_a_directory
);
226 // The following tests apply to Unix-like system only.
230 // getFile() returns the same FileEntry for real files that are aliases.
231 TEST_F(FileManagerTest
, getFileReturnsSameFileEntryForAliasedRealFiles
) {
232 // Inject two real files with the same inode.
233 auto statCache
= std::make_unique
<FakeStatCache
>();
234 statCache
->InjectDirectory("abc", 41);
235 statCache
->InjectFile("abc/foo.cpp", 42);
236 statCache
->InjectFile("abc/bar.cpp", 42);
237 manager
.setStatCache(std::move(statCache
));
239 auto f1
= manager
.getFile("abc/foo.cpp");
240 auto f2
= manager
.getFile("abc/bar.cpp");
242 EXPECT_EQ(f1
? *f1
: nullptr,
245 // Check that getFileRef also does the right thing.
246 auto r1
= manager
.getFileRef("abc/foo.cpp");
247 auto r2
= manager
.getFileRef("abc/bar.cpp");
251 EXPECT_EQ("abc/foo.cpp", r1
->getName());
252 EXPECT_EQ("abc/bar.cpp", r2
->getName());
253 EXPECT_EQ((f1
? *f1
: nullptr), &r1
->getFileEntry());
254 EXPECT_EQ((f2
? *f2
: nullptr), &r2
->getFileEntry());
257 TEST_F(FileManagerTest
, getFileRefReturnsCorrectNameForDifferentStatPath
) {
258 // Inject files with the same inode, but where some files have a stat that
259 // gives a different name. This is adding coverage for stat behaviour
260 // triggered by the RedirectingFileSystem for 'use-external-name' that
261 // FileManager::getFileRef has special logic for.
262 auto StatCache
= std::make_unique
<FakeStatCache
>();
263 StatCache
->InjectDirectory("dir", 40);
264 StatCache
->InjectFile("dir/f1.cpp", 41);
265 StatCache
->InjectFile("dir/f1-alias.cpp", 41, "dir/f1.cpp");
266 StatCache
->InjectFile("dir/f2.cpp", 42);
267 StatCache
->InjectFile("dir/f2-alias.cpp", 42, "dir/f2.cpp");
269 // This unintuitive rename-the-file-on-stat behaviour supports how the
270 // RedirectingFileSystem VFS layer responds to stats. However, even if you
271 // have two layers, you should only get a single filename back. As such the
272 // following stat cache behaviour is not supported (the correct stat entry
273 // for a double-redirection would be "dir/f1.cpp") and the getFileRef below
275 StatCache
->InjectFile("dir/f1-alias-alias.cpp", 41, "dir/f1-alias.cpp");
277 manager
.setStatCache(std::move(StatCache
));
279 // With F1, test accessing the non-redirected name first.
280 auto F1
= manager
.getFileRef("dir/f1.cpp");
281 auto F1Alias
= manager
.getFileRef("dir/f1-alias.cpp");
282 auto F1Alias2
= manager
.getFileRef("dir/f1-alias.cpp");
284 ASSERT_FALSE(!F1Alias
);
285 ASSERT_FALSE(!F1Alias2
);
286 EXPECT_EQ("dir/f1.cpp", F1
->getName());
287 EXPECT_EQ("dir/f1.cpp", F1
->getFileEntry().getName());
288 EXPECT_EQ("dir/f1.cpp", F1Alias
->getName());
289 EXPECT_EQ("dir/f1.cpp", F1Alias2
->getName());
290 EXPECT_EQ(&F1
->getFileEntry(), &F1Alias
->getFileEntry());
291 EXPECT_EQ(&F1
->getFileEntry(), &F1Alias2
->getFileEntry());
293 #if !defined(NDEBUG) && GTEST_HAS_DEATH_TEST
294 EXPECT_DEATH((void)manager
.getFileRef("dir/f1-alias-alias.cpp"),
295 "filename redirected to a non-canonical filename?");
298 // With F2, test accessing the redirected name first.
299 auto F2Alias
= manager
.getFileRef("dir/f2-alias.cpp");
300 auto F2
= manager
.getFileRef("dir/f2.cpp");
301 auto F2Alias2
= manager
.getFileRef("dir/f2-alias.cpp");
303 ASSERT_FALSE(!F2Alias
);
304 ASSERT_FALSE(!F2Alias2
);
305 EXPECT_EQ("dir/f2.cpp", F2
->getName());
306 EXPECT_EQ("dir/f2.cpp", F2
->getFileEntry().getName());
307 EXPECT_EQ("dir/f2.cpp", F2Alias
->getName());
308 EXPECT_EQ("dir/f2.cpp", F2Alias2
->getName());
309 EXPECT_EQ(&F2
->getFileEntry(), &F2Alias
->getFileEntry());
310 EXPECT_EQ(&F2
->getFileEntry(), &F2Alias2
->getFileEntry());
313 TEST_F(FileManagerTest
, getFileRefReturnsCorrectDirNameForDifferentStatPath
) {
314 // Inject files with the same inode into distinct directories (name & inode).
315 auto StatCache
= std::make_unique
<FakeStatCache
>();
316 StatCache
->InjectDirectory("dir1", 40);
317 StatCache
->InjectDirectory("dir2", 41);
318 StatCache
->InjectFile("dir1/f.cpp", 42);
319 StatCache
->InjectFile("dir2/f.cpp", 42, "dir1/f.cpp");
321 manager
.setStatCache(std::move(StatCache
));
322 auto Dir1F
= manager
.getFileRef("dir1/f.cpp");
323 auto Dir2F
= manager
.getFileRef("dir2/f.cpp");
325 ASSERT_FALSE(!Dir1F
);
326 ASSERT_FALSE(!Dir2F
);
327 EXPECT_EQ("dir1", Dir1F
->getDir().getName());
328 EXPECT_EQ("dir2", Dir2F
->getDir().getName());
329 EXPECT_EQ("dir1/f.cpp", Dir1F
->getNameAsRequested());
330 EXPECT_EQ("dir2/f.cpp", Dir2F
->getNameAsRequested());
333 // getFile() returns the same FileEntry for virtual files that have
334 // corresponding real files that are aliases.
335 TEST_F(FileManagerTest
, getFileReturnsSameFileEntryForAliasedVirtualFiles
) {
336 // Inject two real files with the same inode.
337 auto statCache
= std::make_unique
<FakeStatCache
>();
338 statCache
->InjectDirectory("abc", 41);
339 statCache
->InjectFile("abc/foo.cpp", 42);
340 statCache
->InjectFile("abc/bar.cpp", 42);
341 manager
.setStatCache(std::move(statCache
));
343 auto f1
= manager
.getFile("abc/foo.cpp");
344 auto f2
= manager
.getFile("abc/bar.cpp");
346 EXPECT_EQ(f1
? *f1
: nullptr,
350 TEST_F(FileManagerTest
, getFileRefEquality
) {
351 auto StatCache
= std::make_unique
<FakeStatCache
>();
352 StatCache
->InjectDirectory("dir", 40);
353 StatCache
->InjectFile("dir/f1.cpp", 41);
354 StatCache
->InjectFile("dir/f1-also.cpp", 41);
355 StatCache
->InjectFile("dir/f1-redirect.cpp", 41, "dir/f1.cpp");
356 StatCache
->InjectFile("dir/f2.cpp", 42);
357 manager
.setStatCache(std::move(StatCache
));
359 auto F1
= manager
.getFileRef("dir/f1.cpp");
360 auto F1Again
= manager
.getFileRef("dir/f1.cpp");
361 auto F1Also
= manager
.getFileRef("dir/f1-also.cpp");
362 auto F1Redirect
= manager
.getFileRef("dir/f1-redirect.cpp");
363 auto F1RedirectAgain
= manager
.getFileRef("dir/f1-redirect.cpp");
364 auto F2
= manager
.getFileRef("dir/f2.cpp");
366 // Check Expected<FileEntryRef> for error.
368 ASSERT_FALSE(!F1Also
);
369 ASSERT_FALSE(!F1Again
);
370 ASSERT_FALSE(!F1Redirect
);
371 ASSERT_FALSE(!F1RedirectAgain
);
375 EXPECT_EQ("dir/f1.cpp", F1
->getName());
376 EXPECT_EQ("dir/f1.cpp", F1Again
->getName());
377 EXPECT_EQ("dir/f1-also.cpp", F1Also
->getName());
378 EXPECT_EQ("dir/f1.cpp", F1Redirect
->getName());
379 EXPECT_EQ("dir/f1.cpp", F1RedirectAgain
->getName());
380 EXPECT_EQ("dir/f2.cpp", F2
->getName());
382 EXPECT_EQ("dir/f1.cpp", F1
->getNameAsRequested());
383 EXPECT_EQ("dir/f1-redirect.cpp", F1Redirect
->getNameAsRequested());
385 // Compare against FileEntry*.
386 EXPECT_EQ(&F1
->getFileEntry(), *F1
);
387 EXPECT_EQ(*F1
, &F1
->getFileEntry());
388 EXPECT_EQ(&F1
->getFileEntry(), &F1Redirect
->getFileEntry());
389 EXPECT_EQ(&F1
->getFileEntry(), &F1RedirectAgain
->getFileEntry());
390 EXPECT_NE(&F2
->getFileEntry(), *F1
);
391 EXPECT_NE(*F1
, &F2
->getFileEntry());
394 EXPECT_EQ(*F1
, *F1Also
);
395 EXPECT_EQ(*F1
, *F1Again
);
396 EXPECT_EQ(*F1
, *F1Redirect
);
397 EXPECT_EQ(*F1Also
, *F1Redirect
);
398 EXPECT_EQ(*F1
, *F1RedirectAgain
);
400 EXPECT_NE(*F2
, *F1Also
);
401 EXPECT_NE(*F2
, *F1Again
);
402 EXPECT_NE(*F2
, *F1Redirect
);
404 // Compare using isSameRef.
405 EXPECT_TRUE(F1
->isSameRef(*F1Again
));
406 EXPECT_FALSE(F1
->isSameRef(*F1Redirect
));
407 EXPECT_FALSE(F1
->isSameRef(*F1Also
));
408 EXPECT_FALSE(F1
->isSameRef(*F2
));
409 EXPECT_TRUE(F1Redirect
->isSameRef(*F1RedirectAgain
));
412 // getFile() Should return the same entry as getVirtualFile if the file actually
413 // is a virtual file, even if the name is not exactly the same (but is after
414 // normalisation done by the file system, like on Windows). This can be checked
415 // here by checking the size.
416 TEST_F(FileManagerTest
, getVirtualFileWithDifferentName
) {
417 // Inject fake files into the file system.
418 auto statCache
= std::make_unique
<FakeStatCache
>();
419 statCache
->InjectDirectory("c:\\tmp", 42);
420 statCache
->InjectFile("c:\\tmp\\test", 43);
422 manager
.setStatCache(std::move(statCache
));
424 // Inject the virtual file:
425 const FileEntry
*file1
= manager
.getVirtualFile("c:\\tmp\\test", 123, 1);
426 ASSERT_TRUE(file1
!= nullptr);
427 EXPECT_EQ(43U, file1
->getUniqueID().getFile());
428 EXPECT_EQ(123, file1
->getSize());
430 // Lookup the virtual file with a different name:
431 auto file2
= manager
.getFile("c:/tmp/test", 100, 1);
433 // Check that it's the same UFE:
434 EXPECT_EQ(file1
, *file2
);
435 EXPECT_EQ(43U, (*file2
)->getUniqueID().getFile());
436 // Check that the contents of the UFE are not overwritten by the entry in the
438 EXPECT_EQ(123, (*file2
)->getSize());
443 static StringRef
getSystemRoot() {
444 return is_style_windows(llvm::sys::path::Style::native
) ? "C:\\" : "/";
447 TEST_F(FileManagerTest
, makeAbsoluteUsesVFS
) {
448 // FIXME: Should this be using a root path / call getSystemRoot()? For now,
449 // avoiding that and leaving the test as-is.
450 SmallString
<64> CustomWorkingDir
=
451 is_style_windows(llvm::sys::path::Style::native
) ? StringRef("C:")
453 llvm::sys::path::append(CustomWorkingDir
, "some", "weird", "path");
455 auto FS
= IntrusiveRefCntPtr
<llvm::vfs::InMemoryFileSystem
>(
456 new llvm::vfs::InMemoryFileSystem
);
457 // setCurrentworkingdirectory must finish without error.
458 ASSERT_TRUE(!FS
->setCurrentWorkingDirectory(CustomWorkingDir
));
460 FileSystemOptions Opts
;
461 FileManager
Manager(Opts
, FS
);
463 SmallString
<64> Path("a/foo.cpp");
465 SmallString
<64> ExpectedResult(CustomWorkingDir
);
466 llvm::sys::path::append(ExpectedResult
, Path
);
468 ASSERT_TRUE(Manager
.makeAbsolutePath(Path
));
469 EXPECT_EQ(Path
, ExpectedResult
);
472 // getVirtualFile should always fill the real path.
473 TEST_F(FileManagerTest
, getVirtualFileFillsRealPathName
) {
474 SmallString
<64> CustomWorkingDir
= getSystemRoot();
476 auto FS
= IntrusiveRefCntPtr
<llvm::vfs::InMemoryFileSystem
>(
477 new llvm::vfs::InMemoryFileSystem
);
478 // setCurrentworkingdirectory must finish without error.
479 ASSERT_TRUE(!FS
->setCurrentWorkingDirectory(CustomWorkingDir
));
481 FileSystemOptions Opts
;
482 FileManager
Manager(Opts
, FS
);
484 // Inject fake files into the file system.
485 auto statCache
= std::make_unique
<FakeStatCache
>();
486 statCache
->InjectDirectory("/tmp", 42);
487 statCache
->InjectFile("/tmp/test", 43);
489 Manager
.setStatCache(std::move(statCache
));
491 // Check for real path.
492 const FileEntry
*file
= Manager
.getVirtualFile("/tmp/test", 123, 1);
493 ASSERT_TRUE(file
!= nullptr);
494 SmallString
<64> ExpectedResult
= CustomWorkingDir
;
496 llvm::sys::path::append(ExpectedResult
, "tmp", "test");
497 EXPECT_EQ(file
->tryGetRealPathName(), ExpectedResult
);
500 TEST_F(FileManagerTest
, getFileDontOpenRealPath
) {
501 SmallString
<64> CustomWorkingDir
= getSystemRoot();
503 auto FS
= IntrusiveRefCntPtr
<llvm::vfs::InMemoryFileSystem
>(
504 new llvm::vfs::InMemoryFileSystem
);
505 // setCurrentworkingdirectory must finish without error.
506 ASSERT_TRUE(!FS
->setCurrentWorkingDirectory(CustomWorkingDir
));
508 FileSystemOptions Opts
;
509 FileManager
Manager(Opts
, FS
);
511 // Inject fake files into the file system.
512 auto statCache
= std::make_unique
<FakeStatCache
>();
513 statCache
->InjectDirectory("/tmp", 42);
514 statCache
->InjectFile("/tmp/test", 43);
516 Manager
.setStatCache(std::move(statCache
));
518 // Check for real path.
519 auto file
= Manager
.getFile("/tmp/test", /*OpenFile=*/false);
521 SmallString
<64> ExpectedResult
= CustomWorkingDir
;
523 llvm::sys::path::append(ExpectedResult
, "tmp", "test");
524 EXPECT_EQ((*file
)->tryGetRealPathName(), ExpectedResult
);
527 TEST_F(FileManagerTest
, getBypassFile
) {
528 SmallString
<64> CustomWorkingDir
;
530 CustomWorkingDir
= "C:/";
532 CustomWorkingDir
= "/";
535 auto FS
= IntrusiveRefCntPtr
<llvm::vfs::InMemoryFileSystem
>(
536 new llvm::vfs::InMemoryFileSystem
);
537 // setCurrentworkingdirectory must finish without error.
538 ASSERT_TRUE(!FS
->setCurrentWorkingDirectory(CustomWorkingDir
));
540 FileSystemOptions Opts
;
541 FileManager
Manager(Opts
, FS
);
543 // Inject fake files into the file system.
544 auto Cache
= std::make_unique
<FakeStatCache
>();
545 Cache
->InjectDirectory("/tmp", 42);
546 Cache
->InjectFile("/tmp/test", 43);
547 Manager
.setStatCache(std::move(Cache
));
549 // Set up a virtual file with a different size than FakeStatCache uses.
550 const FileEntry
*File
= Manager
.getVirtualFile("/tmp/test", /*Size=*/10, 0);
552 const FileEntry
&FE
= *File
;
553 EXPECT_EQ(FE
.getSize(), 10);
555 // Calling a second time should not affect the UID or size.
556 unsigned VirtualUID
= FE
.getUID();
557 OptionalFileEntryRef SearchRef
;
558 ASSERT_THAT_ERROR(Manager
.getFileRef("/tmp/test").moveInto(SearchRef
),
560 EXPECT_EQ(&FE
, &SearchRef
->getFileEntry());
561 EXPECT_EQ(FE
.getUID(), VirtualUID
);
562 EXPECT_EQ(FE
.getSize(), 10);
565 OptionalFileEntryRef BypassRef
= Manager
.getBypassFile(File
->getLastRef());
566 ASSERT_TRUE(BypassRef
);
567 EXPECT_EQ("/tmp/test", BypassRef
->getName());
569 // Check that it's different in the right ways.
570 EXPECT_NE(&BypassRef
->getFileEntry(), File
);
571 EXPECT_NE(BypassRef
->getUID(), VirtualUID
);
572 EXPECT_NE(BypassRef
->getSize(), FE
.getSize());
574 // The virtual file should still be returned when searching.
575 ASSERT_THAT_ERROR(Manager
.getFileRef("/tmp/test").moveInto(SearchRef
),
577 EXPECT_EQ(&FE
, &SearchRef
->getFileEntry());
580 } // anonymous namespace