2018-05-16 15:18:09 +03:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2018-08-17 14:15:06 +03:00
|
|
|
extern crate chrono;
|
2018-07-12 18:49:37 +03:00
|
|
|
extern crate failure;
|
2018-05-16 15:18:09 +03:00
|
|
|
extern crate grin_api as api;
|
|
|
|
extern crate grin_chain as chain;
|
|
|
|
extern crate grin_core as core;
|
|
|
|
extern crate grin_keychain as keychain;
|
|
|
|
extern crate grin_wallet as wallet;
|
2018-07-12 18:49:37 +03:00
|
|
|
extern crate serde_json;
|
2018-05-16 15:18:09 +03:00
|
|
|
|
2018-07-30 11:33:28 +03:00
|
|
|
use chrono::Duration;
|
2018-08-17 14:15:06 +03:00
|
|
|
use std::sync::{Arc, Mutex};
|
2018-07-12 18:49:37 +03:00
|
|
|
|
2018-05-16 15:18:09 +03:00
|
|
|
use chain::Chain;
|
2018-07-12 18:49:37 +03:00
|
|
|
use core::core::{OutputFeatures, OutputIdentifier, Transaction};
|
|
|
|
use core::{consensus, global, pow, ser};
|
2018-06-22 16:05:03 +03:00
|
|
|
use wallet::file_wallet::FileWallet;
|
2018-07-12 18:49:37 +03:00
|
|
|
use wallet::libwallet;
|
|
|
|
use wallet::libwallet::types::{BlockFees, CbData, WalletClient, WalletInst};
|
|
|
|
use wallet::lmdb_wallet::LMDBBackend;
|
|
|
|
use wallet::WalletConfig;
|
2018-05-16 15:18:09 +03:00
|
|
|
|
2018-06-07 17:04:21 +03:00
|
|
|
use util;
|
2018-05-16 15:18:09 +03:00
|
|
|
use util::secp::pedersen;
|
|
|
|
|
2018-07-12 18:49:37 +03:00
|
|
|
pub mod testclient;
|
2018-05-16 15:18:09 +03:00
|
|
|
|
2018-07-12 18:49:37 +03:00
|
|
|
/// types of backends tests should iterate through
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub enum BackendType {
|
|
|
|
/// File
|
|
|
|
FileBackend,
|
|
|
|
/// LMDB
|
|
|
|
LMDBBackend,
|
2018-05-16 15:18:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get an output from the chain locally and present it back as an API output
|
2018-07-12 18:49:37 +03:00
|
|
|
fn get_output_local(chain: &chain::Chain, commit: &pedersen::Commitment) -> Option<api::Output> {
|
2018-05-16 15:18:09 +03:00
|
|
|
let outputs = [
|
|
|
|
OutputIdentifier::new(OutputFeatures::DEFAULT_OUTPUT, commit),
|
|
|
|
OutputIdentifier::new(OutputFeatures::COINBASE_OUTPUT, commit),
|
|
|
|
];
|
|
|
|
|
|
|
|
for x in outputs.iter() {
|
|
|
|
if let Ok(_) = chain.is_unspent(&x) {
|
2018-08-21 16:04:14 +03:00
|
|
|
let block_height = chain.get_header_for_output(&x).unwrap().height;
|
|
|
|
return Some(api::Output::new(&commit, block_height));
|
2018-05-16 15:18:09 +03:00
|
|
|
}
|
|
|
|
}
|
2018-07-12 18:49:37 +03:00
|
|
|
None
|
2018-05-16 15:18:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Adds a block with a given reward to the chain and mines it
|
2018-07-12 18:49:37 +03:00
|
|
|
pub fn add_block_with_reward(chain: &Chain, txs: Vec<&Transaction>, reward: CbData) {
|
2018-05-16 15:18:09 +03:00
|
|
|
let prev = chain.head_header().unwrap();
|
|
|
|
let difficulty = consensus::next_difficulty(chain.difficulty_iter()).unwrap();
|
2018-07-12 18:49:37 +03:00
|
|
|
let out_bin = util::from_hex(reward.output).unwrap();
|
|
|
|
let kern_bin = util::from_hex(reward.kernel).unwrap();
|
|
|
|
let output = ser::deserialize(&mut &out_bin[..]).unwrap();
|
|
|
|
let kernel = ser::deserialize(&mut &kern_bin[..]).unwrap();
|
2018-05-30 23:57:13 +03:00
|
|
|
let mut b = core::core::Block::new(
|
|
|
|
&prev,
|
|
|
|
txs.into_iter().cloned().collect(),
|
|
|
|
difficulty.clone(),
|
2018-07-12 18:49:37 +03:00
|
|
|
(output, kernel),
|
2018-05-30 23:57:13 +03:00
|
|
|
).unwrap();
|
2018-07-30 11:33:28 +03:00
|
|
|
b.header.timestamp = prev.timestamp + Duration::seconds(60);
|
2018-06-22 11:33:42 +03:00
|
|
|
chain.set_txhashset_roots(&mut b, false).unwrap();
|
2018-05-16 15:18:09 +03:00
|
|
|
pow::pow_size(
|
|
|
|
&mut b.header,
|
|
|
|
difficulty,
|
|
|
|
global::proofsize(),
|
2018-06-29 20:41:28 +03:00
|
|
|
global::min_sizeshift(),
|
2018-05-16 15:18:09 +03:00
|
|
|
).unwrap();
|
|
|
|
chain.process_block(b, chain::Options::MINE).unwrap();
|
|
|
|
chain.validate(false).unwrap();
|
|
|
|
}
|
|
|
|
|
2018-05-21 18:28:11 +03:00
|
|
|
/// adds a reward output to a wallet, includes that reward in a block, mines
|
|
|
|
/// the block and adds it to the chain, with option transactions included.
|
2018-05-16 15:18:09 +03:00
|
|
|
/// Helpful for building up precise wallet balances for testing.
|
2018-07-12 18:49:37 +03:00
|
|
|
pub fn award_block_to_wallet<C, K>(
|
|
|
|
chain: &Chain,
|
|
|
|
txs: Vec<&Transaction>,
|
|
|
|
wallet: Arc<Mutex<Box<WalletInst<C, K>>>>,
|
|
|
|
) -> Result<(), libwallet::Error>
|
2018-06-08 08:21:54 +03:00
|
|
|
where
|
2018-07-10 11:18:24 +03:00
|
|
|
C: WalletClient,
|
2018-06-08 08:21:54 +03:00
|
|
|
K: keychain::Keychain,
|
|
|
|
{
|
2018-07-12 18:49:37 +03:00
|
|
|
// build block fees
|
2018-05-16 15:18:09 +03:00
|
|
|
let prev = chain.head_header().unwrap();
|
|
|
|
let fee_amt = txs.iter().map(|tx| tx.fee()).sum();
|
2018-07-12 18:49:37 +03:00
|
|
|
let block_fees = BlockFees {
|
2018-05-16 15:18:09 +03:00
|
|
|
fees: fee_amt,
|
|
|
|
key_id: None,
|
|
|
|
height: prev.height + 1,
|
|
|
|
};
|
2018-07-12 18:49:37 +03:00
|
|
|
// build coinbase (via api) and add block
|
|
|
|
libwallet::controller::foreign_single_use(wallet.clone(), |api| {
|
|
|
|
let coinbase_tx = api.build_coinbase(&block_fees)?;
|
|
|
|
add_block_with_reward(chain, txs, coinbase_tx.clone());
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
Ok(())
|
2018-05-16 15:18:09 +03:00
|
|
|
}
|
|
|
|
|
2018-07-12 18:49:37 +03:00
|
|
|
/// Award a blocks to a wallet directly
|
|
|
|
pub fn award_blocks_to_wallet<C, K>(
|
|
|
|
chain: &Chain,
|
|
|
|
wallet: Arc<Mutex<Box<WalletInst<C, K>>>>,
|
|
|
|
number: usize,
|
|
|
|
) -> Result<(), libwallet::Error>
|
2018-06-08 08:21:54 +03:00
|
|
|
where
|
2018-07-10 11:18:24 +03:00
|
|
|
C: WalletClient,
|
2018-06-08 08:21:54 +03:00
|
|
|
K: keychain::Keychain,
|
|
|
|
{
|
2018-07-12 18:49:37 +03:00
|
|
|
for _ in 0..number {
|
|
|
|
award_block_to_wallet(chain, vec![], wallet.clone())?;
|
2018-05-16 15:18:09 +03:00
|
|
|
}
|
2018-07-12 18:49:37 +03:00
|
|
|
Ok(())
|
2018-05-16 15:18:09 +03:00
|
|
|
}
|
|
|
|
|
2018-07-12 18:49:37 +03:00
|
|
|
/// dispatch a wallet (extend later to optionally dispatch a db wallet)
|
|
|
|
pub fn create_wallet<C, K>(
|
|
|
|
dir: &str,
|
|
|
|
client: C,
|
|
|
|
backend_type: BackendType,
|
|
|
|
) -> Arc<Mutex<Box<WalletInst<C, K>>>>
|
|
|
|
where
|
|
|
|
C: WalletClient + 'static,
|
|
|
|
K: keychain::Keychain + 'static,
|
|
|
|
{
|
2018-05-16 15:18:09 +03:00
|
|
|
let mut wallet_config = WalletConfig::default();
|
|
|
|
wallet_config.data_file_dir = String::from(dir);
|
2018-07-12 18:49:37 +03:00
|
|
|
let _ = wallet::WalletSeed::init_file(&wallet_config);
|
|
|
|
let mut wallet: Box<WalletInst<C, K>> = match backend_type {
|
|
|
|
BackendType::FileBackend => {
|
|
|
|
let mut wallet: FileWallet<C, K> = FileWallet::new(wallet_config.clone(), "", client)
|
|
|
|
.unwrap_or_else(|e| {
|
|
|
|
panic!("Error creating wallet: {:?} Config: {:?}", e, wallet_config)
|
|
|
|
});
|
|
|
|
Box::new(wallet)
|
|
|
|
}
|
|
|
|
BackendType::LMDBBackend => {
|
|
|
|
let mut wallet: LMDBBackend<C, K> = LMDBBackend::new(wallet_config.clone(), "", client)
|
|
|
|
.unwrap_or_else(|e| {
|
|
|
|
panic!("Error creating wallet: {:?} Config: {:?}", e, wallet_config)
|
|
|
|
});
|
|
|
|
Box::new(wallet)
|
|
|
|
}
|
|
|
|
};
|
2018-06-06 17:36:29 +03:00
|
|
|
wallet.open_with_credentials().unwrap_or_else(|e| {
|
|
|
|
panic!(
|
|
|
|
"Error initializing wallet: {:?} Config: {:?}",
|
|
|
|
e, wallet_config
|
|
|
|
)
|
|
|
|
});
|
2018-07-12 18:49:37 +03:00
|
|
|
Arc::new(Mutex::new(wallet))
|
2018-05-16 15:18:09 +03:00
|
|
|
}
|