2014-03-26 05:01:17 +00:00
|
|
|
/*
|
|
|
|
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 TestHelper.h
|
|
|
|
* @author Marko Simovic <markobarko@gmail.com>
|
|
|
|
* @date 2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-11-03 15:33:02 +00:00
|
|
|
#include <functional>
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-11-03 15:33:02 +00:00
|
|
|
#include <boost/test/unit_test.hpp>
|
2015-04-20 20:48:53 +00:00
|
|
|
#include <boost/filesystem.hpp>
|
2015-02-09 16:31:04 +00:00
|
|
|
|
2014-10-29 16:25:02 +00:00
|
|
|
#include "JsonSpiritHeaders.h"
|
|
|
|
#include <libethereum/State.h>
|
2014-11-19 13:30:42 +00:00
|
|
|
#include <libevm/ExtVMFace.h>
|
2015-03-25 09:59:46 +00:00
|
|
|
#include <libtestutils/Common.h>
|
2014-10-29 16:25:02 +00:00
|
|
|
|
2015-06-17 15:31:14 +00:00
|
|
|
#ifdef NOBOOST
|
2015-06-03 16:36:41 +00:00
|
|
|
#define TBOOST_REQUIRE(arg) if(arg == false) throw dev::Exception();
|
2015-06-05 18:43:41 +00:00
|
|
|
#define TBOOST_REQUIRE_EQUAL(arg1, arg2) if(arg1 != arg2) throw dev::Exception();
|
|
|
|
#define TBOOST_CHECK_EQUAL(arg1, arg2) if(arg1 != arg2) throw dev::Exception();
|
|
|
|
#define TBOOST_CHECK(arg) if(arg == false) throw dev::Exception();
|
2015-06-19 17:52:38 +00:00
|
|
|
#define TBOOST_REQUIRE_MESSAGE(arg1, arg2) if(arg1 == false) throw dev::Exception();
|
2015-06-03 16:36:41 +00:00
|
|
|
#define TBOOST_CHECK_MESSAGE(arg1, arg2) if(arg1 == false) throw dev::Exception();
|
|
|
|
#define TBOOST_WARN_MESSAGE(arg1, arg2) throw dev::Exception();
|
2015-06-05 18:43:41 +00:00
|
|
|
#define TBOOST_ERROR(arg) throw dev::Exception();
|
2015-06-03 14:21:29 +00:00
|
|
|
#else
|
|
|
|
#define TBOOST_REQUIRE(arg) BOOST_REQUIRE(arg)
|
2015-06-05 18:43:41 +00:00
|
|
|
#define TBOOST_REQUIRE_EQUAL(arg1, arg2) BOOST_REQUIRE_EQUAL(arg1, arg2)
|
2015-06-09 15:52:18 +00:00
|
|
|
#define TBOOST_CHECK(arg) BOOST_CHECK(arg)
|
2015-06-05 18:43:41 +00:00
|
|
|
#define TBOOST_CHECK_EQUAL(arg1, arg2) BOOST_CHECK_EQUAL(arg1, arg2)
|
2015-06-03 14:21:29 +00:00
|
|
|
#define TBOOST_CHECK_MESSAGE(arg1, arg2) BOOST_CHECK_MESSAGE(arg1, arg2)
|
2015-06-19 17:52:38 +00:00
|
|
|
#define TBOOST_REQUIRE_MESSAGE(arg1, arg2) BOOST_REQUIRE_MESSAGE(arg1, arg2)
|
2015-06-03 14:21:29 +00:00
|
|
|
#define TBOOST_WARN_MESSAGE(arg1, arg2) BOOST_WARN_MESSAGE(arg1, arg2)
|
2015-06-05 18:43:41 +00:00
|
|
|
#define TBOOST_ERROR(arg) BOOST_ERROR(arg)
|
2015-06-03 14:21:29 +00:00
|
|
|
#endif
|
|
|
|
|
2014-09-05 15:09:58 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
2014-03-26 05:01:17 +00:00
|
|
|
namespace eth
|
|
|
|
{
|
|
|
|
|
2014-09-05 15:09:58 +00:00
|
|
|
class Client;
|
2015-04-13 16:12:05 +00:00
|
|
|
class State;
|
2014-09-05 15:09:58 +00:00
|
|
|
|
2014-03-26 05:01:17 +00:00
|
|
|
void mine(Client& c, int numBlocks);
|
2014-04-03 15:01:03 +00:00
|
|
|
void connectClients(Client& c1, Client& c2);
|
2015-04-13 16:12:05 +00:00
|
|
|
void mine(State& _s, BlockChain const& _bc);
|
|
|
|
void mine(BlockInfo& _bi);
|
2014-03-26 05:01:17 +00:00
|
|
|
|
2014-11-03 15:33:02 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 16:25:02 +00:00
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
2015-03-06 11:06:12 +00:00
|
|
|
/// Make sure that no Exception is thrown during testing. If one is thrown show its info and fail the test.
|
|
|
|
/// Our version of BOOST_REQUIRE_NO_THROW()
|
2015-03-09 11:23:37 +00:00
|
|
|
/// @param _statenent The statement for which to make sure no exceptions are thrown
|
2015-03-06 11:06:12 +00:00
|
|
|
/// @param _message A message to act as a prefix to the expression's error information
|
2015-03-09 11:23:37 +00:00
|
|
|
#define ETH_TEST_REQUIRE_NO_THROW(_statement, _message) \
|
2015-03-06 13:30:34 +00:00
|
|
|
do \
|
|
|
|
{ \
|
2015-03-06 11:06:12 +00:00
|
|
|
try \
|
|
|
|
{ \
|
2015-03-09 11:23:37 +00:00
|
|
|
BOOST_TEST_PASSPOINT(); \
|
|
|
|
_statement; \
|
2015-03-06 11:06:12 +00:00
|
|
|
} \
|
|
|
|
catch (boost::exception const& _e) \
|
|
|
|
{ \
|
2015-03-09 12:06:16 +00:00
|
|
|
auto msg = std::string(_message " due to an exception thrown by " \
|
|
|
|
BOOST_STRINGIZE(_statement) "\n") + boost::diagnostic_information(_e); \
|
2015-03-09 11:23:37 +00:00
|
|
|
BOOST_CHECK_IMPL(false, msg, REQUIRE, CHECK_MSG); \
|
2015-03-06 11:06:12 +00:00
|
|
|
} \
|
2015-03-09 11:23:37 +00:00
|
|
|
catch (...) \
|
|
|
|
{ \
|
2015-03-09 12:06:16 +00:00
|
|
|
BOOST_CHECK_IMPL(false, "Unknown exception thrown by " \
|
2015-03-09 11:23:37 +00:00
|
|
|
BOOST_STRINGIZE(_statement), REQUIRE, CHECK_MSG); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
2015-03-06 11:06:12 +00:00
|
|
|
|
|
|
|
/// Check if an Exception is thrown during testing. If one is thrown show its info and continue the test
|
|
|
|
/// Our version of BOOST_CHECK_NO_THROW()
|
2015-03-09 11:23:37 +00:00
|
|
|
/// @param _statement The statement for which to make sure no exceptions are thrown
|
2015-03-06 11:06:12 +00:00
|
|
|
/// @param _message A message to act as a prefix to the expression's error information
|
2015-03-09 11:23:37 +00:00
|
|
|
#define ETH_TEST_CHECK_NO_THROW(_statement, _message) \
|
2015-03-06 13:30:34 +00:00
|
|
|
do \
|
|
|
|
{ \
|
2015-03-06 11:06:12 +00:00
|
|
|
try \
|
|
|
|
{ \
|
2015-03-09 11:23:37 +00:00
|
|
|
BOOST_TEST_PASSPOINT(); \
|
|
|
|
_statement; \
|
2015-03-06 11:06:12 +00:00
|
|
|
} \
|
|
|
|
catch (boost::exception const& _e) \
|
|
|
|
{ \
|
2015-03-09 12:06:16 +00:00
|
|
|
auto msg = std::string(_message " due to an exception thrown by " \
|
|
|
|
BOOST_STRINGIZE(_statement) "\n") + boost::diagnostic_information(_e); \
|
2015-03-09 11:23:37 +00:00
|
|
|
BOOST_CHECK_IMPL(false, msg, CHECK, CHECK_MSG); \
|
|
|
|
} \
|
|
|
|
catch (...) \
|
|
|
|
{ \
|
2015-03-09 12:06:16 +00:00
|
|
|
BOOST_CHECK_IMPL(false, "Unknown exception thrown by " \
|
2015-03-09 11:23:37 +00:00
|
|
|
BOOST_STRINGIZE(_statement), CHECK, CHECK_MSG ); \
|
2015-03-06 11:06:12 +00:00
|
|
|
} \
|
2015-03-09 11:23:37 +00:00
|
|
|
} \
|
|
|
|
while (0)
|
2015-03-06 11:06:12 +00:00
|
|
|
|
2015-03-26 22:05:45 +00:00
|
|
|
struct ImportStateOptions
|
|
|
|
{
|
2015-04-02 15:33:28 +00:00
|
|
|
ImportStateOptions(bool _bSetAll = false):m_bHasBalance(_bSetAll), m_bHasNonce(_bSetAll), m_bHasCode(_bSetAll), m_bHasStorage(_bSetAll) {}
|
2015-03-26 22:05:45 +00:00
|
|
|
bool isAllSet() {return m_bHasBalance && m_bHasNonce && m_bHasCode && m_bHasStorage;}
|
|
|
|
bool m_bHasBalance;
|
|
|
|
bool m_bHasNonce;
|
|
|
|
bool m_bHasCode;
|
|
|
|
bool m_bHasStorage;
|
|
|
|
};
|
|
|
|
typedef std::map<Address, ImportStateOptions> stateOptionsMap;
|
2015-03-06 11:06:12 +00:00
|
|
|
|
2014-10-29 16:25:02 +00:00
|
|
|
class ImportTest
|
|
|
|
{
|
|
|
|
public:
|
2015-04-05 19:08:22 +00:00
|
|
|
ImportTest(json_spirit::mObject& _o): m_TestObject(_o) {}
|
2014-10-29 16:25:02 +00:00
|
|
|
ImportTest(json_spirit::mObject& _o, bool isFiller);
|
|
|
|
// imports
|
|
|
|
void importEnv(json_spirit::mObject& _o);
|
2015-03-25 12:47:28 +00:00
|
|
|
static void importState(json_spirit::mObject& _o, eth::State& _state);
|
2015-03-26 22:05:45 +00:00
|
|
|
static void importState(json_spirit::mObject& _o, eth::State& _state, stateOptionsMap& _stateOptionsMap);
|
2014-11-03 15:33:02 +00:00
|
|
|
void importTransaction(json_spirit::mObject& _o);
|
2015-04-09 18:30:00 +00:00
|
|
|
static json_spirit::mObject& makeAllFieldsHex(json_spirit::mObject& _o);
|
2015-03-26 22:05:45 +00:00
|
|
|
|
2015-03-02 15:21:41 +00:00
|
|
|
void exportTest(bytes const& _output, eth::State const& _statePost);
|
2015-04-02 15:33:28 +00:00
|
|
|
static void checkExpectedState(eth::State const& _stateExpect, eth::State const& _statePost, stateOptionsMap const _expectedStateOptions = stateOptionsMap(), WhenError _throw = WhenError::Throw);
|
2014-11-03 15:33:02 +00:00
|
|
|
|
|
|
|
eth::State m_statePre;
|
|
|
|
eth::State m_statePost;
|
|
|
|
eth::ExtVMFace m_environment;
|
|
|
|
eth::Transaction m_transaction;
|
2014-10-31 08:41:02 +00:00
|
|
|
|
2014-10-29 16:25:02 +00:00
|
|
|
private:
|
2014-10-31 08:41:02 +00:00
|
|
|
json_spirit::mObject& m_TestObject;
|
2014-10-29 16:25:02 +00:00
|
|
|
};
|
|
|
|
|
2015-03-09 09:28:48 +00:00
|
|
|
class ZeroGasPricer: public eth::GasPricer
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
u256 ask(eth::State const&) const override { return 0; }
|
|
|
|
u256 bid(eth::TransactionPriority = eth::TransactionPriority::Medium) const override { return 0; }
|
|
|
|
};
|
|
|
|
|
2014-10-29 16:25:02 +00:00
|
|
|
// helping functions
|
|
|
|
u256 toInt(json_spirit::mValue const& _v);
|
|
|
|
byte toByte(json_spirit::mValue const& _v);
|
2014-11-05 20:55:10 +00:00
|
|
|
bytes importCode(json_spirit::mObject& _o);
|
|
|
|
bytes importData(json_spirit::mObject& _o);
|
2015-01-23 20:03:29 +00:00
|
|
|
bytes importByteArray(std::string const& _str);
|
2014-12-05 18:26:32 +00:00
|
|
|
eth::LogEntries importLog(json_spirit::mArray& _o);
|
|
|
|
json_spirit::mArray exportLog(eth::LogEntries _logs);
|
2014-11-05 20:55:10 +00:00
|
|
|
void checkOutput(bytes const& _output, json_spirit::mObject& _o);
|
2014-11-03 15:33:02 +00:00
|
|
|
void checkStorage(std::map<u256, u256> _expectedStore, std::map<u256, u256> _resultStore, Address _expectedAddr);
|
2014-11-19 13:30:42 +00:00
|
|
|
void checkLog(eth::LogEntries _resultLogs, eth::LogEntries _expectedLogs);
|
2015-01-13 14:47:36 +00:00
|
|
|
void checkCallCreates(eth::Transactions _resultCallCreates, eth::Transactions _expectedCallCreates);
|
|
|
|
|
2015-04-20 20:48:53 +00:00
|
|
|
void executeTests(const std::string& _name, const std::string& _testPathAppendix, const boost::filesystem::path _pathToFiller, std::function<void(json_spirit::mValue&, bool)> doTests);
|
2015-05-08 09:00:17 +00:00
|
|
|
void userDefinedTest(std::function<void(json_spirit::mValue&, bool)> doTests);
|
2015-02-11 15:36:00 +00:00
|
|
|
RLPStream createRLPStreamFromTransactionFields(json_spirit::mObject& _tObj);
|
2015-01-09 09:58:32 +00:00
|
|
|
eth::LastHashes lastHashes(u256 _currentBlockNumber);
|
2015-03-09 09:28:48 +00:00
|
|
|
json_spirit::mObject fillJsonWithState(eth::State _state);
|
2015-04-21 20:10:55 +00:00
|
|
|
json_spirit::mObject fillJsonWithTransaction(eth::Transaction _txn);
|
2014-11-03 15:33:02 +00:00
|
|
|
|
2015-06-03 14:21:29 +00:00
|
|
|
//Fill Test Functions
|
|
|
|
void doTransactionTests(json_spirit::mValue& _v, bool _fillin);
|
2015-06-05 12:35:21 +00:00
|
|
|
void doStateTests(json_spirit::mValue& v, bool _fillin);
|
2015-06-05 18:43:41 +00:00
|
|
|
void doVMTests(json_spirit::mValue& v, bool _fillin);
|
2015-06-17 14:01:25 +00:00
|
|
|
void doBlockchainTests(json_spirit::mValue& _v, bool _fillin);
|
2015-06-03 14:21:29 +00:00
|
|
|
|
2014-11-03 15:33:02 +00:00
|
|
|
template<typename mapType>
|
|
|
|
void checkAddresses(mapType& _expectedAddrs, mapType& _resultAddrs)
|
|
|
|
{
|
|
|
|
for (auto& resultPair : _resultAddrs)
|
|
|
|
{
|
|
|
|
auto& resultAddr = resultPair.first;
|
|
|
|
auto expectedAddrIt = _expectedAddrs.find(resultAddr);
|
|
|
|
if (expectedAddrIt == _expectedAddrs.end())
|
2015-06-05 18:43:41 +00:00
|
|
|
TBOOST_ERROR("Missing result address " << resultAddr);
|
2014-11-03 15:33:02 +00:00
|
|
|
}
|
2015-06-05 18:43:41 +00:00
|
|
|
TBOOST_CHECK((_expectedAddrs == _resultAddrs));
|
2014-10-29 16:25:02 +00:00
|
|
|
}
|
2014-11-03 15:33:02 +00:00
|
|
|
|
2015-03-12 10:55:00 +00:00
|
|
|
class Options
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool vmtrace = false; ///< Create EVM execution tracer // TODO: Link with log verbosity?
|
|
|
|
bool fillTests = false; ///< Create JSON test files from execution results
|
2015-03-13 10:19:26 +00:00
|
|
|
bool stats = false; ///< Execution time stats
|
2015-03-25 11:13:44 +00:00
|
|
|
std::string statsOutFile; ///< Stats output file. "out" for standard output
|
2015-03-26 00:12:25 +00:00
|
|
|
bool checkState = false;///< Throw error when checking test states
|
2015-05-26 13:27:22 +00:00
|
|
|
bool fulloutput = false;///< Replace large output to just it's length
|
2015-03-12 10:55:00 +00:00
|
|
|
|
|
|
|
/// Test selection
|
|
|
|
/// @{
|
2015-05-05 15:15:26 +00:00
|
|
|
bool singleTest = false;
|
2015-05-08 09:00:17 +00:00
|
|
|
std::string singleTestFile;
|
2015-05-05 15:15:26 +00:00
|
|
|
std::string singleTestName;
|
2015-03-12 10:55:00 +00:00
|
|
|
bool performance = false;
|
|
|
|
bool quadratic = false;
|
|
|
|
bool memory = false;
|
|
|
|
bool inputLimits = false;
|
|
|
|
bool bigData = false;
|
2015-05-11 08:11:36 +00:00
|
|
|
bool wallet = false;
|
2015-06-18 10:31:58 +00:00
|
|
|
bool nonetwork = false;
|
2015-06-23 21:01:32 +00:00
|
|
|
bool nodag = true;
|
2015-03-12 10:55:00 +00:00
|
|
|
/// @}
|
|
|
|
|
|
|
|
/// Get reference to options
|
|
|
|
/// The first time used, options are parsed
|
|
|
|
static Options const& get();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Options();
|
|
|
|
Options(Options const&) = delete;
|
|
|
|
};
|
|
|
|
|
2015-03-13 10:19:26 +00:00
|
|
|
/// Allows observing test execution process.
|
|
|
|
/// This class also provides methods for registering and notifying the listener
|
|
|
|
class Listener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~Listener() = default;
|
|
|
|
|
2015-03-25 11:13:44 +00:00
|
|
|
virtual void suiteStarted(std::string const&) {}
|
2015-03-13 10:19:26 +00:00
|
|
|
virtual void testStarted(std::string const& _name) = 0;
|
|
|
|
virtual void testFinished() = 0;
|
|
|
|
|
|
|
|
static void registerListener(Listener& _listener);
|
2015-03-25 11:13:44 +00:00
|
|
|
static void notifySuiteStarted(std::string const& _name);
|
2015-03-13 10:19:26 +00:00
|
|
|
static void notifyTestStarted(std::string const& _name);
|
|
|
|
static void notifyTestFinished();
|
|
|
|
|
|
|
|
/// Test started/finished notification RAII helper
|
|
|
|
class ExecTimeGuard
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExecTimeGuard(std::string const& _testName) { notifyTestStarted(_testName); }
|
|
|
|
~ExecTimeGuard() { notifyTestFinished(); }
|
|
|
|
ExecTimeGuard(ExecTimeGuard const&) = delete;
|
|
|
|
ExecTimeGuard& operator=(ExecTimeGuard) = delete;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-03-26 05:01:17 +00:00
|
|
|
}
|
2014-09-05 15:09:58 +00:00
|
|
|
}
|