-
Notifications
You must be signed in to change notification settings - Fork 632
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(ND-322)feat: undo-block tool - revert the current head of the chain …
…to its previous block
- Loading branch information
Showing
12 changed files
with
348 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ mod runtimes; | |
#[cfg(feature = "sandbox")] | ||
mod sandbox; | ||
mod sharding_upgrade; | ||
mod undo_block; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
use near_chain::{ | ||
ChainGenesis, ChainStore, ChainStoreAccess, Provenance, RuntimeWithEpochManagerAdapter, | ||
}; | ||
use near_chain_configs::Genesis; | ||
use near_client::test_utils::TestEnv; | ||
use near_o11y::testonly::init_test_logger; | ||
use near_store::test_utils::create_test_store; | ||
use near_store::Store; | ||
use near_undo_block::undo_block; | ||
use nearcore::config::GenesisExt; | ||
use std::path::Path; | ||
use std::sync::Arc; | ||
|
||
/// Setup environment with one Near client for testing. | ||
fn setup_env( | ||
genesis: &Genesis, | ||
store: Store, | ||
) -> (TestEnv, Arc<dyn RuntimeWithEpochManagerAdapter>) { | ||
let chain_genesis = ChainGenesis::new(genesis); | ||
let runtime: Arc<dyn RuntimeWithEpochManagerAdapter> = | ||
nearcore::NightshadeRuntime::test(Path::new("../../../.."), store, genesis); | ||
(TestEnv::builder(chain_genesis).runtime_adapters(vec![runtime.clone()]).build(), runtime) | ||
} | ||
|
||
// Checks that Near client can successfully undo block on given height and then produce and process block normally after restart | ||
fn test_undo_block(epoch_length: u64, stop_height: u64) { | ||
init_test_logger(); | ||
|
||
let save_trie_changes = true; | ||
|
||
let mut genesis = Genesis::test(vec!["test0".parse().unwrap(), "test1".parse().unwrap()], 1); | ||
genesis.config.epoch_length = epoch_length; | ||
|
||
let store = create_test_store(); | ||
let (mut env, runtime) = setup_env(&genesis, store.clone()); | ||
|
||
for i in 1..=stop_height { | ||
let block = env.clients[0].produce_block(i).unwrap().unwrap(); | ||
env.process_block(0, block, Provenance::PRODUCED); | ||
} | ||
|
||
let mut chain_store = | ||
ChainStore::new(store.clone(), genesis.config.genesis_height, save_trie_changes); | ||
|
||
let current_head = chain_store.head().unwrap(); | ||
let prev_block_hash = current_head.prev_block_hash; | ||
|
||
undo_block(&mut chain_store, &*runtime).unwrap(); | ||
|
||
// after undo, the current head should be the prev_block_hash | ||
assert_eq!(chain_store.head().unwrap().last_block_hash.as_bytes(), prev_block_hash.as_bytes()); | ||
assert_eq!(chain_store.head().unwrap().height, stop_height - 1); | ||
|
||
// set up an environment again with the same store | ||
let (mut env, _) = setup_env(&genesis, store.clone()); | ||
// the new env should be able to produce block normally | ||
let block = env.clients[0].produce_block(stop_height).unwrap().unwrap(); | ||
env.process_block(0, block, Provenance::PRODUCED); | ||
|
||
// after processing the new block, the head should now be at stop_height | ||
assert_eq!(chain_store.head().unwrap().height, stop_height); | ||
} | ||
|
||
#[test] | ||
fn test_undo_block_middle_of_epoch() { | ||
test_undo_block(5, 3) | ||
} | ||
|
||
#[test] | ||
fn test_undo_block_end_of_epoch() { | ||
test_undo_block(5, 5) | ||
} | ||
|
||
#[test] | ||
fn test_undo_block_start_of_epoch() { | ||
test_undo_block(5, 6) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "near-undo-block" | ||
version = "0.0.0" | ||
authors.workspace = true | ||
publish = false | ||
edition.workspace = true | ||
|
||
[dependencies] | ||
anyhow.workspace = true | ||
clap.workspace = true | ||
tracing.workspace = true | ||
chrono.workspace = true | ||
|
||
near-chain.workspace = true | ||
near-chain-configs.workspace = true | ||
near-store.workspace = true | ||
nearcore.workspace = true | ||
near-primitives.workspace = true |
Oops, something went wrong.