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.
|
|
|
|
|
2018-12-08 02:59:40 +03:00
|
|
|
use self::chain::{Error, Tip};
|
|
|
|
use self::core::core::hash::Hashed;
|
|
|
|
use self::core::core::Block;
|
|
|
|
use self::core::global::{self, ChainTypes};
|
|
|
|
use self::core::libtx;
|
|
|
|
use self::core::pow::{self, Difficulty};
|
|
|
|
use self::keychain::{ExtKeychain, ExtKeychainPath, Keychain};
|
|
|
|
use env_logger;
|
|
|
|
use grin_chain as chain;
|
|
|
|
use grin_core as core;
|
|
|
|
use grin_keychain as keychain;
|
2017-08-29 19:32:45 +03:00
|
|
|
use std::fs;
|
2018-06-22 11:08:06 +03:00
|
|
|
use std::sync::Arc;
|
2017-08-29 19:32:45 +03:00
|
|
|
|
|
|
|
fn clean_output_dir(dir_name: &str) {
|
|
|
|
let _ = fs::remove_dir_all(dir_name);
|
|
|
|
}
|
|
|
|
|
2018-11-01 12:51:32 +03:00
|
|
|
fn setup_chain(genesis: &Block, chain_store: Arc<chain::store::ChainStore>) -> Result<(), Error> {
|
|
|
|
let batch = chain_store.batch()?;
|
|
|
|
batch.save_block_header(&genesis.header)?;
|
|
|
|
batch.save_block(&genesis)?;
|
|
|
|
let head = Tip::from_header(&genesis.header);
|
|
|
|
batch.save_head(&head)?;
|
|
|
|
batch.save_block_header(&genesis.header)?;
|
|
|
|
batch.commit()?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-08-29 19:32:45 +03:00
|
|
|
#[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-12-29 01:46:21 +03:00
|
|
|
let keychain = ExtKeychain::from_random_seed(false).unwrap();
|
2018-10-10 12:11:01 +03:00
|
|
|
let key_id = ExtKeychainPath::new(1, 1, 0, 0, 0).to_identifier();
|
2017-10-03 03:02:31 +03:00
|
|
|
|
2019-02-27 12:47:46 +03:00
|
|
|
let chain_store = Arc::new(chain::store::ChainStore::new(chain_dir).unwrap());
|
2018-11-01 12:51:32 +03:00
|
|
|
|
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-09 12:15:58 +03:00
|
|
|
|
2018-11-01 12:51:32 +03:00
|
|
|
setup_chain(&genesis, chain_store.clone()).unwrap();
|
|
|
|
|
2018-12-18 21:26:34 +03:00
|
|
|
let reward = libtx::reward::output(&keychain, &key_id, 0).unwrap();
|
2018-10-18 22:18:16 +03:00
|
|
|
let block = Block::new(&genesis.header, vec![], Difficulty::min(), 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();
|
2018-11-01 12:51:32 +03:00
|
|
|
batch.save_block_header(&block.header).unwrap();
|
2018-06-22 11:08:06 +03:00
|
|
|
batch.save_block(&block).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);
|
|
|
|
|
2018-10-02 18:17:15 +03:00
|
|
|
// Test we can retrive the block from the db and that we can safely delete the
|
|
|
|
// block from the db even though the block_sums are missing.
|
|
|
|
{
|
|
|
|
// Block exists in the db.
|
|
|
|
assert!(chain_store.get_block(&block_hash).is_ok());
|
|
|
|
|
|
|
|
// Block sums do not exist (we never set them up).
|
|
|
|
assert!(chain_store.get_block_sums(&block_hash).is_err());
|
|
|
|
|
|
|
|
{
|
|
|
|
// Start a new batch and delete the block.
|
|
|
|
let batch = chain_store.batch().unwrap();
|
|
|
|
assert!(batch.delete_block(&block_hash).is_ok());
|
|
|
|
|
|
|
|
// Block is deleted within this batch.
|
|
|
|
assert!(batch.get_block(&block_hash).is_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the batch did not commit any changes to the store .
|
|
|
|
assert!(chain_store.get_block(&block_hash).is_ok());
|
|
|
|
}
|
2017-08-29 19:32:45 +03:00
|
|
|
}
|