132 lines
6.3 KiB
Rust
132 lines
6.3 KiB
Rust
// Copyright 2015-2017 Parity Technologies (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/>.
|
|
|
|
use super::test_common::*;
|
|
use tests::helpers::*;
|
|
use pod_state::PodState;
|
|
use ethereum;
|
|
use spec::Spec;
|
|
use ethjson;
|
|
use ethjson::state::test::ForkSpec;
|
|
use types::transaction::SignedTransaction;
|
|
use env_info::EnvInfo;
|
|
|
|
lazy_static! {
|
|
pub static ref FRONTIER: Spec = ethereum::new_frontier_test();
|
|
pub static ref HOMESTEAD: Spec = ethereum::new_homestead_test();
|
|
pub static ref EIP150: Spec = ethereum::new_eip150_test();
|
|
pub static ref EIP161: Spec = ethereum::new_eip161_test();
|
|
pub static ref _METROPOLIS: Spec = ethereum::new_metropolis_test();
|
|
}
|
|
|
|
pub fn json_chain_test(json_data: &[u8]) -> Vec<String> {
|
|
::ethcore_logger::init_log();
|
|
let tests = ethjson::state::test::Test::load(json_data).unwrap();
|
|
let mut failed = Vec::new();
|
|
|
|
for (name, test) in tests.into_iter() {
|
|
{
|
|
let multitransaction = test.transaction;
|
|
let env: EnvInfo = test.env.into();
|
|
let pre: PodState = test.pre_state.into();
|
|
|
|
for (spec, states) in test.post_states {
|
|
let total = states.len();
|
|
let engine = match spec {
|
|
ForkSpec::Frontier => &FRONTIER.engine,
|
|
ForkSpec::Homestead => &HOMESTEAD.engine,
|
|
ForkSpec::EIP150 => &EIP150.engine,
|
|
ForkSpec::EIP158 => &EIP161.engine,
|
|
ForkSpec::Metropolis => continue,
|
|
};
|
|
|
|
for (i, state) in states.into_iter().enumerate() {
|
|
let info = format!(" - {} | {:?} ({}/{}) ...", name, spec, i + 1, total);
|
|
|
|
let post_root: H256 = state.hash.into();
|
|
let transaction: SignedTransaction = multitransaction.select(&state.indexes).into();
|
|
let mut state = get_temp_state();
|
|
state.populate_from(pre.clone());
|
|
if transaction.verify_basic(true, None, env.number >= engine.params().eip86_transition).is_ok() {
|
|
state.commit().expect(&format!("State test {} failed due to internal error.", name));
|
|
let _res = state.apply(&env, &**engine, &transaction, false);
|
|
} else {
|
|
let _rest = state.commit();
|
|
}
|
|
if state.root() != &post_root {
|
|
println!("{} !!! State mismatch (got: {}, expect: {}", info, state.root(), post_root);
|
|
flushln!("{} fail", info);
|
|
failed.push(name.clone());
|
|
} else {
|
|
flushln!("{} ok", info);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
if !failed.is_empty() {
|
|
println!("!!! {:?} tests failed.", failed.len());
|
|
}
|
|
failed
|
|
}
|
|
|
|
mod state_tests {
|
|
use super::json_chain_test;
|
|
|
|
fn do_json_test(json_data: &[u8]) -> Vec<String> {
|
|
json_chain_test(json_data)
|
|
}
|
|
|
|
declare_test!{GeneralStateTest_stAttackTest, "GeneralStateTests/stAttackTest/"}
|
|
declare_test!{GeneralStateTest_stBoundsTest, "GeneralStateTests/stBoundsTest/"}
|
|
declare_test!{GeneralStateTest_stCallCodes, "GeneralStateTests/stCallCodes/"}
|
|
declare_test!{skip => [ "createJS_ExampleContract" ], GeneralStateTest_stCallCreateCallCodeTest, "GeneralStateTests/stCallCreateCallCodeTest/"}
|
|
declare_test!{GeneralStateTest_stCallDelegateCodesCallCodeHomestead, "GeneralStateTests/stCallDelegateCodesCallCodeHomestead/"}
|
|
declare_test!{GeneralStateTest_stCallDelegateCodesHomestead, "GeneralStateTests/stCallDelegateCodesHomestead/"}
|
|
declare_test!{GeneralStateTest_stChangedEIP150, "GeneralStateTests/stChangedEIP150/"}
|
|
declare_test!{GeneralStateTest_stCodeSizeLimit, "GeneralStateTests/stCodeSizeLimit/"}
|
|
declare_test!{GeneralStateTest_stCreateTest, "GeneralStateTests/stCreateTest/"}
|
|
declare_test!{GeneralStateTest_stDelegatecallTestHomestead, "GeneralStateTests/stDelegatecallTestHomestead/"}
|
|
declare_test!{GeneralStateTest_stEIP150singleCodeGasPrices, "GeneralStateTests/stEIP150singleCodeGasPrices/"}
|
|
declare_test!{GeneralStateTest_stEIP150Specific, "GeneralStateTests/stEIP150Specific/"}
|
|
declare_test!{GeneralStateTest_stExample, "GeneralStateTests/stExample/"}
|
|
declare_test!{GeneralStateTest_stHomesteadSpecific, "GeneralStateTests/stHomesteadSpecific/"}
|
|
declare_test!{GeneralStateTest_stInitCodeTest, "GeneralStateTests/stInitCodeTest/"}
|
|
declare_test!{GeneralStateTest_stLogTests, "GeneralStateTests/stLogTests/"}
|
|
declare_test!{GeneralStateTest_stMemExpandingEIP150Calls, "GeneralStateTests/stMemExpandingEIP150Calls/"}
|
|
declare_test!{heavy => GeneralStateTest_stMemoryStressTest, "GeneralStateTests/stMemoryStressTest/"}
|
|
declare_test!{GeneralStateTest_stMemoryTest, "GeneralStateTests/stMemoryTest/"}
|
|
declare_test!{GeneralStateTest_stNonZeroCallsTest, "GeneralStateTests/stNonZeroCallsTest/"}
|
|
declare_test!{GeneralStateTest_stPreCompiledContracts, "GeneralStateTests/stPreCompiledContracts/"}
|
|
declare_test!{heavy => GeneralStateTest_stQuadraticComplexityTest, "GeneralStateTests/stQuadraticComplexityTest/"}
|
|
declare_test!{GeneralStateTest_stRandom, "GeneralStateTests/stRandom/"}
|
|
declare_test!{GeneralStateTest_stRecursiveCreate, "GeneralStateTests/stRecursiveCreate/"}
|
|
declare_test!{GeneralStateTest_stRefundTest, "GeneralStateTests/stRefundTest/"}
|
|
declare_test!{skip => [ "RevertDepthCreateAddressCollision" ], GeneralStateTest_stRevertTest, "GeneralStateTests/stRevertTest/"}
|
|
declare_test!{GeneralStateTest_stSolidityTest, "GeneralStateTests/stSolidityTest/"}
|
|
declare_test!{GeneralStateTest_stSpecialTest, "GeneralStateTests/stSpecialTest/"}
|
|
declare_test!{GeneralStateTest_stStackTests, "GeneralStateTests/stStackTests/"}
|
|
declare_test!{GeneralStateTest_stSystemOperationsTest, "GeneralStateTests/stSystemOperationsTest/"}
|
|
declare_test!{GeneralStateTest_stTransactionTest, "GeneralStateTests/stTransactionTest/"}
|
|
declare_test!{GeneralStateTest_stTransitionTest, "GeneralStateTests/stTransitionTest/"}
|
|
declare_test!{GeneralStateTest_stWalletTest, "GeneralStateTests/stWalletTest/"}
|
|
declare_test!{GeneralStateTest_stZeroCallsRevert, "GeneralStateTests/stZeroCallsRevert/"}
|
|
declare_test!{GeneralStateTest_stZeroCallsTest, "GeneralStateTests/stZeroCallsTest/"}
|
|
}
|
|
|