* fixed naming of rlp modules * RlpStream cleanup * appending short rlp lists (0...55 bytes) is 25% faster * RlpStream does not use bytes module, nor trait Stream * removed unused code from rlp module * compiling ethcore-util with new rlp serialization * compiling parity with new rlp serialization * fixed compiling ethcore-light with new rlp serialization * fixed compiling ethsync with new rlp serialization * removed redundant comment, print * removed redundant double-space * replace usage of WriteBytesExt with ByteOrder
142 lines
4.6 KiB
Rust
142 lines
4.6 KiB
Rust
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Block chunker and rebuilder tests.
|
|
|
|
use devtools::RandomTempPath;
|
|
use error::Error;
|
|
|
|
use blockchain::generator::{ChainGenerator, ChainIterator, BlockFinalizer};
|
|
use blockchain::BlockChain;
|
|
use snapshot::{chunk_blocks, BlockRebuilder, Error as SnapshotError, Progress};
|
|
use snapshot::io::{PackedReader, PackedWriter, SnapshotReader, SnapshotWriter};
|
|
|
|
use util::{Mutex, snappy};
|
|
use util::kvdb::{Database, DatabaseConfig};
|
|
|
|
use std::collections::HashMap;
|
|
use std::sync::Arc;
|
|
use std::sync::atomic::AtomicBool;
|
|
|
|
fn chunk_and_restore(amount: u64) {
|
|
let mut canon_chain = ChainGenerator::default();
|
|
let mut finalizer = BlockFinalizer::default();
|
|
let genesis = canon_chain.generate(&mut finalizer).unwrap();
|
|
let db_cfg = DatabaseConfig::with_columns(::db::NUM_COLUMNS);
|
|
|
|
let engine = Arc::new(::engines::NullEngine::default());
|
|
let orig_path = RandomTempPath::create_dir();
|
|
let new_path = RandomTempPath::create_dir();
|
|
let mut snapshot_path = new_path.as_path().to_owned();
|
|
snapshot_path.push("SNAP");
|
|
|
|
let old_db = Arc::new(Database::open(&db_cfg, orig_path.as_str()).unwrap());
|
|
let bc = BlockChain::new(Default::default(), &genesis, old_db.clone());
|
|
|
|
// build the blockchain.
|
|
let mut batch = old_db.transaction();
|
|
for _ in 0..amount {
|
|
let block = canon_chain.generate(&mut finalizer).unwrap();
|
|
bc.insert_block(&mut batch, &block, vec![]);
|
|
bc.commit();
|
|
}
|
|
|
|
old_db.write(batch).unwrap();
|
|
|
|
|
|
let best_hash = bc.best_block_hash();
|
|
|
|
// snapshot it.
|
|
let writer = Mutex::new(PackedWriter::new(&snapshot_path).unwrap());
|
|
let block_hashes = chunk_blocks(&bc, best_hash, &writer, &Progress::default()).unwrap();
|
|
let manifest = ::snapshot::ManifestData {
|
|
state_hashes: Vec::new(),
|
|
block_hashes: block_hashes,
|
|
state_root: ::util::sha3::SHA3_NULL_RLP,
|
|
block_number: amount,
|
|
block_hash: best_hash,
|
|
};
|
|
|
|
writer.into_inner().finish(manifest.clone()).unwrap();
|
|
|
|
// restore it.
|
|
let new_db = Arc::new(Database::open(&db_cfg, new_path.as_str()).unwrap());
|
|
let new_chain = BlockChain::new(Default::default(), &genesis, new_db.clone());
|
|
let mut rebuilder = BlockRebuilder::new(new_chain, new_db.clone(), &manifest).unwrap();
|
|
let reader = PackedReader::new(&snapshot_path).unwrap().unwrap();
|
|
let flag = AtomicBool::new(true);
|
|
for chunk_hash in &reader.manifest().block_hashes {
|
|
let compressed = reader.chunk(*chunk_hash).unwrap();
|
|
let chunk = snappy::decompress(&compressed).unwrap();
|
|
rebuilder.feed(&chunk, engine.as_ref(), &flag).unwrap();
|
|
}
|
|
|
|
rebuilder.finalize(HashMap::new()).unwrap();
|
|
|
|
// and test it.
|
|
let new_chain = BlockChain::new(Default::default(), &genesis, new_db);
|
|
assert_eq!(new_chain.best_block_hash(), best_hash);
|
|
}
|
|
|
|
#[test]
|
|
fn chunk_and_restore_500() { chunk_and_restore(500) }
|
|
|
|
#[test]
|
|
fn chunk_and_restore_40k() { chunk_and_restore(40000) }
|
|
|
|
#[test]
|
|
fn checks_flag() {
|
|
use rlp::RlpStream;
|
|
use util::H256;
|
|
|
|
let mut stream = RlpStream::new_list(5);
|
|
|
|
stream.append(&100u64)
|
|
.append(&H256::default())
|
|
.append(&(!0u64));
|
|
|
|
stream.append_empty_data().append_empty_data();
|
|
|
|
let genesis = {
|
|
let mut canon_chain = ChainGenerator::default();
|
|
let mut finalizer = BlockFinalizer::default();
|
|
canon_chain.generate(&mut finalizer).unwrap()
|
|
};
|
|
|
|
let chunk = stream.out();
|
|
let path = RandomTempPath::create_dir();
|
|
|
|
let db_cfg = DatabaseConfig::with_columns(::db::NUM_COLUMNS);
|
|
let db = Arc::new(Database::open(&db_cfg, path.as_str()).unwrap());
|
|
let engine = Arc::new(::engines::NullEngine::default());
|
|
let chain = BlockChain::new(Default::default(), &genesis, db.clone());
|
|
|
|
let manifest = ::snapshot::ManifestData {
|
|
state_hashes: Vec::new(),
|
|
block_hashes: Vec::new(),
|
|
state_root: ::util::sha3::SHA3_NULL_RLP,
|
|
block_number: 102,
|
|
block_hash: H256::default(),
|
|
};
|
|
|
|
let mut rebuilder = BlockRebuilder::new(chain, db.clone(), &manifest).unwrap();
|
|
|
|
match rebuilder.feed(&chunk, engine.as_ref(), &AtomicBool::new(false)) {
|
|
Err(Error::Snapshot(SnapshotError::RestorationAborted)) => {}
|
|
_ => panic!("Wrong result on abort flag set")
|
|
}
|
|
}
|