2010-11-30 06:29:04 +08:00
|
|
|
//===- llvm/unittest/Support/Path.cpp - Path tests ------------------------===//
|
2010-11-25 03:20:05 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-12-03 09:21:28 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "llvm/Support/PathV2.h"
|
2010-12-06 12:28:42 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-11-25 03:20:28 +08:00
|
|
|
|
2010-11-25 03:20:05 +08:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
2010-11-30 06:28:51 +08:00
|
|
|
using namespace llvm;
|
2010-12-03 09:21:28 +08:00
|
|
|
using namespace llvm::sys;
|
2010-11-30 06:28:51 +08:00
|
|
|
|
2011-01-05 01:00:18 +08:00
|
|
|
#define ASSERT_NO_ERROR(x) \
|
|
|
|
if (error_code ec = x) { \
|
|
|
|
SmallString<128> Message; \
|
|
|
|
GTEST_FATAL_FAILURE_((Twine(#x) + ": did not return errc::success.\n" + \
|
|
|
|
"error message: " + \
|
|
|
|
x.message()).toNullTerminatedStringRef(Message).data()); \
|
|
|
|
} else {}
|
|
|
|
|
2010-11-25 03:20:05 +08:00
|
|
|
namespace {
|
|
|
|
|
2010-11-30 06:29:04 +08:00
|
|
|
TEST(Support, Path) {
|
2010-11-30 06:28:51 +08:00
|
|
|
SmallVector<StringRef, 40> paths;
|
|
|
|
paths.push_back("");
|
|
|
|
paths.push_back(".");
|
|
|
|
paths.push_back("..");
|
|
|
|
paths.push_back("foo");
|
|
|
|
paths.push_back("/");
|
|
|
|
paths.push_back("/foo");
|
|
|
|
paths.push_back("foo/");
|
|
|
|
paths.push_back("/foo/");
|
|
|
|
paths.push_back("foo/bar");
|
|
|
|
paths.push_back("/foo/bar");
|
|
|
|
paths.push_back("//net");
|
|
|
|
paths.push_back("//net/foo");
|
|
|
|
paths.push_back("///foo///");
|
|
|
|
paths.push_back("///foo///bar");
|
|
|
|
paths.push_back("/.");
|
|
|
|
paths.push_back("./");
|
|
|
|
paths.push_back("/..");
|
|
|
|
paths.push_back("../");
|
|
|
|
paths.push_back("foo/.");
|
|
|
|
paths.push_back("foo/..");
|
|
|
|
paths.push_back("foo/./");
|
|
|
|
paths.push_back("foo/./bar");
|
|
|
|
paths.push_back("foo/..");
|
|
|
|
paths.push_back("foo/../");
|
|
|
|
paths.push_back("foo/../bar");
|
|
|
|
paths.push_back("c:");
|
|
|
|
paths.push_back("c:/");
|
|
|
|
paths.push_back("c:foo");
|
|
|
|
paths.push_back("c:/foo");
|
|
|
|
paths.push_back("c:foo/");
|
|
|
|
paths.push_back("c:/foo/");
|
|
|
|
paths.push_back("c:/foo/bar");
|
|
|
|
paths.push_back("prn:");
|
|
|
|
paths.push_back("c:\\");
|
|
|
|
paths.push_back("c:foo");
|
|
|
|
paths.push_back("c:\\foo");
|
|
|
|
paths.push_back("c:foo\\");
|
|
|
|
paths.push_back("c:\\foo\\");
|
|
|
|
paths.push_back("c:\\foo/");
|
|
|
|
paths.push_back("c:/foo\\bar");
|
|
|
|
|
|
|
|
for (SmallVector<StringRef, 40>::const_iterator i = paths.begin(),
|
|
|
|
e = paths.end();
|
|
|
|
i != e;
|
|
|
|
++i) {
|
|
|
|
for (sys::path::const_iterator ci = sys::path::begin(*i),
|
|
|
|
ce = sys::path::end(*i);
|
|
|
|
ci != ce;
|
|
|
|
++ci) {
|
2010-12-03 10:22:34 +08:00
|
|
|
ASSERT_FALSE(ci->empty());
|
2010-11-30 06:28:51 +08:00
|
|
|
}
|
|
|
|
|
2010-12-02 06:28:42 +08:00
|
|
|
#if 0 // Valgrind is whining about this.
|
2010-12-01 07:28:07 +08:00
|
|
|
outs() << " Reverse Iteration: [";
|
|
|
|
for (sys::path::reverse_iterator ci = sys::path::rbegin(*i),
|
|
|
|
ce = sys::path::rend(*i);
|
|
|
|
ci != ce;
|
|
|
|
++ci) {
|
|
|
|
outs() << *ci << ',';
|
|
|
|
}
|
|
|
|
outs() << "]\n";
|
2010-12-02 06:28:42 +08:00
|
|
|
#endif
|
2010-12-01 07:28:07 +08:00
|
|
|
|
2010-12-08 01:04:04 +08:00
|
|
|
path::has_root_path(*i);
|
|
|
|
path::root_path(*i);
|
|
|
|
path::has_root_name(*i);
|
|
|
|
path::root_name(*i);
|
|
|
|
path::has_root_directory(*i);
|
|
|
|
path::root_directory(*i);
|
|
|
|
path::has_parent_path(*i);
|
|
|
|
path::parent_path(*i);
|
|
|
|
path::has_filename(*i);
|
|
|
|
path::filename(*i);
|
|
|
|
path::has_stem(*i);
|
|
|
|
path::stem(*i);
|
|
|
|
path::has_extension(*i);
|
|
|
|
path::extension(*i);
|
|
|
|
path::is_absolute(*i);
|
|
|
|
path::is_relative(*i);
|
2010-12-01 14:03:33 +08:00
|
|
|
|
2011-01-05 01:00:18 +08:00
|
|
|
SmallString<128> temp_store;
|
2010-12-03 10:22:34 +08:00
|
|
|
temp_store = *i;
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::make_absolute(temp_store));
|
2010-12-03 10:22:34 +08:00
|
|
|
temp_store = *i;
|
2010-12-07 11:57:37 +08:00
|
|
|
path::remove_filename(temp_store);
|
2010-12-01 14:03:33 +08:00
|
|
|
|
2010-12-03 10:22:34 +08:00
|
|
|
temp_store = *i;
|
2010-12-07 11:57:37 +08:00
|
|
|
path::replace_extension(temp_store, "ext");
|
2010-12-01 14:03:33 +08:00
|
|
|
StringRef filename(temp_store.begin(), temp_store.size()), stem, ext;
|
2010-12-08 01:04:04 +08:00
|
|
|
stem = path::stem(filename);
|
|
|
|
ext = path::extension(filename);
|
2010-12-01 14:03:33 +08:00
|
|
|
EXPECT_EQ(*(--sys::path::end(filename)), (stem + ext).str());
|
|
|
|
|
2010-12-07 11:57:37 +08:00
|
|
|
path::native(*i, temp_store);
|
2010-11-30 06:28:51 +08:00
|
|
|
}
|
2011-01-06 00:39:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
class FileSystemTest : public testing::Test {
|
|
|
|
protected:
|
|
|
|
/// Unique temporary directory in which all created filesystem entities must
|
|
|
|
/// be placed. It is recursively removed at the end of each test.
|
|
|
|
SmallString<128> TestDirectory;
|
|
|
|
|
|
|
|
virtual void SetUp() {
|
|
|
|
/*int fd;
|
|
|
|
ASSERT_NO_ERROR(
|
|
|
|
fs::unique_file("%%-%%-%%-%%/test-directory.anchor", fd, TestDirectory));
|
|
|
|
// We don't care about this specific file.
|
|
|
|
::close(fd);*/
|
|
|
|
}
|
2010-12-03 09:21:28 +08:00
|
|
|
|
2011-01-06 00:39:05 +08:00
|
|
|
virtual void TearDown() {
|
|
|
|
/*uint32_t removed;
|
|
|
|
ASSERT_NO_ERROR(fs::remove_all(TestDirectory.str(), removed));*/
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(FileSystemTest, TempFiles) {
|
2010-12-04 11:18:42 +08:00
|
|
|
// Create a temp file.
|
2010-12-03 09:21:28 +08:00
|
|
|
int FileDescriptor;
|
|
|
|
SmallString<64> TempPath;
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(
|
|
|
|
fs::unique_file("%%-%%-%%-%%.temp", FileDescriptor, TempPath));
|
2010-12-03 09:21:28 +08:00
|
|
|
|
2010-12-04 11:18:42 +08:00
|
|
|
// Make sure it exists.
|
2010-12-03 09:21:28 +08:00
|
|
|
bool TempFileExists;
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(sys::fs::exists(Twine(TempPath), TempFileExists));
|
2010-12-03 09:21:28 +08:00
|
|
|
EXPECT_TRUE(TempFileExists);
|
|
|
|
|
2010-12-04 11:18:42 +08:00
|
|
|
// Create another temp tile.
|
|
|
|
int FD2;
|
|
|
|
SmallString<64> TempPath2;
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::unique_file("%%-%%-%%-%%.temp", FD2, TempPath2));
|
2010-12-04 11:18:42 +08:00
|
|
|
ASSERT_NE(TempPath.str(), TempPath2.str());
|
|
|
|
|
|
|
|
// Try to copy the first to the second.
|
2011-01-05 01:00:18 +08:00
|
|
|
EXPECT_EQ(
|
|
|
|
fs::copy_file(Twine(TempPath), Twine(TempPath2)), errc::file_exists);
|
2010-12-04 11:18:42 +08:00
|
|
|
|
|
|
|
::close(FD2);
|
|
|
|
// Try again with the proper options.
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::copy_file(Twine(TempPath), Twine(TempPath2),
|
|
|
|
fs::copy_option::overwrite_if_exists));
|
2010-12-04 11:18:42 +08:00
|
|
|
// Remove Temp2.
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::remove(Twine(TempPath2), TempFileExists));
|
2010-12-04 11:18:42 +08:00
|
|
|
EXPECT_TRUE(TempFileExists);
|
|
|
|
|
|
|
|
// Make sure Temp2 doesn't exist.
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::exists(Twine(TempPath2), TempFileExists));
|
2010-12-04 11:18:42 +08:00
|
|
|
EXPECT_FALSE(TempFileExists);
|
|
|
|
|
|
|
|
// Create a hard link to Temp1.
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::create_hard_link(Twine(TempPath), Twine(TempPath2)));
|
2010-12-04 11:18:42 +08:00
|
|
|
bool equal;
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal));
|
2010-12-04 11:18:42 +08:00
|
|
|
EXPECT_TRUE(equal);
|
|
|
|
|
|
|
|
// Remove Temp1.
|
2010-12-03 09:21:28 +08:00
|
|
|
::close(FileDescriptor);
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::remove(Twine(TempPath), TempFileExists));
|
2010-12-04 01:53:43 +08:00
|
|
|
EXPECT_TRUE(TempFileExists);
|
2010-12-03 09:21:28 +08:00
|
|
|
|
2010-12-04 11:18:42 +08:00
|
|
|
// Remove the hard link.
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::remove(Twine(TempPath2), TempFileExists));
|
2010-12-04 11:18:42 +08:00
|
|
|
EXPECT_TRUE(TempFileExists);
|
|
|
|
|
|
|
|
// Make sure Temp1 doesn't exist.
|
2011-01-05 01:00:18 +08:00
|
|
|
ASSERT_NO_ERROR(fs::exists(Twine(TempPath), TempFileExists));
|
2010-12-03 20:33:32 +08:00
|
|
|
EXPECT_FALSE(TempFileExists);
|
2011-01-06 00:39:05 +08:00
|
|
|
}
|
2010-12-06 12:28:42 +08:00
|
|
|
|
2011-01-06 00:39:05 +08:00
|
|
|
TEST_F(FileSystemTest, DirectoryIteration) {
|
2010-12-06 12:28:42 +08:00
|
|
|
error_code ec;
|
|
|
|
for (fs::directory_iterator i(".", ec), e; i != e; i.increment(ec)) {
|
|
|
|
if (ec) {
|
|
|
|
errs() << ec.message() << '\n';
|
|
|
|
errs().flush();
|
|
|
|
report_fatal_error("Directory iteration failed!");
|
|
|
|
}
|
|
|
|
}
|
2010-11-25 03:20:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|