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.
76 lines
2.1 KiB
76 lines
2.1 KiB
10 years ago
|
/*
|
||
|
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 fuzzHelper.h
|
||
|
* @author Dimitry Khokhlov <winsvega@mail.ru>
|
||
|
* @date 2015
|
||
|
*/
|
||
|
|
||
|
#include <string>
|
||
|
#include <boost/random.hpp>
|
||
|
#include <boost/filesystem/path.hpp>
|
||
|
|
||
|
#include <test/TestHelper.h>
|
||
|
#include <libdevcore/CommonIO.h>
|
||
|
#include <libdevcore/CommonData.h>
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace dev
|
||
|
{
|
||
|
namespace test
|
||
|
{
|
||
|
|
||
|
typedef boost::random::uniform_int_distribution<> boostIntDistrib;
|
||
|
typedef boost::random::variate_generator<boost::mt19937&, boostIntDistrib > boostIntGenerator;
|
||
|
|
||
|
enum class CodeOptions
|
||
|
{
|
||
|
UseUndefinedOpCodes,
|
||
|
DontUseUndefinedOpCodes
|
||
|
};
|
||
|
|
||
|
class RandomCode
|
||
|
{
|
||
|
public:
|
||
|
/// Generate random vm code
|
||
|
static std::string generate(int maxOpNumber = 1, CodeOptions options = CodeOptions::DontUseUndefinedOpCodes);
|
||
|
|
||
|
/// Generate random byte string of a given length
|
||
|
static std::string rndByteSequence(int length = 1);
|
||
|
|
||
|
/// Generate random uniForm Int with reasonable value 0..0x7fffffff
|
||
|
static std::string randomUniInt();
|
||
|
|
||
|
private:
|
||
|
static std::string fillArguments(int num);
|
||
|
static void refreshSeed();
|
||
|
|
||
|
static boost::random::mt19937 gen; ///< Random generator
|
||
|
static boostIntDistrib opCodeDist; ///< 0..255 opcodes
|
||
|
static boostIntDistrib opLengDist; ///< 1..32 byte string
|
||
|
static boostIntDistrib uniIntDist; ///< 0..0x7fffffff
|
||
|
|
||
|
static boostIntGenerator randUniIntGen; ///< Generate random UniformInt from
|
||
|
static boostIntGenerator randOpCodeGen; ///< Generate random value from opCodeDist
|
||
|
static boostIntGenerator randOpLengGen; ///< Generate random length from opLengDist
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|