Add wallet creation tests

This commit is contained in:
Aditya Kulkarni 2019-10-21 17:56:28 -07:00
parent c901b4f52f
commit 51b1b54863
3 changed files with 76 additions and 19 deletions

View File

@ -70,5 +70,8 @@ features = ["ff_derive"]
[build-dependencies] [build-dependencies]
tower-grpc-build = { git = "https://github.com/tower-rs/tower-grpc", features = ["tower-hyper"] } tower-grpc-build = { git = "https://github.com/tower-rs/tower-grpc", features = ["tower-hyper"] }
[dev-dependencies]
tempdir = "0.3.7"
[profile.release] [profile.release]
debug = false debug = false

View File

@ -5,7 +5,7 @@ use rand::{rngs::OsRng, seq::SliceRandom};
use std::sync::{Arc, RwLock}; use std::sync::{Arc, RwLock};
use std::sync::atomic::{AtomicU64, AtomicI32, AtomicUsize, Ordering}; use std::sync::atomic::{AtomicU64, AtomicI32, AtomicUsize, Ordering};
use std::path::Path; use std::path::{Path, PathBuf};
use std::fs::File; use std::fs::File;
use std::collections::HashMap; use std::collections::HashMap;
use std::io; use std::io;
@ -38,12 +38,13 @@ pub struct LightClientConfig {
pub consensus_branch_id : String, pub consensus_branch_id : String,
pub anchor_offset : u32, pub anchor_offset : u32,
pub no_cert_verification : bool, pub no_cert_verification : bool,
pub data_dir : Option<String>
} }
impl LightClientConfig { impl LightClientConfig {
// Create an unconnected (to any server) config to test for local wallet etc... // Create an unconnected (to any server) config to test for local wallet etc...
pub fn create_unconnected(chain_name: String) -> LightClientConfig { pub fn create_unconnected(chain_name: String, dir: Option<String>) -> LightClientConfig {
LightClientConfig { LightClientConfig {
server : http::Uri::default(), server : http::Uri::default(),
chain_name : chain_name, chain_name : chain_name,
@ -51,6 +52,7 @@ impl LightClientConfig {
consensus_branch_id : "".to_string(), consensus_branch_id : "".to_string(),
anchor_offset : ANCHOR_OFFSET, anchor_offset : ANCHOR_OFFSET,
no_cert_verification : false, no_cert_verification : false,
data_dir : dir,
} }
} }
@ -67,6 +69,7 @@ impl LightClientConfig {
consensus_branch_id : info.consensus_branch_id, consensus_branch_id : info.consensus_branch_id,
anchor_offset : ANCHOR_OFFSET, anchor_offset : ANCHOR_OFFSET,
no_cert_verification : dangerous, no_cert_verification : dangerous,
data_dir : None,
}; };
Ok((config, info.block_height)) Ok((config, info.block_height))
@ -74,20 +77,24 @@ impl LightClientConfig {
pub fn get_zcash_data_path(&self) -> Box<Path> { pub fn get_zcash_data_path(&self) -> Box<Path> {
let mut zcash_data_location; let mut zcash_data_location;
if cfg!(target_os="macos") || cfg!(target_os="windows") { if self.data_dir.is_some() {
zcash_data_location = dirs::data_dir().expect("Couldn't determine app data directory!"); zcash_data_location = PathBuf::from(&self.data_dir.as_ref().unwrap());
zcash_data_location.push("Zcash");
} else { } else {
zcash_data_location = dirs::home_dir().expect("Couldn't determine home directory!"); if cfg!(target_os="macos") || cfg!(target_os="windows") {
zcash_data_location.push(".zcash"); zcash_data_location = dirs::data_dir().expect("Couldn't determine app data directory!");
}; zcash_data_location.push("Zcash");
} else {
zcash_data_location = dirs::home_dir().expect("Couldn't determine home directory!");
zcash_data_location.push(".zcash");
};
match &self.chain_name[..] { match &self.chain_name[..] {
"main" => {}, "main" => {},
"test" => zcash_data_location.push("testnet3"), "test" => zcash_data_location.push("testnet3"),
"regtest" => zcash_data_location.push("regtest"), "regtest" => zcash_data_location.push("regtest"),
c => panic!("Unknown chain {}", c), c => panic!("Unknown chain {}", c),
}; };
}
zcash_data_location.into_boxed_path() zcash_data_location.into_boxed_path()
} }
@ -226,8 +233,8 @@ impl LightClient {
/// Method to create a test-only version of the LightClient /// Method to create a test-only version of the LightClient
#[allow(dead_code)] #[allow(dead_code)]
fn unconnected(seed_phrase: String) -> io::Result<Self> { fn unconnected(seed_phrase: String, dir: Option<String>) -> io::Result<Self> {
let config = LightClientConfig::create_unconnected("test".to_string()); let config = LightClientConfig::create_unconnected("test".to_string(), dir);
let mut l = LightClient { let mut l = LightClient {
wallet : Arc::new(RwLock::new(LightWallet::new(Some(seed_phrase), &config, 0)?)), wallet : Arc::new(RwLock::new(LightWallet::new(Some(seed_phrase), &config, 0)?)),
config : config.clone(), config : config.clone(),
@ -914,7 +921,8 @@ impl LightClient {
#[cfg(test)] #[cfg(test)]
pub mod tests { pub mod tests {
use lazy_static::lazy_static; use lazy_static::lazy_static;
//use super::LightClient; use tempdir::TempDir;
use super::{LightClient, LightClientConfig};
lazy_static!{ lazy_static!{
static ref TEST_SEED: String = "youth strong sweet gorilla hammer unhappy congress stamp left stereo riot salute road tag clean toilet artefact fork certain leopard entire civil degree wonder".to_string(); static ref TEST_SEED: String = "youth strong sweet gorilla hammer unhappy congress stamp left stereo riot salute road tag clean toilet artefact fork certain leopard entire civil degree wonder".to_string();
@ -922,7 +930,7 @@ pub mod tests {
#[test] #[test]
pub fn test_encrypt_decrypt() { pub fn test_encrypt_decrypt() {
let lc = super::LightClient::unconnected(TEST_SEED.to_string()).unwrap(); let lc = super::LightClient::unconnected(TEST_SEED.to_string(), None).unwrap();
assert!(!lc.do_export(None).is_err()); assert!(!lc.do_export(None).is_err());
assert!(!lc.do_new_address("z").is_err()); assert!(!lc.do_new_address("z").is_err());
@ -947,7 +955,7 @@ pub mod tests {
#[test] #[test]
pub fn test_addresses() { pub fn test_addresses() {
let lc = super::LightClient::unconnected(TEST_SEED.to_string()).unwrap(); let lc = super::LightClient::unconnected(TEST_SEED.to_string(), None).unwrap();
// Add new z and t addresses // Add new z and t addresses
@ -966,5 +974,49 @@ pub mod tests {
assert_eq!(addresses["t_addresses"][2], taddr2); assert_eq!(addresses["t_addresses"][2], taddr2);
} }
#[test]
pub fn test_wallet_creation() {
// Create a new tmp director
{
let tmp = TempDir::new("lctest").unwrap();
let dir_name = tmp.path().to_str().map(|s| s.to_string());
// A lightclient to a new, empty directory works.
let config = LightClientConfig::create_unconnected("test".to_string(), dir_name);
let lc = LightClient::new(&config, 0).unwrap();
let seed = lc.do_seed_phrase().unwrap()["seed"].as_str().unwrap().to_string();
lc.do_save().unwrap();
// Doing another new will fail, because the wallet file now already exists
assert!(LightClient::new(&config, 0).is_err());
// new_from_phrase will not work either, again, because wallet file exists
assert!(LightClient::new_from_phrase(TEST_SEED.to_string(), &config, 0).is_err());
// Creating a lightclient to the same dir without a seed should re-read the same wallet
// file and therefore the same seed phrase
let lc2 = LightClient::read_from_disk(&config).unwrap();
assert_eq!(seed, lc2.do_seed_phrase().unwrap()["seed"].as_str().unwrap().to_string());
}
// Now, get a new directory, and try to read from phrase
{
let tmp = TempDir::new("lctest").unwrap();
let dir_name = tmp.path().to_str().map(|s| s.to_string());
let config = LightClientConfig::create_unconnected("test".to_string(), dir_name);
// read_from_disk will fail, because the dir doesn't exist
assert!(LightClient::read_from_disk(&config).is_err());
// New from phrase should work becase a file doesn't exist already
let lc = LightClient::new_from_phrase(TEST_SEED.to_string(), &config, 0).unwrap();
assert_eq!(TEST_SEED.to_string(), lc.do_seed_phrase().unwrap()["seed"].as_str().unwrap().to_string());
lc.do_save().unwrap();
// Now a new will fail because wallet exists
assert!(LightClient::new(&config, 0).is_err());
}
}
} }

View File

@ -657,6 +657,7 @@ fn get_test_config() -> LightClientConfig {
consensus_branch_id: "000000".to_string(), consensus_branch_id: "000000".to_string(),
anchor_offset: 0, anchor_offset: 0,
no_cert_verification: false, no_cert_verification: false,
data_dir: None,
} }
} }
@ -1580,6 +1581,7 @@ fn test_t_derivation() {
consensus_branch_id: "000000".to_string(), consensus_branch_id: "000000".to_string(),
anchor_offset: 1, anchor_offset: 1,
no_cert_verification: false, no_cert_verification: false,
data_dir: None,
}; };
let seed_phrase = Some("chimney better bulb horror rebuild whisper improve intact letter giraffe brave rib appear bulk aim burst snap salt hill sad merge tennis phrase raise".to_string()); let seed_phrase = Some("chimney better bulb horror rebuild whisper improve intact letter giraffe brave rib appear bulk aim burst snap salt hill sad merge tennis phrase raise".to_string());