blob: 479812c1eaaa98f809e502d5c45fc6bac6fe0e02 [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
Paul Robinsond9c4a9a2014-11-13 00:12:14 +000019#include <Windows.h>
Rafael Espindolaa813d602014-06-11 03:58:34 +000020#include <winerror.h>
21#endif
22
Michael J. Spencerebad2f92010-11-29 22:28:51 +000023using namespace llvm;
Michael J. Spencer45710402010-12-03 01:21:28 +000024using namespace llvm::sys;
Michael J. Spencerebad2f92010-11-29 22:28:51 +000025
Rafael Espindolac049c652014-06-13 03:20:08 +000026#define ASSERT_NO_ERROR(x) \
27 if (std::error_code ASSERT_NO_ERROR_ec = x) { \
28 SmallString<128> MessageStorage; \
29 raw_svector_ostream Message(MessageStorage); \
30 Message << #x ": did not return errc::success.\n" \
31 << "error number: " << ASSERT_NO_ERROR_ec.value() << "\n" \
32 << "error message: " << ASSERT_NO_ERROR_ec.message() << "\n"; \
33 GTEST_FATAL_FAILURE_(MessageStorage.c_str()); \
34 } else { \
35 }
Michael J. Spencer3b264ba2011-01-04 17:00:18 +000036
Michael J. Spencer98847782010-11-24 19:20:05 +000037namespace {
38
Zhanyong Wan606bb1a2011-02-11 21:24:40 +000039TEST(is_separator, Works) {
40 EXPECT_TRUE(path::is_separator('/'));
41 EXPECT_FALSE(path::is_separator('\0'));
42 EXPECT_FALSE(path::is_separator('-'));
43 EXPECT_FALSE(path::is_separator(' '));
44
45#ifdef LLVM_ON_WIN32
46 EXPECT_TRUE(path::is_separator('\\'));
47#else
48 EXPECT_FALSE(path::is_separator('\\'));
49#endif
50}
51
Michael J. Spencer3ef91c52010-11-29 22:29:04 +000052TEST(Support, Path) {
Michael J. Spencerebad2f92010-11-29 22:28:51 +000053 SmallVector<StringRef, 40> paths;
54 paths.push_back("");
55 paths.push_back(".");
56 paths.push_back("..");
57 paths.push_back("foo");
58 paths.push_back("/");
59 paths.push_back("/foo");
60 paths.push_back("foo/");
61 paths.push_back("/foo/");
62 paths.push_back("foo/bar");
63 paths.push_back("/foo/bar");
64 paths.push_back("//net");
65 paths.push_back("//net/foo");
66 paths.push_back("///foo///");
67 paths.push_back("///foo///bar");
68 paths.push_back("/.");
69 paths.push_back("./");
70 paths.push_back("/..");
71 paths.push_back("../");
72 paths.push_back("foo/.");
73 paths.push_back("foo/..");
74 paths.push_back("foo/./");
75 paths.push_back("foo/./bar");
76 paths.push_back("foo/..");
77 paths.push_back("foo/../");
78 paths.push_back("foo/../bar");
79 paths.push_back("c:");
80 paths.push_back("c:/");
81 paths.push_back("c:foo");
82 paths.push_back("c:/foo");
83 paths.push_back("c:foo/");
84 paths.push_back("c:/foo/");
85 paths.push_back("c:/foo/bar");
86 paths.push_back("prn:");
87 paths.push_back("c:\\");
88 paths.push_back("c:foo");
89 paths.push_back("c:\\foo");
90 paths.push_back("c:foo\\");
91 paths.push_back("c:\\foo\\");
92 paths.push_back("c:\\foo/");
93 paths.push_back("c:/foo\\bar");
94
Justin Bogner0c274ae2014-07-16 08:18:58 +000095 SmallVector<StringRef, 5> ComponentStack;
Michael J. Spencerebad2f92010-11-29 22:28:51 +000096 for (SmallVector<StringRef, 40>::const_iterator i = paths.begin(),
97 e = paths.end();
98 i != e;
99 ++i) {
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000100 for (sys::path::const_iterator ci = sys::path::begin(*i),
101 ce = sys::path::end(*i);
102 ci != ce;
103 ++ci) {
Michael J. Spencerb5ca6442010-12-03 02:22:34 +0000104 ASSERT_FALSE(ci->empty());
Justin Bogner0c274ae2014-07-16 08:18:58 +0000105 ComponentStack.push_back(*ci);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000106 }
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000107
Michael J. Spencer545cbdf2010-11-30 23:28:07 +0000108 for (sys::path::reverse_iterator ci = sys::path::rbegin(*i),
109 ce = sys::path::rend(*i);
110 ci != ce;
111 ++ci) {
Justin Bogner0c274ae2014-07-16 08:18:58 +0000112 ASSERT_TRUE(*ci == ComponentStack.back());
113 ComponentStack.pop_back();
Michael J. Spencer545cbdf2010-11-30 23:28:07 +0000114 }
Justin Bogner0c274ae2014-07-16 08:18:58 +0000115 ASSERT_TRUE(ComponentStack.empty());
Michael J. Spencer545cbdf2010-11-30 23:28:07 +0000116
Michael J. Spencerf616b212010-12-07 17:04:04 +0000117 path::has_root_path(*i);
118 path::root_path(*i);
119 path::has_root_name(*i);
120 path::root_name(*i);
121 path::has_root_directory(*i);
122 path::root_directory(*i);
123 path::has_parent_path(*i);
124 path::parent_path(*i);
125 path::has_filename(*i);
126 path::filename(*i);
127 path::has_stem(*i);
128 path::stem(*i);
129 path::has_extension(*i);
130 path::extension(*i);
131 path::is_absolute(*i);
132 path::is_relative(*i);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000133
Michael J. Spencer3b264ba2011-01-04 17:00:18 +0000134 SmallString<128> temp_store;
Michael J. Spencerb5ca6442010-12-03 02:22:34 +0000135 temp_store = *i;
Michael J. Spencer3b264ba2011-01-04 17:00:18 +0000136 ASSERT_NO_ERROR(fs::make_absolute(temp_store));
Michael J. Spencerb5ca6442010-12-03 02:22:34 +0000137 temp_store = *i;
Michael J. Spencer1e090f02010-12-07 03:57:37 +0000138 path::remove_filename(temp_store);
Michael J. Spencer4d0c6fd2010-12-01 06:03:33 +0000139
Michael J. Spencerb5ca6442010-12-03 02:22:34 +0000140 temp_store = *i;
Michael J. Spencer1e090f02010-12-07 03:57:37 +0000141 path::replace_extension(temp_store, "ext");
Michael J. Spencer4d0c6fd2010-12-01 06:03:33 +0000142 StringRef filename(temp_store.begin(), temp_store.size()), stem, ext;
Michael J. Spencerf616b212010-12-07 17:04:04 +0000143 stem = path::stem(filename);
144 ext = path::extension(filename);
Justin Bogner487e7642014-08-04 17:36:41 +0000145 EXPECT_EQ(*sys::path::rbegin(filename), (stem + ext).str());
Michael J. Spencer4d0c6fd2010-12-01 06:03:33 +0000146
Michael J. Spencer1e090f02010-12-07 03:57:37 +0000147 path::native(*i, temp_store);
Michael J. Spencerebad2f92010-11-29 22:28:51 +0000148 }
Michael J. Spencer346a1332011-01-05 16:39:05 +0000149}
Michael J. Spencer45710402010-12-03 01:21:28 +0000150
Tareq A. Siraj73537ea2013-08-12 17:10:49 +0000151TEST(Support, RelativePathIterator) {
152 SmallString<64> Path(StringRef("c/d/e/foo.txt"));
153 typedef SmallVector<StringRef, 4> PathComponents;
154 PathComponents ExpectedPathComponents;
155 PathComponents ActualPathComponents;
156
157 StringRef(Path).split(ExpectedPathComponents, "/");
158
159 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
160 ++I) {
161 ActualPathComponents.push_back(*I);
162 }
163
164 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
165
166 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
167 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
168 }
169}
170
Ben Langmuir2547f932015-03-10 00:04:29 +0000171TEST(Support, RelativePathDotIterator) {
172 SmallString<64> Path(StringRef(".c/.d/../."));
173 typedef SmallVector<StringRef, 4> PathComponents;
174 PathComponents ExpectedPathComponents;
175 PathComponents ActualPathComponents;
176
177 StringRef(Path).split(ExpectedPathComponents, "/");
178
179 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
180 ++I) {
181 ActualPathComponents.push_back(*I);
182 }
183
184 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
185
186 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
187 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
188 }
189}
190
Tareq A. Siraj73537ea2013-08-12 17:10:49 +0000191TEST(Support, AbsolutePathIterator) {
192 SmallString<64> Path(StringRef("/c/d/e/foo.txt"));
193 typedef SmallVector<StringRef, 4> PathComponents;
194 PathComponents ExpectedPathComponents;
195 PathComponents ActualPathComponents;
196
197 StringRef(Path).split(ExpectedPathComponents, "/");
198
199 // The root path will also be a component when iterating
200 ExpectedPathComponents[0] = "/";
201
202 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
203 ++I) {
204 ActualPathComponents.push_back(*I);
205 }
206
207 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
208
209 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
210 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
211 }
212}
213
Ben Langmuir2547f932015-03-10 00:04:29 +0000214TEST(Support, AbsolutePathDotIterator) {
215 SmallString<64> Path(StringRef("/.c/.d/../."));
216 typedef SmallVector<StringRef, 4> PathComponents;
217 PathComponents ExpectedPathComponents;
218 PathComponents ActualPathComponents;
219
220 StringRef(Path).split(ExpectedPathComponents, "/");
221
222 // The root path will also be a component when iterating
223 ExpectedPathComponents[0] = "/";
224
225 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
226 ++I) {
227 ActualPathComponents.push_back(*I);
228 }
229
230 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
231
232 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
233 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
234 }
235}
236
Tareq A. Siraj73537ea2013-08-12 17:10:49 +0000237#ifdef LLVM_ON_WIN32
238TEST(Support, AbsolutePathIteratorWin32) {
239 SmallString<64> Path(StringRef("c:\\c\\e\\foo.txt"));
240 typedef SmallVector<StringRef, 4> PathComponents;
241 PathComponents ExpectedPathComponents;
242 PathComponents ActualPathComponents;
243
244 StringRef(Path).split(ExpectedPathComponents, "\\");
245
246 // The root path (which comes after the drive name) will also be a component
247 // when iterating.
248 ExpectedPathComponents.insert(ExpectedPathComponents.begin()+1, "\\");
249
250 for (path::const_iterator I = path::begin(Path), E = path::end(Path); I != E;
251 ++I) {
252 ActualPathComponents.push_back(*I);
253 }
254
255 ASSERT_EQ(ExpectedPathComponents.size(), ActualPathComponents.size());
256
257 for (size_t i = 0; i <ExpectedPathComponents.size(); ++i) {
258 EXPECT_EQ(ExpectedPathComponents[i].str(), ActualPathComponents[i].str());
259 }
260}
261#endif // LLVM_ON_WIN32
262
Ben Langmuir8d116392014-03-05 19:56:30 +0000263TEST(Support, AbsolutePathIteratorEnd) {
264 // Trailing slashes are converted to '.' unless they are part of the root path.
265 SmallVector<StringRef, 4> Paths;
266 Paths.push_back("/foo/");
267 Paths.push_back("/foo//");
268 Paths.push_back("//net//");
269#ifdef LLVM_ON_WIN32
270 Paths.push_back("c:\\\\");
271#endif
272
273 for (StringRef Path : Paths) {
Justin Bogner487e7642014-08-04 17:36:41 +0000274 StringRef LastComponent = *path::rbegin(Path);
Ben Langmuir8d116392014-03-05 19:56:30 +0000275 EXPECT_EQ(".", LastComponent);
276 }
277
278 SmallVector<StringRef, 3> RootPaths;
279 RootPaths.push_back("/");
280 RootPaths.push_back("//net/");
281#ifdef LLVM_ON_WIN32
282 RootPaths.push_back("c:\\");
283#endif
284
285 for (StringRef Path : RootPaths) {
Justin Bogner487e7642014-08-04 17:36:41 +0000286 StringRef LastComponent = *path::rbegin(Path);
Ben Langmuir8d116392014-03-05 19:56:30 +0000287 EXPECT_EQ(1u, LastComponent.size());
288 EXPECT_TRUE(path::is_separator(LastComponent[0]));
289 }
290}
291
Peter Collingbournef7d41012014-01-31 23:46:06 +0000292TEST(Support, HomeDirectory) {
293#ifdef LLVM_ON_UNIX
294 // This test only makes sense on Unix if $HOME is set.
295 if (::getenv("HOME")) {
296#endif
297 SmallString<128> HomeDir;
298 EXPECT_TRUE(path::home_directory(HomeDir));
299 EXPECT_FALSE(HomeDir.empty());
300#ifdef LLVM_ON_UNIX
301 }
302#endif
303}
304
Michael J. Spencer346a1332011-01-05 16:39:05 +0000305class FileSystemTest : public testing::Test {
306protected:
307 /// Unique temporary directory in which all created filesystem entities must
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000308 /// be placed. It is removed at the end of each test (must be empty).
Michael J. Spencer346a1332011-01-05 16:39:05 +0000309 SmallString<128> TestDirectory;
310
311 virtual void SetUp() {
Michael J. Spencer346a1332011-01-05 16:39:05 +0000312 ASSERT_NO_ERROR(
Rafael Espindola7ffacc42013-06-27 03:45:31 +0000313 fs::createUniqueDirectory("file-system-test", TestDirectory));
Michael J. Spencer346a1332011-01-05 16:39:05 +0000314 // We don't care about this specific file.
Michael J. Spencer42368cc2011-01-05 16:39:46 +0000315 errs() << "Test Directory: " << TestDirectory << '\n';
316 errs().flush();
Michael J. Spencer346a1332011-01-05 16:39:05 +0000317 }
318
319 virtual void TearDown() {
Rafael Espindola78dcc032014-01-10 20:36:42 +0000320 ASSERT_NO_ERROR(fs::remove(TestDirectory.str()));
Michael J. Spencer346a1332011-01-05 16:39:05 +0000321 }
322};
323
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000324TEST_F(FileSystemTest, Unique) {
325 // Create a temp file.
326 int FileDescriptor;
327 SmallString<64> TempPath;
328 ASSERT_NO_ERROR(
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000329 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath));
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000330
331 // The same file should return an identical unique id.
Rafael Espindola7f822a92013-07-29 21:26:49 +0000332 fs::UniqueID F1, F2;
Rafael Espindola7cf7c512013-06-20 15:06:35 +0000333 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F1));
334 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F2));
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000335 ASSERT_EQ(F1, F2);
336
337 // Different files should return different unique ids.
338 int FileDescriptor2;
339 SmallString<64> TempPath2;
340 ASSERT_NO_ERROR(
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000341 fs::createTemporaryFile("prefix", "temp", FileDescriptor2, TempPath2));
342
Rafael Espindola7f822a92013-07-29 21:26:49 +0000343 fs::UniqueID D;
Rafael Espindola7cf7c512013-06-20 15:06:35 +0000344 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D));
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000345 ASSERT_NE(D, F1);
346 ::close(FileDescriptor2);
347
348 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
349
350 // Two paths representing the same file on disk should still provide the
351 // same unique id. We can test this by making a hard link.
Rafael Espindola83f858e2014-03-11 18:40:24 +0000352 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2)));
Rafael Espindola7f822a92013-07-29 21:26:49 +0000353 fs::UniqueID D2;
Rafael Espindola7cf7c512013-06-20 15:06:35 +0000354 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D2));
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000355 ASSERT_EQ(D2, F1);
356
357 ::close(FileDescriptor);
Rafael Espindolaa5932af2013-07-30 20:25:53 +0000358
359 SmallString<128> Dir1;
360 ASSERT_NO_ERROR(
361 fs::createUniqueDirectory("dir1", Dir1));
362 ASSERT_NO_ERROR(fs::getUniqueID(Dir1.c_str(), F1));
363 ASSERT_NO_ERROR(fs::getUniqueID(Dir1.c_str(), F2));
364 ASSERT_EQ(F1, F2);
365
366 SmallString<128> Dir2;
367 ASSERT_NO_ERROR(
368 fs::createUniqueDirectory("dir2", Dir2));
369 ASSERT_NO_ERROR(fs::getUniqueID(Dir2.c_str(), F2));
370 ASSERT_NE(F1, F2);
Aaron Ballman9fbe5302013-06-19 21:03:50 +0000371}
372
Michael J. Spencer346a1332011-01-05 16:39:05 +0000373TEST_F(FileSystemTest, TempFiles) {
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000374 // Create a temp file.
Michael J. Spencer45710402010-12-03 01:21:28 +0000375 int FileDescriptor;
376 SmallString<64> TempPath;
Michael J. Spencer3b264ba2011-01-04 17:00:18 +0000377 ASSERT_NO_ERROR(
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000378 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath));
Michael J. Spencer45710402010-12-03 01:21:28 +0000379
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000380 // Make sure it exists.
Rafael Espindolac1599152014-09-11 19:11:02 +0000381 ASSERT_TRUE(sys::fs::exists(Twine(TempPath)));
Michael J. Spencer45710402010-12-03 01:21:28 +0000382
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000383 // Create another temp tile.
384 int FD2;
385 SmallString<64> TempPath2;
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000386 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "temp", FD2, TempPath2));
Rafael Espindolad3c89042013-07-25 15:00:17 +0000387 ASSERT_TRUE(TempPath2.endswith(".temp"));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000388 ASSERT_NE(TempPath.str(), TempPath2.str());
389
Michael J. Spencer203d7802011-12-12 06:04:28 +0000390 fs::file_status A, B;
391 ASSERT_NO_ERROR(fs::status(Twine(TempPath), A));
392 ASSERT_NO_ERROR(fs::status(Twine(TempPath2), B));
393 EXPECT_FALSE(fs::equivalent(A, B));
394
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000395 ::close(FD2);
Rafael Espindola213c4cb2013-07-18 03:29:51 +0000396
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000397 // Remove Temp2.
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000398 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
399 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
400 ASSERT_EQ(fs::remove(Twine(TempPath2), false),
Rafael Espindola2a826e42014-06-13 17:20:48 +0000401 errc::no_such_file_or_directory);
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000402
Rafael Espindolac049c652014-06-13 03:20:08 +0000403 std::error_code EC = fs::status(TempPath2.c_str(), B);
Rafael Espindola2a826e42014-06-13 17:20:48 +0000404 EXPECT_EQ(EC, errc::no_such_file_or_directory);
Rafael Espindola107b74c2013-07-31 00:10:25 +0000405 EXPECT_EQ(B.type(), fs::file_type::file_not_found);
406
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000407 // Make sure Temp2 doesn't exist.
Rafael Espindola281f23a2014-09-11 20:30:02 +0000408 ASSERT_EQ(fs::access(Twine(TempPath2), sys::fs::AccessMode::Exist),
409 errc::no_such_file_or_directory);
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000410
Rafael Espindolad3c89042013-07-25 15:00:17 +0000411 SmallString<64> TempPath3;
412 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "", TempPath3));
413 ASSERT_FALSE(TempPath3.endswith("."));
414
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000415 // Create a hard link to Temp1.
Rafael Espindola83f858e2014-03-11 18:40:24 +0000416 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2)));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000417 bool equal;
Michael J. Spencer3b264ba2011-01-04 17:00:18 +0000418 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000419 EXPECT_TRUE(equal);
Michael J. Spencer203d7802011-12-12 06:04:28 +0000420 ASSERT_NO_ERROR(fs::status(Twine(TempPath), A));
421 ASSERT_NO_ERROR(fs::status(Twine(TempPath2), B));
422 EXPECT_TRUE(fs::equivalent(A, B));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000423
424 // Remove Temp1.
Michael J. Spencer45710402010-12-03 01:21:28 +0000425 ::close(FileDescriptor);
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000426 ASSERT_NO_ERROR(fs::remove(Twine(TempPath)));
Michael J. Spencer45710402010-12-03 01:21:28 +0000427
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000428 // Remove the hard link.
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000429 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
Michael J. Spencer4fb115d2010-12-04 03:18:42 +0000430
431 // Make sure Temp1 doesn't exist.
Rafael Espindola281f23a2014-09-11 20:30:02 +0000432 ASSERT_EQ(fs::access(Twine(TempPath), sys::fs::AccessMode::Exist),
433 errc::no_such_file_or_directory);
Aaron Ballmanfcdf9a82013-03-16 15:00:51 +0000434
435#ifdef LLVM_ON_WIN32
436 // Path name > 260 chars should get an error.
437 const char *Path270 =
438 "abcdefghijklmnopqrstuvwxyz9abcdefghijklmnopqrstuvwxyz8"
439 "abcdefghijklmnopqrstuvwxyz7abcdefghijklmnopqrstuvwxyz6"
440 "abcdefghijklmnopqrstuvwxyz5abcdefghijklmnopqrstuvwxyz4"
441 "abcdefghijklmnopqrstuvwxyz3abcdefghijklmnopqrstuvwxyz2"
442 "abcdefghijklmnopqrstuvwxyz1abcdefghijklmnopqrstuvwxyz0";
Paul Robinson1b6c7342014-11-13 00:36:34 +0000443 EXPECT_EQ(fs::createUniqueFile(Path270, FileDescriptor, TempPath),
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000444 errc::invalid_argument);
445 // Relative path < 247 chars, no problem.
446 const char *Path216 =
447 "abcdefghijklmnopqrstuvwxyz7abcdefghijklmnopqrstuvwxyz6"
448 "abcdefghijklmnopqrstuvwxyz5abcdefghijklmnopqrstuvwxyz4"
449 "abcdefghijklmnopqrstuvwxyz3abcdefghijklmnopqrstuvwxyz2"
450 "abcdefghijklmnopqrstuvwxyz1abcdefghijklmnopqrstuvwxyz0";
Paul Robinson1b6c7342014-11-13 00:36:34 +0000451 ASSERT_NO_ERROR(fs::createTemporaryFile(Path216, "", TempPath));
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000452 ASSERT_NO_ERROR(fs::remove(Twine(TempPath)));
Aaron Ballmanfcdf9a82013-03-16 15:00:51 +0000453#endif
Michael J. Spencer346a1332011-01-05 16:39:05 +0000454}
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000455
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000456TEST_F(FileSystemTest, CreateDir) {
457 ASSERT_NO_ERROR(fs::create_directory(Twine(TestDirectory) + "foo"));
458 ASSERT_NO_ERROR(fs::create_directory(Twine(TestDirectory) + "foo"));
459 ASSERT_EQ(fs::create_directory(Twine(TestDirectory) + "foo", false),
Rafael Espindola2a826e42014-06-13 17:20:48 +0000460 errc::file_exists);
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000461 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "foo"));
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000462
463#ifdef LLVM_ON_WIN32
464 // Prove that create_directories() can handle a pathname > 248 characters,
465 // which is the documented limit for CreateDirectory().
466 // (248 is MAX_PATH subtracting room for an 8.3 filename.)
467 // Generate a directory path guaranteed to fall into that range.
468 size_t TmpLen = TestDirectory.size();
469 const char *OneDir = "\\123456789";
470 size_t OneDirLen = strlen(OneDir);
Aaron Ballman493456e2014-11-13 13:39:49 +0000471 ASSERT_LT(OneDirLen, 12U);
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000472 size_t NLevels = ((248 - TmpLen) / OneDirLen) + 1;
473 SmallString<260> LongDir(TestDirectory);
474 for (size_t I = 0; I < NLevels; ++I)
475 LongDir.append(OneDir);
476 ASSERT_NO_ERROR(fs::create_directories(Twine(LongDir)));
477 ASSERT_NO_ERROR(fs::create_directories(Twine(LongDir)));
478 ASSERT_EQ(fs::create_directories(Twine(LongDir), false),
479 errc::file_exists);
480 // Tidy up, "recursively" removing the directories.
481 StringRef ThisDir(LongDir);
482 for (size_t J = 0; J < NLevels; ++J) {
483 ASSERT_NO_ERROR(fs::remove(ThisDir));
484 ThisDir = path::parent_path(ThisDir);
485 }
486
487 // Similarly for a relative pathname. Need to set the current directory to
488 // TestDirectory so that the one we create ends up in the right place.
489 char PreviousDir[260];
490 size_t PreviousDirLen = ::GetCurrentDirectoryA(260, PreviousDir);
Aaron Ballman493456e2014-11-13 13:39:49 +0000491 ASSERT_GT(PreviousDirLen, 0U);
492 ASSERT_LT(PreviousDirLen, 260U);
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000493 ASSERT_NE(::SetCurrentDirectoryA(TestDirectory.c_str()), 0);
494 LongDir.clear();
495 // Generate a relative directory name with absolute length > 248.
496 size_t LongDirLen = 249 - TestDirectory.size();
497 LongDir.assign(LongDirLen, 'a');
498 ASSERT_NO_ERROR(fs::create_directory(Twine(LongDir)));
499 // While we're here, prove that .. and . handling works in these long paths.
500 const char *DotDotDirs = "\\..\\.\\b";
501 LongDir.append(DotDotDirs);
Paul Robinson1b6c7342014-11-13 00:36:34 +0000502 ASSERT_NO_ERROR(fs::create_directory("b"));
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000503 ASSERT_EQ(fs::create_directory(Twine(LongDir), false), errc::file_exists);
504 // And clean up.
Paul Robinson1b6c7342014-11-13 00:36:34 +0000505 ASSERT_NO_ERROR(fs::remove("b"));
Paul Robinsond9c4a9a2014-11-13 00:12:14 +0000506 ASSERT_NO_ERROR(fs::remove(
507 Twine(LongDir.substr(0, LongDir.size() - strlen(DotDotDirs)))));
508 ASSERT_NE(::SetCurrentDirectoryA(PreviousDir), 0);
509#endif
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000510}
511
Michael J. Spencer346a1332011-01-05 16:39:05 +0000512TEST_F(FileSystemTest, DirectoryIteration) {
Rafael Espindolac049c652014-06-13 03:20:08 +0000513 std::error_code ec;
Michael J. Spencer1f063602011-01-06 05:57:54 +0000514 for (fs::directory_iterator i(".", ec), e; i != e; i.increment(ec))
515 ASSERT_NO_ERROR(ec);
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000516
517 // Create a known hierarchy to recurse over.
Rafael Espindola5c20ac02014-02-23 13:56:14 +0000518 ASSERT_NO_ERROR(
519 fs::create_directories(Twine(TestDirectory) + "/recursive/a0/aa1"));
520 ASSERT_NO_ERROR(
521 fs::create_directories(Twine(TestDirectory) + "/recursive/a0/ab1"));
522 ASSERT_NO_ERROR(fs::create_directories(Twine(TestDirectory) +
523 "/recursive/dontlookhere/da1"));
524 ASSERT_NO_ERROR(
525 fs::create_directories(Twine(TestDirectory) + "/recursive/z0/za1"));
526 ASSERT_NO_ERROR(
527 fs::create_directories(Twine(TestDirectory) + "/recursive/pop/p1"));
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000528 typedef std::vector<std::string> v_t;
529 v_t visited;
530 for (fs::recursive_directory_iterator i(Twine(TestDirectory)
531 + "/recursive", ec), e; i != e; i.increment(ec)){
532 ASSERT_NO_ERROR(ec);
NAKAMURA Takumi0cfb3672011-12-09 23:20:03 +0000533 if (path::filename(i->path()) == "p1") {
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000534 i.pop();
NAKAMURA Takumi0cfb3672011-12-09 23:20:03 +0000535 // FIXME: recursive_directory_iterator should be more robust.
536 if (i == e) break;
537 }
Michael J. Spencer9b54a3e2011-12-09 01:14:41 +0000538 if (path::filename(i->path()) == "dontlookhere")
539 i.no_push();
Michael J. Spencer0a7625d2011-12-08 22:50:09 +0000540 visited.push_back(path::filename(i->path()));
541 }
542 v_t::const_iterator a0 = std::find(visited.begin(), visited.end(), "a0");
543 v_t::const_iterator aa1 = std::find(visited.begin(), visited.end(), "aa1");
544 v_t::const_iterator ab1 = std::find(visited.begin(), visited.end(), "ab1");
545 v_t::const_iterator dontlookhere = std::find(visited.begin(), visited.end(),
546 "dontlookhere");
547 v_t::const_iterator da1 = std::find(visited.begin(), visited.end(), "da1");
548 v_t::const_iterator z0 = std::find(visited.begin(), visited.end(), "z0");
549 v_t::const_iterator za1 = std::find(visited.begin(), visited.end(), "za1");
550 v_t::const_iterator pop = std::find(visited.begin(), visited.end(), "pop");
551 v_t::const_iterator p1 = std::find(visited.begin(), visited.end(), "p1");
552
553 // Make sure that each path was visited correctly.
554 ASSERT_NE(a0, visited.end());
555 ASSERT_NE(aa1, visited.end());
556 ASSERT_NE(ab1, visited.end());
557 ASSERT_NE(dontlookhere, visited.end());
558 ASSERT_EQ(da1, visited.end()); // Not visited.
559 ASSERT_NE(z0, visited.end());
560 ASSERT_NE(za1, visited.end());
561 ASSERT_NE(pop, visited.end());
562 ASSERT_EQ(p1, visited.end()); // Not visited.
563
564 // Make sure that parents were visited before children. No other ordering
565 // guarantees can be made across siblings.
566 ASSERT_LT(a0, aa1);
567 ASSERT_LT(a0, ab1);
568 ASSERT_LT(z0, za1);
Rafael Espindola78dcc032014-01-10 20:36:42 +0000569
570 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/a0/aa1"));
571 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/a0/ab1"));
572 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/a0"));
573 ASSERT_NO_ERROR(
574 fs::remove(Twine(TestDirectory) + "/recursive/dontlookhere/da1"));
575 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/dontlookhere"));
576 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/pop/p1"));
577 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/pop"));
578 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/z0/za1"));
579 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive/z0"));
580 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "/recursive"));
Michael J. Spencer1f063602011-01-06 05:57:54 +0000581}
Michael J. Spencer1d3c4a72011-01-06 05:58:02 +0000582
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000583const char archive[] = "!<arch>\x0A";
584const char bitcode[] = "\xde\xc0\x17\x0b";
Rui Ueyama829c4392013-11-14 22:09:08 +0000585const char coff_object[] = "\x00\x00......";
Rui Ueyama5c69ff52014-09-11 22:34:32 +0000586const char coff_bigobj[] = "\x00\x00\xff\xff\x00\x02......"
Rui Ueyama2acb0582014-09-11 21:09:57 +0000587 "\xc7\xa1\xba\xd1\xee\xba\xa9\x4b\xaf\x20\xfa\xf6\x6a\xa4\xdc\xb8";
Rui Ueyamae448f9e2013-11-15 21:22:02 +0000588const char coff_import_library[] = "\x00\x00\xff\xff....";
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000589const char elf_relocatable[] = { 0x7f, 'E', 'L', 'F', 1, 2, 1, 0, 0,
590 0, 0, 0, 0, 0, 0, 0, 0, 1 };
591const char macho_universal_binary[] = "\xca\xfe\xba\xbe...\0x00";
592const char macho_object[] = "\xfe\xed\xfa\xce..........\x00\x01";
593const char macho_executable[] = "\xfe\xed\xfa\xce..........\x00\x02";
594const char macho_fixed_virtual_memory_shared_lib[] =
595 "\xfe\xed\xfa\xce..........\x00\x03";
596const char macho_core[] = "\xfe\xed\xfa\xce..........\x00\x04";
597const char macho_preload_executable[] = "\xfe\xed\xfa\xce..........\x00\x05";
598const char macho_dynamically_linked_shared_lib[] =
599 "\xfe\xed\xfa\xce..........\x00\x06";
600const char macho_dynamic_linker[] = "\xfe\xed\xfa\xce..........\x00\x07";
601const char macho_bundle[] = "\xfe\xed\xfa\xce..........\x00\x08";
602const char macho_dsym_companion[] = "\xfe\xed\xfa\xce..........\x00\x0a";
Justin Bognera7ad4b32015-02-25 22:59:20 +0000603const char macho_kext_bundle[] = "\xfe\xed\xfa\xce..........\x00\x0b";
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000604const char windows_resource[] = "\x00\x00\x00\x00\x020\x00\x00\x00\xff";
Nick Kledzik2d2b2542014-09-17 00:53:44 +0000605const char macho_dynamically_linked_shared_lib_stub[] =
606 "\xfe\xed\xfa\xce..........\x00\x09";
Michael J. Spencerb8055cb2013-04-05 20:10:04 +0000607
Michael J. Spencer1d3c4a72011-01-06 05:58:02 +0000608TEST_F(FileSystemTest, Magic) {
609 struct type {
610 const char *filename;
611 const char *magic_str;
Michael J. Spencerb8055cb2013-04-05 20:10:04 +0000612 size_t magic_str_len;
613 fs::file_magic magic;
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000614 } types[] = {
615#define DEFINE(magic) \
616 { #magic, magic, sizeof(magic), fs::file_magic::magic }
617 DEFINE(archive),
618 DEFINE(bitcode),
Rui Ueyama829c4392013-11-14 22:09:08 +0000619 DEFINE(coff_object),
Rui Ueyama2acb0582014-09-11 21:09:57 +0000620 { "coff_bigobj", coff_bigobj, sizeof(coff_bigobj), fs::file_magic::coff_object },
Rui Ueyamae448f9e2013-11-15 21:22:02 +0000621 DEFINE(coff_import_library),
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000622 DEFINE(elf_relocatable),
623 DEFINE(macho_universal_binary),
624 DEFINE(macho_object),
625 DEFINE(macho_executable),
626 DEFINE(macho_fixed_virtual_memory_shared_lib),
627 DEFINE(macho_core),
628 DEFINE(macho_preload_executable),
629 DEFINE(macho_dynamically_linked_shared_lib),
630 DEFINE(macho_dynamic_linker),
631 DEFINE(macho_bundle),
Nick Kledzik2d2b2542014-09-17 00:53:44 +0000632 DEFINE(macho_dynamically_linked_shared_lib_stub),
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000633 DEFINE(macho_dsym_companion),
Justin Bognera7ad4b32015-02-25 22:59:20 +0000634 DEFINE(macho_kext_bundle),
Rui Ueyama5e3de7a2013-11-13 21:55:41 +0000635 DEFINE(windows_resource)
636#undef DEFINE
637 };
Michael J. Spencer1d3c4a72011-01-06 05:58:02 +0000638
639 // Create some files filled with magic.
640 for (type *i = types, *e = types + (sizeof(types) / sizeof(type)); i != e;
641 ++i) {
642 SmallString<128> file_pathname(TestDirectory);
643 path::append(file_pathname, i->filename);
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000644 std::error_code EC;
645 raw_fd_ostream file(file_pathname, EC, sys::fs::F_None);
Michael J. Spencer1d3c4a72011-01-06 05:58:02 +0000646 ASSERT_FALSE(file.has_error());
647 StringRef magic(i->magic_str, i->magic_str_len);
648 file << magic;
Michael J. Spencerb5871802011-01-15 18:52:49 +0000649 file.close();
Michael J. Spencerb8055cb2013-04-05 20:10:04 +0000650 EXPECT_EQ(i->magic, fs::identify_magic(magic));
Rafael Espindola78dcc032014-01-10 20:36:42 +0000651 ASSERT_NO_ERROR(fs::remove(Twine(file_pathname)));
Michael J. Spencer7ecd94c2010-12-06 04:28:42 +0000652 }
Michael J. Spencer98847782010-11-24 19:20:05 +0000653}
654
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000655#ifdef LLVM_ON_WIN32
656TEST_F(FileSystemTest, CarriageReturn) {
657 SmallString<128> FilePathname(TestDirectory);
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000658 std::error_code EC;
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000659 path::append(FilePathname, "test");
660
661 {
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000662 raw_fd_ostream File(FilePathname, EC, sys::fs::F_Text);
663 ASSERT_NO_ERROR(EC);
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000664 File << '\n';
665 }
666 {
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000667 auto Buf = MemoryBuffer::getFile(FilePathname.str());
Aaron Ballman586ee602014-07-06 20:20:02 +0000668 EXPECT_TRUE((bool)Buf);
Aaron Ballmane56fe8a2014-07-06 19:34:52 +0000669 EXPECT_EQ(Buf.get()->getBuffer(), "\r\n");
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000670 }
671
672 {
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000673 raw_fd_ostream File(FilePathname, EC, sys::fs::F_None);
674 ASSERT_NO_ERROR(EC);
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000675 File << '\n';
676 }
677 {
Reid Klecknerd83c63b2014-08-26 00:24:23 +0000678 auto Buf = MemoryBuffer::getFile(FilePathname.str());
Aaron Ballman586ee602014-07-06 20:20:02 +0000679 EXPECT_TRUE((bool)Buf);
Aaron Ballmane56fe8a2014-07-06 19:34:52 +0000680 EXPECT_EQ(Buf.get()->getBuffer(), "\n");
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000681 }
Rafael Espindola78dcc032014-01-10 20:36:42 +0000682 ASSERT_NO_ERROR(fs::remove(Twine(FilePathname)));
Rafael Espindola84ab9b32013-07-19 14:41:25 +0000683}
684#endif
685
Rafael Espindola59aaa6c2014-12-12 17:55:12 +0000686TEST_F(FileSystemTest, Resize) {
687 int FD;
688 SmallString<64> TempPath;
689 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "temp", FD, TempPath));
690 ASSERT_NO_ERROR(fs::resize_file(FD, 123));
691 fs::file_status Status;
692 ASSERT_NO_ERROR(fs::status(FD, Status));
693 ASSERT_EQ(Status.getSize(), 123U);
694}
695
Nick Kledzik18497e92012-06-20 00:28:54 +0000696TEST_F(FileSystemTest, FileMapping) {
697 // Create a temp file.
698 int FileDescriptor;
699 SmallString<64> TempPath;
700 ASSERT_NO_ERROR(
Rafael Espindola155cf0f2013-07-05 20:14:52 +0000701 fs::createTemporaryFile("prefix", "temp", FileDescriptor, TempPath));
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000702 unsigned Size = 4096;
703 ASSERT_NO_ERROR(fs::resize_file(FileDescriptor, Size));
704
Nick Kledzik18497e92012-06-20 00:28:54 +0000705 // Map in temp file and add some content
Rafael Espindolac049c652014-06-13 03:20:08 +0000706 std::error_code EC;
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000707 StringRef Val("hello there");
708 {
709 fs::mapped_file_region mfr(FileDescriptor,
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000710 fs::mapped_file_region::readwrite, Size, 0, EC);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000711 ASSERT_NO_ERROR(EC);
712 std::copy(Val.begin(), Val.end(), mfr.data());
713 // Explicitly add a 0.
714 mfr.data()[Val.size()] = 0;
715 // Unmap temp file
716 }
Rui Ueyama89d1bdb2013-11-13 20:31:21 +0000717
Nick Kledzik18497e92012-06-20 00:28:54 +0000718 // Map it back in read-only
Rafael Espindola71bc5072014-12-11 17:17:26 +0000719 int FD;
720 EC = fs::openFileForRead(Twine(TempPath), FD);
721 ASSERT_NO_ERROR(EC);
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000722 fs::mapped_file_region mfr(FD, fs::mapped_file_region::readonly, Size, 0, EC);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000723 ASSERT_NO_ERROR(EC);
Rui Ueyama89d1bdb2013-11-13 20:31:21 +0000724
Nick Kledzik18497e92012-06-20 00:28:54 +0000725 // Verify content
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000726 EXPECT_EQ(StringRef(mfr.const_data()), Val);
Rui Ueyama89d1bdb2013-11-13 20:31:21 +0000727
Nick Kledzik18497e92012-06-20 00:28:54 +0000728 // Unmap temp file
Rafael Espindolac69f13b2014-12-12 18:13:23 +0000729 fs::mapped_file_region m(FD, fs::mapped_file_region::readonly, Size, 0, EC);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000730 ASSERT_NO_ERROR(EC);
Rafael Espindola71bc5072014-12-11 17:17:26 +0000731 ASSERT_EQ(close(FD), 0);
Michael J. Spenceref2284f2012-08-15 19:05:47 +0000732}
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000733
734TEST(Support, NormalizePath) {
735#if defined(LLVM_ON_WIN32)
736#define EXPECT_PATH_IS(path__, windows__, not_windows__) \
737 EXPECT_EQ(path__, windows__);
738#else
739#define EXPECT_PATH_IS(path__, windows__, not_windows__) \
740 EXPECT_EQ(path__, not_windows__);
741#endif
742
743 SmallString<64> Path1("a");
744 SmallString<64> Path2("a/b");
745 SmallString<64> Path3("a\\b");
746 SmallString<64> Path4("a\\\\b");
747 SmallString<64> Path5("\\a");
748 SmallString<64> Path6("a\\");
749
Rafael Espindola7e774c22014-08-08 21:35:52 +0000750 path::native(Path1);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000751 EXPECT_PATH_IS(Path1, "a", "a");
752
Rafael Espindola7e774c22014-08-08 21:35:52 +0000753 path::native(Path2);
Rafael Espindolaffbabb72014-08-09 00:37:05 +0000754 EXPECT_PATH_IS(Path2, "a\\b", "a/b");
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000755
Rafael Espindola7e774c22014-08-08 21:35:52 +0000756 path::native(Path3);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000757 EXPECT_PATH_IS(Path3, "a\\b", "a/b");
758
Rafael Espindola7e774c22014-08-08 21:35:52 +0000759 path::native(Path4);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000760 EXPECT_PATH_IS(Path4, "a\\\\b", "a\\\\b");
761
Rafael Espindola7e774c22014-08-08 21:35:52 +0000762 path::native(Path5);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000763 EXPECT_PATH_IS(Path5, "\\a", "/a");
764
Rafael Espindola7e774c22014-08-08 21:35:52 +0000765 path::native(Path6);
Saleem Abdulrasoolafc50b3ed2014-03-11 22:05:42 +0000766 EXPECT_PATH_IS(Path6, "a\\", "a/");
767
768#undef EXPECT_PATH_IS
769}
Michael J. Spencer98847782010-11-24 19:20:05 +0000770} // anonymous namespace