ab22d5e278
* Replace ethcore-logger with env-logger. * Fix logger initialization in WASM tests. * uncomment logger initialization in secret store * Don't use ethcore-logger in whisper. * Move ethcore-logger within parity dir. * Uncomment rest from secret-store. * Use `let _ =` in private_contract for consistency * `ok()` to `let _ =` fix in service * Use `let _ = ` for state_db
63 lines
1.8 KiB
Rust
63 lines
1.8 KiB
Rust
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Ethereum.
|
|
|
|
// Parity Ethereum 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 Ethereum 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 Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
extern crate serde;
|
|
extern crate serde_json;
|
|
#[macro_use] extern crate serde_derive;
|
|
extern crate ethereum_types;
|
|
extern crate ethjson;
|
|
extern crate wasm;
|
|
extern crate vm;
|
|
extern crate clap;
|
|
extern crate rustc_hex;
|
|
extern crate env_logger;
|
|
|
|
mod fixture;
|
|
mod runner;
|
|
|
|
use fixture::Fixture;
|
|
use clap::{App, Arg};
|
|
use std::fs;
|
|
|
|
fn main() {
|
|
::env_logger::init();
|
|
|
|
let matches = App::new("pwasm-run-test")
|
|
.arg(Arg::with_name("target")
|
|
.index(1)
|
|
.required(true)
|
|
.multiple(true)
|
|
.help("JSON fixture"))
|
|
.get_matches();
|
|
|
|
let mut exit_code = 0;
|
|
|
|
for target in matches.values_of("target").expect("No target parameter") {
|
|
let mut f = fs::File::open(target).expect("Failed to open file");
|
|
let fixtures: Vec<Fixture> = serde_json::from_reader(&mut f).expect("Failed to deserialize json");
|
|
|
|
for fixture in fixtures.into_iter() {
|
|
let fails = runner::run_fixture(&fixture);
|
|
for fail in fails.iter() {
|
|
exit_code = 1;
|
|
println!("Failed assert in test \"{}\" ('{}'): {}", fixture.caption.as_ref(), target, fail);
|
|
}
|
|
}
|
|
}
|
|
|
|
std::process::exit(exit_code);
|
|
}
|