2018-03-05 22:33:44 +03:00
|
|
|
// Copyright 2018 The Grin Developers
|
2018-03-03 12:08:36 +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.
|
|
|
|
|
2019-07-26 10:36:24 +03:00
|
|
|
use self::core::genesis;
|
2018-12-08 02:59:40 +03:00
|
|
|
use grin_core as core;
|
|
|
|
use grin_util as util;
|
2018-03-03 12:08:36 +03:00
|
|
|
|
2019-07-26 10:36:24 +03:00
|
|
|
mod chain_test_helper;
|
2018-03-03 12:08:36 +03:00
|
|
|
|
2019-07-26 10:36:24 +03:00
|
|
|
use self::chain_test_helper::{clean_output_dir, init_chain, mine_chain};
|
2018-03-03 12:08:36 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn data_files() {
|
2019-07-26 10:36:24 +03:00
|
|
|
util::init_test_logger();
|
2018-03-03 12:08:36 +03:00
|
|
|
|
2019-07-26 10:36:24 +03:00
|
|
|
let chain_dir = ".grin_df";
|
|
|
|
clean_output_dir(chain_dir);
|
2018-03-03 12:08:36 +03:00
|
|
|
|
2019-07-26 10:36:24 +03:00
|
|
|
// Mine a few blocks on a new chain.
|
|
|
|
{
|
|
|
|
let chain = mine_chain(chain_dir, 4);
|
|
|
|
chain.validate(false).unwrap();
|
|
|
|
assert_eq!(chain.head().unwrap().height, 3);
|
|
|
|
};
|
2018-03-03 12:08:36 +03:00
|
|
|
|
2019-07-26 10:36:24 +03:00
|
|
|
// Now reload the chain from existing data files and check it is valid.
|
2018-03-03 12:08:36 +03:00
|
|
|
{
|
2019-07-26 10:36:24 +03:00
|
|
|
let chain = init_chain(chain_dir, genesis::genesis_dev());
|
2018-03-21 15:28:05 +03:00
|
|
|
chain.validate(false).unwrap();
|
2019-07-26 10:36:24 +03:00
|
|
|
assert_eq!(chain.head().unwrap().height, 3);
|
2018-03-03 12:08:36 +03:00
|
|
|
}
|
2019-07-26 10:36:24 +03:00
|
|
|
|
2019-04-16 01:00:24 +03:00
|
|
|
// Cleanup chain directory
|
|
|
|
clean_output_dir(chain_dir);
|
2018-03-03 12:08:36 +03:00
|
|
|
}
|