123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*
- 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 Test.cpp
- * @authors:
- * Dimitry Khokhlov <dimitry@ethdev.com>
- * @date 2016
- */
- #include "Test.h"
- #include <jsonrpccpp/common/errors.h>
- #include <jsonrpccpp/common/exception.h>
- #include <libethereum/ClientTest.h>
- #include <libethereum/ChainParams.h>
- using namespace std;
- using namespace dev;
- using namespace dev::rpc;
- using namespace jsonrpc;
- Test::Test(eth::Client& _eth): m_eth(_eth) {}
- bool Test::test_setChainParams(Json::Value const& param1)
- {
-
- try
- {
- Json::StreamWriterBuilder swb;
- std::string output = Json::writeString(swb, param1);
- asClientTest(m_eth).setChainParams(output);
- }
- catch (std::exception const&)
- {
- BOOST_THROW_EXCEPTION(JsonRpcException(Errors::ERROR_RPC_INTERNAL_ERROR));
- }
- return true;
- }
- bool Test::test_mineBlocks(int _number)
- {
- try
- {
- asClientTest(m_eth).mineBlocks(_number);
- }
- catch (std::exception const&)
- {
- BOOST_THROW_EXCEPTION(JsonRpcException(Errors::ERROR_RPC_INTERNAL_ERROR));
- }
- return true;
- }
- bool Test::test_modifyTimestamp(int _timestamp)
- {
- try
- {
- asClientTest(m_eth).modifyTimestamp(u256(_timestamp));
- }
- catch (std::exception const&)
- {
- BOOST_THROW_EXCEPTION(JsonRpcException(Errors::ERROR_RPC_INTERNAL_ERROR));
- }
- return true;
- }
- bool Test::test_addBlock(std::string const& _rlp)
- {
- try
- {
- asClientTest(m_eth).addBlock(_rlp);
- }
- catch (std::exception const&)
- {
- BOOST_THROW_EXCEPTION(JsonRpcException(Errors::ERROR_RPC_INTERNAL_ERROR));
- }
- return true;
- }
- bool Test::test_rewindToBlock(int _number)
- {
- try
- {
- m_eth.rewind(_number);
- }
- catch (std::exception const&)
- {
- BOOST_THROW_EXCEPTION(JsonRpcException(Errors::ERROR_RPC_INTERNAL_ERROR));
- }
- return true;
- }
|