2018-03-05 22:33:44 +03:00
|
|
|
// Copyright 2018 The Grin Developers
|
2017-08-29 19:32:45 +03:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
extern crate env_logger;
|
|
|
|
extern crate grin_chain as chain;
|
|
|
|
extern crate grin_core as core;
|
2017-10-03 03:02:31 +03:00
|
|
|
extern crate grin_keychain as keychain;
|
2018-06-22 11:08:06 +03:00
|
|
|
extern crate grin_store as store;
|
2018-05-09 12:15:58 +03:00
|
|
|
extern crate grin_wallet as wallet;
|
2017-08-29 19:32:45 +03:00
|
|
|
extern crate rand;
|
|
|
|
|
|
|
|
use std::fs;
|
2018-06-22 11:08:06 +03:00
|
|
|
use std::sync::Arc;
|
2017-08-29 19:32:45 +03:00
|
|
|
|
2017-12-16 03:27:37 +03:00
|
|
|
use chain::{ChainStore, Tip};
|
2018-06-08 08:21:54 +03:00
|
|
|
use core::core::hash::Hashed;
|
|
|
|
use core::core::target::Difficulty;
|
2018-06-14 15:16:14 +03:00
|
|
|
use core::core::{Block, BlockHeader};
|
|
|
|
use core::global::{self, ChainTypes};
|
2018-04-24 11:18:24 +03:00
|
|
|
use core::pow;
|
2018-06-08 08:21:54 +03:00
|
|
|
use keychain::{ExtKeychain, Keychain};
|
2018-05-30 19:48:32 +03:00
|
|
|
use wallet::libtx;
|
2018-05-09 12:15:58 +03:00
|
|
|
|
2017-08-29 19:32:45 +03:00
|
|
|
fn clean_output_dir(dir_name: &str) {
|
|
|
|
let _ = fs::remove_dir_all(dir_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_various_store_indices() {
|
2018-06-15 01:59:53 +03:00
|
|
|
match env_logger::try_init() {
|
|
|
|
Ok(_) => println!("Initializing env logger"),
|
|
|
|
Err(e) => println!("env logger already initialized: {:?}", e),
|
|
|
|
};
|
2018-03-15 18:37:48 +03:00
|
|
|
let chain_dir = ".grin_idx_1";
|
|
|
|
clean_output_dir(chain_dir);
|
2017-08-29 19:32:45 +03:00
|
|
|
|
2018-06-08 08:21:54 +03:00
|
|
|
let keychain = ExtKeychain::from_random_seed().unwrap();
|
2017-10-13 07:45:07 +03:00
|
|
|
let key_id = keychain.derive_key_id(1).unwrap();
|
2018-06-22 11:08:06 +03:00
|
|
|
let db_env = Arc::new(store::new_env(chain_dir.to_string()));
|
2017-10-03 03:02:31 +03:00
|
|
|
|
2018-06-22 11:08:06 +03:00
|
|
|
let chain_store = chain::store::ChainStore::new(db_env).unwrap();
|
2017-12-04 22:16:57 +03:00
|
|
|
global::set_mining_mode(ChainTypes::AutomatedTesting);
|
2018-04-24 11:18:24 +03:00
|
|
|
let genesis = pow::mine_genesis_block().unwrap();
|
2018-05-30 19:48:32 +03:00
|
|
|
let reward = libtx::reward::output(&keychain, &key_id, 0, 1).unwrap();
|
2018-05-09 12:15:58 +03:00
|
|
|
|
|
|
|
let block = Block::new(&genesis.header, vec![], Difficulty::one(), reward).unwrap();
|
2017-08-29 19:32:45 +03:00
|
|
|
let block_hash = block.hash();
|
|
|
|
|
2018-06-22 11:08:06 +03:00
|
|
|
{
|
|
|
|
let batch = chain_store.batch().unwrap();
|
|
|
|
batch.save_block(&genesis).unwrap();
|
|
|
|
batch
|
|
|
|
.setup_height(&genesis.header, &Tip::new(genesis.hash()))
|
|
|
|
.unwrap();
|
|
|
|
batch.commit().unwrap();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let batch = chain_store.batch().unwrap();
|
|
|
|
batch.save_block(&block).unwrap();
|
|
|
|
batch
|
|
|
|
.setup_height(&block.header, &Tip::from_block(&block.header))
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
batch.commit().unwrap();
|
|
|
|
}
|
2017-08-29 19:32:45 +03:00
|
|
|
|
|
|
|
let block_header = chain_store.get_block_header(&block_hash).unwrap();
|
|
|
|
assert_eq!(block_header.hash(), block_hash);
|
|
|
|
|
|
|
|
let block_header = chain_store.get_header_by_height(1).unwrap();
|
|
|
|
assert_eq!(block_header.hash(), block_hash);
|
|
|
|
}
|
2018-03-09 21:59:15 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_store_header_height() {
|
2018-06-15 01:59:53 +03:00
|
|
|
match env_logger::try_init() {
|
|
|
|
Ok(_) => println!("Initializing env logger"),
|
|
|
|
Err(e) => println!("env logger already initialized: {:?}", e),
|
|
|
|
};
|
2018-03-15 18:37:48 +03:00
|
|
|
let chain_dir = ".grin_idx_2";
|
|
|
|
clean_output_dir(chain_dir);
|
2018-03-09 21:59:15 +03:00
|
|
|
|
2018-06-22 11:08:06 +03:00
|
|
|
let db_env = Arc::new(store::new_env(chain_dir.to_string()));
|
|
|
|
let chain_store = chain::store::ChainStore::new(db_env).unwrap();
|
2018-03-09 21:59:15 +03:00
|
|
|
|
|
|
|
let mut block_header = BlockHeader::default();
|
|
|
|
block_header.height = 1;
|
|
|
|
|
2018-06-22 11:08:06 +03:00
|
|
|
{
|
|
|
|
let batch = chain_store.batch().unwrap();
|
|
|
|
batch.save_block_header(&block_header).unwrap();
|
|
|
|
batch.save_header_height(&block_header).unwrap();
|
|
|
|
batch.commit().unwrap();
|
|
|
|
}
|
2018-03-09 21:59:15 +03:00
|
|
|
|
|
|
|
let stored_block_header = chain_store.get_header_by_height(1).unwrap();
|
|
|
|
assert_eq!(block_header.hash(), stored_block_header.hash());
|
|
|
|
|
2018-06-22 11:08:06 +03:00
|
|
|
{
|
|
|
|
let batch = chain_store.batch().unwrap();
|
|
|
|
batch.delete_header_by_height(1).unwrap();
|
|
|
|
batch.commit().unwrap();
|
|
|
|
}
|
2018-03-09 21:59:15 +03:00
|
|
|
|
|
|
|
let result = chain_store.get_header_by_height(1);
|
|
|
|
assert_eq!(result.is_err(), true);
|
|
|
|
}
|