2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-05-24 16:56:09 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-05-24 16:56:09 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-05-24 16:56:09 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-05-24 16:56:09 +02:00
|
|
|
|
|
|
|
//! rpc integration tests.
|
2020-08-05 06:08:03 +02:00
|
|
|
use std::{env, sync::Arc};
|
2016-05-24 16:56:09 +02:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
use accounts::AccountProvider;
|
2020-08-05 06:08:03 +02:00
|
|
|
use ethcore::{
|
|
|
|
client::{BlockChainClient, ChainInfo, Client, ClientConfig, ImportBlock},
|
|
|
|
ethereum,
|
|
|
|
miner::Miner,
|
|
|
|
spec::{Genesis, Spec},
|
|
|
|
test_helpers,
|
|
|
|
verification::{queue::kind::blocks::Unverified, VerifierType},
|
|
|
|
};
|
2019-02-25 14:27:28 +01:00
|
|
|
use ethereum_types::{Address, H256, U256};
|
2020-08-05 06:08:03 +02:00
|
|
|
use ethjson::{blockchain::BlockChain, spec::ForkSpec};
|
2017-01-11 20:02:27 +01:00
|
|
|
use io::IoChannel;
|
2018-01-11 17:49:10 +01:00
|
|
|
use miner::external::ExternalMiner;
|
2018-10-22 09:40:50 +02:00
|
|
|
use parity_runtime::Runtime;
|
2019-01-04 14:05:46 +01:00
|
|
|
use parking_lot::Mutex;
|
|
|
|
use types::ids::BlockId;
|
2016-05-24 16:56:09 +02:00
|
|
|
|
2017-01-11 20:02:27 +01:00
|
|
|
use jsonrpc_core::IoHandler;
|
2020-08-05 06:08:03 +02:00
|
|
|
use v1::{
|
|
|
|
helpers::{
|
|
|
|
dispatch::{self, FullDispatcher},
|
|
|
|
nonce,
|
|
|
|
},
|
|
|
|
impls::{EthClient, EthClientOptions, SigningUnsafeClient},
|
|
|
|
metadata::Metadata,
|
|
|
|
tests::helpers::{Config, TestSnapshotService, TestSyncProvider},
|
|
|
|
traits::{Eth, EthSigning},
|
|
|
|
};
|
2016-05-24 16:56:09 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
fn account_provider() -> Arc<AccountProvider> {
|
2020-08-05 06:08:03 +02:00
|
|
|
Arc::new(AccountProvider::transient_provider())
|
2016-05-24 16:56:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn sync_provider() -> Arc<TestSyncProvider> {
|
2020-08-05 06:08:03 +02:00
|
|
|
Arc::new(TestSyncProvider::new(Config {
|
|
|
|
network_id: 3,
|
|
|
|
num_peers: 120,
|
|
|
|
}))
|
2016-05-24 16:56:09 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
fn miner_service(spec: &Spec) -> Arc<Miner> {
|
2020-08-05 06:08:03 +02:00
|
|
|
Arc::new(Miner::new_for_tests(spec, None))
|
2016-05-24 16:56:09 +02:00
|
|
|
}
|
|
|
|
|
2016-10-31 17:32:53 +01:00
|
|
|
fn snapshot_service() -> Arc<TestSnapshotService> {
|
2020-08-05 06:08:03 +02:00
|
|
|
Arc::new(TestSnapshotService::new())
|
2016-10-31 17:32:53 +01:00
|
|
|
}
|
|
|
|
|
2016-05-30 20:06:10 +02:00
|
|
|
fn make_spec(chain: &BlockChain) -> Spec {
|
2020-08-05 06:08:03 +02:00
|
|
|
let genesis = Genesis::from(chain.genesis());
|
|
|
|
let mut spec = ethereum::new_frontier_test();
|
|
|
|
let state = chain.pre_state.clone().into();
|
|
|
|
spec.set_genesis_state(state)
|
|
|
|
.expect("unable to set genesis state");
|
|
|
|
spec.overwrite_genesis_params(genesis);
|
|
|
|
assert!(spec.is_state_root_valid());
|
|
|
|
spec
|
2016-05-30 20:06:10 +02:00
|
|
|
}
|
2016-05-24 16:56:09 +02:00
|
|
|
|
2016-05-25 13:27:03 +02:00
|
|
|
struct EthTester {
|
2020-08-05 06:08:03 +02:00
|
|
|
_miner: Arc<Miner>,
|
|
|
|
_runtime: Runtime,
|
|
|
|
_snapshot: Arc<TestSnapshotService>,
|
|
|
|
accounts: Arc<AccountProvider>,
|
|
|
|
client: Arc<Client>,
|
|
|
|
handler: IoHandler<Metadata>,
|
2016-05-25 13:27:03 +02:00
|
|
|
}
|
|
|
|
|
2016-05-30 20:06:10 +02:00
|
|
|
impl EthTester {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn from_chain(chain: &BlockChain) -> Self {
|
|
|
|
let tester = if ::ethjson::blockchain::Engine::NoProof == chain.engine {
|
|
|
|
let mut config = ClientConfig::default();
|
|
|
|
config.verifier_type = VerifierType::CanonNoSeal;
|
|
|
|
config.check_seal = false;
|
|
|
|
Self::from_spec_conf(make_spec(chain), config)
|
|
|
|
} else {
|
|
|
|
Self::from_spec(make_spec(chain))
|
|
|
|
};
|
|
|
|
|
|
|
|
for b in chain.blocks_rlp() {
|
|
|
|
if let Ok(block) = Unverified::from_rlp(b) {
|
|
|
|
let _ = tester.client.import_block(block);
|
|
|
|
tester.client.flush_queue();
|
|
|
|
tester.client.import_verified_blocks();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tester.client.flush_queue();
|
|
|
|
|
|
|
|
assert!(tester.client.chain_info().best_block_hash == chain.best_block.clone().into());
|
|
|
|
tester
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_spec(spec: Spec) -> Self {
|
|
|
|
let config = ClientConfig::default();
|
|
|
|
Self::from_spec_conf(spec, config)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_spec_conf(spec: Spec, config: ClientConfig) -> Self {
|
|
|
|
let runtime = Runtime::with_thread_count(1);
|
|
|
|
let account_provider = account_provider();
|
|
|
|
let ap = account_provider.clone();
|
|
|
|
let accounts = Arc::new(move || ap.accounts().unwrap_or_default()) as _;
|
|
|
|
let miner_service = miner_service(&spec);
|
|
|
|
let snapshot_service = snapshot_service();
|
|
|
|
|
|
|
|
let client = Client::new(
|
|
|
|
config,
|
|
|
|
&spec,
|
|
|
|
test_helpers::new_db(),
|
|
|
|
miner_service.clone(),
|
|
|
|
IoChannel::disconnected(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let sync_provider = sync_provider();
|
|
|
|
let external_miner = Arc::new(ExternalMiner::default());
|
|
|
|
|
|
|
|
let eth_client = EthClient::new(
|
|
|
|
&client,
|
|
|
|
&snapshot_service,
|
|
|
|
&sync_provider,
|
|
|
|
&accounts,
|
|
|
|
&miner_service,
|
|
|
|
&external_miner,
|
|
|
|
EthClientOptions {
|
|
|
|
gas_price_percentile: 50,
|
|
|
|
allow_experimental_rpcs: true,
|
|
|
|
allow_missing_blocks: false,
|
|
|
|
no_ancient_blocks: false,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
let reservations = Arc::new(Mutex::new(nonce::Reservations::new(runtime.executor())));
|
|
|
|
|
|
|
|
let dispatcher =
|
|
|
|
FullDispatcher::new(client.clone(), miner_service.clone(), reservations, 50);
|
|
|
|
let signer = Arc::new(dispatch::Signer::new(account_provider.clone())) as _;
|
|
|
|
let eth_sign = SigningUnsafeClient::new(&signer, dispatcher);
|
|
|
|
|
|
|
|
let mut handler = IoHandler::default();
|
|
|
|
handler.extend_with(eth_client.to_delegate());
|
|
|
|
handler.extend_with(eth_sign.to_delegate());
|
|
|
|
|
|
|
|
EthTester {
|
|
|
|
_miner: miner_service,
|
|
|
|
_runtime: runtime,
|
|
|
|
_snapshot: snapshot_service,
|
|
|
|
accounts: account_provider,
|
|
|
|
client: client,
|
|
|
|
handler: handler,
|
|
|
|
}
|
|
|
|
}
|
2016-05-30 20:06:10 +02:00
|
|
|
}
|
|
|
|
|
2016-05-24 16:56:09 +02:00
|
|
|
#[test]
|
|
|
|
fn harness_works() {
|
2020-09-10 08:04:14 +02:00
|
|
|
let chain: BlockChain =
|
|
|
|
extract_chain!("BlockchainTests/ValidBlocks/bcWalletTest/wallet2outOf3txs");
|
2020-08-05 06:08:03 +02:00
|
|
|
let _ = EthTester::from_chain(&chain);
|
2016-05-24 19:20:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn eth_get_balance() {
|
2020-09-10 08:04:14 +02:00
|
|
|
let chain = extract_chain!("BlockchainTests/ValidBlocks/bcWalletTest/wallet2outOf3txs");
|
2020-08-05 06:08:03 +02:00
|
|
|
let tester = EthTester::from_chain(&chain);
|
|
|
|
// final account state
|
|
|
|
let req_latest = r#"{
|
2016-05-30 20:06:10 +02:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_getBalance",
|
|
|
|
"params": ["0xaaaf5374fce5edbc8e2a8697c15331677e6ebaaa", "latest"],
|
|
|
|
"id": 1
|
|
|
|
}"#;
|
2020-08-05 06:08:03 +02:00
|
|
|
let res_latest = r#"{"jsonrpc":"2.0","result":"0x9","id":1}"#.to_owned();
|
|
|
|
assert_eq!(
|
|
|
|
tester.handler.handle_request_sync(req_latest).unwrap(),
|
|
|
|
res_latest
|
|
|
|
);
|
|
|
|
|
|
|
|
// non-existant account
|
|
|
|
let req_new_acc = r#"{
|
2016-05-30 20:06:10 +02:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_getBalance",
|
|
|
|
"params": ["0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"],
|
|
|
|
"id": 3
|
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res_new_acc = r#"{"jsonrpc":"2.0","result":"0x0","id":3}"#.to_owned();
|
|
|
|
assert_eq!(
|
|
|
|
tester.handler.handle_request_sync(req_new_acc).unwrap(),
|
|
|
|
res_new_acc
|
|
|
|
);
|
2016-05-25 13:27:03 +02:00
|
|
|
}
|
|
|
|
|
2018-11-21 20:09:33 +01:00
|
|
|
#[test]
|
|
|
|
fn eth_get_proof() {
|
2020-09-10 08:04:14 +02:00
|
|
|
let chain = extract_chain!("BlockchainTests/ValidBlocks/bcWalletTest/wallet2outOf3txs");
|
2020-08-05 06:08:03 +02:00
|
|
|
let tester = EthTester::from_chain(&chain);
|
|
|
|
// final account state
|
|
|
|
let req_latest = r#"{
|
2018-11-21 20:09:33 +01:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_getProof",
|
|
|
|
"params": ["0xaaaf5374fce5edbc8e2a8697c15331677e6ebaaa", [], "latest"],
|
|
|
|
"id": 1
|
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res_latest = r#","address":"0xaaaf5374fce5edbc8e2a8697c15331677e6ebaaa","balance":"0x9","codeHash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","nonce":"0x0","storageHash":"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421","storageProof":[]},"id":1}"#.to_owned();
|
|
|
|
assert!(tester
|
|
|
|
.handler
|
|
|
|
.handle_request_sync(req_latest)
|
|
|
|
.unwrap()
|
|
|
|
.to_string()
|
|
|
|
.ends_with(res_latest.as_str()));
|
2018-11-21 20:09:33 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
// non-existant account
|
|
|
|
let req_new_acc = r#"{
|
2018-11-21 20:09:33 +01:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_getProof",
|
|
|
|
"params": ["0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",[],"latest"],
|
|
|
|
"id": 3
|
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res_new_acc = r#","address":"0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa","balance":"0x0","codeHash":"0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","nonce":"0x0","storageHash":"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421","storageProof":[]},"id":3}"#.to_owned();
|
|
|
|
assert!(tester
|
|
|
|
.handler
|
|
|
|
.handle_request_sync(req_new_acc)
|
|
|
|
.unwrap()
|
|
|
|
.to_string()
|
|
|
|
.ends_with(res_new_acc.as_str()));
|
2018-11-21 20:09:33 +01:00
|
|
|
}
|
|
|
|
|
2016-05-25 13:27:03 +02:00
|
|
|
#[test]
|
|
|
|
fn eth_block_number() {
|
2020-09-10 08:04:14 +02:00
|
|
|
let chain = extract_chain!("BlockchainTests/ValidBlocks/bcGasPricerTest/RPC_API_Test");
|
2020-08-05 06:08:03 +02:00
|
|
|
let tester = EthTester::from_chain(&chain);
|
|
|
|
let req_number = r#"{
|
2016-05-30 20:06:10 +02:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_blockNumber",
|
|
|
|
"params": [],
|
|
|
|
"id": 1
|
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res_number = r#"{"jsonrpc":"2.0","result":"0x20","id":1}"#.to_owned();
|
|
|
|
assert_eq!(
|
|
|
|
tester.handler.handle_request_sync(req_number).unwrap(),
|
|
|
|
res_number
|
|
|
|
);
|
2016-05-30 20:06:10 +02:00
|
|
|
}
|
2016-05-25 13:27:03 +02:00
|
|
|
|
2017-01-24 21:57:29 +01:00
|
|
|
#[test]
|
|
|
|
fn eth_get_block() {
|
2020-09-10 08:04:14 +02:00
|
|
|
let chain = extract_chain!("BlockchainTests/ValidBlocks/bcGasPricerTest/RPC_API_Test");
|
2020-08-05 06:08:03 +02:00
|
|
|
let tester = EthTester::from_chain(&chain);
|
|
|
|
let req_block =
|
|
|
|
r#"{"method":"eth_getBlockByNumber","params":["0x0",false],"id":1,"jsonrpc":"2.0"}"#;
|
|
|
|
|
|
|
|
let res_block = r#"{"jsonrpc":"2.0","result":{"author":"0x8888f1f195afa192cfee860698584c030f4c9db1","difficulty":"0x20000","extraData":"0x42","gasLimit":"0x1df5d44","gasUsed":"0x0","hash":"0xcded1bc807465a72e2d54697076ab858f28b15d4beaae8faa47339c8eee386a3","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","miner":"0x8888f1f195afa192cfee860698584c030f4c9db1","mixHash":"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421","nonce":"0x0102030405060708","number":"0x0","parentHash":"0x0000000000000000000000000000000000000000000000000000000000000000","receiptsRoot":"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421","sealFields":["0xa056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421","0x880102030405060708"],"sha3Uncles":"0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347","size":"0x200","stateRoot":"0x7dba07d6b448a186e9612e5f737d1c909dce473e53199901a302c00646d523c1","timestamp":"0x54c98c81","totalDifficulty":"0x20000","transactions":[],"transactionsRoot":"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421","uncles":[]},"id":1}"#;
|
|
|
|
assert_eq!(
|
|
|
|
tester.handler.handle_request_sync(req_block).unwrap(),
|
|
|
|
res_block
|
|
|
|
);
|
2017-01-24 21:57:29 +01:00
|
|
|
}
|
|
|
|
|
2018-05-24 17:29:28 +02:00
|
|
|
#[test]
|
|
|
|
fn eth_get_block_by_hash() {
|
2020-09-10 08:04:14 +02:00
|
|
|
let chain = extract_chain!("BlockchainTests/ValidBlocks/bcGasPricerTest/RPC_API_Test");
|
2020-08-05 06:08:03 +02:00
|
|
|
let tester = EthTester::from_chain(&chain);
|
2018-05-24 17:29:28 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
// We're looking for block number 4 from "RPC_API_Test_Frontier"
|
2020-09-10 08:04:14 +02:00
|
|
|
let req_block = r#"{"method":"eth_getBlockByHash","params":["0x088987877b431b8156c79c4b1c9543a8747531e5acaebca8f5d516cb3b35b0f2",false],"id":1,"jsonrpc":"2.0"}"#;
|
2018-05-24 17:29:28 +02:00
|
|
|
|
2020-09-10 08:04:14 +02:00
|
|
|
let res_block = r#"{"jsonrpc":"2.0","result":{"author":"0x8888f1f195afa192cfee860698584c030f4c9db1","difficulty":"0x200c0","extraData":"0x","gasLimit":"0x1dd7ea0","gasUsed":"0x5458","hash":"0x088987877b431b8156c79c4b1c9543a8747531e5acaebca8f5d516cb3b35b0f2","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","miner":"0x8888f1f195afa192cfee860698584c030f4c9db1","mixHash":"0xeb709bc3b92c8f28ffa3d4ad7558689316cfbf599ac9541d9f3e79d31b0b9af6","nonce":"0x6ab72973b649825d","number":"0x4","parentHash":"0x095303ee87197430f9bf30ecd09735a11ab78db59abf67a36d4ada73f96800b9","receiptsRoot":"0x7ed8026cf72ed0e98e6fd53ab406e51ffd34397d9da0052494ff41376fda7b5f","sealFields":["0xa0eb709bc3b92c8f28ffa3d4ad7558689316cfbf599ac9541d9f3e79d31b0b9af6","0x886ab72973b649825d"],"sha3Uncles":"0xb9cf7d3adde9f960e6c2510c1a7d35e94223db71277463ef8dc94f8afbe44403","size":"0x661","stateRoot":"0x68805721294e365020aca15ed56c360d9dc2cf03cbeff84c9b84b8aed023bfb5","timestamp":"0x5db6f5a1","totalDifficulty":"0xa0180","transactions":["0xb094b9dc356dbb8b256402c6d5709288066ad6a372c90c9c516f14277545fd58"],"transactionsRoot":"0x97a593d8d7e15b57f5c6bb25bc6c325463ef99f874bc08a78656c3ab5cb23262","uncles":["0xffa20f3c2eafd8a4def16b2742e576280282c1476a8307ac6ff5a8a1eac99cdf","0x67faba5ff44f91127c12823a820ab5456252afa3397d08b2781fe308fb1c8359"]},"id":1}"#;
|
2020-08-05 06:08:03 +02:00
|
|
|
assert_eq!(
|
|
|
|
tester.handler.handle_request_sync(req_block).unwrap(),
|
|
|
|
res_block
|
|
|
|
);
|
2018-05-24 17:29:28 +02:00
|
|
|
}
|
|
|
|
|
2016-05-30 20:06:10 +02:00
|
|
|
// a frontier-like test with an expanded gas limit and balance on known account.
|
|
|
|
const TRANSACTION_COUNT_SPEC: &'static [u8] = br#"{
|
|
|
|
"name": "Frontier (Test)",
|
|
|
|
"engine": {
|
|
|
|
"Ethash": {
|
|
|
|
"params": {
|
|
|
|
"minimumDifficulty": "0x020000",
|
|
|
|
"difficultyBoundDivisor": "0x0800",
|
2018-11-27 23:21:31 +01:00
|
|
|
"blockReward": "0x4563918244F40000",
|
2016-05-30 20:06:10 +02:00
|
|
|
"durationLimit": "0x0d",
|
2016-10-15 14:39:15 +02:00
|
|
|
"homesteadTransition": "0xffffffffffffffff",
|
2016-07-16 13:02:56 +02:00
|
|
|
"daoHardforkTransition": "0xffffffffffffffff",
|
|
|
|
"daoHardforkBeneficiary": "0x0000000000000000000000000000000000000000",
|
|
|
|
"daoHardforkAccounts": []
|
2016-05-30 20:06:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"params": {
|
2017-07-31 12:34:29 +02:00
|
|
|
"gasLimitBoundDivisor": "0x0400",
|
|
|
|
"registrar" : "0xc6d9d2cd449a754c494264e1809c50e34d64562b",
|
2016-05-30 20:06:10 +02:00
|
|
|
"accountStartNonce": "0x00",
|
|
|
|
"maximumExtraDataSize": "0x20",
|
|
|
|
"minGasLimit": "0x50000",
|
|
|
|
"networkID" : "0x1"
|
|
|
|
},
|
|
|
|
"genesis": {
|
|
|
|
"seal": {
|
|
|
|
"ethereum": {
|
|
|
|
"nonce": "0x0000000000000042",
|
|
|
|
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"difficulty": "0x400000000",
|
|
|
|
"author": "0x0000000000000000000000000000000000000000",
|
|
|
|
"timestamp": "0x00",
|
|
|
|
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
|
|
|
"extraData": "0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa",
|
|
|
|
"gasLimit": "0x50000"
|
|
|
|
},
|
|
|
|
"accounts": {
|
|
|
|
"0000000000000000000000000000000000000001": { "builtin": { "name": "ecrecover", "pricing": { "linear": { "base": 3000, "word": 0 } } } },
|
|
|
|
"0000000000000000000000000000000000000002": { "builtin": { "name": "sha256", "pricing": { "linear": { "base": 60, "word": 12 } } } },
|
|
|
|
"0000000000000000000000000000000000000003": { "builtin": { "name": "ripemd160", "pricing": { "linear": { "base": 600, "word": 120 } } } },
|
|
|
|
"0000000000000000000000000000000000000004": { "builtin": { "name": "identity", "pricing": { "linear": { "base": 15, "word": 3 } } } },
|
|
|
|
"faa34835af5c2ea724333018a515fbb7d5bc0b33": { "balance": "10000000000000", "nonce": "0" }
|
|
|
|
}
|
2016-05-25 13:27:03 +02:00
|
|
|
}
|
2016-05-30 20:06:10 +02:00
|
|
|
"#;
|
2016-05-25 13:27:03 +02:00
|
|
|
|
2016-08-04 18:17:39 +02:00
|
|
|
const POSITIVE_NONCE_SPEC: &'static [u8] = br#"{
|
|
|
|
"name": "Frontier (Test)",
|
|
|
|
"engine": {
|
|
|
|
"Ethash": {
|
|
|
|
"params": {
|
|
|
|
"minimumDifficulty": "0x020000",
|
|
|
|
"difficultyBoundDivisor": "0x0800",
|
2018-11-27 23:21:31 +01:00
|
|
|
"blockReward": "0x4563918244F40000",
|
2016-08-04 18:17:39 +02:00
|
|
|
"durationLimit": "0x0d",
|
2016-10-15 14:39:15 +02:00
|
|
|
"homesteadTransition": "0xffffffffffffffff",
|
2016-08-04 18:17:39 +02:00
|
|
|
"daoHardforkTransition": "0xffffffffffffffff",
|
|
|
|
"daoHardforkBeneficiary": "0x0000000000000000000000000000000000000000",
|
|
|
|
"daoHardforkAccounts": []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"params": {
|
2017-07-31 12:34:29 +02:00
|
|
|
"gasLimitBoundDivisor": "0x0400",
|
|
|
|
"registrar" : "0xc6d9d2cd449a754c494264e1809c50e34d64562b",
|
2016-08-04 18:17:39 +02:00
|
|
|
"accountStartNonce": "0x0100",
|
|
|
|
"maximumExtraDataSize": "0x20",
|
|
|
|
"minGasLimit": "0x50000",
|
|
|
|
"networkID" : "0x1"
|
|
|
|
},
|
|
|
|
"genesis": {
|
|
|
|
"seal": {
|
|
|
|
"ethereum": {
|
|
|
|
"nonce": "0x0000000000000042",
|
|
|
|
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"difficulty": "0x400000000",
|
|
|
|
"author": "0x0000000000000000000000000000000000000000",
|
|
|
|
"timestamp": "0x00",
|
|
|
|
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
|
|
|
"extraData": "0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa",
|
|
|
|
"gasLimit": "0x50000"
|
|
|
|
},
|
|
|
|
"accounts": {
|
|
|
|
"0000000000000000000000000000000000000001": { "builtin": { "name": "ecrecover", "pricing": { "linear": { "base": 3000, "word": 0 } } } },
|
|
|
|
"0000000000000000000000000000000000000002": { "builtin": { "name": "sha256", "pricing": { "linear": { "base": 60, "word": 12 } } } },
|
|
|
|
"0000000000000000000000000000000000000003": { "builtin": { "name": "ripemd160", "pricing": { "linear": { "base": 600, "word": 120 } } } },
|
|
|
|
"0000000000000000000000000000000000000004": { "builtin": { "name": "identity", "pricing": { "linear": { "base": 15, "word": 3 } } } },
|
|
|
|
"faa34835af5c2ea724333018a515fbb7d5bc0b33": { "balance": "10000000000000", "nonce": "0" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#;
|
|
|
|
|
2016-05-25 13:27:03 +02:00
|
|
|
#[test]
|
|
|
|
fn eth_transaction_count() {
|
2020-08-05 06:08:03 +02:00
|
|
|
let secret = "8a283037bb19c4fed7b1c569e40c7dcff366165eb869110a1b11532963eb9cb2"
|
|
|
|
.parse()
|
|
|
|
.unwrap();
|
|
|
|
let tester = EthTester::from_spec(
|
|
|
|
Spec::load(&env::temp_dir(), TRANSACTION_COUNT_SPEC).expect("invalid chain spec"),
|
|
|
|
);
|
|
|
|
let address = tester.accounts.insert_account(secret, &"".into()).unwrap();
|
|
|
|
tester
|
|
|
|
.accounts
|
|
|
|
.unlock_account_permanently(address, "".into())
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let req_before = r#"{
|
2016-05-30 20:06:10 +02:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_getTransactionCount",
|
2020-08-05 06:08:03 +02:00
|
|
|
"params": [""#
|
|
|
|
.to_owned()
|
|
|
|
+ format!("0x{:x}", address).as_ref()
|
|
|
|
+ r#"", "latest"],
|
2016-05-30 20:06:10 +02:00
|
|
|
"id": 15
|
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res_before = r#"{"jsonrpc":"2.0","result":"0x0","id":15}"#;
|
2016-05-30 20:06:10 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
assert_eq!(
|
|
|
|
tester.handler.handle_request_sync(&req_before).unwrap(),
|
|
|
|
res_before
|
|
|
|
);
|
2016-05-30 20:06:10 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let req_send_trans = r#"{
|
2016-05-30 20:06:10 +02:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_sendTransaction",
|
|
|
|
"params": [{
|
2020-08-05 06:08:03 +02:00
|
|
|
"from": ""#
|
|
|
|
.to_owned()
|
|
|
|
+ format!("0x{:x}", address).as_ref()
|
|
|
|
+ r#"",
|
2016-05-30 20:06:10 +02:00
|
|
|
"to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567",
|
|
|
|
"gas": "0x30000",
|
2016-09-02 11:38:16 +02:00
|
|
|
"gasPrice": "0x1",
|
2016-05-30 20:06:10 +02:00
|
|
|
"value": "0x9184e72a"
|
|
|
|
}],
|
|
|
|
"id": 16
|
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
// dispatch the transaction.
|
|
|
|
tester.handler.handle_request_sync(&req_send_trans).unwrap();
|
2016-05-30 20:06:10 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
// we have submitted the transaction -- but this shouldn't be reflected in a "latest" query.
|
|
|
|
let req_after_latest = r#"{
|
2016-05-30 20:06:10 +02:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_getTransactionCount",
|
2020-08-05 06:08:03 +02:00
|
|
|
"params": [""#
|
|
|
|
.to_owned()
|
|
|
|
+ format!("0x{:x}", address).as_ref()
|
|
|
|
+ r#"", "latest"],
|
2016-05-30 20:06:10 +02:00
|
|
|
"id": 17
|
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res_after_latest = r#"{"jsonrpc":"2.0","result":"0x0","id":17}"#;
|
2016-05-30 20:06:10 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
assert_eq!(
|
|
|
|
&tester
|
|
|
|
.handler
|
|
|
|
.handle_request_sync(&req_after_latest)
|
|
|
|
.unwrap(),
|
|
|
|
res_after_latest
|
|
|
|
);
|
2016-05-30 20:06:10 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
// the pending transactions should have been updated.
|
|
|
|
let req_after_pending = r#"{
|
2016-05-30 20:06:10 +02:00
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_getTransactionCount",
|
2020-08-05 06:08:03 +02:00
|
|
|
"params": [""#
|
|
|
|
.to_owned()
|
|
|
|
+ format!("0x{:x}", address).as_ref()
|
|
|
|
+ r#"", "pending"],
|
2016-05-30 20:06:10 +02:00
|
|
|
"id": 18
|
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res_after_pending = r#"{"jsonrpc":"2.0","result":"0x1","id":18}"#;
|
2016-05-30 20:06:10 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
assert_eq!(
|
|
|
|
&tester
|
|
|
|
.handler
|
|
|
|
.handle_request_sync(&req_after_pending)
|
|
|
|
.unwrap(),
|
|
|
|
res_after_pending
|
|
|
|
);
|
2016-05-31 19:30:40 +02:00
|
|
|
}
|
2016-05-25 13:27:03 +02:00
|
|
|
|
2016-05-31 19:30:40 +02:00
|
|
|
fn verify_transaction_counts(name: String, chain: BlockChain) {
|
2020-08-05 06:08:03 +02:00
|
|
|
struct PanicHandler(String);
|
|
|
|
impl Drop for PanicHandler {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
if ::std::thread::panicking() {
|
|
|
|
println!("Test failed: {}", self.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let _panic = PanicHandler(name);
|
|
|
|
|
|
|
|
fn by_hash(hash: H256, count: usize, id: &mut usize) -> (String, String) {
|
|
|
|
let req = r#"{
|
2016-05-25 13:27:03 +02:00
|
|
|
"jsonrpc": "2.0",
|
2016-05-31 19:30:40 +02:00
|
|
|
"method": "eth_getBlockTransactionCountByHash",
|
|
|
|
"params": [
|
2020-08-05 06:08:03 +02:00
|
|
|
""#
|
|
|
|
.to_owned()
|
|
|
|
+ format!("0x{:x}", hash).as_ref()
|
|
|
|
+ r#""
|
2016-05-31 19:30:40 +02:00
|
|
|
],
|
2020-08-05 06:08:03 +02:00
|
|
|
"id": "# + format!("{}", *id).as_ref()
|
|
|
|
+ r#"
|
2016-05-25 13:27:03 +02:00
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res = r#"{"jsonrpc":"2.0","result":""#.to_owned()
|
|
|
|
+ format!("0x{:x}", count).as_ref()
|
|
|
|
+ r#"","id":"#
|
|
|
|
+ format!("{}", *id).as_ref()
|
|
|
|
+ r#"}"#;
|
|
|
|
*id += 1;
|
|
|
|
(req, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn by_number(num: u64, count: usize, id: &mut usize) -> (String, String) {
|
|
|
|
let req = r#"{
|
2016-05-25 13:27:03 +02:00
|
|
|
"jsonrpc": "2.0",
|
2016-05-31 19:30:40 +02:00
|
|
|
"method": "eth_getBlockTransactionCountByNumber",
|
|
|
|
"params": [
|
2020-08-05 06:08:03 +02:00
|
|
|
"#
|
|
|
|
.to_owned()
|
|
|
|
+ &::serde_json::to_string(&U256::from(num)).unwrap()
|
|
|
|
+ r#"
|
2016-05-31 19:30:40 +02:00
|
|
|
],
|
2020-08-05 06:08:03 +02:00
|
|
|
"id": "# + format!("{}", *id).as_ref()
|
|
|
|
+ r#"
|
2016-05-25 13:27:03 +02:00
|
|
|
}"#;
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
let res = r#"{"jsonrpc":"2.0","result":""#.to_owned()
|
|
|
|
+ format!("0x{:x}", count).as_ref()
|
|
|
|
+ r#"","id":"#
|
|
|
|
+ format!("{}", *id).as_ref()
|
|
|
|
+ r#"}"#;
|
|
|
|
*id += 1;
|
|
|
|
(req, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
let tester = EthTester::from_chain(&chain);
|
|
|
|
|
|
|
|
let mut id = 1;
|
|
|
|
for b in chain
|
|
|
|
.blocks_rlp()
|
|
|
|
.into_iter()
|
|
|
|
.filter_map(|b| Unverified::from_rlp(b).ok())
|
|
|
|
{
|
|
|
|
let count = b.transactions.len();
|
|
|
|
|
|
|
|
let hash = b.header.hash();
|
|
|
|
let number = b.header.number();
|
|
|
|
|
|
|
|
let (req, res) = by_hash(hash, count, &mut id);
|
|
|
|
assert_eq!(tester.handler.handle_request_sync(&req), Some(res));
|
|
|
|
|
|
|
|
// uncles can share block numbers, so skip them.
|
|
|
|
if tester.client.block_hash(BlockId::Number(number)) == Some(hash) {
|
|
|
|
let (req, res) = by_number(number, count, &mut id);
|
|
|
|
assert_eq!(tester.handler.handle_request_sync(&req), Some(res));
|
|
|
|
}
|
|
|
|
}
|
2016-05-24 16:56:09 +02:00
|
|
|
}
|
2016-05-31 19:30:40 +02:00
|
|
|
|
2016-08-04 18:17:39 +02:00
|
|
|
#[test]
|
|
|
|
fn starting_nonce_test() {
|
2020-08-05 06:08:03 +02:00
|
|
|
let tester = EthTester::from_spec(
|
|
|
|
Spec::load(&env::temp_dir(), POSITIVE_NONCE_SPEC).expect("invalid chain spec"),
|
|
|
|
);
|
|
|
|
let address = Address::from(10);
|
|
|
|
|
|
|
|
let sample = tester
|
|
|
|
.handler
|
|
|
|
.handle_request_sync(
|
|
|
|
&(r#"
|
2016-08-04 18:17:39 +02:00
|
|
|
{
|
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"method": "eth_getTransactionCount",
|
2020-08-05 06:08:03 +02:00
|
|
|
"params": [""#
|
|
|
|
.to_owned()
|
|
|
|
+ format!("0x{:x}", address).as_ref()
|
|
|
|
+ r#"", "latest"],
|
2016-08-04 18:17:39 +02:00
|
|
|
"id": 15
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
"#),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2016-08-04 18:17:39 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
assert_eq!(r#"{"jsonrpc":"2.0","result":"0x100","id":15}"#, &sample);
|
2016-08-04 18:17:39 +02:00
|
|
|
}
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
register_test!(
|
|
|
|
eth_transaction_count_1,
|
|
|
|
verify_transaction_counts,
|
2020-09-10 08:04:14 +02:00
|
|
|
"BlockchainTests/ValidBlocks/bcWalletTest/wallet2outOf3txs"
|
2020-08-05 06:08:03 +02:00
|
|
|
);
|
|
|
|
register_test!(
|
|
|
|
eth_transaction_count_2,
|
|
|
|
verify_transaction_counts,
|
2020-09-10 08:04:14 +02:00
|
|
|
"BlockchainTests/ValidBlocks/bcTotalDifficultyTest/sideChainWithMoreTransactions"
|
2020-08-05 06:08:03 +02:00
|
|
|
);
|
|
|
|
register_test!(
|
|
|
|
eth_transaction_count_3,
|
|
|
|
verify_transaction_counts,
|
2020-09-10 08:04:14 +02:00
|
|
|
"BlockchainTests/ValidBlocks/bcGasPricerTest/RPC_API_Test"
|
2020-08-05 06:08:03 +02:00
|
|
|
);
|