#![allow(clippy::unwrap_in_result)]
use std::{cmp::min, time::Duration};
use color_eyre::eyre::{eyre, Report};
use futures::stream::{FuturesUnordered, StreamExt};
use tokio::time::timeout;
use tracing_futures::Instrument;
use zakura_chain::{
local_genesis::{generate_local_testnet_with_funded_keys, LocalTestnetGenesisOptions},
parameters::Network::*,
serialization::ZcashDeserialize,
};
use super::*;
const VERIFY_TIMEOUT_SECONDS: u64 = 10;
#[tokio::test(flavor = "multi_thread")]
async fn single_item_checkpoint_list_test() -> Result<(), Report> {
single_item_checkpoint_list().await
}
#[spandoc::spandoc]
async fn single_item_checkpoint_list() -> Result<(), Report> {
let _init_guard = zakura_test::init();
let block0 =
Arc::<Block>::zcash_deserialize(&zakura_test::vectors::BLOCK_MAINNET_GENESIS_BYTES[..])?;
let hash0 = block0.hash();
let genesis_checkpoint_list: BTreeMap<block::Height, block::Hash> =
[(block0.coinbase_height().unwrap(), hash0)]
.iter()
.cloned()
.collect();
let state_service = zakura_state::init_test(&Mainnet).await;
let mut checkpoint_verifier =
CheckpointVerifier::from_list(genesis_checkpoint_list, &Mainnet, None, state_service)
.map_err(|e| eyre!(e))?;
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let verify_future = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(block0.clone()),
);
let verify_response = verify_future
.map_err(|e| eyre!(e))
.await
.expect("timeout should not happen")
.expect("block should verify");
assert_eq!(verify_response, hash0);
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn multi_item_checkpoint_list_test() -> Result<(), Report> {
multi_item_checkpoint_list().await
}
#[spandoc::spandoc]
async fn multi_item_checkpoint_list() -> Result<(), Report> {
let _init_guard = zakura_test::init();
let mut checkpoint_data = Vec::new();
for b in &[
&zakura_test::vectors::BLOCK_MAINNET_GENESIS_BYTES[..],
&zakura_test::vectors::BLOCK_MAINNET_1_BYTES[..],
] {
let block = Arc::<Block>::zcash_deserialize(*b)?;
let hash = block.hash();
checkpoint_data.push((block.clone(), block.coinbase_height().unwrap(), hash));
}
let checkpoint_list: BTreeMap<block::Height, block::Hash> = checkpoint_data
.iter()
.map(|(_block, height, hash)| (*height, *hash))
.collect();
let state_service = zakura_state::init_test(&Mainnet).await;
let mut checkpoint_verifier =
CheckpointVerifier::from_list(checkpoint_list, &Mainnet, None, state_service)
.map_err(|e| eyre!(e))?;
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(1)
);
for (block, height, hash) in checkpoint_data {
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let verify_future = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(block.clone()),
);
let verify_response = verify_future
.map_err(|e| eyre!(e))
.await
.expect("timeout should not happen")
.expect("future should succeed");
assert_eq!(verify_response, hash);
if height < checkpoint_verifier.checkpoint_list.max_height() {
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
PreviousCheckpoint(height)
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
} else {
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
}
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(1)
);
}
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(1)
);
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn generated_local_seed_chain_passes_checkpoint_verification() -> Result<(), Report> {
let _init_guard = zakura_test::init();
let generated = generate_local_testnet_with_funded_keys(
vec!["alice".to_string(), "bob".to_string()],
LocalTestnetGenesisOptions {
maturity_padding_blocks: 2,
..Default::default()
},
)
.map_err(|error| eyre!(error.to_string()))?;
let network = generated.network;
let state_service = zakura_state::init_test(&network).await;
let mut checkpoint_verifier = CheckpointVerifier::new(&network, None, state_service);
for block in generated.blocks {
let block = Arc::new(block);
let expected_hash = block.hash();
let response = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
checkpoint_verifier
.ready()
.map_err(|error| eyre!(error))
.await?
.call(block),
)
.await
.expect("generated checkpoint verification should not time out")
.expect("generated seed block should verify");
assert_eq!(response, expected_hash);
}
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn continuous_blockchain_no_restart() -> Result<(), Report> {
for network in Network::iter() {
continuous_blockchain(None, network).await?;
}
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn continuous_blockchain_restart() -> Result<(), Report> {
for height in 0..zakura_test::vectors::CONTINUOUS_MAINNET_BLOCKS.len() {
continuous_blockchain(Some(block::Height(height.try_into().unwrap())), Mainnet).await?;
}
for height in 0..zakura_test::vectors::CONTINUOUS_TESTNET_BLOCKS.len() {
continuous_blockchain(
Some(block::Height(height.try_into().unwrap())),
Network::new_default_testnet(),
)
.await?;
}
Ok(())
}
async fn continuous_blockchain(
restart_height: Option<block::Height>,
network: Network,
) -> Result<(), Report> {
let _init_guard = zakura_test::init();
let blockchain = network.blockchain_iter();
let blockchain: Vec<_> = blockchain
.map(|(height, b)| {
let block = Arc::<Block>::zcash_deserialize(*b).unwrap();
let hash = block.hash();
let coinbase_height = block.coinbase_height().unwrap();
assert_eq!(*height, coinbase_height.0);
(block, coinbase_height, hash)
})
.collect();
let blockchain_len = blockchain.len();
let expected_max_height = block::Height((blockchain_len - 1).try_into().unwrap());
let checkpoint_list = [
&blockchain[0],
&blockchain[blockchain_len / 3],
&blockchain[blockchain_len / 2],
&blockchain[blockchain_len - 1],
];
let checkpoint_list: BTreeMap<block::Height, block::Hash> = checkpoint_list
.iter()
.map(|(_block, height, hash)| (*height, *hash))
.collect();
{
let initial_tip = restart_height.map(|block::Height(height)| {
(blockchain[height as usize].1, blockchain[height as usize].2)
});
let state_service = zakura_state::init_test(&Mainnet).await;
let mut checkpoint_verifier = CheckpointVerifier::from_list(
checkpoint_list,
&network,
initial_tip,
state_service.clone(),
)
.map_err(|e| eyre!(e))?;
if restart_height.is_some() {
assert!(
restart_height <= Some(checkpoint_verifier.checkpoint_list.max_height()),
"restart heights after the final checkpoint are not supported by this test"
);
}
if restart_height
.map(|h| h == checkpoint_verifier.checkpoint_list.max_height())
.unwrap_or(false)
{
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
} else {
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
restart_height.map(InitialTip).unwrap_or(BeforeGenesis)
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
}
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
expected_max_height
);
let mut handles = FuturesUnordered::new();
for (block, height, _hash) in blockchain {
if let Some(restart_height) = restart_height {
if height <= restart_height {
let mut state_service = state_service.clone();
let ready_state_service = state_service.ready().map_err(|e| eyre!(e)).await?;
ready_state_service
.call(zakura_state::Request::CommitCheckpointVerifiedBlock(
block.clone().into(),
))
.await
.map_err(|e| eyre!(e))?;
continue;
}
}
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let verify_future = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(block.clone()),
);
let handle = tokio::spawn(verify_future.in_current_span());
handles.push(handle);
if height < checkpoint_verifier.checkpoint_list.max_height() {
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
} else {
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
}
}
if let Some(block::Height(restart_height)) = restart_height {
let restart_height = restart_height as usize;
if restart_height == blockchain_len - 1 {
assert_eq!(
handles.len(),
0,
"unexpected number of verify tasks for restart height: {restart_height:?}",
);
} else {
assert_eq!(
handles.len(),
blockchain_len - restart_height - 1,
"unexpected number of verify tasks for restart height: {restart_height:?}",
);
}
} else {
assert_eq!(
handles.len(),
blockchain_len,
"unexpected number of verify tasks with no restart height",
);
}
while let Some(result) = handles.next().await {
result??.map_err(|e| eyre!(e))?;
}
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint,
"unexpected previous checkpoint for restart height: {restart_height:?}",
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying,
"unexpected target checkpoint for restart height: {restart_height:?}",
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
expected_max_height,
"unexpected max checkpoint height for restart height: {restart_height:?}",
);
}
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn block_higher_than_max_checkpoint_fail_test() -> Result<(), Report> {
block_higher_than_max_checkpoint_fail().await
}
#[spandoc::spandoc]
async fn block_higher_than_max_checkpoint_fail() -> Result<(), Report> {
let _init_guard = zakura_test::init();
let block0 =
Arc::<Block>::zcash_deserialize(&zakura_test::vectors::BLOCK_MAINNET_GENESIS_BYTES[..])?;
let block415000 =
Arc::<Block>::zcash_deserialize(&zakura_test::vectors::BLOCK_MAINNET_415000_BYTES[..])?;
let genesis_checkpoint_list: BTreeMap<block::Height, block::Hash> =
[(block0.coinbase_height().unwrap(), block0.as_ref().into())]
.iter()
.cloned()
.collect();
let state_service = zakura_state::init_test(&Mainnet).await;
let mut checkpoint_verifier =
CheckpointVerifier::from_list(genesis_checkpoint_list, &Mainnet, None, state_service)
.map_err(|e| eyre!(e))?;
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let verify_future = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(block415000.clone()),
);
let _ = verify_future
.map_err(|e| eyre!(e))
.await
.expect("timeout should not happen")
.expect_err("bad block hash should fail");
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn wrong_checkpoint_hash_fail_test() -> Result<(), Report> {
wrong_checkpoint_hash_fail().await
}
#[spandoc::spandoc]
async fn wrong_checkpoint_hash_fail() -> Result<(), Report> {
let _init_guard = zakura_test::init();
let good_block0 =
Arc::<Block>::zcash_deserialize(&zakura_test::vectors::BLOCK_MAINNET_GENESIS_BYTES[..])?;
let good_block0_hash = good_block0.hash();
let mut bad_block0 = good_block0.clone();
let bad_block0_mut = Arc::make_mut(&mut bad_block0);
Arc::make_mut(&mut bad_block0_mut.header).version = 5;
let genesis_checkpoint_list: BTreeMap<block::Height, block::Hash> =
[(good_block0.coinbase_height().unwrap(), good_block0_hash)]
.iter()
.cloned()
.collect();
let state_service = zakura_state::init_test(&Mainnet).await;
let mut checkpoint_verifier =
CheckpointVerifier::from_list(genesis_checkpoint_list, &Mainnet, None, state_service)
.map_err(|e| eyre!(e))?;
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let bad_verify_future_1 = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(bad_block0.clone()),
);
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let bad_verify_future_2 = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(bad_block0.clone()),
);
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let good_verify_future = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(good_block0.clone()),
);
let verify_response = good_verify_future
.map_err(|e| eyre!(e))
.await
.expect("timeout should not happen")
.expect("future should succeed");
assert_eq!(verify_response, good_block0_hash);
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
let _ = bad_verify_future_1
.map_err(|e| eyre!(e))
.await
.expect("timeout should not happen")
.expect_err("bad block hash should fail");
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
let _ = bad_verify_future_2
.map_err(|e| eyre!(e))
.await
.expect("timeout should not happen")
.expect_err("bad block hash should fail");
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(0)
);
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn checkpoint_drop_cancel_test() -> Result<(), Report> {
checkpoint_drop_cancel().await
}
#[spandoc::spandoc]
async fn checkpoint_drop_cancel() -> Result<(), Report> {
let _init_guard = zakura_test::init();
let mut checkpoint_data = Vec::new();
for b in &[
&zakura_test::vectors::BLOCK_MAINNET_GENESIS_BYTES[..],
&zakura_test::vectors::BLOCK_MAINNET_1_BYTES[..],
&zakura_test::vectors::BLOCK_MAINNET_415000_BYTES[..],
&zakura_test::vectors::BLOCK_MAINNET_434873_BYTES[..],
] {
let block = Arc::<Block>::zcash_deserialize(*b)?;
let hash = block.hash();
checkpoint_data.push((block.clone(), block.coinbase_height().unwrap(), hash));
}
let checkpoint_list: BTreeMap<block::Height, block::Hash> = checkpoint_data
.iter()
.map(|(_block, height, hash)| (*height, *hash))
.collect();
let state_service = zakura_state::init_test(&Mainnet).await;
let mut checkpoint_verifier =
CheckpointVerifier::from_list(checkpoint_list, &Mainnet, None, state_service)
.map_err(|e| eyre!(e))?;
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(434873)
);
let mut futures = Vec::new();
for (block, height, hash) in checkpoint_data {
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let verify_future = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(block.clone()),
);
futures.push((verify_future, height, hash));
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
PreviousCheckpoint(block::Height(min(height.0, 1)))
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert_eq!(
checkpoint_verifier.checkpoint_list.max_height(),
block::Height(434873)
);
}
drop(checkpoint_verifier);
for (verify_future, height, hash) in futures {
let verify_response = verify_future
.map_err(|e| eyre!(e))
.await
.expect("timeout should not happen");
if height <= block::Height(1) {
let verify_hash =
verify_response.expect("Continuous checkpoints should have succeeded before drop");
assert_eq!(verify_hash, hash);
} else {
verify_response.expect_err("Pending futures should fail on drop");
}
}
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn hard_coded_mainnet_test() -> Result<(), Report> {
hard_coded_mainnet().await
}
#[spandoc::spandoc]
async fn hard_coded_mainnet() -> Result<(), Report> {
let _init_guard = zakura_test::init();
let block0 =
Arc::<Block>::zcash_deserialize(&zakura_test::vectors::BLOCK_MAINNET_GENESIS_BYTES[..])?;
let hash0 = block0.hash();
let state_service = zakura_state::init_test(&Mainnet).await;
let mut checkpoint_verifier = CheckpointVerifier::new(&Network::Mainnet, None, state_service);
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
BeforeGenesis
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert!(checkpoint_verifier.checkpoint_list.max_height() > block::Height(0));
let ready_verifier_service = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let verify_future = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
ready_verifier_service.call(block0.clone()),
);
let verify_response = verify_future
.map_err(|e| eyre!(e))
.await
.expect("timeout should not happen")
.expect("block should verify");
assert_eq!(verify_response, hash0);
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
PreviousCheckpoint(block::Height(0))
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
WaitingForBlocks
);
assert!(checkpoint_verifier.checkpoint_list.max_height() > block::Height(900_000));
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn newer_request_must_not_rewind_verified_checkpoint_progress() -> Result<(), Report> {
let _init_guard = zakura_test::init();
let blockchain: Vec<_> = zakura_test::vectors::CONTINUOUS_MAINNET_BLOCKS
.iter()
.map(|(height, bytes)| {
let block = Arc::<Block>::zcash_deserialize(*bytes).expect("block deserializes");
let hash = block.hash();
let coinbase_height = block.coinbase_height().expect("coinbase height");
assert_eq!(*height, coinbase_height.0);
(block, coinbase_height, hash)
})
.collect();
assert!(
blockchain.len() > 10,
"continuous mainnet vectors must cover heights 0..=10"
);
let checkpoint_list: BTreeMap<block::Height, block::Hash> = [0usize, 3, 6, 10]
.into_iter()
.map(|index| {
let (_block, height, hash) = &blockchain[index];
(*height, *hash)
})
.collect();
let state_service = zakura_state::init_test(&Mainnet).await;
let mut checkpoint_verifier =
CheckpointVerifier::from_list(checkpoint_list, &Mainnet, None, state_service)
.map_err(|e| eyre!(e))?;
let mut first_range = FuturesUnordered::new();
for (block, _height, _hash) in &blockchain[..=3] {
let ready = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
first_range.push(ready.call(block.clone()));
}
timeout(Duration::from_secs(VERIFY_TIMEOUT_SECONDS), async {
while let Some(result) = first_range.next().await {
result.map_err(|e| eyre!(e))?;
}
Ok::<_, Report>(())
})
.await
.expect("first-range verify should not time out")?;
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
PreviousCheckpoint(block::Height(3))
);
let block4 = blockchain[4].0.clone();
let block5 = blockchain[5].0.clone();
let block6 = blockchain[6].0.clone();
let ready = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let superseded_height_4 = ready.call(block4.clone());
let ready = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let height_5 = ready.call(block5);
let ready = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let replacement_height_4 = ready.call(block4);
let ready = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let height_6 = ready.call(block6);
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
PreviousCheckpoint(block::Height(6)),
"range (3, 6] should verify before the superseded future is polled"
);
let superseded_result = timeout(
Duration::from_secs(VERIFY_TIMEOUT_SECONDS),
superseded_height_4,
)
.await
.expect("superseded verify should not time out");
let superseded_err = superseded_result
.expect_err("replaced in-queue duplicate must fail the older request with NewerRequest");
assert!(
superseded_err.is_duplicate_request(),
"expected NewerRequest-classified duplicate, got {superseded_err:?}"
);
let ready = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
let height_7 = ready.call(blockchain[7].0.clone());
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
PreviousCheckpoint(block::Height(6)),
"NewerRequest must not rewind progress below the already-verified checkpoint"
);
let mut final_range = FuturesUnordered::new();
final_range.push(height_7);
for (block, _height, _hash) in &blockchain[8..=10] {
let ready = checkpoint_verifier.ready().map_err(|e| eyre!(e)).await?;
final_range.push(ready.call(block.clone()));
}
final_range.push(replacement_height_4);
final_range.push(height_5);
final_range.push(height_6);
timeout(Duration::from_secs(VERIFY_TIMEOUT_SECONDS), async {
while let Some(result) = final_range.next().await {
result.map_err(|e| eyre!(e))?;
}
Ok::<_, Report>(())
})
.await
.expect("post-checkpoint verifies should not time out")?;
assert_eq!(
checkpoint_verifier.previous_checkpoint_height(),
FinalCheckpoint,
"final checkpoint range must still be reachable after a NewerRequest"
);
assert_eq!(
checkpoint_verifier.target_checkpoint_height(),
FinishedVerifying
);
Ok(())
}
#[test]
fn state_commit_duplicate_errors_are_duplicate_requests() {
let duplicate = zs::CommitBlockError::Duplicate {
hash_or_height: None,
location: zs::KnownBlock::Finalized,
};
let source: BoxError = Box::new(zs::CommitCheckpointVerifiedError::from(duplicate));
let err = VerifyCheckpointError::CommitCheckpointVerified(source);
assert!(err.is_duplicate_request());
assert_eq!(err.misbehavior_score(), 0);
}