mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 11:31:09 +03:00
139 lines
4 KiB
Rust
139 lines
4 KiB
Rust
|
// Copyright 2019 The Grin Developers
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
//! common functions for tests (instantiating wallet and proxy, mostly)
|
||
|
extern crate grin_wallet_controller as wallet;
|
||
|
extern crate grin_wallet_impls as impls;
|
||
|
extern crate grin_wallet_libwallet as libwallet;
|
||
|
|
||
|
use grin_wallet_util::grin_core as core;
|
||
|
use grin_wallet_util::grin_keychain as keychain;
|
||
|
use grin_wallet_util::grin_util as util;
|
||
|
|
||
|
use self::core::global;
|
||
|
use self::core::global::ChainTypes;
|
||
|
use self::keychain::ExtKeychain;
|
||
|
use self::libwallet::WalletInst;
|
||
|
use impls::test_framework::{LocalWalletClient, WalletProxy};
|
||
|
use impls::{DefaultLCProvider, DefaultWalletImpl};
|
||
|
use std::fs;
|
||
|
use std::sync::Arc;
|
||
|
use util::{Mutex, ZeroingString};
|
||
|
|
||
|
#[macro_export]
|
||
|
macro_rules! wallet_inst {
|
||
|
($wallet:ident, $w: ident) => {
|
||
|
let mut w_lock = $wallet.lock();
|
||
|
let lc = w_lock.lc_provider()?;
|
||
|
let $w = lc.wallet_inst()?;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#[macro_export]
|
||
|
macro_rules! create_wallet_and_add {
|
||
|
($client:ident, $wallet: ident, $test_dir: expr, $name: expr, $seed_phrase: expr, $proxy: expr) => {
|
||
|
let $client = LocalWalletClient::new($name, $proxy.tx.clone());
|
||
|
let $wallet =
|
||
|
common::create_local_wallet($test_dir, $name, $seed_phrase.clone(), $client.clone());
|
||
|
$proxy.add_wallet($name, $client.get_send_instance(), $wallet.clone());
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#[macro_export]
|
||
|
macro_rules! open_wallet_and_add {
|
||
|
($client:ident, $wallet: ident, $test_dir: expr, $name: expr, $proxy: expr) => {
|
||
|
let $client = LocalWalletClient::new($name, $proxy.tx.clone());
|
||
|
let $wallet = common::open_local_wallet($test_dir, $name, $client.clone());
|
||
|
$proxy.add_wallet($name, $client.get_send_instance(), $wallet.clone());
|
||
|
};
|
||
|
}
|
||
|
pub fn clean_output_dir(test_dir: &str) {
|
||
|
let _ = fs::remove_dir_all(test_dir);
|
||
|
}
|
||
|
|
||
|
pub fn setup(test_dir: &str) {
|
||
|
util::init_test_logger();
|
||
|
clean_output_dir(test_dir);
|
||
|
global::set_mining_mode(ChainTypes::AutomatedTesting);
|
||
|
}
|
||
|
|
||
|
pub fn create_wallet_proxy(
|
||
|
test_dir: &str,
|
||
|
) -> WalletProxy<DefaultLCProvider<LocalWalletClient, ExtKeychain>, LocalWalletClient, ExtKeychain>
|
||
|
{
|
||
|
WalletProxy::new(test_dir)
|
||
|
}
|
||
|
|
||
|
pub fn create_local_wallet(
|
||
|
test_dir: &str,
|
||
|
name: &str,
|
||
|
mnemonic: Option<ZeroingString>,
|
||
|
client: LocalWalletClient,
|
||
|
) -> Arc<
|
||
|
Mutex<
|
||
|
Box<
|
||
|
WalletInst<
|
||
|
'static,
|
||
|
DefaultLCProvider<'static, LocalWalletClient, ExtKeychain>,
|
||
|
LocalWalletClient,
|
||
|
ExtKeychain,
|
||
|
>,
|
||
|
>,
|
||
|
>,
|
||
|
> {
|
||
|
let mut wallet = Box::new(DefaultWalletImpl::<LocalWalletClient>::new(client).unwrap())
|
||
|
as Box<
|
||
|
WalletInst<
|
||
|
DefaultLCProvider<'static, LocalWalletClient, ExtKeychain>,
|
||
|
LocalWalletClient,
|
||
|
ExtKeychain,
|
||
|
>,
|
||
|
>;
|
||
|
let lc = wallet.lc_provider().unwrap();
|
||
|
lc.set_wallet_directory(&format!("{}/{}", test_dir, name));
|
||
|
lc.create_wallet(None, mnemonic, 32, ZeroingString::from(""))
|
||
|
.unwrap();
|
||
|
lc.open_wallet(None, ZeroingString::from("")).unwrap();
|
||
|
Arc::new(Mutex::new(wallet))
|
||
|
}
|
||
|
|
||
|
pub fn open_local_wallet(
|
||
|
test_dir: &str,
|
||
|
name: &str,
|
||
|
client: LocalWalletClient,
|
||
|
) -> Arc<
|
||
|
Mutex<
|
||
|
Box<
|
||
|
WalletInst<
|
||
|
'static,
|
||
|
DefaultLCProvider<'static, LocalWalletClient, ExtKeychain>,
|
||
|
LocalWalletClient,
|
||
|
ExtKeychain,
|
||
|
>,
|
||
|
>,
|
||
|
>,
|
||
|
> {
|
||
|
let mut wallet = Box::new(DefaultWalletImpl::<LocalWalletClient>::new(client).unwrap())
|
||
|
as Box<
|
||
|
WalletInst<
|
||
|
DefaultLCProvider<'static, LocalWalletClient, ExtKeychain>,
|
||
|
LocalWalletClient,
|
||
|
ExtKeychain,
|
||
|
>,
|
||
|
>;
|
||
|
let lc = wallet.lc_provider().unwrap();
|
||
|
lc.set_wallet_directory(&format!("{}/{}", test_dir, name));
|
||
|
lc.open_wallet(None, ZeroingString::from("")).unwrap();
|
||
|
Arc::new(Mutex::new(wallet))
|
||
|
}
|