1 //===-- FileCollectorTest.cpp -----------------------------------*- C++ -*-===//
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 "gmock/gmock.h"
10 #include "gtest/gtest.h"
12 #include "llvm/Support/FileCollector.h"
13 #include "llvm/Support/FileSystem.h"
14 #include "llvm/Testing/Support/SupportHelpers.h"
17 using llvm::unittest::TempDir
;
18 using llvm::unittest::TempFile
;
19 using llvm::unittest::TempLink
;
23 inline bool operator==(const llvm::vfs::YAMLVFSEntry
&LHS
,
24 const llvm::vfs::YAMLVFSEntry
&RHS
) {
25 return LHS
.VPath
== RHS
.VPath
&& LHS
.RPath
== RHS
.RPath
;
31 class TestingFileCollector
: public FileCollector
{
33 using FileCollector::FileCollector
;
34 using FileCollector::Root
;
35 using FileCollector::Seen
;
36 using FileCollector::VFSWriter
;
38 bool hasSeen(StringRef fs
) { return Seen
.contains(fs
); }
41 } // end anonymous namespace
43 TEST(FileCollectorTest
, addFile
) {
44 TempDir
root("add_file_root", /*Unique*/ true);
45 std::string
root_fs(root
.path());
46 TestingFileCollector
FileCollector(root_fs
, root_fs
);
48 FileCollector
.addFile("/path/to/a");
49 FileCollector
.addFile("/path/to/b");
50 FileCollector
.addFile("/path/to/c");
52 // Make sure the root is correct.
53 EXPECT_EQ(FileCollector
.Root
, root_fs
);
55 // Make sure we've seen all the added files.
56 EXPECT_TRUE(FileCollector
.hasSeen("/path/to/a"));
57 EXPECT_TRUE(FileCollector
.hasSeen("/path/to/b"));
58 EXPECT_TRUE(FileCollector
.hasSeen("/path/to/c"));
60 // Make sure we've only seen the added files.
61 EXPECT_FALSE(FileCollector
.hasSeen("/path/to/d"));
64 TEST(FileCollectorTest
, addDirectory
) {
65 TempDir
file_root("file_root", /*Unique*/ true);
67 llvm::SmallString
<128> aaa(file_root
.path());
68 llvm::sys::path::append(aaa
, "aaa");
69 TempFile
a(aaa
.str());
71 llvm::SmallString
<128> bbb(file_root
.path());
72 llvm::sys::path::append(bbb
, "bbb");
73 TempFile
b(bbb
.str());
75 llvm::SmallString
<128> ccc(file_root
.path());
76 llvm::sys::path::append(ccc
, "ccc");
77 TempFile
c(ccc
.str());
79 std::string
root_fs(file_root
.path());
80 TestingFileCollector
FileCollector(root_fs
, root_fs
);
82 FileCollector
.addDirectory(file_root
.path());
84 // Make sure the root is correct.
85 EXPECT_EQ(FileCollector
.Root
, root_fs
);
87 // Make sure we've seen all the added files.
88 EXPECT_TRUE(FileCollector
.hasSeen(a
.path()));
89 EXPECT_TRUE(FileCollector
.hasSeen(b
.path()));
90 EXPECT_TRUE(FileCollector
.hasSeen(c
.path()));
92 // Make sure we've only seen the added files.
93 llvm::SmallString
<128> ddd(file_root
.path());
94 llvm::sys::path::append(ddd
, "ddd");
96 EXPECT_FALSE(FileCollector
.hasSeen(d
.path()));
99 TEST(FileCollectorTest
, copyFiles
) {
100 TempDir
file_root("file_root", /*Unique*/ true);
101 TempFile
a(file_root
.path("aaa"));
102 TempFile
b(file_root
.path("bbb"));
103 TempFile
c(file_root
.path("ccc"));
105 // Create file collector and add files.
106 TempDir
root("copy_files_root", /*Unique*/ true);
107 std::string
root_fs(root
.path());
108 TestingFileCollector
FileCollector(root_fs
, root_fs
);
109 FileCollector
.addFile(a
.path());
110 FileCollector
.addFile(b
.path());
111 FileCollector
.addFile(c
.path());
113 // Make sure we can copy the files.
114 std::error_code ec
= FileCollector
.copyFiles(true);
117 // Now add a bogus file and make sure we error out.
118 FileCollector
.addFile("/some/bogus/file");
119 ec
= FileCollector
.copyFiles(true);
122 // However, if stop_on_error is true the copy should still succeed.
123 ec
= FileCollector
.copyFiles(false);
127 TEST(FileCollectorTest
, recordAndConstructDirectory
) {
128 TempDir
file_root("dir_root", /*Unique*/ true);
129 TempDir
subdir(file_root
.path("subdir"));
130 TempDir
subdir2(file_root
.path("subdir2"));
131 TempFile
a(subdir2
.path("a"));
133 // Create file collector and add files.
134 TempDir
root("copy_files_root", /*Unique*/ true);
135 std::string
root_fs(root
.path());
136 TestingFileCollector
FileCollector(root_fs
, root_fs
);
137 FileCollector
.addFile(a
.path());
139 // The empty directory isn't seen until we add it.
140 EXPECT_TRUE(FileCollector
.hasSeen(a
.path()));
141 EXPECT_FALSE(FileCollector
.hasSeen(subdir
.path()));
143 FileCollector
.addFile(subdir
.path());
144 EXPECT_TRUE(FileCollector
.hasSeen(subdir
.path()));
146 // Make sure we can construct the directory.
147 std::error_code ec
= FileCollector
.copyFiles(true);
149 bool IsDirectory
= false;
150 llvm::SmallString
<128> SubdirInRoot
= root
.path();
151 llvm::sys::path::append(SubdirInRoot
,
152 llvm::sys::path::relative_path(subdir
.path()));
153 ec
= sys::fs::is_directory(SubdirInRoot
, IsDirectory
);
155 ASSERT_TRUE(IsDirectory
);
158 TEST(FileCollectorTest
, recordVFSAccesses
) {
159 TempDir
file_root("dir_root", /*Unique*/ true);
160 TempDir
subdir(file_root
.path("subdir"));
161 TempDir
subdir2(file_root
.path("subdir2"));
162 TempFile
a(subdir2
.path("a"));
163 TempFile
b(file_root
.path("b"));
164 TempDir
subdir3(file_root
.path("subdir3"));
165 TempFile
subdir3a(subdir3
.path("aa"));
166 TempDir
subdir3b(subdir3
.path("subdirb"));
167 { TempFile
subdir3fileremoved(subdir3
.path("removed")); }
169 // Create file collector and add files.
170 TempDir
root("copy_files_root", /*Unique*/ true);
171 std::string
root_fs(root
.path());
172 auto Collector
= std::make_shared
<TestingFileCollector
>(root_fs
, root_fs
);
174 FileCollector::createCollectorVFS(vfs::getRealFileSystem(), Collector
);
175 VFS
->status(a
.path());
176 EXPECT_TRUE(Collector
->hasSeen(a
.path()));
178 VFS
->openFileForRead(b
.path());
179 EXPECT_TRUE(Collector
->hasSeen(b
.path()));
181 VFS
->status(subdir
.path());
182 EXPECT_TRUE(Collector
->hasSeen(subdir
.path()));
186 auto It
= VFS
->dir_begin(subdir3
.path(), EC
);
188 EXPECT_TRUE(Collector
->hasSeen(subdir3
.path()));
189 EXPECT_TRUE(Collector
->hasSeen(subdir3a
.path()));
190 EXPECT_TRUE(Collector
->hasSeen(subdir3b
.path()));
191 std::string
RemovedFileName((Twine(subdir3
.path("removed"))).str());
192 EXPECT_FALSE(Collector
->hasSeen(RemovedFileName
));
197 TEST(FileCollectorTest
, Symlinks
) {
198 // Root where the original files live.
199 TempDir
file_root("file_root", /*Unique*/ true);
201 // Create some files in the file root.
202 TempFile
a(file_root
.path("aaa"));
203 TempFile
b(file_root
.path("bbb"));
204 TempFile
c(file_root
.path("ccc"));
206 // Create a directory foo with file ddd.
207 TempDir
foo(file_root
.path("foo"));
208 TempFile
d(foo
.path("ddd"));
210 // Create a file eee in the foo's parent directory.
211 TempFile
e(foo
.path("../eee"));
213 // Create a symlink bar pointing to foo.
214 TempLink
symlink(file_root
.path("foo"), file_root
.path("bar"));
216 // Root where files are copied to.
217 TempDir
reproducer_root("reproducer_root", /*Unique*/ true);
218 std::string
root_fs(reproducer_root
.path());
219 TestingFileCollector
FileCollector(root_fs
, root_fs
);
221 // Add all the files to the collector.
222 FileCollector
.addFile(a
.path());
223 FileCollector
.addFile(b
.path());
224 FileCollector
.addFile(c
.path());
225 FileCollector
.addFile(d
.path());
226 FileCollector
.addFile(e
.path());
227 FileCollector
.addFile(file_root
.path() + "/bar/ddd");
229 auto mapping
= FileCollector
.VFSWriter
.getMappings();
232 // Make sure the common case works.
233 std::string vpath
= (file_root
.path() + "/aaa").str();
235 (reproducer_root
.path() + file_root
.path() + "/aaa").str();
236 printf("%s -> %s\n", vpath
.c_str(), rpath
.c_str());
237 EXPECT_THAT(mapping
, testing::Contains(vfs::YAMLVFSEntry(vpath
, rpath
)));
241 // Make sure the virtual path points to the real source path.
242 std::string vpath
= (file_root
.path() + "/bar/ddd").str();
244 (reproducer_root
.path() + file_root
.path() + "/foo/ddd").str();
245 printf("%s -> %s\n", vpath
.c_str(), rpath
.c_str());
246 EXPECT_THAT(mapping
, testing::Contains(vfs::YAMLVFSEntry(vpath
, rpath
)));
250 // Make sure that .. is removed from the source path.
251 std::string vpath
= (file_root
.path() + "/eee").str();
253 (reproducer_root
.path() + file_root
.path() + "/eee").str();
254 printf("%s -> %s\n", vpath
.c_str(), rpath
.c_str());
255 EXPECT_THAT(mapping
, testing::Contains(vfs::YAMLVFSEntry(vpath
, rpath
)));
259 TEST(FileCollectorTest
, recordVFSSymlinkAccesses
) {
260 TempDir
file_root("dir_root", /*Unique*/ true);
261 TempFile
a(file_root
.path("a"));
262 TempLink
symlink(file_root
.path("a"), file_root
.path("b"));
264 // Create file collector and add files.
265 TempDir
root("copy_files_root", true);
266 std::string
root_fs(root
.path());
267 auto Collector
= std::make_shared
<TestingFileCollector
>(root_fs
, root_fs
);
269 FileCollector::createCollectorVFS(vfs::getRealFileSystem(), Collector
);
270 SmallString
<256> Output
;
271 VFS
->getRealPath(symlink
.path(), Output
);
272 EXPECT_TRUE(Collector
->hasSeen(a
.path()));
273 EXPECT_TRUE(Collector
->hasSeen(symlink
.path()));