2016-12-11 19:30:54 +01:00
|
|
|
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
|
2016-08-05 17:00:46 +02:00
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
//! State snapshotting tests.
|
|
|
|
|
2016-11-13 13:52:53 +01:00
|
|
|
use snapshot::{chunk_state, Error as SnapshotError, Progress, StateRebuilder};
|
2016-11-11 18:24:12 +01:00
|
|
|
use snapshot::account::Account;
|
2016-08-05 17:00:46 +02:00
|
|
|
use snapshot::io::{PackedReader, PackedWriter, SnapshotReader, SnapshotWriter};
|
|
|
|
use super::helpers::{compare_dbs, StateProducer};
|
|
|
|
|
2016-11-13 13:52:53 +01:00
|
|
|
use error::Error;
|
|
|
|
|
2016-09-05 12:24:03 +02:00
|
|
|
use rand::{XorShiftRng, SeedableRng};
|
2016-08-05 17:00:46 +02:00
|
|
|
use util::hash::H256;
|
|
|
|
use util::journaldb::{self, Algorithm};
|
|
|
|
use util::kvdb::{Database, DatabaseConfig};
|
|
|
|
use util::memorydb::MemoryDB;
|
|
|
|
use util::Mutex;
|
|
|
|
use devtools::RandomTempPath;
|
|
|
|
|
2016-11-11 18:24:12 +01:00
|
|
|
use util::sha3::SHA3_NULL_RLP;
|
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
use std::sync::Arc;
|
2016-11-13 13:52:53 +01:00
|
|
|
use std::sync::atomic::AtomicBool;
|
2016-08-05 17:00:46 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn snap_and_restore() {
|
|
|
|
let mut producer = StateProducer::new();
|
2016-09-05 12:24:03 +02:00
|
|
|
let mut rng = XorShiftRng::from_seed([1, 2, 3, 4]);
|
2016-08-05 17:00:46 +02:00
|
|
|
let mut old_db = MemoryDB::new();
|
2016-08-18 18:24:49 +02:00
|
|
|
let db_cfg = DatabaseConfig::with_columns(::db::NUM_COLUMNS);
|
2016-08-05 17:00:46 +02:00
|
|
|
|
|
|
|
for _ in 0..150 {
|
|
|
|
producer.tick(&mut rng, &mut old_db);
|
|
|
|
}
|
|
|
|
|
|
|
|
let snap_dir = RandomTempPath::create_dir();
|
|
|
|
let mut snap_file = snap_dir.as_path().to_owned();
|
|
|
|
snap_file.push("SNAP");
|
|
|
|
|
|
|
|
let state_root = producer.state_root();
|
|
|
|
let writer = Mutex::new(PackedWriter::new(&snap_file).unwrap());
|
|
|
|
|
2016-08-10 16:29:40 +02:00
|
|
|
let state_hashes = chunk_state(&old_db, &state_root, &writer, &Progress::default()).unwrap();
|
2016-08-05 17:00:46 +02:00
|
|
|
|
|
|
|
writer.into_inner().finish(::snapshot::ManifestData {
|
|
|
|
state_hashes: state_hashes,
|
|
|
|
block_hashes: Vec::new(),
|
|
|
|
state_root: state_root,
|
|
|
|
block_number: 0,
|
|
|
|
block_hash: H256::default(),
|
|
|
|
}).unwrap();
|
|
|
|
|
|
|
|
let mut db_path = snap_dir.as_path().to_owned();
|
|
|
|
db_path.push("db");
|
|
|
|
let db = {
|
|
|
|
let new_db = Arc::new(Database::open(&db_cfg, &db_path.to_string_lossy()).unwrap());
|
|
|
|
let mut rebuilder = StateRebuilder::new(new_db.clone(), Algorithm::Archive);
|
|
|
|
let reader = PackedReader::new(&snap_file).unwrap().unwrap();
|
|
|
|
|
2016-11-13 13:52:53 +01:00
|
|
|
let flag = AtomicBool::new(true);
|
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
for chunk_hash in &reader.manifest().state_hashes {
|
|
|
|
let raw = reader.chunk(*chunk_hash).unwrap();
|
|
|
|
let chunk = ::util::snappy::decompress(&raw).unwrap();
|
|
|
|
|
2016-11-13 13:52:53 +01:00
|
|
|
rebuilder.feed(&chunk, &flag).unwrap();
|
2016-08-05 17:00:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(rebuilder.state_root(), state_root);
|
2016-08-25 22:20:44 +02:00
|
|
|
rebuilder.check_missing().unwrap();
|
|
|
|
|
2016-08-05 17:00:46 +02:00
|
|
|
new_db
|
|
|
|
};
|
|
|
|
|
2016-08-18 18:24:49 +02:00
|
|
|
let new_db = journaldb::new(db, Algorithm::Archive, ::db::COL_STATE);
|
2016-08-05 17:00:46 +02:00
|
|
|
|
|
|
|
compare_dbs(&old_db, new_db.as_hashdb());
|
2016-08-10 16:29:40 +02:00
|
|
|
}
|
2016-11-11 18:24:12 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn get_code_from_prev_chunk() {
|
|
|
|
use std::collections::HashSet;
|
|
|
|
use rlp::{RlpStream, Stream};
|
|
|
|
use util::{HashDB, H256, FixedHash, U256, Hashable};
|
|
|
|
|
|
|
|
use account_db::{AccountDBMut, AccountDB};
|
|
|
|
|
|
|
|
let code = b"this is definitely code";
|
|
|
|
let mut used_code = HashSet::new();
|
|
|
|
let mut acc_stream = RlpStream::new_list(4);
|
|
|
|
acc_stream.append(&U256::default())
|
|
|
|
.append(&U256::default())
|
|
|
|
.append(&SHA3_NULL_RLP)
|
|
|
|
.append(&code.sha3());
|
|
|
|
|
|
|
|
let (h1, h2) = (H256::random(), H256::random());
|
|
|
|
|
|
|
|
// two accounts with the same code, one per chunk.
|
|
|
|
// first one will have code inlined,
|
|
|
|
// second will just have its hash.
|
|
|
|
let thin_rlp = acc_stream.out();
|
|
|
|
let acc1 = Account::from_thin_rlp(&thin_rlp);
|
|
|
|
let acc2 = Account::from_thin_rlp(&thin_rlp);
|
|
|
|
|
|
|
|
let mut make_chunk = |acc: Account, hash| {
|
|
|
|
let mut db = MemoryDB::new();
|
|
|
|
AccountDBMut::from_hash(&mut db, hash).insert(&code[..]);
|
|
|
|
|
|
|
|
let fat_rlp = acc.to_fat_rlp(&AccountDB::from_hash(&db, hash), &mut used_code).unwrap();
|
|
|
|
|
|
|
|
let mut stream = RlpStream::new_list(1);
|
|
|
|
stream.begin_list(2).append(&hash).append_raw(&fat_rlp, 1);
|
|
|
|
stream.out()
|
|
|
|
};
|
|
|
|
|
|
|
|
let chunk1 = make_chunk(acc1, h1);
|
|
|
|
let chunk2 = make_chunk(acc2, h2);
|
|
|
|
|
|
|
|
let db_path = RandomTempPath::create_dir();
|
|
|
|
let db_cfg = DatabaseConfig::with_columns(::db::NUM_COLUMNS);
|
|
|
|
let new_db = Arc::new(Database::open(&db_cfg, &db_path.to_string_lossy()).unwrap());
|
|
|
|
|
|
|
|
let mut rebuilder = StateRebuilder::new(new_db, Algorithm::Archive);
|
2016-11-14 14:02:19 +01:00
|
|
|
let flag = AtomicBool::new(true);
|
2016-11-11 18:24:12 +01:00
|
|
|
|
2016-11-14 14:02:19 +01:00
|
|
|
rebuilder.feed(&chunk1, &flag).unwrap();
|
|
|
|
rebuilder.feed(&chunk2, &flag).unwrap();
|
2016-11-11 18:24:12 +01:00
|
|
|
|
|
|
|
rebuilder.check_missing().unwrap();
|
2016-11-14 14:02:19 +01:00
|
|
|
}
|
|
|
|
|
2016-11-13 13:52:53 +01:00
|
|
|
#[test]
|
|
|
|
fn checks_flag() {
|
|
|
|
let mut producer = StateProducer::new();
|
|
|
|
let mut rng = XorShiftRng::from_seed([5, 6, 7, 8]);
|
|
|
|
let mut old_db = MemoryDB::new();
|
|
|
|
let db_cfg = DatabaseConfig::with_columns(::db::NUM_COLUMNS);
|
|
|
|
|
|
|
|
for _ in 0..10 {
|
|
|
|
producer.tick(&mut rng, &mut old_db);
|
|
|
|
}
|
|
|
|
|
|
|
|
let snap_dir = RandomTempPath::create_dir();
|
|
|
|
let mut snap_file = snap_dir.as_path().to_owned();
|
|
|
|
snap_file.push("SNAP");
|
|
|
|
|
|
|
|
let state_root = producer.state_root();
|
|
|
|
let writer = Mutex::new(PackedWriter::new(&snap_file).unwrap());
|
|
|
|
|
|
|
|
let state_hashes = chunk_state(&old_db, &state_root, &writer, &Progress::default()).unwrap();
|
|
|
|
|
|
|
|
writer.into_inner().finish(::snapshot::ManifestData {
|
|
|
|
state_hashes: state_hashes,
|
|
|
|
block_hashes: Vec::new(),
|
|
|
|
state_root: state_root,
|
|
|
|
block_number: 0,
|
|
|
|
block_hash: H256::default(),
|
|
|
|
}).unwrap();
|
|
|
|
|
|
|
|
let mut db_path = snap_dir.as_path().to_owned();
|
|
|
|
db_path.push("db");
|
|
|
|
{
|
|
|
|
let new_db = Arc::new(Database::open(&db_cfg, &db_path.to_string_lossy()).unwrap());
|
|
|
|
let mut rebuilder = StateRebuilder::new(new_db.clone(), Algorithm::Archive);
|
|
|
|
let reader = PackedReader::new(&snap_file).unwrap().unwrap();
|
|
|
|
|
|
|
|
let flag = AtomicBool::new(false);
|
|
|
|
|
|
|
|
for chunk_hash in &reader.manifest().state_hashes {
|
|
|
|
let raw = reader.chunk(*chunk_hash).unwrap();
|
|
|
|
let chunk = ::util::snappy::decompress(&raw).unwrap();
|
|
|
|
|
|
|
|
match rebuilder.feed(&chunk, &flag) {
|
|
|
|
Err(Error::Snapshot(SnapshotError::RestorationAborted)) => {},
|
|
|
|
_ => panic!("unexpected result when feeding with flag off"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-11 18:24:12 +01:00
|
|
|
}
|