// This file is part of Substrate. // Copyright (C) 2019-2022 Parity Technologies (UK) Ltd. // SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0 // This program 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. // This program 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 this program. If not, see . //! BABE testsuite // FIXME #2532: need to allow deprecated until refactor is done // https://github.com/paritytech/substrate/issues/2532 #![allow(deprecated)] use super::*; use authorship::claim_slot; use futures::executor::block_on; use log::debug; use rand::RngCore; use rand_chacha::{rand_core::SeedableRng, ChaChaRng}; use sc_block_builder::{BlockBuilder, BlockBuilderProvider}; use sc_client_api::{backend::TransactionFor, BlockchainEvents, Finalizer}; use sc_consensus::{BoxBlockImport, BoxJustificationImport}; use sc_consensus_slots::BackoffAuthoringOnFinalizedHeadLagging; use sc_keystore::LocalKeystore; use sc_network::config::ProtocolConfig; use sc_network_test::{Block as TestBlock, *}; use sp_application_crypto::key_types::BABE; use sp_consensus::{AlwaysCanAuthor, DisableProofRecording, NoNetwork as DummyOracle, Proposal}; use sp_consensus_babe::{ inherents::InherentDataProvider, make_transcript, make_transcript_data, AllowedSlots, AuthorityPair, Slot, }; use sp_core::crypto::Pair; use sp_keystore::{vrf::make_transcript as transcript_from_data, SyncCryptoStore}; use sp_runtime::{ generic::{Digest, DigestItem}, traits::Block as BlockT, }; use sp_timestamp::InherentDataProvider as TimestampInherentDataProvider; use std::{cell::RefCell, task::Poll, time::Duration}; type Item = DigestItem; type Error = sp_blockchain::Error; type TestClient = substrate_test_runtime_client::client::Client< substrate_test_runtime_client::Backend, substrate_test_runtime_client::ExecutorDispatch, TestBlock, substrate_test_runtime_client::runtime::RuntimeApi, >; #[derive(Copy, Clone, PartialEq)] enum Stage { PreSeal, PostSeal, } type Mutator = Arc; type BabeBlockImport = PanickingBlockImport>>; #[derive(Clone)] struct DummyFactory { client: Arc, epoch_changes: SharedEpochChanges, config: Config, mutator: Mutator, } struct DummyProposer { factory: DummyFactory, parent_hash: Hash, parent_number: u64, parent_slot: Slot, } impl Environment for DummyFactory { type CreateProposer = future::Ready>; type Proposer = DummyProposer; type Error = Error; fn init(&mut self, parent_header: &::Header) -> Self::CreateProposer { let parent_slot = crate::find_pre_digest::(parent_header) .expect("parent header has a pre-digest") .slot(); future::ready(Ok(DummyProposer { factory: self.clone(), parent_hash: parent_header.hash(), parent_number: *parent_header.number(), parent_slot, })) } } impl DummyProposer { fn propose_with( &mut self, pre_digests: Digest, ) -> future::Ready< Result< Proposal< TestBlock, sc_client_api::TransactionFor, (), >, Error, >, > { let block_builder = self .factory .client .new_block_at(&BlockId::Hash(self.parent_hash), pre_digests, false) .unwrap(); let mut block = match block_builder.build().map_err(|e| e.into()) { Ok(b) => b.block, Err(e) => return future::ready(Err(e)), }; let this_slot = crate::find_pre_digest::(block.header()) .expect("baked block has valid pre-digest") .slot(); // figure out if we should add a consensus digest, since the test runtime // doesn't. let epoch_changes = self.factory.epoch_changes.shared_data(); let epoch = epoch_changes .epoch_data_for_child_of( descendent_query(&*self.factory.client), &self.parent_hash, self.parent_number, this_slot, |slot| Epoch::genesis(self.factory.config.genesis_config(), slot), ) .expect("client has data to find epoch") .expect("can compute epoch for baked block"); let first_in_epoch = self.parent_slot < epoch.start_slot; if first_in_epoch { // push a `Consensus` digest signalling next change. // we just reuse the same randomness and authorities as the prior // epoch. this will break when we add light client support, since // that will re-check the randomness logic off-chain. let digest_data = ConsensusLog::NextEpochData(NextEpochDescriptor { authorities: epoch.authorities.clone(), randomness: epoch.randomness.clone(), }) .encode(); let digest = DigestItem::Consensus(BABE_ENGINE_ID, digest_data); block.header.digest_mut().push(digest) } // mutate the block header according to the mutator. (self.factory.mutator)(&mut block.header, Stage::PreSeal); future::ready(Ok(Proposal { block, proof: (), storage_changes: Default::default() })) } } impl Proposer for DummyProposer { type Error = Error; type Transaction = sc_client_api::TransactionFor; type Proposal = future::Ready, Error>>; type ProofRecording = DisableProofRecording; type Proof = (); fn propose( mut self, _: InherentData, pre_digests: Digest, _: Duration, _: Option, ) -> Self::Proposal { self.propose_with(pre_digests) } } thread_local! { static MUTATOR: RefCell = RefCell::new(Arc::new(|_, _|())); } #[derive(Clone)] pub struct PanickingBlockImport(B); #[async_trait::async_trait] impl> BlockImport for PanickingBlockImport where B::Transaction: Send, B: Send, { type Error = B::Error; type Transaction = B::Transaction; async fn import_block( &mut self, block: BlockImportParams, new_cache: HashMap>, ) -> Result { Ok(self.0.import_block(block, new_cache).await.expect("importing block failed")) } async fn check_block( &mut self, block: BlockCheckParams, ) -> Result { Ok(self.0.check_block(block).await.expect("checking block failed")) } } type BabePeer = Peer, BabeBlockImport>; pub struct BabeTestNet { peers: Vec, } type TestHeader = ::Header; type TestSelectChain = substrate_test_runtime_client::LongestChain; pub struct TestVerifier { inner: BabeVerifier< TestBlock, PeersFullClient, TestSelectChain, AlwaysCanAuthor, Box< dyn CreateInherentDataProviders< TestBlock, (), InherentDataProviders = (TimestampInherentDataProvider, InherentDataProvider), >, >, >, mutator: Mutator, } #[async_trait::async_trait] impl Verifier for TestVerifier { /// Verify the given data and return the BlockImportParams and an optional /// new set of validators to import. If not, err with an Error-Message /// presented to the User in the logs. async fn verify( &mut self, mut block: BlockImportParams, ) -> Result<(BlockImportParams, Option)>>), String> { // apply post-sealing mutations (i.e. stripping seal, if desired). (self.mutator)(&mut block.header, Stage::PostSeal); self.inner.verify(block).await } } pub struct PeerData { link: BabeLink, block_import: Mutex< Option< BoxBlockImport< TestBlock, TransactionFor, >, >, >, } impl TestNetFactory for BabeTestNet { type Verifier = TestVerifier; type PeerData = Option; type BlockImport = BabeBlockImport; /// Create new test network with peers and given config. fn from_config(_config: &ProtocolConfig) -> Self { debug!(target: "babe", "Creating test network from config"); BabeTestNet { peers: Vec::new() } } fn make_block_import( &self, client: PeersClient, ) -> ( BlockImportAdapter, Option>, Option, ) { let client = client.as_client(); let config = Config::get(&*client).expect("config available"); let (block_import, link) = crate::block_import(config, client.clone(), client.clone()) .expect("can initialize block-import"); let block_import = PanickingBlockImport(block_import); let data_block_import = Mutex::new(Some(Box::new(block_import.clone()) as BoxBlockImport<_, _>)); ( BlockImportAdapter::new(block_import), None, Some(PeerData { link, block_import: data_block_import }), ) } fn make_verifier( &self, client: PeersClient, _cfg: &ProtocolConfig, maybe_link: &Option, ) -> Self::Verifier { use substrate_test_runtime_client::DefaultTestClientBuilderExt; let client = client.as_client(); trace!(target: "babe", "Creating a verifier"); // ensure block import and verifier are linked correctly. let data = maybe_link .as_ref() .expect("babe link always provided to verifier instantiation"); let (_, longest_chain) = TestClientBuilder::new().build_with_longest_chain(); TestVerifier { inner: BabeVerifier { client: client.clone(), select_chain: longest_chain, create_inherent_data_providers: Box::new(|_, _| async { let timestamp = TimestampInherentDataProvider::from_system_time(); let slot = InherentDataProvider::from_timestamp_and_slot_duration( *timestamp, SlotDuration::from_millis(6000), ); Ok((timestamp, slot)) }), config: data.link.config.clone(), epoch_changes: data.link.epoch_changes.clone(), can_author_with: AlwaysCanAuthor, telemetry: None, }, mutator: MUTATOR.with(|m| m.borrow().clone()), } } fn peer(&mut self, i: usize) -> &mut BabePeer { trace!(target: "babe", "Retrieving a peer"); &mut self.peers[i] } fn peers(&self) -> &Vec { trace!(target: "babe", "Retrieving peers"); &self.peers } fn mut_peers)>(&mut self, closure: F) { closure(&mut self.peers); } } #[test] #[should_panic] fn rejects_empty_block() { sp_tracing::try_init_simple(); let mut net = BabeTestNet::new(3); let block_builder = |builder: BlockBuilder<_, _, _>| builder.build().unwrap().block; net.mut_peers(|peer| { peer[0].generate_blocks(1, BlockOrigin::NetworkInitialSync, block_builder); }) } fn run_one_test(mutator: impl Fn(&mut TestHeader, Stage) + Send + Sync + 'static) { sp_tracing::try_init_simple(); let mutator = Arc::new(mutator) as Mutator; MUTATOR.with(|m| *m.borrow_mut() = mutator.clone()); let net = BabeTestNet::new(3); let peers = &[(0, "//Alice"), (1, "//Bob"), (2, "//Charlie")]; let net = Arc::new(Mutex::new(net)); let mut import_notifications = Vec::new(); let mut babe_futures = Vec::new(); let mut keystore_paths = Vec::new(); for (peer_id, seed) in peers { let mut net = net.lock(); let peer = net.peer(*peer_id); let client = peer.client().as_client(); let select_chain = peer.select_chain().expect("Full client has select_chain"); let keystore_path = tempfile::tempdir().expect("Creates keystore path"); let keystore: SyncCryptoStorePtr = Arc::new(LocalKeystore::open(keystore_path.path(), None).expect("Creates keystore")); SyncCryptoStore::sr25519_generate_new(&*keystore, BABE, Some(seed)) .expect("Generates authority key"); keystore_paths.push(keystore_path); let mut got_own = false; let mut got_other = false; let data = peer.data.as_ref().expect("babe link set up during initialization"); let environ = DummyFactory { client: client.clone(), config: data.link.config.clone(), epoch_changes: data.link.epoch_changes.clone(), mutator: mutator.clone(), }; import_notifications.push( // run each future until we get one of our own blocks with number higher than 5 // that was produced locally. client .import_notification_stream() .take_while(move |n| { future::ready( n.header.number() < &5 || { if n.origin == BlockOrigin::Own { got_own = true; } else { got_other = true; } // continue until we have at least one block of our own // and one of another peer. !(got_own && got_other) }, ) }) .for_each(|_| future::ready(())), ); babe_futures.push( start_babe(BabeParams { block_import: data.block_import.lock().take().expect("import set up during init"), select_chain, client, env: environ, sync_oracle: DummyOracle, create_inherent_data_providers: Box::new(|_, _| async { let timestamp = TimestampInherentDataProvider::from_system_time(); let slot = InherentDataProvider::from_timestamp_and_slot_duration( *timestamp, SlotDuration::from_millis(6000), ); Ok((timestamp, slot)) }), force_authoring: false, backoff_authoring_blocks: Some(BackoffAuthoringOnFinalizedHeadLagging::default()), babe_link: data.link.clone(), keystore, can_author_with: sp_consensus::AlwaysCanAuthor, justification_sync_link: (), block_proposal_slot_portion: SlotProportion::new(0.5), max_block_proposal_slot_portion: None, telemetry: None, }) .expect("Starts babe"), ); } block_on(future::select( futures::future::poll_fn(move |cx| { let mut net = net.lock(); net.poll(cx); for p in net.peers() { for (h, e) in p.failed_verifications() { panic!("Verification failed for {:?}: {}", h, e); } } Poll::<()>::Pending }), future::select(future::join_all(import_notifications), future::join_all(babe_futures)), )); } #[test] fn authoring_blocks() { run_one_test(|_, _| ()) } #[test] #[should_panic] fn rejects_missing_inherent_digest() { run_one_test(|header: &mut TestHeader, stage| { let v = std::mem::take(&mut header.digest_mut().logs); header.digest_mut().logs = v .into_iter() .filter(|v| stage == Stage::PostSeal || v.as_babe_pre_digest().is_none()) .collect() }) } #[test] #[should_panic] fn rejects_missing_seals() { run_one_test(|header: &mut TestHeader, stage| { let v = std::mem::take(&mut header.digest_mut().logs); header.digest_mut().logs = v .into_iter() .filter(|v| stage == Stage::PreSeal || v.as_babe_seal().is_none()) .collect() }) } #[test] #[should_panic] fn rejects_missing_consensus_digests() { run_one_test(|header: &mut TestHeader, stage| { let v = std::mem::take(&mut header.digest_mut().logs); header.digest_mut().logs = v .into_iter() .filter(|v| stage == Stage::PostSeal || v.as_next_epoch_descriptor().is_none()) .collect() }); } #[test] fn wrong_consensus_engine_id_rejected() { sp_tracing::try_init_simple(); let sig = AuthorityPair::generate().0.sign(b""); let bad_seal: Item = DigestItem::Seal([0; 4], sig.to_vec()); assert!(bad_seal.as_babe_pre_digest().is_none()); assert!(bad_seal.as_babe_seal().is_none()) } #[test] fn malformed_pre_digest_rejected() { sp_tracing::try_init_simple(); let bad_seal: Item = DigestItem::Seal(BABE_ENGINE_ID, [0; 64].to_vec()); assert!(bad_seal.as_babe_pre_digest().is_none()); } #[test] fn sig_is_not_pre_digest() { sp_tracing::try_init_simple(); let sig = AuthorityPair::generate().0.sign(b""); let bad_seal: Item = DigestItem::Seal(BABE_ENGINE_ID, sig.to_vec()); assert!(bad_seal.as_babe_pre_digest().is_none()); assert!(bad_seal.as_babe_seal().is_some()) } #[test] fn can_author_block() { sp_tracing::try_init_simple(); let keystore_path = tempfile::tempdir().expect("Creates keystore path"); let keystore: SyncCryptoStorePtr = Arc::new(LocalKeystore::open(keystore_path.path(), None).expect("Creates keystore")); let public = SyncCryptoStore::sr25519_generate_new(&*keystore, BABE, Some("//Alice")) .expect("Generates authority pair"); let mut i = 0; let epoch = Epoch { start_slot: 0.into(), authorities: vec![(public.into(), 1)], randomness: [0; 32], epoch_index: 1, duration: 100, config: BabeEpochConfiguration { c: (3, 10), allowed_slots: AllowedSlots::PrimaryAndSecondaryPlainSlots, }, }; let mut config = crate::BabeGenesisConfiguration { slot_duration: 1000, epoch_length: 100, c: (3, 10), genesis_authorities: Vec::new(), randomness: [0; 32], allowed_slots: AllowedSlots::PrimaryAndSecondaryPlainSlots, }; // with secondary slots enabled it should never be empty match claim_slot(i.into(), &epoch, &keystore) { None => i += 1, Some(s) => debug!(target: "babe", "Authored block {:?}", s.0), } // otherwise with only vrf-based primary slots we might need to try a couple // of times. config.allowed_slots = AllowedSlots::PrimarySlots; loop { match claim_slot(i.into(), &epoch, &keystore) { None => i += 1, Some(s) => { debug!(target: "babe", "Authored block {:?}", s.0); break }, } } } // Propose and import a new BABE block on top of the given parent. fn propose_and_import_block( parent: &TestHeader, slot: Option, proposer_factory: &mut DummyFactory, block_import: &mut BoxBlockImport, ) -> Hash { let mut proposer = block_on(proposer_factory.init(parent)).unwrap(); let slot = slot.unwrap_or_else(|| { let parent_pre_digest = find_pre_digest::(parent).unwrap(); parent_pre_digest.slot() + 1 }); let pre_digest = sp_runtime::generic::Digest { logs: vec![Item::babe_pre_digest(PreDigest::SecondaryPlain(SecondaryPlainPreDigest { authority_index: 0, slot, }))], }; let parent_hash = parent.hash(); let mut block = block_on(proposer.propose_with(pre_digest)).unwrap().block; let epoch_descriptor = proposer_factory .epoch_changes .shared_data() .epoch_descriptor_for_child_of( descendent_query(&*proposer_factory.client), &parent_hash, *parent.number(), slot, ) .unwrap() .unwrap(); let seal = { // sign the pre-sealed hash of the block and then // add it to a digest item. let pair = AuthorityPair::from_seed(&[1; 32]); let pre_hash = block.header.hash(); let signature = pair.sign(pre_hash.as_ref()); Item::babe_seal(signature) }; let post_hash = { block.header.digest_mut().push(seal.clone()); let h = block.header.hash(); block.header.digest_mut().pop(); h }; let mut import = BlockImportParams::new(BlockOrigin::Own, block.header); import.post_digests.push(seal); import.body = Some(block.extrinsics); import.intermediates.insert( Cow::from(INTERMEDIATE_KEY), Box::new(BabeIntermediate:: { epoch_descriptor }) as Box<_>, ); import.fork_choice = Some(ForkChoiceStrategy::LongestChain); let import_result = block_on(block_import.import_block(import, Default::default())).unwrap(); match import_result { ImportResult::Imported(_) => {}, _ => panic!("expected block to be imported"), } post_hash } // Propose and import n valid BABE blocks that are built on top of the given parent. // The proposer takes care of producing epoch change digests according to the epoch // duration (which is set to 6 slots in the test runtime). fn propose_and_import_blocks( client: &PeersFullClient, proposer_factory: &mut DummyFactory, block_import: &mut BoxBlockImport, parent_id: BlockId, n: usize, ) -> Vec { let mut hashes = Vec::with_capacity(n); let mut parent_header = client.header(&parent_id).unwrap().unwrap(); for _ in 0..n { let block_hash = propose_and_import_block(&parent_header, None, proposer_factory, block_import); hashes.push(block_hash); parent_header = client.header(&BlockId::Hash(block_hash)).unwrap().unwrap(); } hashes } #[test] fn importing_block_one_sets_genesis_epoch() { let mut net = BabeTestNet::new(1); let peer = net.peer(0); let data = peer.data.as_ref().expect("babe link set up during initialization"); let client = peer.client().as_client(); let mut proposer_factory = DummyFactory { client: client.clone(), config: data.link.config.clone(), epoch_changes: data.link.epoch_changes.clone(), mutator: Arc::new(|_, _| ()), }; let mut block_import = data.block_import.lock().take().expect("import set up during init"); let genesis_header = client.header(&BlockId::Number(0)).unwrap().unwrap(); let block_hash = propose_and_import_block( &genesis_header, Some(999.into()), &mut proposer_factory, &mut block_import, ); let genesis_epoch = Epoch::genesis(data.link.config.genesis_config(), 999.into()); let epoch_changes = data.link.epoch_changes.shared_data(); let epoch_for_second_block = epoch_changes .epoch_data_for_child_of(descendent_query(&*client), &block_hash, 1, 1000.into(), |slot| { Epoch::genesis(data.link.config.genesis_config(), slot) }) .unwrap() .unwrap(); assert_eq!(epoch_for_second_block, genesis_epoch); } #[test] fn revert_prunes_epoch_changes_and_removes_weights() { let mut net = BabeTestNet::new(1); let peer = net.peer(0); let data = peer.data.as_ref().expect("babe link set up during initialization"); let client = peer.client().as_client(); let backend = peer.client().as_backend(); let mut block_import = data.block_import.lock().take().expect("import set up during init"); let epoch_changes = data.link.epoch_changes.clone(); let mut proposer_factory = DummyFactory { client: client.clone(), config: data.link.config.clone(), epoch_changes: data.link.epoch_changes.clone(), mutator: Arc::new(|_, _| ()), }; let mut propose_and_import_blocks_wrap = |parent_id, n| { propose_and_import_blocks(&client, &mut proposer_factory, &mut block_import, parent_id, n) }; // Test scenario. // Information for epoch 19 is produced on three different forks at block #13. // One branch starts before the revert point (epoch data should be maintained). // One branch starts after the revert point (epoch data should be removed). // // *----------------- F(#13) --#18 < fork #2 // / // A(#1) ---- B(#7) ----#8----+-----#12----- C(#13) ---- D(#19) ------#21 < canon // \ ^ \ // \ revert *---- G(#13) ---- H(#19) ---#20 < fork #3 // \ to #10 // *-----E(#7)---#11 < fork #1 let canon = propose_and_import_blocks_wrap(BlockId::Number(0), 21); let fork1 = propose_and_import_blocks_wrap(BlockId::Hash(canon[0]), 10); let fork2 = propose_and_import_blocks_wrap(BlockId::Hash(canon[7]), 10); let fork3 = propose_and_import_blocks_wrap(BlockId::Hash(canon[11]), 8); // We should be tracking a total of 9 epochs in the fork tree assert_eq!(epoch_changes.shared_data().tree().iter().count(), 8); // And only one root assert_eq!(epoch_changes.shared_data().tree().roots().count(), 1); // Revert canon chain to block #10 (best(21) - 11) revert(client.clone(), backend, 11).expect("revert should work for baked test scenario"); // Load and check epoch changes. let actual_nodes = aux_schema::load_epoch_changes::( &*client, data.link.config.genesis_config(), ) .expect("load epoch changes") .shared_data() .tree() .iter() .map(|(h, _, _)| *h) .collect::>(); let expected_nodes = vec![ canon[0], // A canon[6], // B fork2[4], // F fork1[5], // E ]; assert_eq!(actual_nodes, expected_nodes); let weight_data_check = |hashes: &[Hash], expected: bool| { hashes.iter().all(|hash| { aux_schema::load_block_weight(&*client, hash).unwrap().is_some() == expected }) }; assert!(weight_data_check(&canon[..10], true)); assert!(weight_data_check(&canon[10..], false)); assert!(weight_data_check(&fork1, true)); assert!(weight_data_check(&fork2, true)); assert!(weight_data_check(&fork3, false)); } #[test] fn importing_epoch_change_block_prunes_tree() { let mut net = BabeTestNet::new(1); let peer = net.peer(0); let data = peer.data.as_ref().expect("babe link set up during initialization"); let client = peer.client().as_client(); let mut block_import = data.block_import.lock().take().expect("import set up during init"); let epoch_changes = data.link.epoch_changes.clone(); let mut proposer_factory = DummyFactory { client: client.clone(), config: data.link.config.clone(), epoch_changes: data.link.epoch_changes.clone(), mutator: Arc::new(|_, _| ()), }; let mut propose_and_import_blocks_wrap = |parent_id, n| { propose_and_import_blocks(&client, &mut proposer_factory, &mut block_import, parent_id, n) }; // This is the block tree that we're going to use in this test. Each node // represents an epoch change block, the epoch duration is 6 slots. // // *---- F (#7) // / *------ G (#19) - H (#25) // / / // A (#1) - B (#7) - C (#13) - D (#19) - E (#25) // \ // *------ I (#25) // Create and import the canon chain and keep track of fork blocks (A, C, D) // from the diagram above. let canon_hashes = propose_and_import_blocks_wrap(BlockId::Number(0), 30); // Create the forks let fork_1 = propose_and_import_blocks_wrap(BlockId::Hash(canon_hashes[0]), 10); let fork_2 = propose_and_import_blocks_wrap(BlockId::Hash(canon_hashes[12]), 15); let fork_3 = propose_and_import_blocks_wrap(BlockId::Hash(canon_hashes[18]), 10); // We should be tracking a total of 9 epochs in the fork tree assert_eq!(epoch_changes.shared_data().tree().iter().count(), 9); // And only one root assert_eq!(epoch_changes.shared_data().tree().roots().count(), 1); // We finalize block #13 from the canon chain, so on the next epoch // change the tree should be pruned, to not contain F (#7). client.finalize_block(BlockId::Hash(canon_hashes[12]), None, false).unwrap(); propose_and_import_blocks_wrap(BlockId::Hash(client.chain_info().best_hash), 7); // at this point no hashes from the first fork must exist on the tree assert!(!epoch_changes .shared_data() .tree() .iter() .map(|(h, _, _)| h) .any(|h| fork_1.contains(h)),); // but the epoch changes from the other forks must still exist assert!(epoch_changes .shared_data() .tree() .iter() .map(|(h, _, _)| h) .any(|h| fork_2.contains(h))); assert!(epoch_changes .shared_data() .tree() .iter() .map(|(h, _, _)| h) .any(|h| fork_3.contains(h)),); // finalizing block #25 from the canon chain should prune out the second fork client.finalize_block(BlockId::Hash(canon_hashes[24]), None, false).unwrap(); propose_and_import_blocks_wrap(BlockId::Hash(client.chain_info().best_hash), 8); // at this point no hashes from the second fork must exist on the tree assert!(!epoch_changes .shared_data() .tree() .iter() .map(|(h, _, _)| h) .any(|h| fork_2.contains(h)),); // while epoch changes from the last fork should still exist assert!(epoch_changes .shared_data() .tree() .iter() .map(|(h, _, _)| h) .any(|h| fork_3.contains(h)),); } #[test] #[should_panic] fn verify_slots_are_strictly_increasing() { let mut net = BabeTestNet::new(1); let peer = net.peer(0); let data = peer.data.as_ref().expect("babe link set up during initialization"); let client = peer.client().as_client(); let mut block_import = data.block_import.lock().take().expect("import set up during init"); let mut proposer_factory = DummyFactory { client: client.clone(), config: data.link.config.clone(), epoch_changes: data.link.epoch_changes.clone(), mutator: Arc::new(|_, _| ()), }; let genesis_header = client.header(&BlockId::Number(0)).unwrap().unwrap(); // we should have no issue importing this block let b1 = propose_and_import_block( &genesis_header, Some(999.into()), &mut proposer_factory, &mut block_import, ); let b1 = client.header(&BlockId::Hash(b1)).unwrap().unwrap(); // we should fail to import this block since the slot number didn't increase. // we will panic due to the `PanickingBlockImport` defined above. propose_and_import_block(&b1, Some(999.into()), &mut proposer_factory, &mut block_import); } #[test] fn babe_transcript_generation_match() { sp_tracing::try_init_simple(); let keystore_path = tempfile::tempdir().expect("Creates keystore path"); let keystore: SyncCryptoStorePtr = Arc::new(LocalKeystore::open(keystore_path.path(), None).expect("Creates keystore")); let public = SyncCryptoStore::sr25519_generate_new(&*keystore, BABE, Some("//Alice")) .expect("Generates authority pair"); let epoch = Epoch { start_slot: 0.into(), authorities: vec![(public.into(), 1)], randomness: [0; 32], epoch_index: 1, duration: 100, config: BabeEpochConfiguration { c: (3, 10), allowed_slots: AllowedSlots::PrimaryAndSecondaryPlainSlots, }, }; let orig_transcript = make_transcript(&epoch.randomness.clone(), 1.into(), epoch.epoch_index); let new_transcript = make_transcript_data(&epoch.randomness, 1.into(), epoch.epoch_index); let test = |t: merlin::Transcript| -> [u8; 16] { let mut b = [0u8; 16]; t.build_rng().finalize(&mut ChaChaRng::from_seed([0u8; 32])).fill_bytes(&mut b); b }; debug_assert!(test(orig_transcript) == test(transcript_from_data(new_transcript))); } #[test] fn obsolete_blocks_aux_data_cleanup() { let mut net = BabeTestNet::new(1); let peer = net.peer(0); let data = peer.data.as_ref().expect("babe link set up during initialization"); let client = peer.client().as_client(); // Register the handler (as done by `babe_start`) let client_clone = client.clone(); let on_finality = move |summary: &FinalityNotification| { aux_storage_cleanup(client_clone.as_ref(), summary) }; client.register_finality_action(Box::new(on_finality)); let mut proposer_factory = DummyFactory { client: client.clone(), config: data.link.config.clone(), epoch_changes: data.link.epoch_changes.clone(), mutator: Arc::new(|_, _| ()), }; let mut block_import = data.block_import.lock().take().expect("import set up during init"); let mut propose_and_import_blocks_wrap = |parent_id, n| { propose_and_import_blocks(&client, &mut proposer_factory, &mut block_import, parent_id, n) }; let aux_data_check = |hashes: &[Hash], expected: bool| { hashes.iter().all(|hash| { aux_schema::load_block_weight(&*peer.client().as_backend(), hash) .unwrap() .is_some() == expected }) }; // Create the following test scenario: // // /--- --B3 --- B4 ( < fork2 ) // G --- A1 --- A2 --- A3 --- A4 ( < fork1 ) // \-----C4 --- C5 ( < fork3 ) let fork1_hashes = propose_and_import_blocks_wrap(BlockId::Number(0), 4); let fork2_hashes = propose_and_import_blocks_wrap(BlockId::Number(0), 2); let fork3_hashes = propose_and_import_blocks_wrap(BlockId::Number(3), 2); // Check that aux data is present for all but the genesis block. assert!(aux_data_check(&[client.chain_info().genesis_hash], false)); assert!(aux_data_check(&fork1_hashes, true)); assert!(aux_data_check(&fork2_hashes, true)); assert!(aux_data_check(&fork3_hashes, true)); // Finalize A3 client.finalize_block(BlockId::Number(3), None, true).unwrap(); // Wiped: A1, A2 assert!(aux_data_check(&fork1_hashes[..2], false)); // Present: A3, A4 assert!(aux_data_check(&fork1_hashes[2..], true)); // Wiped: B3, B4 assert!(aux_data_check(&fork2_hashes, false)); // Present C4, C5 assert!(aux_data_check(&fork3_hashes, true)); client.finalize_block(BlockId::Number(4), None, true).unwrap(); // Wiped: A3 assert!(aux_data_check(&fork1_hashes[2..3], false)); // Present: A4 assert!(aux_data_check(&fork1_hashes[3..], true)); // Present C4, C5 assert!(aux_data_check(&fork3_hashes, true)); }