Add test.

This commit is contained in:
Gav Wood 2016-07-29 10:48:05 +02:00
parent a44ef73b33
commit 24c6561bc1
2 changed files with 16 additions and 0 deletions

View File

@ -538,6 +538,9 @@ mod tests {
use blockchain::{BlockchainCmd, ImportBlockchain, ExportBlockchain};
use presale::ImportWallet;
use account::{AccountCmd, NewAccount, ImportAccounts};
use devtools::{RandomTempPath};
use std::io::Write;
use std::fs::{File, create_dir};
#[derive(Debug, PartialEq)]
struct TestPasswordReader(&'static str);
@ -769,5 +772,16 @@ mod tests {
// then
assert_eq!(conf0.signer_enabled(), false);
}
#[test]
fn should_not_bail_on_empty_line_in_reserved_peers() {
let temp = RandomTempPath::new();
create_dir(temp.as_str().to_owned()).unwrap();
let filename = temp.as_str().to_owned() + "/peers";
File::create(filename.clone()).unwrap().write_all(b" \n\t\n").unwrap();
let args = vec!["parity", "--reserved-peers", &filename];
let conf = Configuration::parse(args).unwrap();
assert!(conf.init_reserved_nodes().is_ok());
}
}

View File

@ -25,6 +25,8 @@
extern crate docopt;
extern crate num_cpus;
extern crate rustc_serialize;
extern crate ethcore_devtools as devtools;
#[macro_use]
extern crate ethcore_util as util;
extern crate ethcore;
extern crate ethsync;