2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity 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.
|
|
|
|
|
|
|
|
// Parity 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 Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-01-25 18:56:36 +01:00
|
|
|
use super::test_common::*;
|
2016-02-25 17:48:23 +01:00
|
|
|
use client::{BlockChainClient, Client, ClientConfig};
|
2016-01-26 19:18:22 +01:00
|
|
|
use block::Block;
|
2016-01-25 18:56:36 +01:00
|
|
|
use ethereum;
|
2016-02-02 22:50:41 +01:00
|
|
|
use tests::helpers::*;
|
2016-02-19 15:18:20 +01:00
|
|
|
use devtools::*;
|
2016-03-19 18:13:14 +01:00
|
|
|
use spec::Genesis;
|
2016-03-19 18:38:02 +01:00
|
|
|
use ethjson;
|
2016-06-24 10:57:44 +02:00
|
|
|
use ethjson::blockchain::BlockChain;
|
2016-05-31 22:24:32 +02:00
|
|
|
use miner::Miner;
|
2016-01-25 18:56:36 +01:00
|
|
|
|
2016-01-27 17:32:12 +01:00
|
|
|
pub fn json_chain_test(json_data: &[u8], era: ChainEra) -> Vec<String> {
|
2016-01-29 15:01:39 +01:00
|
|
|
init_log();
|
2016-03-19 18:38:02 +01:00
|
|
|
let tests = ethjson::blockchain::Test::load(json_data).unwrap();
|
2016-01-25 18:56:36 +01:00
|
|
|
let mut failed = Vec::new();
|
|
|
|
|
2016-03-24 01:25:59 +01:00
|
|
|
for (name, blockchain) in tests.into_iter() {
|
2016-01-25 18:56:36 +01:00
|
|
|
let mut fail = false;
|
|
|
|
{
|
|
|
|
let mut fail_unless = |cond: bool| if !cond && !fail {
|
|
|
|
failed.push(name.clone());
|
2016-02-03 13:20:32 +01:00
|
|
|
flushln!("FAIL");
|
2016-01-25 18:56:36 +01:00
|
|
|
fail = true;
|
|
|
|
true
|
|
|
|
} else {false};
|
|
|
|
|
2016-02-03 13:20:32 +01:00
|
|
|
flush!(" - {}...", name);
|
2016-01-25 18:56:36 +01:00
|
|
|
|
2016-06-24 10:57:44 +02:00
|
|
|
let spec = |blockchain: &BlockChain| {
|
2016-06-24 10:49:13 +02:00
|
|
|
let genesis = Genesis::from(blockchain.genesis());
|
|
|
|
let state = From::from(blockchain.pre_state.clone());
|
|
|
|
let mut spec = match era {
|
|
|
|
ChainEra::Frontier => ethereum::new_frontier_test(),
|
|
|
|
ChainEra::Homestead => ethereum::new_homestead_test(),
|
2016-07-16 13:02:56 +02:00
|
|
|
ChainEra::DaoHardfork => ethereum::new_daohardfork_test(),
|
2016-06-24 10:49:13 +02:00
|
|
|
};
|
|
|
|
spec.set_genesis_state(state);
|
|
|
|
spec.overwrite_genesis_params(genesis);
|
|
|
|
assert!(spec.is_state_root_valid());
|
|
|
|
spec
|
2016-01-27 17:32:12 +01:00
|
|
|
};
|
2016-03-19 18:13:14 +01:00
|
|
|
|
2016-01-27 16:41:50 +01:00
|
|
|
let temp = RandomTempPath::new();
|
2016-01-25 18:56:36 +01:00
|
|
|
{
|
2016-06-24 10:49:13 +02:00
|
|
|
let client = Client::new(
|
|
|
|
ClientConfig::default(),
|
2016-06-24 10:57:44 +02:00
|
|
|
spec(&blockchain),
|
2016-06-24 10:49:13 +02:00
|
|
|
temp.as_path(),
|
2016-06-24 10:57:44 +02:00
|
|
|
Arc::new(Miner::with_spec(spec(&blockchain))),
|
2016-06-24 10:49:13 +02:00
|
|
|
IoChannel::disconnected()
|
|
|
|
).unwrap();
|
2016-03-19 18:13:14 +01:00
|
|
|
for b in &blockchain.blocks_rlp() {
|
2016-01-27 13:28:15 +01:00
|
|
|
if Block::is_good(&b) {
|
2016-01-27 16:13:21 +01:00
|
|
|
let _ = client.import_block(b.clone());
|
2016-03-19 18:13:14 +01:00
|
|
|
client.flush_queue();
|
2016-07-19 09:21:41 +02:00
|
|
|
client.import_verified_blocks();
|
2016-01-27 13:28:15 +01:00
|
|
|
}
|
2016-01-26 18:02:49 +01:00
|
|
|
}
|
2016-03-24 01:25:59 +01:00
|
|
|
fail_unless(client.chain_info().best_block_hash == blockchain.best_block.into());
|
2016-01-25 18:56:36 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-19 18:13:14 +01:00
|
|
|
|
2016-01-25 18:56:36 +01:00
|
|
|
if !fail {
|
2016-02-03 13:20:32 +01:00
|
|
|
flushln!("ok");
|
2016-01-25 18:56:36 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-19 18:13:14 +01:00
|
|
|
|
2016-01-25 18:56:36 +01:00
|
|
|
println!("!!! {:?} tests from failed.", failed.len());
|
|
|
|
failed
|
|
|
|
}
|
|
|
|
|
2016-07-16 13:02:56 +02:00
|
|
|
mod frontier_era_tests {
|
|
|
|
use tests::helpers::*;
|
|
|
|
use super::json_chain_test;
|
|
|
|
|
|
|
|
fn do_json_test(json_data: &[u8]) -> Vec<String> {
|
|
|
|
json_chain_test(json_data, ChainEra::Frontier)
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_test!{BlockchainTests_bcBlockGasLimitTest, "BlockchainTests/bcBlockGasLimitTest"}
|
|
|
|
declare_test!{BlockchainTests_bcForkBlockTest, "BlockchainTests/bcForkBlockTest"}
|
|
|
|
declare_test!{BlockchainTests_bcForkStressTest, "BlockchainTests/bcForkStressTest"}
|
|
|
|
declare_test!{BlockchainTests_bcForkUncle, "BlockchainTests/bcForkUncle"}
|
|
|
|
declare_test!{BlockchainTests_bcGasPricerTest, "BlockchainTests/bcGasPricerTest"}
|
|
|
|
declare_test!{BlockchainTests_bcInvalidHeaderTest, "BlockchainTests/bcInvalidHeaderTest"}
|
|
|
|
// TODO [ToDr] Ignored because of incorrect JSON (https://github.com/ethereum/tests/pull/113)
|
|
|
|
declare_test!{ignore => BlockchainTests_bcInvalidRLPTest, "BlockchainTests/bcInvalidRLPTest"}
|
|
|
|
declare_test!{BlockchainTests_bcMultiChainTest, "BlockchainTests/bcMultiChainTest"}
|
|
|
|
declare_test!{BlockchainTests_bcRPC_API_Test, "BlockchainTests/bcRPC_API_Test"}
|
|
|
|
declare_test!{BlockchainTests_bcStateTest, "BlockchainTests/bcStateTest"}
|
|
|
|
declare_test!{BlockchainTests_bcTotalDifficultyTest, "BlockchainTests/bcTotalDifficultyTest"}
|
|
|
|
declare_test!{BlockchainTests_bcUncleHeaderValiditiy, "BlockchainTests/bcUncleHeaderValiditiy"}
|
|
|
|
declare_test!{BlockchainTests_bcUncleTest, "BlockchainTests/bcUncleTest"}
|
|
|
|
declare_test!{BlockchainTests_bcValidBlockTest, "BlockchainTests/bcValidBlockTest"}
|
|
|
|
declare_test!{BlockchainTests_bcWalletTest, "BlockchainTests/bcWalletTest"}
|
|
|
|
|
|
|
|
declare_test!{BlockchainTests_RandomTests_bl10251623GO, "BlockchainTests/RandomTests/bl10251623GO"}
|
|
|
|
declare_test!{BlockchainTests_RandomTests_bl201507071825GO, "BlockchainTests/RandomTests/bl201507071825GO"}
|
2016-01-27 17:32:12 +01:00
|
|
|
}
|
|
|
|
|
2016-07-16 13:02:56 +02:00
|
|
|
mod daohardfork_tests {
|
|
|
|
use tests::helpers::*;
|
|
|
|
use super::json_chain_test;
|
|
|
|
|
|
|
|
fn do_json_test(json_data: &[u8]) -> Vec<String> {
|
|
|
|
json_chain_test(json_data, ChainEra::DaoHardfork)
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_test!{BlockchainTests_TestNetwork_bcSimpleTransitionTest, "BlockchainTests/TestNetwork/bcSimpleTransitionTest"}
|
|
|
|
declare_test!{BlockchainTests_TestNetwork_bcTheDaoTest, "BlockchainTests/TestNetwork/bcTheDaoTest"}
|
|
|
|
}
|