You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.1 KiB
80 lines
2.1 KiB
/*
|
|
This file is part of cpp-ethereum.
|
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/** @file Common.cpp
|
|
* @author Marek Kotewicz <marek@ethdev.com>
|
|
* @date 2015
|
|
*/
|
|
|
|
#include <random>
|
|
#include <libdevcore/CommonData.h>
|
|
#include <libdevcore/CommonIO.h>
|
|
#include <libdevcrypto/FileSystem.h>
|
|
#include "Common.h"
|
|
|
|
using namespace std;
|
|
using namespace dev;
|
|
using namespace dev::test;
|
|
|
|
std::string dev::test::getTestPath()
|
|
{
|
|
string testPath;
|
|
const char* ptestPath = getenv("ETHEREUM_TEST_PATH");
|
|
|
|
if (ptestPath == NULL)
|
|
{
|
|
ctest << " could not find environment variable ETHEREUM_TEST_PATH \n";
|
|
testPath = "../../../tests";
|
|
}
|
|
else
|
|
testPath = ptestPath;
|
|
|
|
return testPath;
|
|
}
|
|
|
|
int dev::test::randomNumber()
|
|
{
|
|
static std::mt19937 randomGenerator(time(0));
|
|
randomGenerator.seed(std::random_device()());
|
|
return std::uniform_int_distribution<int>(1)(randomGenerator);
|
|
}
|
|
|
|
Json::Value dev::test::loadJsonFromFile(std::string const& _path)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value result;
|
|
string s = asString(dev::contents(_path));
|
|
if (!s.length())
|
|
ctest << "Contents of " + _path + " is empty. Have you cloned the 'tests' repo branch develop and set ETHEREUM_TEST_PATH to its path?";
|
|
else
|
|
ctest << "FIXTURE: loaded test from file: " << _path;
|
|
|
|
reader.parse(s, result);
|
|
return result;
|
|
}
|
|
|
|
std::string dev::test::toTestFilePath(std::string const& _filename)
|
|
{
|
|
return getTestPath() + "/" + _filename + ".json";
|
|
}
|
|
|
|
std::string dev::test::getRandomPath()
|
|
{
|
|
std::stringstream stream;
|
|
stream << getDataDir() << "/EthereumTests/" << randomNumber();
|
|
return stream.str();
|
|
}
|
|
|
|
|