2017-07-12 13:09:17 +02:00
|
|
|
//! Tests of EVM integration with transaction execution.
|
|
|
|
|
2017-07-29 21:56:42 +02:00
|
|
|
use std::sync::Arc;
|
2017-08-30 19:18:28 +02:00
|
|
|
use hash::keccak;
|
2017-11-02 12:49:57 +01:00
|
|
|
use vm::{EnvInfo, ActionParams, ActionValue, CallType, ParamsType};
|
2017-07-12 13:09:17 +02:00
|
|
|
use evm::{Factory, VMType};
|
|
|
|
use executive::Executive;
|
|
|
|
use state::Substate;
|
|
|
|
use tests::helpers::*;
|
|
|
|
use trace::{NoopVMTracer, NoopTracer};
|
|
|
|
use transaction::SYSTEM_ADDRESS;
|
|
|
|
|
|
|
|
use rustc_hex::FromHex;
|
|
|
|
|
2017-09-04 16:36:49 +02:00
|
|
|
use bigint::hash::H256;
|
2017-07-12 13:09:17 +02:00
|
|
|
use util::*;
|
2017-09-06 20:47:45 +02:00
|
|
|
use bytes::BytesRef;
|
2017-07-12 13:09:17 +02:00
|
|
|
|
|
|
|
evm_test!{test_blockhash_eip210: test_blockhash_eip210_jit, test_blockhash_eip210_int}
|
|
|
|
fn test_blockhash_eip210(factory: Factory) {
|
|
|
|
let get_prev_hash_code = Arc::new("600143034060205260206020f3".from_hex().unwrap()); // this returns previous block hash
|
2017-08-30 19:18:28 +02:00
|
|
|
let get_prev_hash_code_hash = keccak(get_prev_hash_code.as_ref());
|
2017-07-12 13:09:17 +02:00
|
|
|
// This is same as DEFAULT_BLOCKHASH_CONTRACT except for metropolis transition block check removed.
|
|
|
|
let test_blockhash_contract = "73fffffffffffffffffffffffffffffffffffffffe33141561007a57600143036020526000356101006020510755600061010060205107141561005057600035610100610100602051050761010001555b6000620100006020510714156100755760003561010062010000602051050761020001555b61014a565b4360003512151561009057600060405260206040f35b610100600035430312156100b357610100600035075460605260206060f3610149565b62010000600035430312156100d157600061010060003507146100d4565b60005b156100f6576101006101006000350507610100015460805260206080f3610148565b630100000060003543031215610116576000620100006000350714610119565b60005b1561013c57610100620100006000350507610200015460a052602060a0f3610147565b600060c052602060c0f35b5b5b5b5b";
|
|
|
|
let blockhash_contract_code = Arc::new(test_blockhash_contract.from_hex().unwrap());
|
2017-08-30 19:18:28 +02:00
|
|
|
let blockhash_contract_code_hash = keccak(blockhash_contract_code.as_ref());
|
2017-09-26 14:19:08 +02:00
|
|
|
let machine = ::ethereum::new_constantinople_test_machine();
|
2017-07-12 13:09:17 +02:00
|
|
|
let mut env_info = EnvInfo::default();
|
|
|
|
|
|
|
|
// populate state with 256 last hashes
|
|
|
|
let mut state = get_temp_state_with_factory(factory);
|
|
|
|
let contract_address: Address = 0xf0.into();
|
|
|
|
state.init_code(&contract_address, (*blockhash_contract_code).clone()).unwrap();
|
|
|
|
for i in 1 .. 257 {
|
|
|
|
env_info.number = i.into();
|
|
|
|
let params = ActionParams {
|
|
|
|
code_address: contract_address.clone(),
|
|
|
|
address: contract_address,
|
|
|
|
sender: SYSTEM_ADDRESS.clone(),
|
|
|
|
origin: SYSTEM_ADDRESS.clone(),
|
|
|
|
gas: 100000.into(),
|
|
|
|
gas_price: 0.into(),
|
|
|
|
value: ActionValue::Transfer(0.into()),
|
|
|
|
code: Some(blockhash_contract_code.clone()),
|
|
|
|
code_hash: Some(blockhash_contract_code_hash),
|
|
|
|
data: Some(H256::from(i - 1).to_vec()),
|
|
|
|
call_type: CallType::Call,
|
2017-11-02 12:49:57 +01:00
|
|
|
params_type: ParamsType::Separate,
|
2017-07-12 13:09:17 +02:00
|
|
|
};
|
2017-09-26 14:19:08 +02:00
|
|
|
let mut ex = Executive::new(&mut state, &env_info, &machine);
|
2017-07-12 13:09:17 +02:00
|
|
|
let mut substate = Substate::new();
|
|
|
|
let mut output = [];
|
|
|
|
if let Err(e) = ex.call(params, &mut substate, BytesRef::Fixed(&mut output), &mut NoopTracer, &mut NoopVMTracer) {
|
|
|
|
panic!("Encountered error on updating last hashes: {}", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
env_info.number = 256;
|
|
|
|
let params = ActionParams {
|
|
|
|
code_address: Address::new(),
|
|
|
|
address: Address::new(),
|
|
|
|
sender: Address::new(),
|
|
|
|
origin: Address::new(),
|
|
|
|
gas: 100000.into(),
|
|
|
|
gas_price: 0.into(),
|
|
|
|
value: ActionValue::Transfer(0.into()),
|
|
|
|
code: Some(get_prev_hash_code),
|
|
|
|
code_hash: Some(get_prev_hash_code_hash),
|
|
|
|
data: None,
|
|
|
|
call_type: CallType::Call,
|
2017-11-02 12:49:57 +01:00
|
|
|
params_type: ParamsType::Separate,
|
2017-07-12 13:09:17 +02:00
|
|
|
};
|
2017-09-26 14:19:08 +02:00
|
|
|
let mut ex = Executive::new(&mut state, &env_info, &machine);
|
2017-07-12 13:09:17 +02:00
|
|
|
let mut substate = Substate::new();
|
|
|
|
let mut output = H256::new();
|
|
|
|
if let Err(e) = ex.call(params, &mut substate, BytesRef::Fixed(&mut output), &mut NoopTracer, &mut NoopVMTracer) {
|
|
|
|
panic!("Encountered error on getting last hash: {}", e);
|
|
|
|
}
|
|
|
|
assert_eq!(output, 255.into());
|
|
|
|
}
|