/* 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 . */ /** @file gasPricer.cpp * @author Christoph Jentzsch * @date 2015 */ #include #include #include #include #include #include "../TestHelper.h" using namespace std; using namespace dev; using namespace dev::eth; namespace dev { namespace test { void executeGasPricerTest(const string name, double _etherPrice, double _blockFee, const string bcTestPath, TransactionPriority _txPrio, u256 _expectedAsk, u256 _expectedBid) { cnote << name; BasicGasPricer gp(u256(double(ether / 1000) / _etherPrice), u256(_blockFee * 1000)); Json::Value vJson = test::loadJsonFromFile(test::getTestPath() + bcTestPath); test::BlockChainLoader bcLoader(vJson[name]); BlockChain const& bc = bcLoader.bc(); gp.update(bc); BOOST_CHECK_EQUAL(gp.ask(State()), _expectedAsk); BOOST_CHECK_EQUAL(gp.bid(_txPrio), _expectedBid); } } } BOOST_AUTO_TEST_SUITE(GasPricer) BOOST_AUTO_TEST_CASE(trivialGasPricer) { cnote << "trivialGasPricer"; std::shared_ptr gp(new TrivialGasPricer); BOOST_CHECK_EQUAL(gp->ask(State()), 10 * szabo); BOOST_CHECK_EQUAL(gp->bid(), 10 * szabo); gp->update(BlockChain(bytes(), TransientDirectory().path(), WithExisting::Kill)); BOOST_CHECK_EQUAL(gp->ask(State()), 10 * szabo); BOOST_CHECK_EQUAL(gp->bid(), 10 * szabo); } BOOST_AUTO_TEST_CASE(basicGasPricerNoUpdate) { cnote << "basicGasPricer"; BasicGasPricer gp(u256(double(ether / 1000) / 30.679), u256(15.0 * 1000)); BOOST_CHECK_EQUAL(gp.ask(State()), 155632494086); BOOST_CHECK_EQUAL(gp.bid(), 155632494086); gp.setRefPrice(u256(0)); BOOST_CHECK_EQUAL(gp.ask(State()), 0); BOOST_CHECK_EQUAL(gp.bid(), 0); gp.setRefPrice(u256(1)); gp.setRefBlockFees(u256(0)); BOOST_CHECK_EQUAL(gp.ask(State()), 0); BOOST_CHECK_EQUAL(gp.bid(), 0); gp.setRefPrice(u256("0x100000000000000000000000000000000")); BOOST_CHECK_THROW(gp.setRefBlockFees(u256("0x100000000000000000000000000000000")), Overflow); BOOST_CHECK_EQUAL(gp.ask(State()), 0); BOOST_CHECK_EQUAL(gp.bid(), 0); gp.setRefPrice(1); gp.setRefBlockFees(u256("0x100000000000000000000000000000000")); BOOST_CHECK_THROW(gp.setRefPrice(u256("0x100000000000000000000000000000000")), Overflow); BOOST_CHECK_EQUAL(gp.ask(State()), u256("108315264019305646138446560671076")); BOOST_CHECK_EQUAL(gp.bid(), u256("108315264019305646138446560671076")); } BOOST_AUTO_TEST_CASE(basicGasPricer_RPC_API_Test) { dev::test::executeGasPricerTest("RPC_API_Test", 30.679, 15.0, "/BlockTests/bcRPC_API_Test.json", TransactionPriority::Medium, 155632494086, 1); } BOOST_AUTO_TEST_CASE(basicGasPricer_bcValidBlockTest) { dev::test::executeGasPricerTest("SimpleTx", 30.679, 15.0, "/BlockTests/bcValidBlockTest.json", TransactionPriority::Medium, 155632494086, 10); } BOOST_AUTO_TEST_CASE(basicGasPricer_bcUncleTest) { dev::test::executeGasPricerTest("twoUncle", 30.679, 15.0, "/BlockTests/bcUncleTest.json", TransactionPriority::Medium, 155632494086, 1); } BOOST_AUTO_TEST_CASE(basicGasPricer_bcUncleHeaderValiditiy) { dev::test::executeGasPricerTest("correct", 30.679, 15.0, "/BlockTests/bcUncleHeaderValiditiy.json", TransactionPriority::Medium, 155632494086, 1); } BOOST_AUTO_TEST_CASE(basicGasPricer_notxs) { dev::test::executeGasPricerTest("notxs", 30.679, 15.0, "/BlockTests/bcGasPricerTest.json", TransactionPriority::Medium, 155632494086, 155632494086); } BOOST_AUTO_TEST_CASE(basicGasPricer_highGasUsage_LowestPrio) { dev::test::executeGasPricerTest("highGasUsage", 30.679, 15.0, "/BlockTests/bcGasPricerTest.json", TransactionPriority::Lowest, 15731292650, 10000000000000); } BOOST_AUTO_TEST_CASE(basicGasPricer_highGasUsage_LowPrio) { dev::test::executeGasPricerTest("highGasUsage", 30.679, 15.0, "/BlockTests/bcGasPricerTest.json", TransactionPriority::Low, 15731292650, 15734152261884); } BOOST_AUTO_TEST_CASE(basicGasPricer_highGasUsage_MediumPrio) { dev::test::executeGasPricerTest("highGasUsage", 30.679, 15.0, "/BlockTests/bcGasPricerTest.json", TransactionPriority::Medium, 15731292650, 20000000000000); } BOOST_AUTO_TEST_CASE(basicGasPricer_highGasUsage_HighPrio) { dev::test::executeGasPricerTest("highGasUsage", 30.679, 15.0, "/BlockTests/bcGasPricerTest.json", TransactionPriority::High, 15731292650, 24265847738115); } BOOST_AUTO_TEST_CASE(basicGasPricer_highGasUsage_HighestPrio) { dev::test::executeGasPricerTest("highGasUsage", 30.679, 15.0, "/BlockTests/bcGasPricerTest.json", TransactionPriority::Highest, 15731292650, 30000000000000); } BOOST_AUTO_TEST_SUITE_END()