blob: f35682e19b7eb19761af94fa3832251c97bf816e [file] [log] [blame]
Michael J. Spencer3ef91c52010-11-29 22:29:04 +00001//===- llvm/unittest/Support/Path.cpp - Path tests ------------------------===//
Michael J. Spencer98847782010-11-24 19:20:05 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Rafael Espindola3bc8e712013-06-11 22:21:28 +000010#include "llvm/Support/Path.h"
Rafael Espindola2a826e42014-06-13 17:20:48 +000011#include "llvm/Support/Errc.h"
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +000012#include "llvm/Support/ErrorHandling.h"
Chandler Carruth130cec22012-12-04 10:23:08 +000013#include "llvm/Support/FileSystem.h"
Rafael Espindola84ab9b32013-07-19 14:41:25 +000014#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer1f063602011-01-06 05:57:54 +000015#include "llvm/Support/raw_ostream.h"
Michael J. Spencer98847782010-11-24 19:20:05 +000016#include "gtest/gtest.h"
17
Rafael Espindolaa813d602014-06-11 03:58:34 +000018#ifdef LLVM_ON_WIN32
NAKAMURA Takumib94f0522015-06-16 06:46:16 +000019#include <windows.h>
Rafael Espindolaa813d602014-06-11 03:58:34 +000020#include <winerror.h>
21#endif
22
Frederic Riss6b9396c2015-08-06 21:04:55 +000023#ifdef LLVM_ON_UNIX
24#include <sys/stat.h>
25#endif
26
Michael J. Spencerebad2f92010-11-29 22:28:51 +000027using namespace llvm;
Michael J. Spencer45710402010-12-03 01:21:28 +000028using namespace llvm::sys;
Michael J. Spencerebad2f92010-11-29 22:28:51 +000029
Rafael Espindolac049c652014-06-13 03:20:08 +000030#define ASSERT_NO_ERROR(x) \
31 if (std::error_code ASSERT_NO_ERROR_ec = x) { \
32 SmallString<128> MessageStorage; \
33 raw_svector_ostream Message(MessageStorage); \
34 Message << #x ": did not return errc::success.\n" \
35 << "error number: " << ASSERT_NO_ERROR_ec.value() << "\n" \
36 << "error message: " << ASSERT_NO_ERROR_ec.message() << "\n"; \
37 GTEST_FATAL_FAILURE_(MessageStorage.c_str()); \
38 } else { \
39 }
Michael J. Spencer3b264ba2011-01-04 17:00:18 +000040
Michael J. Spencer98847782010-11-24 19:20:05 +000041namespace {
42
Zhanyong Wan606bb1a2011-02-11 21:24:40 +000043TEST(is_separator, Works) {
44 EXPECT_TRUE(path::is_separator('/'));
45 EXPECT_FALSE(path::is_separator('\0'));
46 EXPECT_FALSE(path::is_separator('-'));
47 EXPECT_FALSE(path::is_separator(' '));
48
49#ifdef LLVM_ON_WIN32
50 EXPECT_TRUE(path::is_separator('\\'));
51#else
52 EXPECT_FALSE(path::is_separator('\\'));
53#endif
54}
55
Michael J. Spencer3ef91c52010-11-29 22:29:04 +000056TEST(Support, Path) {
Michael J. Spencerebad2f92010-11-29 22:28:51 +000057 SmallVector<StringRef, 40> paths;
58 paths.push_back("");
59 paths.push_back(".");
60 paths.push_back("..");
61 paths.push_back("foo");
62 paths.push_back("/");
63 paths.push_back("/foo");
64 paths.push_back("foo/");
65 paths.push_back("/foo/");
66 paths.push_back("foo/bar");
67 paths.push_back("/foo/bar");
68 paths.push_back("//net");
69 paths.push_back("//net/foo");
70 paths.push_back("///foo///");
71 paths.push_back("///foo///bar");
72 paths.push_back("/.");
73 paths.push_back("./");
74 paths.push_back("/..");
75 paths.push_back("../");
76 paths.push_back("foo/.");
77 paths.push_back("foo/..");
78 paths.push_back("foo/./");
79 paths.push_back("foo/./bar");
80 paths.push_back("foo/..");
81 paths.push_back("foo/../");
82 paths.push_back("foo/../bar");
83 paths.push_back("c:");
84 paths.push_back("c:/");
85 paths.push_back("c:foo");
86 paths.push_back("c:/foo");
87 paths.push_back("c:foo/");
88 paths.push_back("c:/foo/");
89 paths.push_back("c:/foo/bar");
90 paths.push_back("prn:");
91 paths.push_back("c:\\");
92 paths.push_back("c:foo");
93 paths.push_back("c:\\foo");
94 paths.push_back("c:foo\\");
95 paths.push_back("c:\\foo\\");
96 paths.push_back("c:\\foo/");
97 paths.push_back("c:/foo\\bar");
98
Justin Bogner0c274ae2014-07-16 08:18:58 +000099 SmallVector<StringRef, 5> ComponentStack;
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000100 for (SmallVector<StringRef, 40>::const_iterator i = paths.begin(),
101 e = paths.end();
102 i != e;
103 ++i) {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000104 for (sys::path::const_iterator ci = sys::path::begin(*i),
105 ce = sys::path::end(*i);
106 ci != ce;
107 ++ci) {
Michael J. Spencerb5ca6442010-12-03 02:22:34 +0000108 ASSERT_FALSE(ci->empty());
Justin Bogner0c274ae2014-07-16 08:18:58 +0000109 ComponentStack.push_back(*ci);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000110 }
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000111
Michael J. Spencer545cbdf2010-11-30 23:28:07 +0000112 for (sys::path::reverse_iterator ci = sys::path::rbegin(*i),
113 ce = sys::path::rend(*i);
114 ci != ce;
115 ++ci) {
Justin Bogner0c274ae2014-07-16 08:18:58 +0000116 ASSERT_TRUE(*ci == ComponentStack.back());
117 ComponentStack.pop_back();
Michael J. Spencer545cbdf2010-11-30 23:28:07 +0000118 }
Justin Bogner0c274ae2014-07-16 08:18:58 +0000119 ASSERT_TRUE(ComponentStack.empty());
Michael J. Spencer545cbdf2010-11-30 23:28:07 +0000120
Michael J. Spencerf616b212010-12-07 17:04:04 +0000121 path::has_root_path(*i);
122 path::root_path(*i);
123 path::has_root_name(*i);
124 path::root_name(*i);
125 path::has_root_directory(*i);
126 path::root_directory(*i);
127 path::has_parent_path(*i);
128 path::parent_path(*i);
129 path::has_filename(*i);
130 path::filename(*i);
131 path::has_stem(*i);
132 path::stem(*i);
133 path::has_extension(*i);
134 path::extension(*i);
135 path::is_absolute(*i);
136 path::is_relative(*i);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000137
Michael J. Spencer3b264ba2011-01-04 17:00:18 +0000138 SmallString<128> temp_store;
Michael J. Spencerb5ca6442010-12-03 02:22:34 +0000139 temp_store = *i;
Michael J. Spencer3b264ba2011-01-04 17:00:18 +0000140 ASSERT_NO_ERROR(fs::make_absolute(temp_store));
Michael J. Spencerb5ca6442010-12-03 02:22:34 +0000141 temp_store = *i;
Michael J. Spencer1e090f02010-12-07 03:57:37 +0000142 path::remove_filename(temp_store);
Michael J. Spencer4d0c6fd2010-12-01 06:03:33 +0000143
Michael J. Spencerb5ca6442010-12-03 02:22:34 +0000144 temp_store = *i;
Michael J. Spencer1e090f02010-12-07 03:57:37 +0000145 path::replace_extension(temp_store, "ext");
Michael J. Spencer4d0c6fd2010-12-01 06:03:33 +0000146 StringRef filename(temp_store.begin(), temp_store.size()), stem, ext;
Michael J. Spencerf616b212010-12-07 17:04:04 +0000147 stem = path::stem(filename);
148 ext = path::extension(filename);
Justin Bogner487e7642014-08-04 17:36:41 +0000149 EXPECT_EQ(*sys::path::rbegin(filename), (stem + ext).str());
Michael J. Spencer4d0c6fd2010-12-01 06:03:33 +0000150
Michael J. Spencer1e090f02010-12-07 03:57:37 +0000151 path::native(*i, temp_store);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000152 }
Benjamin Kramerae1d5992015-10-05 13:02:43 +0000153
154 SmallString<32> Relative("foo.cpp");
155 ASSERT_NO_ERROR(sys::fs::make_absolute("/root", Relative));
156 ASSERT_EQ("/root/foo.cpp", Relative);
Michael J. Spencer346a1332011-01-05 16:39:05 +0000157}
Michael J. Spencer45710402010-12-03 01:21:28 +0000158
Tareq A. Siraj73537ea2013-08-12 17:10:49 +0000159TEST(Support, RelativePathIterator) {
160 SmallString<64> Path(StringRef("c/d/e/foo.txt"));
161 typedef SmallVector<StringRef, 4> PathComponents;
162 PathComponents ExpectedPathComponents;
163 PathComponents ActualPathComponents;
164
Chandler Carruthe4405e92015-09-10 06:12:31 +0000165 StringRef(Path).split(ExpectedPathComponents, '/');
Tareq A. Siraj73537ea2013-08-12 17:10:49 +0000166
167 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
168 ++I) {
169 ActualPathComponents.push_back(*I);
170 }
171
172 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
173
174 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
175 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
176 }
177}
178
Ben Langmuir2547f932015-03-10 00:04:29 +0000179TEST(Support, RelativePathDotIterator) {
180 SmallString<64> Path(StringRef(".c/.d/../."));
181 typedef SmallVector<StringRef, 4> PathComponents;
182 PathComponents ExpectedPathComponents;
183 PathComponents ActualPathComponents;
184
Chandler Carruthe4405e92015-09-10 06:12:31 +0000185 StringRef(Path).split(ExpectedPathComponents, '/');
Ben Langmuir2547f932015-03-10 00:04:29 +0000186
187 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
188 ++I) {
189 ActualPathComponents.push_back(*I);
190 }
191
192 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
193
194 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
195 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
196 }
197}
198
Tareq A. Siraj73537ea2013-08-12 17:10:49 +0000199TEST(Support, AbsolutePathIterator) {
200 SmallString<64> Path(StringRef("/c/d/e/foo.txt"));
201 typedef SmallVector<StringRef, 4> PathComponents;
202 PathComponents ExpectedPathComponents;
203 PathComponents ActualPathComponents;
204
Chandler Carruthe4405e92015-09-10 06:12:31 +0000205 StringRef(Path).split(ExpectedPathComponents, '/');
Tareq A. Siraj73537ea2013-08-12 17:10:49 +0000206
207 // The root path will also be a component when iterating
208 ExpectedPathComponents[0] = "/";
209
210 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
211 ++I) {
212 ActualPathComponents.push_back(*I);
213 }
214
215 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
216
217 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
218 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
219 }
220}
221
Ben Langmuir2547f932015-03-10 00:04:29 +0000222TEST(Support, AbsolutePathDotIterator) {
223 SmallString<64> Path(StringRef("/.c/.d/../."));
224 typedef SmallVector<StringRef, 4> PathComponents;
225 PathComponents ExpectedPathComponents;
226 PathComponents ActualPathComponents;
227
Chandler Carruthe4405e92015-09-10 06:12:31 +0000228 StringRef(Path).split(ExpectedPathComponents, '/');
Ben Langmuir2547f932015-03-10 00:04:29 +0000229
230 // The root path will also be a component when iterating
231 ExpectedPathComponents[0] = "/";
232
233 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
234 ++I) {
235 ActualPathComponents.push_back(*I);
236 }
237
238 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
239
240 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
241 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
242 }
243}
244
Tareq A. Siraj73537ea2013-08-12 17:10:49 +0000245#ifdef LLVM_ON_WIN32
246TEST(Support, AbsolutePathIteratorWin32) {
247 SmallString<64> Path(StringRef("c:\\c\\e\\foo.txt"));
248 typedef SmallVector<StringRef, 4> PathComponents;
249 PathComponents ExpectedPathComponents;
250 PathComponents ActualPathComponents;
251
252 StringRef(Path).split(ExpectedPathComponents, "\\");
253
254 // The root path (which comes after the drive name) will also be a component
255 // when iterating.
256 ExpectedPathComponents.insert(ExpectedPathComponents.begin()+1, "\\");
257
258 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
259 ++I) {
260 ActualPathComponents.push_back(*I);
261 }
262
263 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
264
265 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
266 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
267 }
268}
269#endif // LLVM_ON_WIN32
270
Ben Langmuir8d116392014-03-05 19:56:30 +0000271TEST(Support, AbsolutePathIteratorEnd) {
272 // Trailing slashes are converted to '.' unless they are part of the root path.
273 SmallVector<StringRef, 4> Paths;
274 Paths.push_back("/foo/");
275 Paths.push_back("/foo//");
276 Paths.push_back("//net//");
277#ifdef LLVM_ON_WIN32
278 Paths.push_back("c:\\\\");
279#endif
280
281 for (StringRef Path : Paths) {
Justin Bogner487e7642014-08-04 17:36:41 +0000282 StringRef LastComponent = *path::rbegin(Path);
Ben Langmuir8d116392014-03-05 19:56:30 +0000283 EXPECT_EQ(".", LastComponent);
284 }
285
286 SmallVector<StringRef, 3> RootPaths;
287 RootPaths.push_back("/");
288 RootPaths.push_back("//net/");
289#ifdef LLVM_ON_WIN32
290 RootPaths.push_back("c:\\");
291#endif
292
293 for (StringRef Path : RootPaths) {
Justin Bogner487e7642014-08-04 17:36:41 +0000294 StringRef LastComponent = *path::rbegin(Path);
Ben Langmuir8d116392014-03-05 19:56:30 +0000295 EXPECT_EQ(1u, LastComponent.size());
296 EXPECT_TRUE(path::is_separator(LastComponent[0]));
297 }
298}
299
Peter Collingbournef7d41012014-01-31 23:46:06 +0000300TEST(Support, HomeDirectory) {
301#ifdef LLVM_ON_UNIX
302 // This test only makes sense on Unix if $HOME is set.
303 if (::getenv("HOME")) {
304#endif
305 SmallString<128> HomeDir;
306 EXPECT_TRUE(path::home_directory(HomeDir));
307 EXPECT_FALSE(HomeDir.empty());
308#ifdef LLVM_ON_UNIX
309 }
310#endif
311}
312
Michael J. Spencer346a1332011-01-05 16:39:05 +0000313class FileSystemTest : public testing::Test {
314protected:
315 /// Unique temporary directory in which all created filesystem entities must
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000316 /// be placed. It is removed at the end of each test (must be empty).
Michael J. Spencer346a1332011-01-05 16:39:05 +0000317 SmallString<128> TestDirectory;
318
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000319 void SetUp() override {
Michael J. Spencer346a1332011-01-05 16:39:05 +0000320 ASSERT_NO_ERROR(
Rafael Espindola7ffacc42013-06-27 03:45:31 +0000321 fs::createUniqueDirectory("file-system-test", TestDirectory));
Michael J. Spencer346a1332011-01-05 16:39:05 +0000322 // We don't care about this specific file.
Michael J. Spencer42368cc2011-01-05 16:39:46 +0000323 errs() << "Test Directory: " << TestDirectory << '\n';
324 errs().flush();
Michael J. Spencer346a1332011-01-05 16:39:05 +0000325 }
326
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000327 void TearDown() override { ASSERT_NO_ERROR(fs::remove(TestDirectory.str())); }
Michael J. Spencer346a1332011-01-05 16:39:05 +0000328};
329
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000330TEST_F(FileSystemTest, Unique) {
331 // Create a temp file.
332 int FileDescriptor;
333 SmallString<64> TempPath;
334 ASSERT_NO_ERROR(
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000335 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath));
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000336
337 // The same file should return an identical unique id.
Rafael Espindola7f822a92013-07-29 21:26:49 +0000338 fs::UniqueID F1, F2;
Rafael Espindola7cf7c512013-06-20 15:06:35 +0000339 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F1));
340 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F2));
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000341 ASSERT_EQ(F1, F2);
342
343 // Different files should return different unique ids.
344 int FileDescriptor2;
345 SmallString<64> TempPath2;
346 ASSERT_NO_ERROR(
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000347 fs::createTemporaryFile("prefix", "temp", FileDescriptor2, TempPath2));
348
Rafael Espindola7f822a92013-07-29 21:26:49 +0000349 fs::UniqueID D;
Rafael Espindola7cf7c512013-06-20 15:06:35 +0000350 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D));
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000351 ASSERT_NE(D, F1);
352 ::close(FileDescriptor2);
353
354 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
355
356 // Two paths representing the same file on disk should still provide the
357 // same unique id. We can test this by making a hard link.
Rafael Espindola83f858e2014-03-11 18:40:24 +0000358 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2)));
Rafael Espindola7f822a92013-07-29 21:26:49 +0000359 fs::UniqueID D2;
Rafael Espindola7cf7c512013-06-20 15:06:35 +0000360 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D2));
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000361 ASSERT_EQ(D2, F1);
362
363 ::close(FileDescriptor);
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000364
365 SmallString<128> Dir1;
366 ASSERT_NO_ERROR(
367 fs::createUniqueDirectory("dir1", Dir1));
368 ASSERT_NO_ERROR(fs::getUniqueID(Dir1.c_str(), F1));
369 ASSERT_NO_ERROR(fs::getUniqueID(Dir1.c_str(), F2));
370 ASSERT_EQ(F1, F2);
371
372 SmallString<128> Dir2;
373 ASSERT_NO_ERROR(
374 fs::createUniqueDirectory("dir2", Dir2));
375 ASSERT_NO_ERROR(fs::getUniqueID(Dir2.c_str(), F2));
376 ASSERT_NE(F1, F2);
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000377}
378
Michael J. Spencer346a1332011-01-05 16:39:05 +0000379TEST_F(FileSystemTest, TempFiles) {
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000380 // Create a temp file.
Michael J. Spencer45710402010-12-03 01:21:28 +0000381 int FileDescriptor;
382 SmallString<64> TempPath;
Michael J. Spencer3b264ba2011-01-04 17:00:18 +0000383 ASSERT_NO_ERROR(
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000384 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath));
Michael J. Spencer45710402010-12-03 01:21:28 +0000385
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000386 // Make sure it exists.
Rafael Espindolac1599152014-09-11 19:11:02 +0000387 ASSERT_TRUE(sys::fs::exists(Twine(TempPath)));
Michael J. Spencer45710402010-12-03 01:21:28 +0000388
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000389 // Create another temp tile.
390 int FD2;
391 SmallString<64> TempPath2;
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000392 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "temp", FD2, TempPath2));
Rafael Espindolad3c89042013-07-25 15:00:17 +0000393 ASSERT_TRUE(TempPath2.endswith(".temp"));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000394 ASSERT_NE(TempPath.str(), TempPath2.str());
395
Michael J. Spencer203d7802011-12-12 06:04:28 +0000396 fs::file_status A, B;
397 ASSERT_NO_ERROR(fs::status(Twine(TempPath), A));
398 ASSERT_NO_ERROR(fs::status(Twine(TempPath2), B));
399 EXPECT_FALSE(fs::equivalent(A, B));
400
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000401 ::close(FD2);
Rafael Espindola213c4cb2013-07-18 03:29:51 +0000402
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000403 // Remove Temp2.
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000404 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
405 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
406 ASSERT_EQ(fs::remove(Twine(TempPath2), false),
Rafael Espindola2a826e42014-06-13 17:20:48 +0000407 errc::no_such_file_or_directory);
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000408
Rafael Espindolac049c652014-06-13 03:20:08 +0000409 std::error_code EC = fs::status(TempPath2.c_str(), B);
Rafael Espindola2a826e42014-06-13 17:20:48 +0000410 EXPECT_EQ(EC, errc::no_such_file_or_directory);
Rafael Espindola107b74c2013-07-31 00:10:25 +0000411 EXPECT_EQ(B.type(), fs::file_type::file_not_found);
412
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000413 // Make sure Temp2 doesn't exist.
Rafael Espindola281f23a2014-09-11 20:30:02 +0000414 ASSERT_EQ(fs::access(Twine(TempPath2), sys::fs::AccessMode::Exist),
415 errc::no_such_file_or_directory);
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000416
Rafael Espindolad3c89042013-07-25 15:00:17 +0000417 SmallString<64> TempPath3;
418 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "", TempPath3));
419 ASSERT_FALSE(TempPath3.endswith("."));
420
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000421 // Create a hard link to Temp1.
Rafael Espindola83f858e2014-03-11 18:40:24 +0000422 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2)));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000423 bool equal;
Michael J. Spencer3b264ba2011-01-04 17:00:18 +0000424 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000425 EXPECT_TRUE(equal);
Michael J. Spencer203d7802011-12-12 06:04:28 +0000426 ASSERT_NO_ERROR(fs::status(Twine(TempPath), A));
427 ASSERT_NO_ERROR(fs::status(Twine(TempPath2), B));
428 EXPECT_TRUE(fs::equivalent(A, B));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000429
430 // Remove Temp1.
Michael J. Spencer45710402010-12-03 01:21:28 +0000431 ::close(FileDescriptor);
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000432 ASSERT_NO_ERROR(fs::remove(Twine(TempPath)));
Michael J. Spencer45710402010-12-03 01:21:28 +0000433
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000434 // Remove the hard link.
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000435 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000436
437 // Make sure Temp1 doesn't exist.
Rafael Espindola281f23a2014-09-11 20:30:02 +0000438 ASSERT_EQ(fs::access(Twine(TempPath), sys::fs::AccessMode::Exist),
439 errc::no_such_file_or_directory);
Aaron Ballmanfcdf9a82013-03-16 15:00:51 +0000440
441#ifdef LLVM_ON_WIN32
442 // Path name > 260 chars should get an error.
443 const char *Path270 =
444 "abcdefghijklmnopqrstuvwxyz9abcdefghijklmnopqrstuvwxyz8"
445 "abcdefghijklmnopqrstuvwxyz7abcdefghijklmnopqrstuvwxyz6"
446 "abcdefghijklmnopqrstuvwxyz5abcdefghijklmnopqrstuvwxyz4"
447 "abcdefghijklmnopqrstuvwxyz3abcdefghijklmnopqrstuvwxyz2"
448 "abcdefghijklmnopqrstuvwxyz1abcdefghijklmnopqrstuvwxyz0";
Paul Robinson1b6c7342014-11-13 00:36:34 +0000449 EXPECT_EQ(fs::createUniqueFile(Path270, FileDescriptor, TempPath),
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000450 errc::invalid_argument);
451 // Relative path < 247 chars, no problem.
452 const char *Path216 =
453 "abcdefghijklmnopqrstuvwxyz7abcdefghijklmnopqrstuvwxyz6"
454 "abcdefghijklmnopqrstuvwxyz5abcdefghijklmnopqrstuvwxyz4"
455 "abcdefghijklmnopqrstuvwxyz3abcdefghijklmnopqrstuvwxyz2"
456 "abcdefghijklmnopqrstuvwxyz1abcdefghijklmnopqrstuvwxyz0";
Paul Robinson1b6c7342014-11-13 00:36:34 +0000457 ASSERT_NO_ERROR(fs::createTemporaryFile(Path216, "", TempPath));
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000458 ASSERT_NO_ERROR(fs::remove(Twine(TempPath)));
Aaron Ballmanfcdf9a82013-03-16 15:00:51 +0000459#endif
Michael J. Spencer346a1332011-01-05 16:39:05 +0000460}
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000461
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000462TEST_F(FileSystemTest, CreateDir) {
463 ASSERT_NO_ERROR(fs::create_directory(Twine(TestDirectory) + "foo"));
464 ASSERT_NO_ERROR(fs::create_directory(Twine(TestDirectory) + "foo"));
465 ASSERT_EQ(fs::create_directory(Twine(TestDirectory) + "foo", false),
Rafael Espindola2a826e42014-06-13 17:20:48 +0000466 errc::file_exists);
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000467 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "foo"));
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000468
Frederic Riss6b9396c2015-08-06 21:04:55 +0000469#ifdef LLVM_ON_UNIX
470 // Set a 0000 umask so that we can test our directory permissions.
471 mode_t OldUmask = ::umask(0000);
472
473 fs::file_status Status;
474 ASSERT_NO_ERROR(
475 fs::create_directory(Twine(TestDirectory) + "baz500", false,
476 fs::perms::owner_read | fs::perms::owner_exe));
477 ASSERT_NO_ERROR(fs::status(Twine(TestDirectory) + "baz500", Status));
478 ASSERT_EQ(Status.permissions() & fs::perms::all_all,
479 fs::perms::owner_read | fs::perms::owner_exe);
480 ASSERT_NO_ERROR(fs::create_directory(Twine(TestDirectory) + "baz777", false,
481 fs::perms::all_all));
482 ASSERT_NO_ERROR(fs::status(Twine(TestDirectory) + "baz777", Status));
483 ASSERT_EQ(Status.permissions() & fs::perms::all_all, fs::perms::all_all);
484
485 // Restore umask to be safe.
486 ::umask(OldUmask);
487#endif
488
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000489#ifdef LLVM_ON_WIN32
490 // Prove that create_directories() can handle a pathname > 248 characters,
491 // which is the documented limit for CreateDirectory().
492 // (248 is MAX_PATH subtracting room for an 8.3 filename.)
493 // Generate a directory path guaranteed to fall into that range.
494 size_t TmpLen = TestDirectory.size();
495 const char *OneDir = "\\123456789";
496 size_t OneDirLen = strlen(OneDir);
Aaron Ballman493456e2014-11-13 13:39:49 +0000497 ASSERT_LT(OneDirLen, 12U);
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000498 size_t NLevels = ((248 - TmpLen) / OneDirLen) + 1;
499 SmallString<260> LongDir(TestDirectory);
500 for (size_t I = 0; I < NLevels; ++I)
501 LongDir.append(OneDir);
502 ASSERT_NO_ERROR(fs::create_directories(Twine(LongDir)));
503 ASSERT_NO_ERROR(fs::create_directories(Twine(LongDir)));
504 ASSERT_EQ(fs::create_directories(Twine(LongDir), false),
505 errc::file_exists);
506 // Tidy up, "recursively" removing the directories.
507 StringRef ThisDir(LongDir);
508 for (size_t J = 0; J < NLevels; ++J) {
509 ASSERT_NO_ERROR(fs::remove(ThisDir));
510 ThisDir = path::parent_path(ThisDir);
511 }
512
513 // Similarly for a relative pathname. Need to set the current directory to
514 // TestDirectory so that the one we create ends up in the right place.
515 char PreviousDir[260];
516 size_t PreviousDirLen = ::GetCurrentDirectoryA(260, PreviousDir);
Aaron Ballman493456e2014-11-13 13:39:49 +0000517 ASSERT_GT(PreviousDirLen, 0U);
518 ASSERT_LT(PreviousDirLen, 260U);
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000519 ASSERT_NE(::SetCurrentDirectoryA(TestDirectory.c_str()), 0);
520 LongDir.clear();
521 // Generate a relative directory name with absolute length > 248.
522 size_t LongDirLen = 249 - TestDirectory.size();
523 LongDir.assign(LongDirLen, 'a');
524 ASSERT_NO_ERROR(fs::create_directory(Twine(LongDir)));
525 // While we're here, prove that .. and . handling works in these long paths.
526 const char *DotDotDirs = "\\..\\.\\b";
527 LongDir.append(DotDotDirs);
Paul Robinson1b6c7342014-11-13 00:36:34 +0000528 ASSERT_NO_ERROR(fs::create_directory("b"));
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000529 ASSERT_EQ(fs::create_directory(Twine(LongDir), false), errc::file_exists);
530 // And clean up.
Paul Robinson1b6c7342014-11-13 00:36:34 +0000531 ASSERT_NO_ERROR(fs::remove("b"));
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000532 ASSERT_NO_ERROR(fs::remove(
533 Twine(LongDir.substr(0, LongDir.size() - strlen(DotDotDirs)))));
534 ASSERT_NE(::SetCurrentDirectoryA(PreviousDir), 0);
535#endif
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000536}
537
Michael J. Spencer346a1332011-01-05 16:39:05 +0000538TEST_F(FileSystemTest, DirectoryIteration) {
Rafael Espindolac049c652014-06-13 03:20:08 +0000539 std::error_code ec;
Michael J. Spencer1f063602011-01-06 05:57:54 +0000540 for (fs::directory_iterator i(".", ec), e; i != e; i.increment(ec))
541 ASSERT_NO_ERROR(ec);
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000542
543 // Create a known hierarchy to recurse over.
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000544 ASSERT_NO_ERROR(
545 fs::create_directories(Twine(TestDirectory) + "/recursive/a0/aa1"));
546 ASSERT_NO_ERROR(
547 fs::create_directories(Twine(TestDirectory) + "/recursive/a0/ab1"));
548 ASSERT_NO_ERROR(fs::create_directories(Twine(TestDirectory) +
549 "/recursive/dontlookhere/da1"));
550 ASSERT_NO_ERROR(
551 fs::create_directories(Twine(TestDirectory) + "/recursive/z0/za1"));
552 ASSERT_NO_ERROR(
553 fs::create_directories(Twine(TestDirectory) + "/recursive/pop/p1"));
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000554 typedef std::vector<std::string> v_t;
555 v_t visited;
556 for (fs::recursive_directory_iterator i(Twine(TestDirectory)
557 + "/recursive", ec), e; i != e; i.increment(ec)){
558 ASSERT_NO_ERROR(ec);
NAKAMURA Takumi0cfb3672011-12-09 23:20:03 +0000559 if (path::filename(i->path()) == "p1") {
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000560 i.pop();
NAKAMURA Takumi0cfb3672011-12-09 23:20:03 +0000561 // FIXME: recursive_directory_iterator should be more robust.
562 if (i == e) break;
563 }
Michael J. Spencer9b54a3e2011-12-09 01:14:41 +0000564 if (path::filename(i->path()) == "dontlookhere")
565 i.no_push();
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000566 visited.push_back(path::filename(i->path()));
567 }
568 v_t::const_iterator a0 = std::find(visited.begin(), visited.end(), "a0");
569 v_t::const_iterator aa1 = std::find(visited.begin(), visited.end(), "aa1");
570 v_t::const_iterator ab1 = std::find(visited.begin(), visited.end(), "ab1");
571 v_t::const_iterator dontlookhere = std::find(visited.begin(), visited.end(),
572 "dontlookhere");
573 v_t::const_iterator da1 = std::find(visited.begin(), visited.end(), "da1");
574 v_t::const_iterator z0 = std::find(visited.begin(), visited.end(), "z0");
575 v_t::const_iterator za1 = std::find(visited.begin(), visited.end(), "za1");
576 v_t::const_iterator pop = std::find(visited.begin(), visited.end(), "pop");
577 v_t::const_iterator p1 = std::find(visited.begin(), visited.end(), "p1");
578
579 // Make sure that each path was visited correctly.
580 ASSERT_NE(a0, visited.end());
581 ASSERT_NE(aa1, visited.end());
582 ASSERT_NE(ab1, visited.end());
583 ASSERT_NE(dontlookhere, visited.end());
584 ASSERT_EQ(da1, visited.end()); // Not visited.
585 ASSERT_NE(z0, visited.end());
586 ASSERT_NE(za1, visited.end());
587 ASSERT_NE(pop, visited.end());
588 ASSERT_EQ(p1, visited.end()); // Not visited.
589
590 // Make sure that parents were visited before children. No other ordering
591 // guarantees can be made across siblings.
592 ASSERT_LT(a0, aa1);
593 ASSERT_LT(a0, ab1);
594 ASSERT_LT(z0, za1);
Rafael Espindola78dcc032014-01-10 20:36:42 +0000595
596 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/a0/aa1"));
597 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/a0/ab1"));
598 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/a0"));
599 ASSERT_NO_ERROR(
600 fs::remove(Twine(TestDirectory) + "/recursive/dontlookhere/da1"));
601 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/dontlookhere"));
602 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/pop/p1"));
603 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/pop"));
604 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/z0/za1"));
605 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/z0"));
606 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive"));
Michael J. Spencer1f063602011-01-06 05:57:54 +0000607}
Michael J. Spencer1d3c4a72011-01-06 05:58:02 +0000608
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000609const char archive[] = "!<arch>\x0A";
610const char bitcode[] = "\xde\xc0\x17\x0b";
Rui Ueyama829c4392013-11-14 22:09:08 +0000611const char coff_object[] = "\x00\x00......";
Rui Ueyama5c69ff52014-09-11 22:34:32 +0000612const char coff_bigobj[] = "\x00\x00\xff\xff\x00\x02......"
Rui Ueyama2acb0582014-09-11 21:09:57 +0000613 "\xc7\xa1\xba\xd1\xee\xba\xa9\x4b\xaf\x20\xfa\xf6\x6a\xa4\xdc\xb8";
Rui Ueyamae448f9e2013-11-15 21:22:02 +0000614const char coff_import_library[] = "\x00\x00\xff\xff....";
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000615const char elf_relocatable[] = { 0x7f, 'E', 'L', 'F', 1, 2, 1, 0, 0,
616 0, 0, 0, 0, 0, 0, 0, 0, 1 };
617const char macho_universal_binary[] = "\xca\xfe\xba\xbe...\0x00";
618const char macho_object[] = "\xfe\xed\xfa\xce..........\x00\x01";
619const char macho_executable[] = "\xfe\xed\xfa\xce..........\x00\x02";
620const char macho_fixed_virtual_memory_shared_lib[] =
621 "\xfe\xed\xfa\xce..........\x00\x03";
622const char macho_core[] = "\xfe\xed\xfa\xce..........\x00\x04";
623const char macho_preload_executable[] = "\xfe\xed\xfa\xce..........\x00\x05";
624const char macho_dynamically_linked_shared_lib[] =
625 "\xfe\xed\xfa\xce..........\x00\x06";
626const char macho_dynamic_linker[] = "\xfe\xed\xfa\xce..........\x00\x07";
627const char macho_bundle[] = "\xfe\xed\xfa\xce..........\x00\x08";
628const char macho_dsym_companion[] = "\xfe\xed\xfa\xce..........\x00\x0a";
Justin Bognera7ad4b32015-02-25 22:59:20 +0000629const char macho_kext_bundle[] = "\xfe\xed\xfa\xce..........\x00\x0b";
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000630const char windows_resource[] = "\x00\x00\x00\x00\x020\x00\x00\x00\xff";
Nick Kledzik2d2b2542014-09-17 00:53:44 +0000631const char macho_dynamically_linked_shared_lib_stub[] =
632 "\xfe\xed\xfa\xce..........\x00\x09";
Michael J. Spencerb8055cb2013-04-05 20:10:04 +0000633
Michael J. Spencer1d3c4a72011-01-06 05:58:02 +0000634TEST_F(FileSystemTest, Magic) {
635 struct type {
636 const char *filename;
637 const char *magic_str;
Michael J. Spencerb8055cb2013-04-05 20:10:04 +0000638 size_t magic_str_len;
639 fs::file_magic magic;
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000640 } types[] = {
641#define DEFINE(magic) \
642 { #magic, magic, sizeof(magic), fs::file_magic::magic }
643 DEFINE(archive),
644 DEFINE(bitcode),
Rui Ueyama829c4392013-11-14 22:09:08 +0000645 DEFINE(coff_object),
Rui Ueyama2acb0582014-09-11 21:09:57 +0000646 { "coff_bigobj", coff_bigobj, sizeof(coff_bigobj), fs::file_magic::coff_object },
Rui Ueyamae448f9e2013-11-15 21:22:02 +0000647 DEFINE(coff_import_library),
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000648 DEFINE(elf_relocatable),
649 DEFINE(macho_universal_binary),
650 DEFINE(macho_object),
651 DEFINE(macho_executable),
652 DEFINE(macho_fixed_virtual_memory_shared_lib),
653 DEFINE(macho_core),
654 DEFINE(macho_preload_executable),
655 DEFINE(macho_dynamically_linked_shared_lib),
656 DEFINE(macho_dynamic_linker),
657 DEFINE(macho_bundle),
Nick Kledzik2d2b2542014-09-17 00:53:44 +0000658 DEFINE(macho_dynamically_linked_shared_lib_stub),
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000659 DEFINE(macho_dsym_companion),
Justin Bognera7ad4b32015-02-25 22:59:20 +0000660 DEFINE(macho_kext_bundle),
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000661 DEFINE(windows_resource)
662#undef DEFINE
663 };
Michael J. Spencer1d3c4a72011-01-06 05:58:02 +0000664
665 // Create some files filled with magic.
666 for (type *i = types, *e = types + (sizeof(types) / sizeof(type)); i != e;
667 ++i) {
668 SmallString<128> file_pathname(TestDirectory);
669 path::append(file_pathname, i->filename);
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000670 std::error_code EC;
671 raw_fd_ostream file(file_pathname, EC, sys::fs::F_None);
Michael J. Spencer1d3c4a72011-01-06 05:58:02 +0000672 ASSERT_FALSE(file.has_error());
673 StringRef magic(i->magic_str, i->magic_str_len);
674 file << magic;
Michael J. Spencerb5871802011-01-15 18:52:49 +0000675 file.close();
Michael J. Spencerb8055cb2013-04-05 20:10:04 +0000676 EXPECT_EQ(i->magic, fs::identify_magic(magic));
Rafael Espindola78dcc032014-01-10 20:36:42 +0000677 ASSERT_NO_ERROR(fs::remove(Twine(file_pathname)));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000678 }
Michael J. Spencer98847782010-11-24 19:20:05 +0000679}
680
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000681#ifdef LLVM_ON_WIN32
682TEST_F(FileSystemTest, CarriageReturn) {
683 SmallString<128> FilePathname(TestDirectory);
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000684 std::error_code EC;
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000685 path::append(FilePathname, "test");
686
687 {
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000688 raw_fd_ostream File(FilePathname, EC, sys::fs::F_Text);
689 ASSERT_NO_ERROR(EC);
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000690 File << '\n';
691 }
692 {
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000693 auto Buf = MemoryBuffer::getFile(FilePathname.str());
Aaron Ballman586ee602014-07-06 20:20:02 +0000694 EXPECT_TRUE((bool)Buf);
Aaron Ballmane56fe8a2014-07-06 19:34:52 +0000695 EXPECT_EQ(Buf.get()->getBuffer(), "\r\n");
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000696 }
697
698 {
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000699 raw_fd_ostream File(FilePathname, EC, sys::fs::F_None);
700 ASSERT_NO_ERROR(EC);
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000701 File << '\n';
702 }
703 {
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000704 auto Buf = MemoryBuffer::getFile(FilePathname.str());
Aaron Ballman586ee602014-07-06 20:20:02 +0000705 EXPECT_TRUE((bool)Buf);
Aaron Ballmane56fe8a2014-07-06 19:34:52 +0000706 EXPECT_EQ(Buf.get()->getBuffer(), "\n");
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000707 }
Rafael Espindola78dcc032014-01-10 20:36:42 +0000708 ASSERT_NO_ERROR(fs::remove(Twine(FilePathname)));
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000709}
710#endif
711
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000712TEST_F(FileSystemTest, Resize) {
713 int FD;
714 SmallString<64> TempPath;
715 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "temp", FD, TempPath));
716 ASSERT_NO_ERROR(fs::resize_file(FD, 123));
717 fs::file_status Status;
718 ASSERT_NO_ERROR(fs::status(FD, Status));
719 ASSERT_EQ(Status.getSize(), 123U);
720}
721
Nick Kledzik18497e92012-06-20 00:28:54 +0000722TEST_F(FileSystemTest, FileMapping) {
723 // Create a temp file.
724 int FileDescriptor;
725 SmallString<64> TempPath;
726 ASSERT_NO_ERROR(
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000727 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath));
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000728 unsigned Size = 4096;
729 ASSERT_NO_ERROR(fs::resize_file(FileDescriptor, Size));
730
Nick Kledzik18497e92012-06-20 00:28:54 +0000731 // Map in temp file and add some content
Rafael Espindolac049c652014-06-13 03:20:08 +0000732 std::error_code EC;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000733 StringRef Val("hello there");
734 {
735 fs::mapped_file_region mfr(FileDescriptor,
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000736 fs::mapped_file_region::readwrite, Size, 0, EC);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000737 ASSERT_NO_ERROR(EC);
738 std::copy(Val.begin(), Val.end(), mfr.data());
739 // Explicitly add a 0.
740 mfr.data()[Val.size()] = 0;
741 // Unmap temp file
742 }
Rui Ueyama89d1bdb2013-11-13 20:31:21 +0000743
Nick Kledzik18497e92012-06-20 00:28:54 +0000744 // Map it back in read-only
Rafael Espindola71bc5072014-12-11 17:17:26 +0000745 int FD;
746 EC = fs::openFileForRead(Twine(TempPath), FD);
747 ASSERT_NO_ERROR(EC);
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000748 fs::mapped_file_region mfr(FD, fs::mapped_file_region::readonly, Size, 0, EC);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000749 ASSERT_NO_ERROR(EC);
Rui Ueyama89d1bdb2013-11-13 20:31:21 +0000750
Nick Kledzik18497e92012-06-20 00:28:54 +0000751 // Verify content
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000752 EXPECT_EQ(StringRef(mfr.const_data()), Val);
Rui Ueyama89d1bdb2013-11-13 20:31:21 +0000753
Nick Kledzik18497e92012-06-20 00:28:54 +0000754 // Unmap temp file
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000755 fs::mapped_file_region m(FD, fs::mapped_file_region::readonly, Size, 0, EC);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000756 ASSERT_NO_ERROR(EC);
Rafael Espindola71bc5072014-12-11 17:17:26 +0000757 ASSERT_EQ(close(FD), 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000758}
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000759
760TEST(Support, NormalizePath) {
761#if defined(LLVM_ON_WIN32)
762#define EXPECT_PATH_IS(path__, windows__, not_windows__) \
763 EXPECT_EQ(path__, windows__);
764#else
765#define EXPECT_PATH_IS(path__, windows__, not_windows__) \
766 EXPECT_EQ(path__, not_windows__);
767#endif
768
769 SmallString<64> Path1("a");
770 SmallString<64> Path2("a/b");
771 SmallString<64> Path3("a\\b");
772 SmallString<64> Path4("a\\\\b");
773 SmallString<64> Path5("\\a");
774 SmallString<64> Path6("a\\");
775
Rafael Espindola7e774c22014-08-08 21:35:52 +0000776 path::native(Path1);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000777 EXPECT_PATH_IS(Path1, "a", "a");
778
Rafael Espindola7e774c22014-08-08 21:35:52 +0000779 path::native(Path2);
Rafael Espindolaffbabb72014-08-09 00:37:05 +0000780 EXPECT_PATH_IS(Path2, "a\\b", "a/b");
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000781
Rafael Espindola7e774c22014-08-08 21:35:52 +0000782 path::native(Path3);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000783 EXPECT_PATH_IS(Path3, "a\\b", "a/b");
784
Rafael Espindola7e774c22014-08-08 21:35:52 +0000785 path::native(Path4);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000786 EXPECT_PATH_IS(Path4, "a\\\\b", "a\\\\b");
787
Rafael Espindola7e774c22014-08-08 21:35:52 +0000788 path::native(Path5);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000789 EXPECT_PATH_IS(Path5, "\\a", "/a");
790
Rafael Espindola7e774c22014-08-08 21:35:52 +0000791 path::native(Path6);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000792 EXPECT_PATH_IS(Path6, "a\\", "a/");
793
794#undef EXPECT_PATH_IS
795}
Douglas Katzmana26be4a2015-09-02 21:02:10 +0000796
797TEST(Support, RemoveLeadingDotSlash) {
798 StringRef Path1("././/foolz/wat");
799 StringRef Path2("./////");
800
801 Path1 = path::remove_leading_dotslash(Path1);
802 EXPECT_EQ(Path1, "foolz/wat");
803 Path2 = path::remove_leading_dotslash(Path2);
804 EXPECT_EQ(Path2, "");
805}
Michael J. Spencer98847782010-11-24 19:20:05 +0000806} // anonymous namespace