mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #11686 from ethereum/temporary-directory-extra-features
Convenience features in `TemporaryDirectory`
This commit is contained in:
commit
327571db88
@ -18,9 +18,11 @@
|
|||||||
|
|
||||||
#include <test/TemporaryDirectory.h>
|
#include <test/TemporaryDirectory.h>
|
||||||
|
|
||||||
|
#include <test/libsolidity/util/SoltestErrors.h>
|
||||||
|
|
||||||
|
#include <boost/algorithm/string/predicate.hpp>
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
|
|
||||||
#include <cassert>
|
|
||||||
#include <regex>
|
#include <regex>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
@ -31,21 +33,39 @@ using namespace solidity::test;
|
|||||||
namespace fs = boost::filesystem;
|
namespace fs = boost::filesystem;
|
||||||
|
|
||||||
TemporaryDirectory::TemporaryDirectory(std::string const& _prefix):
|
TemporaryDirectory::TemporaryDirectory(std::string const& _prefix):
|
||||||
m_path(fs::temp_directory_path() / fs::unique_path(_prefix + "%%%%-%%%%-%%%%-%%%%"))
|
m_path(fs::temp_directory_path() / fs::unique_path(_prefix + "-%%%%-%%%%-%%%%-%%%%"))
|
||||||
{
|
{
|
||||||
// Prefix should just be a file name and not contain anything that would make us step out of /tmp.
|
// Prefix should just be a file name and not contain anything that would make us step out of /tmp.
|
||||||
assert(fs::path(_prefix) == fs::path(_prefix).stem());
|
soltestAssert(fs::path(_prefix) == fs::path(_prefix).stem(), "");
|
||||||
|
|
||||||
fs::create_directory(m_path);
|
fs::create_directory(m_path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TemporaryDirectory::TemporaryDirectory(
|
||||||
|
vector<boost::filesystem::path> const& _subdirectories,
|
||||||
|
string const& _prefix
|
||||||
|
):
|
||||||
|
TemporaryDirectory(_prefix)
|
||||||
|
{
|
||||||
|
for (boost::filesystem::path const& subdirectory: _subdirectories)
|
||||||
|
{
|
||||||
|
soltestAssert(!subdirectory.is_absolute() && subdirectory.root_path() != "/", "");
|
||||||
|
soltestAssert(
|
||||||
|
m_path.lexically_relative(subdirectory).empty() ||
|
||||||
|
*m_path.lexically_relative(subdirectory).begin() != "..",
|
||||||
|
""
|
||||||
|
);
|
||||||
|
boost::filesystem::create_directories(m_path / subdirectory);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
TemporaryDirectory::~TemporaryDirectory()
|
TemporaryDirectory::~TemporaryDirectory()
|
||||||
{
|
{
|
||||||
// A few paranoid sanity checks just to be extra sure we're not deleting someone's homework.
|
// A few paranoid sanity checks just to be extra sure we're not deleting someone's homework.
|
||||||
assert(m_path.string().find(fs::temp_directory_path().string()) == 0);
|
soltestAssert(m_path.string().find(fs::temp_directory_path().string()) == 0, "");
|
||||||
assert(!fs::equivalent(m_path, fs::temp_directory_path()));
|
soltestAssert(!fs::equivalent(m_path, fs::temp_directory_path()), "");
|
||||||
assert(!fs::equivalent(m_path, m_path.root_path()));
|
soltestAssert(!fs::equivalent(m_path, m_path.root_path()), "");
|
||||||
assert(!m_path.empty());
|
soltestAssert(!m_path.empty(), "");
|
||||||
|
|
||||||
boost::system::error_code errorCode;
|
boost::system::error_code errorCode;
|
||||||
uintmax_t numRemoved = fs::remove_all(m_path, errorCode);
|
uintmax_t numRemoved = fs::remove_all(m_path, errorCode);
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
namespace solidity::test
|
namespace solidity::test
|
||||||
{
|
{
|
||||||
@ -40,10 +41,15 @@ namespace solidity::test
|
|||||||
class TemporaryDirectory
|
class TemporaryDirectory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TemporaryDirectory(std::string const& _prefix = "solidity-test-");
|
TemporaryDirectory(std::string const& _prefix = "solidity-test");
|
||||||
|
TemporaryDirectory(
|
||||||
|
std::vector<boost::filesystem::path> const& _subdirectories,
|
||||||
|
std::string const& _prefix = "solidity-test"
|
||||||
|
);
|
||||||
~TemporaryDirectory();
|
~TemporaryDirectory();
|
||||||
|
|
||||||
boost::filesystem::path const& path() const { return m_path; }
|
boost::filesystem::path const& path() const { return m_path; }
|
||||||
|
operator boost::filesystem::path() const { return m_path; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
boost::filesystem::path m_path;
|
boost::filesystem::path m_path;
|
||||||
@ -59,6 +65,7 @@ public:
|
|||||||
~TemporaryWorkingDirectory();
|
~TemporaryWorkingDirectory();
|
||||||
|
|
||||||
boost::filesystem::path const& originalWorkingDirectory() const { return m_originalWorkingDirectory; }
|
boost::filesystem::path const& originalWorkingDirectory() const { return m_originalWorkingDirectory; }
|
||||||
|
operator boost::filesystem::path() const { return boost::filesystem::current_path(); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
boost::filesystem::path m_originalWorkingDirectory;
|
boost::filesystem::path m_originalWorkingDirectory;
|
||||||
|
@ -18,6 +18,8 @@
|
|||||||
|
|
||||||
#include <test/TemporaryDirectory.h>
|
#include <test/TemporaryDirectory.h>
|
||||||
|
|
||||||
|
#include <test/libsolidity/util/SoltestErrors.h>
|
||||||
|
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
#include <boost/test/unit_test.hpp>
|
#include <boost/test/unit_test.hpp>
|
||||||
|
|
||||||
@ -26,8 +28,6 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace boost::test_tools;
|
using namespace boost::test_tools;
|
||||||
|
|
||||||
namespace fs = boost::filesystem;
|
|
||||||
|
|
||||||
namespace solidity::test
|
namespace solidity::test
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -35,59 +35,72 @@ BOOST_AUTO_TEST_SUITE(TemporaryDirectoryTest)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(TemporaryDirectory_should_create_and_delete_a_unique_and_empty_directory)
|
BOOST_AUTO_TEST_CASE(TemporaryDirectory_should_create_and_delete_a_unique_and_empty_directory)
|
||||||
{
|
{
|
||||||
fs::path dirPath;
|
boost::filesystem::path dirPath;
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir("temporary-directory-test-");
|
TemporaryDirectory tempDir("temporary-directory-test");
|
||||||
dirPath = tempDir.path();
|
dirPath = tempDir.path();
|
||||||
|
|
||||||
BOOST_TEST(dirPath.stem().string().find("temporary-directory-test-") == 0);
|
BOOST_TEST(dirPath.stem().string().find("temporary-directory-test") == 0);
|
||||||
BOOST_TEST(fs::equivalent(dirPath.parent_path(), fs::temp_directory_path()));
|
BOOST_TEST(boost::filesystem::equivalent(dirPath.parent_path(), boost::filesystem::temp_directory_path()));
|
||||||
BOOST_TEST(fs::is_directory(dirPath));
|
BOOST_TEST(boost::filesystem::is_directory(dirPath));
|
||||||
BOOST_TEST(fs::is_empty(dirPath));
|
BOOST_TEST(boost::filesystem::is_empty(dirPath));
|
||||||
}
|
}
|
||||||
BOOST_TEST(!fs::exists(dirPath));
|
BOOST_TEST(!boost::filesystem::exists(dirPath));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(TemporaryDirectory_should_delete_its_directory_even_if_not_empty)
|
BOOST_AUTO_TEST_CASE(TemporaryDirectory_should_delete_its_directory_even_if_not_empty)
|
||||||
{
|
{
|
||||||
fs::path dirPath;
|
boost::filesystem::path dirPath;
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir("temporary-directory-test-");
|
TemporaryDirectory tempDir("temporary-directory-test");
|
||||||
dirPath = tempDir.path();
|
dirPath = tempDir.path();
|
||||||
|
|
||||||
BOOST_TEST(fs::is_directory(dirPath));
|
BOOST_TEST(boost::filesystem::is_directory(dirPath));
|
||||||
|
|
||||||
{
|
{
|
||||||
ofstream tmpFile((dirPath / "test-file.txt").string());
|
ofstream tmpFile((dirPath / "test-file.txt").string());
|
||||||
tmpFile << "Delete me!" << endl;
|
tmpFile << "Delete me!" << endl;
|
||||||
}
|
}
|
||||||
assert(fs::is_regular_file(dirPath / "test-file.txt"));
|
soltestAssert(boost::filesystem::is_regular_file(dirPath / "test-file.txt"), "");
|
||||||
|
}
|
||||||
|
BOOST_TEST(!boost::filesystem::exists(dirPath / "test-file.txt"));
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(TemporaryDirectory_should_create_subdirectories)
|
||||||
|
{
|
||||||
|
boost::filesystem::path dirPath;
|
||||||
|
{
|
||||||
|
TemporaryDirectory tempDir({"a", "a/", "a/b/c", "x.y/z"}, "temporary-directory-test");
|
||||||
|
dirPath = tempDir.path();
|
||||||
|
|
||||||
|
BOOST_TEST(boost::filesystem::is_directory(dirPath / "a"));
|
||||||
|
BOOST_TEST(boost::filesystem::is_directory(dirPath / "a/b/c"));
|
||||||
|
BOOST_TEST(boost::filesystem::is_directory(dirPath / "x.y/z"));
|
||||||
}
|
}
|
||||||
BOOST_TEST(!fs::exists(dirPath / "test-file.txt"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(TemporaryWorkingDirectory_should_change_and_restore_working_directory)
|
BOOST_AUTO_TEST_CASE(TemporaryWorkingDirectory_should_change_and_restore_working_directory)
|
||||||
{
|
{
|
||||||
fs::path originalWorkingDirectory = fs::current_path();
|
boost::filesystem::path originalWorkingDirectory = boost::filesystem::current_path();
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir("temporary-directory-test-");
|
TemporaryDirectory tempDir("temporary-directory-test");
|
||||||
assert(fs::equivalent(fs::current_path(), originalWorkingDirectory));
|
soltestAssert(boost::filesystem::equivalent(boost::filesystem::current_path(), originalWorkingDirectory), "");
|
||||||
assert(!fs::equivalent(tempDir.path(), originalWorkingDirectory));
|
soltestAssert(!boost::filesystem::equivalent(tempDir.path(), originalWorkingDirectory), "");
|
||||||
|
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDir.path());
|
||||||
|
|
||||||
BOOST_TEST(fs::equivalent(fs::current_path(), tempDir.path()));
|
BOOST_TEST(boost::filesystem::equivalent(boost::filesystem::current_path(), tempDir.path()));
|
||||||
}
|
}
|
||||||
BOOST_TEST(fs::equivalent(fs::current_path(), originalWorkingDirectory));
|
BOOST_TEST(boost::filesystem::equivalent(boost::filesystem::current_path(), originalWorkingDirectory));
|
||||||
|
|
||||||
fs::current_path(originalWorkingDirectory);
|
boost::filesystem::current_path(originalWorkingDirectory);
|
||||||
}
|
}
|
||||||
catch (...)
|
catch (...)
|
||||||
{
|
{
|
||||||
fs::current_path(originalWorkingDirectory);
|
boost::filesystem::current_path(originalWorkingDirectory);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,8 +65,7 @@ BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_absolute_path)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_relative_path)
|
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_relative_path)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir({"x/y/z"}, TEST_CASE_NAME);
|
||||||
boost::filesystem::create_directories(tempDir.path() / "x/y/z");
|
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path() / "x/y/z");
|
TemporaryWorkingDirectory tempWorkDir(tempDir.path() / "x/y/z");
|
||||||
|
|
||||||
// NOTE: If path to work dir contains symlinks (often the case on macOS), boost might resolve
|
// NOTE: If path to work dir contains symlinks (often the case on macOS), boost might resolve
|
||||||
@ -129,7 +128,7 @@ BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_redundant_slashes)
|
|||||||
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_unc_path)
|
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_unc_path)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDir);
|
||||||
|
|
||||||
// On Windows tempDir.path() normally contains the drive letter while the normalized path should not.
|
// On Windows tempDir.path() normally contains the drive letter while the normalized path should not.
|
||||||
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
||||||
@ -157,7 +156,7 @@ BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_unc_path)
|
|||||||
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_root_name_only)
|
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_root_name_only)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDir);
|
||||||
|
|
||||||
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
||||||
soltestAssert(expectedWorkDir.is_absolute() || expectedWorkDir.root_path() == "/", "");
|
soltestAssert(expectedWorkDir.is_absolute() || expectedWorkDir.root_path() == "/", "");
|
||||||
@ -187,7 +186,7 @@ BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_root_name_only)
|
|||||||
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_stripping_root_name)
|
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_stripping_root_name)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDir);
|
||||||
|
|
||||||
soltestAssert(boost::filesystem::current_path().is_absolute(), "");
|
soltestAssert(boost::filesystem::current_path().is_absolute(), "");
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
@ -234,7 +233,7 @@ BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_path_beyond_root)
|
|||||||
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_case_sensitivity)
|
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_case_sensitivity)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDir);
|
||||||
|
|
||||||
boost::filesystem::path expectedPrefix = "/" / tempDir.path().relative_path();
|
boost::filesystem::path expectedPrefix = "/" / tempDir.path().relative_path();
|
||||||
soltestAssert(expectedPrefix.is_absolute() || expectedPrefix.root_path() == "/", "");
|
soltestAssert(expectedPrefix.is_absolute() || expectedPrefix.root_path() == "/", "");
|
||||||
@ -253,9 +252,8 @@ BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_path_separators)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_should_not_resolve_symlinks)
|
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_should_not_resolve_symlinks)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir({"abc/"}, TEST_CASE_NAME);
|
||||||
soltestAssert(tempDir.path().is_absolute(), "");
|
soltestAssert(tempDir.path().is_absolute(), "");
|
||||||
boost::filesystem::create_directories(tempDir.path() / "abc");
|
|
||||||
|
|
||||||
if (!createSymlinkIfSupportedByFilesystem(tempDir.path() / "abc", tempDir.path() / "sym", true))
|
if (!createSymlinkIfSupportedByFilesystem(tempDir.path() / "abc", tempDir.path() / "sym", true))
|
||||||
return;
|
return;
|
||||||
@ -269,9 +267,8 @@ BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_should_not_resolve_symlinks)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_should_resolve_symlinks_in_workdir_when_path_is_relative)
|
BOOST_AUTO_TEST_CASE(normalizeCLIPathForVFS_should_resolve_symlinks_in_workdir_when_path_is_relative)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir({"abc/"}, TEST_CASE_NAME);
|
||||||
soltestAssert(tempDir.path().is_absolute(), "");
|
soltestAssert(tempDir.path().is_absolute(), "");
|
||||||
boost::filesystem::create_directories(tempDir.path() / "abc");
|
|
||||||
|
|
||||||
if (!createSymlinkIfSupportedByFilesystem(tempDir.path() / "abc", tempDir.path() / "sym", true))
|
if (!createSymlinkIfSupportedByFilesystem(tempDir.path() / "abc", tempDir.path() / "sym", true))
|
||||||
return;
|
return;
|
||||||
|
@ -34,6 +34,8 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace solidity::test;
|
using namespace solidity::test;
|
||||||
|
|
||||||
|
#define TEST_CASE_NAME (boost::unit_test::framework::current_test_case().p_name)
|
||||||
|
|
||||||
namespace solidity::util::test
|
namespace solidity::util::test
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -41,7 +43,7 @@ BOOST_AUTO_TEST_SUITE(CommonIOTest)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(readFileAsString_regular_file)
|
BOOST_AUTO_TEST_CASE(readFileAsString_regular_file)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir("common-io-test-");
|
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
||||||
createFileWithContent(tempDir.path() / "test.txt", "ABC\ndef\n");
|
createFileWithContent(tempDir.path() / "test.txt", "ABC\ndef\n");
|
||||||
|
|
||||||
BOOST_TEST(readFileAsString(tempDir.path() / "test.txt") == "ABC\ndef\n");
|
BOOST_TEST(readFileAsString(tempDir.path() / "test.txt") == "ABC\ndef\n");
|
||||||
@ -49,13 +51,13 @@ BOOST_AUTO_TEST_CASE(readFileAsString_regular_file)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(readFileAsString_directory)
|
BOOST_AUTO_TEST_CASE(readFileAsString_directory)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir("common-io-test-");
|
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
||||||
BOOST_CHECK_THROW(readFileAsString(tempDir.path()), NotAFile);
|
BOOST_CHECK_THROW(readFileAsString(tempDir), NotAFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(readFileAsString_symlink)
|
BOOST_AUTO_TEST_CASE(readFileAsString_symlink)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir("common-io-test-");
|
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
||||||
createFileWithContent(tempDir.path() / "test.txt", "ABC\ndef\n");
|
createFileWithContent(tempDir.path() / "test.txt", "ABC\ndef\n");
|
||||||
|
|
||||||
if (!createSymlinkIfSupportedByFilesystem("test.txt", tempDir.path() / "symlink.txt", false))
|
if (!createSymlinkIfSupportedByFilesystem("test.txt", tempDir.path() / "symlink.txt", false))
|
||||||
|
@ -156,8 +156,8 @@ BOOST_AUTO_TEST_CASE(cli_input)
|
|||||||
{(expectedDir2 / "input2.sol").generic_string(), ""},
|
{(expectedDir2 / "input2.sol").generic_string(), ""},
|
||||||
};
|
};
|
||||||
PathSet expectedAllowedPaths = {
|
PathSet expectedAllowedPaths = {
|
||||||
boost::filesystem::canonical(tempDir1.path()),
|
boost::filesystem::canonical(tempDir1),
|
||||||
boost::filesystem::canonical(tempDir2.path()),
|
boost::filesystem::canonical(tempDir2),
|
||||||
"b/c",
|
"b/c",
|
||||||
"c/d/e",
|
"c/d/e",
|
||||||
};
|
};
|
||||||
@ -191,7 +191,7 @@ BOOST_AUTO_TEST_CASE(cli_ignore_missing_some_files_exist)
|
|||||||
|
|
||||||
// NOTE: Allowed paths should not be added for skipped files.
|
// NOTE: Allowed paths should not be added for skipped files.
|
||||||
map<string, string> expectedSources = {{(expectedDir1 / "input1.sol").generic_string(), ""}};
|
map<string, string> expectedSources = {{(expectedDir1 / "input1.sol").generic_string(), ""}};
|
||||||
PathSet expectedAllowedPaths = {boost::filesystem::canonical(tempDir1.path())};
|
PathSet expectedAllowedPaths = {boost::filesystem::canonical(tempDir1)};
|
||||||
|
|
||||||
OptionsReaderAndMessages result = parseCommandLineAndReadInputFiles({
|
OptionsReaderAndMessages result = parseCommandLineAndReadInputFiles({
|
||||||
"solc",
|
"solc",
|
||||||
@ -354,14 +354,14 @@ BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_no_base_path)
|
|||||||
{
|
{
|
||||||
TemporaryDirectory tempDirCurrent(TEST_CASE_NAME);
|
TemporaryDirectory tempDirCurrent(TEST_CASE_NAME);
|
||||||
TemporaryDirectory tempDirOther(TEST_CASE_NAME);
|
TemporaryDirectory tempDirOther(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDirCurrent.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDirCurrent);
|
||||||
soltestAssert(tempDirCurrent.path().is_absolute(), "");
|
soltestAssert(tempDirCurrent.path().is_absolute(), "");
|
||||||
soltestAssert(tempDirOther.path().is_absolute(), "");
|
soltestAssert(tempDirOther.path().is_absolute(), "");
|
||||||
|
|
||||||
// NOTE: On macOS the path usually contains symlinks which prevents base path from being stripped.
|
// NOTE: On macOS the path usually contains symlinks which prevents base path from being stripped.
|
||||||
// Use canonical() to resolve symnlinks and get consistent results on all platforms.
|
// Use canonical() to resolve symnlinks and get consistent results on all platforms.
|
||||||
boost::filesystem::path currentDirNoSymlinks = boost::filesystem::canonical(tempDirCurrent.path());
|
boost::filesystem::path currentDirNoSymlinks = boost::filesystem::canonical(tempDirCurrent);
|
||||||
boost::filesystem::path otherDirNoSymlinks = boost::filesystem::canonical(tempDirOther.path());
|
boost::filesystem::path otherDirNoSymlinks = boost::filesystem::canonical(tempDirOther);
|
||||||
|
|
||||||
boost::filesystem::path expectedOtherDir = "/" / otherDirNoSymlinks.relative_path();
|
boost::filesystem::path expectedOtherDir = "/" / otherDirNoSymlinks.relative_path();
|
||||||
soltestAssert(expectedOtherDir.is_absolute() || expectedOtherDir.root_path() == "/", "");
|
soltestAssert(expectedOtherDir.is_absolute() || expectedOtherDir.root_path() == "/", "");
|
||||||
@ -412,14 +412,14 @@ BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_base_path_same_as_work_dir)
|
|||||||
{
|
{
|
||||||
TemporaryDirectory tempDirCurrent(TEST_CASE_NAME);
|
TemporaryDirectory tempDirCurrent(TEST_CASE_NAME);
|
||||||
TemporaryDirectory tempDirOther(TEST_CASE_NAME);
|
TemporaryDirectory tempDirOther(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDirCurrent.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDirCurrent);
|
||||||
soltestAssert(tempDirCurrent.path().is_absolute(), "");
|
soltestAssert(tempDirCurrent.path().is_absolute(), "");
|
||||||
soltestAssert(tempDirOther.path().is_absolute(), "");
|
soltestAssert(tempDirOther.path().is_absolute(), "");
|
||||||
|
|
||||||
// NOTE: On macOS the path usually contains symlinks which prevents base path from being stripped.
|
// NOTE: On macOS the path usually contains symlinks which prevents base path from being stripped.
|
||||||
// Use canonical() to resolve symnlinks and get consistent results on all platforms.
|
// Use canonical() to resolve symnlinks and get consistent results on all platforms.
|
||||||
boost::filesystem::path currentDirNoSymlinks = boost::filesystem::canonical(tempDirCurrent.path());
|
boost::filesystem::path currentDirNoSymlinks = boost::filesystem::canonical(tempDirCurrent);
|
||||||
boost::filesystem::path otherDirNoSymlinks = boost::filesystem::canonical(tempDirOther.path());
|
boost::filesystem::path otherDirNoSymlinks = boost::filesystem::canonical(tempDirOther);
|
||||||
|
|
||||||
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
||||||
boost::filesystem::path expectedOtherDir = "/" / otherDirNoSymlinks.relative_path();
|
boost::filesystem::path expectedOtherDir = "/" / otherDirNoSymlinks.relative_path();
|
||||||
@ -475,16 +475,16 @@ BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_base_path_different_from_wor
|
|||||||
TemporaryDirectory tempDirCurrent(TEST_CASE_NAME);
|
TemporaryDirectory tempDirCurrent(TEST_CASE_NAME);
|
||||||
TemporaryDirectory tempDirOther(TEST_CASE_NAME);
|
TemporaryDirectory tempDirOther(TEST_CASE_NAME);
|
||||||
TemporaryDirectory tempDirBase(TEST_CASE_NAME);
|
TemporaryDirectory tempDirBase(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDirCurrent.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDirCurrent);
|
||||||
soltestAssert(tempDirCurrent.path().is_absolute(), "");
|
soltestAssert(tempDirCurrent.path().is_absolute(), "");
|
||||||
soltestAssert(tempDirOther.path().is_absolute(), "");
|
soltestAssert(tempDirOther.path().is_absolute(), "");
|
||||||
soltestAssert(tempDirBase.path().is_absolute(), "");
|
soltestAssert(tempDirBase.path().is_absolute(), "");
|
||||||
|
|
||||||
// NOTE: On macOS the path usually contains symlinks which prevents base path from being stripped.
|
// NOTE: On macOS the path usually contains symlinks which prevents base path from being stripped.
|
||||||
// Use canonical() to resolve symnlinks and get consistent results on all platforms.
|
// Use canonical() to resolve symnlinks and get consistent results on all platforms.
|
||||||
boost::filesystem::path currentDirNoSymlinks = boost::filesystem::canonical(tempDirCurrent.path());
|
boost::filesystem::path currentDirNoSymlinks = boost::filesystem::canonical(tempDirCurrent);
|
||||||
boost::filesystem::path otherDirNoSymlinks = boost::filesystem::canonical(tempDirOther.path());
|
boost::filesystem::path otherDirNoSymlinks = boost::filesystem::canonical(tempDirOther);
|
||||||
boost::filesystem::path baseDirNoSymlinks = boost::filesystem::canonical(tempDirBase.path());
|
boost::filesystem::path baseDirNoSymlinks = boost::filesystem::canonical(tempDirBase);
|
||||||
|
|
||||||
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
||||||
boost::filesystem::path expectedCurrentDir = "/" / currentDirNoSymlinks.relative_path();
|
boost::filesystem::path expectedCurrentDir = "/" / currentDirNoSymlinks.relative_path();
|
||||||
@ -547,14 +547,14 @@ BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_relative_base_path)
|
|||||||
{
|
{
|
||||||
TemporaryDirectory tempDirCurrent(TEST_CASE_NAME);
|
TemporaryDirectory tempDirCurrent(TEST_CASE_NAME);
|
||||||
TemporaryDirectory tempDirOther(TEST_CASE_NAME);
|
TemporaryDirectory tempDirOther(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDirCurrent.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDirCurrent);
|
||||||
soltestAssert(tempDirCurrent.path().is_absolute(), "");
|
soltestAssert(tempDirCurrent.path().is_absolute(), "");
|
||||||
soltestAssert(tempDirOther.path().is_absolute(), "");
|
soltestAssert(tempDirOther.path().is_absolute(), "");
|
||||||
|
|
||||||
// NOTE: On macOS the path usually contains symlinks which prevents base path from being stripped.
|
// NOTE: On macOS the path usually contains symlinks which prevents base path from being stripped.
|
||||||
// Use canonical() to resolve symnlinks and get consistent results on all platforms.
|
// Use canonical() to resolve symnlinks and get consistent results on all platforms.
|
||||||
boost::filesystem::path currentDirNoSymlinks = boost::filesystem::canonical(tempDirCurrent.path());
|
boost::filesystem::path currentDirNoSymlinks = boost::filesystem::canonical(tempDirCurrent);
|
||||||
boost::filesystem::path otherDirNoSymlinks = boost::filesystem::canonical(tempDirOther.path());
|
boost::filesystem::path otherDirNoSymlinks = boost::filesystem::canonical(tempDirOther);
|
||||||
|
|
||||||
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
||||||
boost::filesystem::path expectedOtherDir = "/" / otherDirNoSymlinks.relative_path();
|
boost::filesystem::path expectedOtherDir = "/" / otherDirNoSymlinks.relative_path();
|
||||||
@ -614,15 +614,14 @@ BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_relative_base_path)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_normalization_and_weird_names)
|
BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_normalization_and_weird_names)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir({"x/y/z"}, TEST_CASE_NAME);
|
||||||
boost::filesystem::create_directories(tempDir.path() / "x/y/z");
|
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path() / "x/y/z");
|
TemporaryWorkingDirectory tempWorkDir(tempDir.path() / "x/y/z");
|
||||||
soltestAssert(tempDir.path().is_absolute(), "");
|
soltestAssert(tempDir.path().is_absolute(), "");
|
||||||
|
|
||||||
string uncPath = "//" + tempDir.path().relative_path().generic_string();
|
string uncPath = "//" + tempDir.path().relative_path().generic_string();
|
||||||
soltestAssert(FileReader::isUNCPath(uncPath), "");
|
soltestAssert(FileReader::isUNCPath(uncPath), "");
|
||||||
|
|
||||||
boost::filesystem::path tempDirNoSymlinks = boost::filesystem::canonical(tempDir.path());
|
boost::filesystem::path tempDirNoSymlinks = boost::filesystem::canonical(tempDir);
|
||||||
|
|
||||||
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
||||||
soltestAssert(expectedWorkDir.is_absolute() || expectedWorkDir.root_path() == "/", "");
|
soltestAssert(expectedWorkDir.is_absolute() || expectedWorkDir.root_path() == "/", "");
|
||||||
@ -782,9 +781,8 @@ BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_normalization_and_weird_name
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_symlinks)
|
BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_symlinks)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir({"r/"}, TEST_CASE_NAME);
|
||||||
createFilesWithParentDirs({tempDir.path() / "x/y/z/contract.sol"});
|
createFilesWithParentDirs({tempDir.path() / "x/y/z/contract.sol"});
|
||||||
boost::filesystem::create_directories(tempDir.path() / "r");
|
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path() / "r");
|
TemporaryWorkingDirectory tempWorkDir(tempDir.path() / "r");
|
||||||
|
|
||||||
if (
|
if (
|
||||||
@ -829,7 +827,7 @@ BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_symlinks)
|
|||||||
};
|
};
|
||||||
|
|
||||||
FileReader::FileSystemPathSet expectedAllowedDirectories = {
|
FileReader::FileSystemPathSet expectedAllowedDirectories = {
|
||||||
boost::filesystem::canonical(tempDir.path()) / "x/y/z",
|
boost::filesystem::canonical(tempDir) / "x/y/z",
|
||||||
};
|
};
|
||||||
|
|
||||||
OptionsReaderAndMessages result = parseCommandLineAndReadInputFiles(commandLine);
|
OptionsReaderAndMessages result = parseCommandLineAndReadInputFiles(commandLine);
|
||||||
@ -846,7 +844,7 @@ BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_symlinks)
|
|||||||
BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_base_path_and_stdin)
|
BOOST_AUTO_TEST_CASE(cli_paths_to_source_unit_names_base_path_and_stdin)
|
||||||
{
|
{
|
||||||
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
TemporaryDirectory tempDir(TEST_CASE_NAME);
|
||||||
TemporaryWorkingDirectory tempWorkDir(tempDir.path());
|
TemporaryWorkingDirectory tempWorkDir(tempDir);
|
||||||
boost::filesystem::create_directories(tempDir.path() / "base");
|
boost::filesystem::create_directories(tempDir.path() / "base");
|
||||||
|
|
||||||
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
boost::filesystem::path expectedWorkDir = "/" / boost::filesystem::current_path().relative_path();
|
||||||
|
Loading…
Reference in New Issue
Block a user