All transaction tests pass. Nicer testing framework.
This commit is contained in:
parent
8e8825320c
commit
56ee6770b5
@ -16,7 +16,7 @@ rocksdb = "0.2"
|
|||||||
heapsize = "0.2.0"
|
heapsize = "0.2.0"
|
||||||
rust-crypto = "0.2.34"
|
rust-crypto = "0.2.34"
|
||||||
time = "0.1"
|
time = "0.1"
|
||||||
|
#interpolate_idents = { git = "https://github.com/SkylerLipthay/interpolate_idents" }
|
||||||
evmjit = { path = "rust-evmjit", optional = true }
|
evmjit = { path = "rust-evmjit", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
#![feature(cell_extras)]
|
#![feature(cell_extras)]
|
||||||
#![feature(augmented_assignments)]
|
#![feature(augmented_assignments)]
|
||||||
|
//#![feature(plugin)]
|
||||||
|
//#![plugin(interpolate_idents)]
|
||||||
//! Ethcore's ethereum implementation
|
//! Ethcore's ethereum implementation
|
||||||
//!
|
//!
|
||||||
//! ### Rust version
|
//! ### Rust version
|
||||||
|
@ -209,13 +209,17 @@ mod tests {
|
|||||||
fn do_json_test(json_data: &[u8]) -> Vec<String> {
|
fn do_json_test(json_data: &[u8]) -> Vec<String> {
|
||||||
let json = Json::from_str(::std::str::from_utf8(json_data).unwrap()).expect("Json is invalid");
|
let json = Json::from_str(::std::str::from_utf8(json_data).unwrap()).expect("Json is invalid");
|
||||||
let mut failed = Vec::new();
|
let mut failed = Vec::new();
|
||||||
let schedule = Schedule::new_frontier();
|
let old_schedule = Schedule::new_frontier();
|
||||||
|
let new_schedule = Schedule::new_homestead();
|
||||||
for (name, test) in json.as_object().unwrap() {
|
for (name, test) in json.as_object().unwrap() {
|
||||||
let mut fail = false;
|
let mut fail = false;
|
||||||
let mut fail_unless = |cond: bool| if !cond && fail { failed.push(name.to_string()); fail = true };
|
let mut fail_unless = |cond: bool| if !cond && fail { failed.push(name.to_string()); fail = true };
|
||||||
let _ = BlockNumber::from_str(test["blocknumber"].as_string().unwrap()).unwrap();
|
let schedule = match test.find("blocknumber")
|
||||||
|
.and_then(|j| j.as_string())
|
||||||
|
.and_then(|s| BlockNumber::from_str(s).ok())
|
||||||
|
.unwrap_or(0) { x if x < 900000 => &old_schedule, _ => &new_schedule };
|
||||||
let rlp = bytes_from_json(&test["rlp"]);
|
let rlp = bytes_from_json(&test["rlp"]);
|
||||||
let res = UntrustedRlp::new(&rlp).as_val().map_err(|e| From::from(e)).and_then(|t: Transaction| t.validate(&schedule));
|
let res = UntrustedRlp::new(&rlp).as_val().map_err(|e| From::from(e)).and_then(|t: Transaction| t.validate(schedule));
|
||||||
fail_unless(test.find("transaction").is_none() == res.is_err());
|
fail_unless(test.find("transaction").is_none() == res.is_err());
|
||||||
if let (Some(&Json::Object(ref tx)), Some(&Json::String(ref expect_sender))) = (test.find("transaction"), test.find("sender")) {
|
if let (Some(&Json::Object(ref tx)), Some(&Json::String(ref expect_sender))) = (test.find("transaction"), test.find("sender")) {
|
||||||
let t = res.unwrap();
|
let t = res.unwrap();
|
||||||
@ -238,17 +242,49 @@ mod tests {
|
|||||||
failed
|
failed
|
||||||
}
|
}
|
||||||
|
|
||||||
macro_rules! declare_test {
|
// Once we have interpolate idents.
|
||||||
($test_set_name: ident/$name: ident) => {
|
/*macro_rules! declare_test {
|
||||||
|
($test_set_name: ident / $name: ident) => {
|
||||||
#[test]
|
#[test]
|
||||||
#[allow(non_snake_case)]
|
#[allow(non_snake_case)]
|
||||||
fn $name() {
|
fn $name() {
|
||||||
assert!(do_json_test(include_bytes!(concat!("../res/ethereum/tests/", stringify!($test_set_name), "/", stringify!($name), ".json"))).len() == 0);
|
assert!(do_json_test(include_bytes!(concat!("../res/ethereum/tests/", stringify!($test_set_name), "/", stringify!($name), ".json"))).len() == 0);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
($test_set_name: ident / $prename: ident / $name: ident) => {
|
||||||
|
#[test]
|
||||||
|
#[allow(non_snake_case)]
|
||||||
|
interpolate_idents! { fn [$prename _ $name]()
|
||||||
|
{
|
||||||
|
let json = include_bytes!(concat!("../res/ethereum/tests/", stringify!($test_set_name), "/", stringify!($prename), "/", stringify!($name), ".json"));
|
||||||
|
assert!(do_json_test(json).len() == 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
declare_test!{TransactionTests/ttTransactionTest}
|
declare_test!{TransactionTests/ttTransactionTest}
|
||||||
declare_test!{TransactionTests/tt10mbDataField}
|
declare_test!{TransactionTests/tt10mbDataField}
|
||||||
declare_test!{TransactionTests/ttWrongRLPTransaction}
|
declare_test!{TransactionTests/ttWrongRLPTransaction}
|
||||||
|
declare_test!{TransactionTests/Homestead/ttTransactionTest}
|
||||||
|
declare_test!{TransactionTests/Homestead/tt10mbDataField}
|
||||||
|
declare_test!{TransactionTests/Homestead/ttWrongRLPTransaction}
|
||||||
|
declare_test!{TransactionTests/RandomTests/tr201506052141PYTHON}*/
|
||||||
|
|
||||||
|
macro_rules! declare_test {
|
||||||
|
($id: ident, $name: expr) => {
|
||||||
|
#[test]
|
||||||
|
#[allow(non_snake_case)]
|
||||||
|
fn $id() {
|
||||||
|
assert!(do_json_test(include_bytes!(concat!("../res/ethereum/tests/", $name, ".json"))).len() == 0);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
declare_test!{TransactionTests_ttTransactionTest, "TransactionTests/ttTransactionTest"}
|
||||||
|
declare_test!{TransactionTests_tt10mbDataField, "TransactionTests/tt10mbDataField"}
|
||||||
|
declare_test!{TransactionTests_ttWrongRLPTransaction, "TransactionTests/ttWrongRLPTransaction"}
|
||||||
|
declare_test!{TransactionTests_Homestead_ttTransactionTest, "TransactionTests/Homestead/ttTransactionTest"}
|
||||||
|
declare_test!{TransactionTests_Homestead_tt10mbDataField, "TransactionTests/Homestead/tt10mbDataField"}
|
||||||
|
declare_test!{TransactionTests_Homestead_ttWrongRLPTransaction, "TransactionTests/Homestead/ttWrongRLPTransaction"}
|
||||||
|
declare_test!{TransactionTests_RandomTests_tr201506052141PYTHON, "TransactionTests/RandomTests/tr201506052141PYTHON"}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user