mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[yul-phaser] TestHelpers: Add TemporaryDirectory class
This commit is contained in:
@@ -19,12 +19,18 @@
|
||||
|
||||
#include <libyul/optimiser/Suite.h>
|
||||
|
||||
#include <boost/filesystem.hpp>
|
||||
|
||||
#include <regex>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
using namespace solidity;
|
||||
using namespace solidity::yul;
|
||||
using namespace solidity::phaser;
|
||||
using namespace solidity::phaser::test;
|
||||
|
||||
namespace fs = boost::filesystem;
|
||||
|
||||
function<Mutation> phaser::test::wholeChromosomeReplacement(Chromosome _newChromosome)
|
||||
{
|
||||
@@ -71,6 +77,40 @@ size_t phaser::test::countDifferences(Chromosome const& _chromosome1, Chromosome
|
||||
return count + abs(static_cast<int>(_chromosome1.length() - _chromosome2.length()));
|
||||
}
|
||||
|
||||
TemporaryDirectory::TemporaryDirectory(std::string const& _prefix):
|
||||
m_path((fs::temp_directory_path() / fs::unique_path(_prefix + "%%%%-%%%%-%%%%-%%%%")).string())
|
||||
{
|
||||
// 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());
|
||||
|
||||
fs::create_directory(m_path);
|
||||
}
|
||||
|
||||
TemporaryDirectory::~TemporaryDirectory()
|
||||
{
|
||||
// A few paranoid sanity checks just to be extra sure we're not deleting someone's homework.
|
||||
assert(m_path.find(fs::temp_directory_path().string()) == 0);
|
||||
assert(fs::path(m_path) != fs::temp_directory_path());
|
||||
assert(fs::path(m_path) != fs::path(m_path).root_path());
|
||||
assert(!fs::path(m_path).empty());
|
||||
|
||||
boost::system::error_code errorCode;
|
||||
uintmax_t numRemoved = fs::remove_all(m_path, errorCode);
|
||||
if (errorCode.value() != boost::system::errc::success)
|
||||
{
|
||||
cerr << "Failed to completely remove temporary directory '" << m_path << "'. ";
|
||||
cerr << "Only " << numRemoved << " files were actually removed." << endl;
|
||||
cerr << "Reason: " << errorCode.message() << endl;
|
||||
}
|
||||
}
|
||||
|
||||
string TemporaryDirectory::memberPath(string const& _relativePath) const
|
||||
{
|
||||
assert(fs::path(_relativePath).is_relative());
|
||||
|
||||
return (fs::path(m_path) / _relativePath).string();
|
||||
}
|
||||
|
||||
string phaser::test::stripWhitespace(string const& input)
|
||||
{
|
||||
regex whitespaceRegex("\\s+");
|
||||
|
||||
Reference in New Issue
Block a user