From fb443dbe16288404e12d22acc93cd3f7b8a0e999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Sat, 12 Nov 2016 10:06:40 +0100 Subject: [PATCH] Fixing parsing passwords from file (#3367) * fixing parsing passwords as inputs * Fixing typo in test Former-commit-id: b5e1b7fefc49b415e3d217f8e17bde32ee3ad51c --- parity/helpers.rs | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/parity/helpers.rs b/parity/helpers.rs index 761a148e4..4ac4dfa61 100644 --- a/parity/helpers.rs +++ b/parity/helpers.rs @@ -15,9 +15,8 @@ // along with Parity. If not, see . use std::{io, env}; -use std::io::{Write, Read, BufReader, BufRead}; +use std::io::{Write, BufReader, BufRead}; use std::time::Duration; -use std::path::Path; use std::fs::File; use util::{clean_0x, U256, Uint, Address, path, CompactionProfile}; use util::journaldb::Algorithm; @@ -299,13 +298,11 @@ pub fn password_prompt() -> Result { } /// Read a password from password file. -pub fn password_from_file

(path: P) -> Result where P: AsRef { - let mut file = try!(File::open(path).map_err(|_| "Unable to open password file.")); - let mut file_content = String::new(); - match file.read_to_string(&mut file_content) { - Ok(_) => Ok(file_content.trim().into()), - Err(_) => Err("Unable to read password file.".into()), - } +pub fn password_from_file(path: String) -> Result { + let passwords = try!(passwords_from_files(vec![path])); + // use only first password from the file + passwords.get(0).map(String::to_owned) + .ok_or_else(|| "Password file seems to be empty.".to_owned()) } /// Reads passwords from files. Treats each line as a separate password. @@ -314,10 +311,11 @@ pub fn passwords_from_files(files: Vec) -> Result, String> { let file = try!(File::open(filename).map_err(|_| format!("{} Unable to read password file. Ensure it exists and permissions are correct.", filename))); let reader = BufReader::new(&file); let lines = reader.lines() - .map(|l| l.unwrap()) + .filter_map(|l| l.ok()) + .map(|pwd| pwd.trim().to_owned()) .collect::>(); Ok(lines) - }).collect::>, String>>(); + }).collect::>, String>>(); Ok(try!(passwords).into_iter().flat_map(|x| x).collect()) } @@ -418,7 +416,20 @@ mod tests { let path = RandomTempPath::new(); let mut file = File::create(path.as_path()).unwrap(); file.write_all(b"a bc ").unwrap(); - assert_eq!(password_from_file(path).unwrap().as_bytes(), b"a bc"); + assert_eq!(password_from_file(path.as_str().into()).unwrap().as_bytes(), b"a bc"); + } + + #[test] + fn test_password_multiline() { + let path = RandomTempPath::new(); + let mut file = File::create(path.as_path()).unwrap(); + file.write_all(br#" password with trailing whitespace +those passwords should be +ignored +but the first password is trimmed + +"#).unwrap(); + assert_eq!(&password_from_file(path.as_str().into()).unwrap(), "password with trailing whitespace"); } #[test]