use std::sync::Arc;
use tokio::sync::oneshot;
use zakura_chain::{block::Block, serialization::ZcashDeserializeInto};
use zakura_test::prelude::*;
use crate::{
arbitrary::Prepare,
service::queued_blocks::{
QueuedBlocks, QueuedSemanticallyVerified, SentHashes, MAX_QUEUED_BLOCKS,
},
tests::FakeChainHelper,
CommitBlockError, CommitSemanticallyVerifiedError,
};
trait IntoQueued {
fn into_queued(self) -> QueuedSemanticallyVerified;
}
impl IntoQueued for Arc<Block> {
fn into_queued(self) -> QueuedSemanticallyVerified {
let (rsp_tx, _) = oneshot::channel();
(self.prepare(), rsp_tx, None)
}
}
#[test]
fn dequeue_gives_right_children() -> Result<()> {
let _init_guard = zakura_test::init();
let block1: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419200_BYTES.zcash_deserialize_into()?;
let child1: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419201_BYTES.zcash_deserialize_into()?;
let child2 = block1.make_fake_child();
let parent = block1.header.previous_block_hash;
let mut queue = QueuedBlocks::default();
assert_eq!(0, queue.blocks.len());
assert_eq!(0, queue.by_parent.len());
assert_eq!(0, queue.by_height.len());
assert_eq!(0, queue.known_utxos.len());
queue.queue(block1.clone().into_queued());
assert_eq!(1, queue.blocks.len());
assert_eq!(1, queue.by_parent.len());
assert_eq!(1, queue.by_height.len());
assert_eq!(2, queue.known_utxos.len());
queue.queue(child1.clone().into_queued());
assert_eq!(2, queue.blocks.len());
assert_eq!(2, queue.by_parent.len());
assert_eq!(2, queue.by_height.len());
assert_eq!(632, queue.known_utxos.len());
queue.queue(child2.clone().into_queued());
assert_eq!(3, queue.blocks.len());
assert_eq!(2, queue.by_parent.len());
assert_eq!(2, queue.by_height.len());
assert_eq!(634, queue.known_utxos.len());
let children = queue.dequeue_children(parent);
assert_eq!(1, children.len());
assert_eq!(block1, children[0].0.block);
assert_eq!(2, queue.blocks.len());
assert_eq!(1, queue.by_parent.len());
assert_eq!(1, queue.by_height.len());
assert_eq!(632, queue.known_utxos.len());
let parent = children[0].0.block.hash();
let children = queue.dequeue_children(parent);
assert_eq!(2, children.len());
assert!(children
.iter()
.any(|(block, _, _)| block.hash == child1.hash()));
assert!(children
.iter()
.any(|(block, _, _)| block.hash == child2.hash()));
assert_eq!(0, queue.blocks.len());
assert_eq!(0, queue.by_parent.len());
assert_eq!(0, queue.by_height.len());
assert_eq!(0, queue.known_utxos.len());
Ok(())
}
#[test]
fn same_hash_replacement_keeps_the_new_body() -> Result<()> {
let block: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419200_BYTES.zcash_deserialize_into()?;
let replacement_block = Arc::new((*block).clone());
let mut queue = QueuedBlocks::default();
queue.queue(block.clone().into_queued());
let old = queue.replace(block.hash(), replacement_block.clone().into_queued());
assert!(Arc::ptr_eq(&old.0.block, &block));
assert!(Arc::ptr_eq(
&queue
.get_mut(&block.hash())
.expect("replacement remains queued")
.0
.block,
&replacement_block
));
Ok(())
}
#[test]
fn orphan_queue_has_a_fixed_entry_bound() -> Result<()> {
let block: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419200_BYTES.zcash_deserialize_into()?;
let mut queue = QueuedBlocks::default();
assert!(!queue.is_full());
for index in 0..MAX_QUEUED_BLOCKS {
let mut queued = block.clone().into_queued();
let index = u64::try_from(index).expect("the queue bound fits in u64");
queued.0.hash.0[..8].copy_from_slice(&index.to_le_bytes());
queue.blocks.insert(queued.0.hash, queued);
}
assert!(queue.is_full());
Ok(())
}
#[test]
fn prune_removes_right_children() -> Result<()> {
let _init_guard = zakura_test::init();
let block1: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419200_BYTES.zcash_deserialize_into()?;
let child1: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419201_BYTES.zcash_deserialize_into()?;
let child2 = block1.make_fake_child();
let mut queue = QueuedBlocks::default();
queue.queue(block1.clone().into_queued());
queue.queue(child1.clone().into_queued());
queue.queue(child2.clone().into_queued());
assert_eq!(3, queue.blocks.len());
assert_eq!(2, queue.by_parent.len());
assert_eq!(2, queue.by_height.len());
assert_eq!(634, queue.known_utxos.len());
queue.prune_by_height(block1.coinbase_height().unwrap());
assert_eq!(2, queue.blocks.len());
assert_eq!(1, queue.by_parent.len());
assert_eq!(1, queue.by_height.len());
assert!(queue.get_mut(&block1.hash()).is_none());
assert!(queue.get_mut(&child1.hash()).is_some());
assert!(queue.get_mut(&child2.hash()).is_some());
assert_eq!(632, queue.known_utxos.len());
queue.prune_by_height(child1.coinbase_height().unwrap());
assert_eq!(0, queue.blocks.len());
assert_eq!(0, queue.by_parent.len());
assert_eq!(0, queue.by_height.len());
assert!(queue.get_mut(&child1.hash()).is_none());
assert!(queue.get_mut(&child2.hash()).is_none());
assert_eq!(0, queue.known_utxos.len());
Ok(())
}
#[test]
fn sent_hashes_remove_drops_rejected_hash_and_utxos() -> Result<()> {
let _init_guard = zakura_test::init();
let block1: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419200_BYTES.zcash_deserialize_into()?;
let block2: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419201_BYTES.zcash_deserialize_into()?;
let prepared1 = block1.clone().prepare();
let prepared2 = block2.clone().prepare();
let mut sent = SentHashes::default();
sent.add(&prepared1);
sent.add(&prepared2);
let utxos_after_add = sent.known_utxos.len();
assert!(sent.contains(&prepared1.hash));
assert!(sent.contains(&prepared2.hash));
assert!(utxos_after_add > 0);
let block1_utxos = prepared1.new_outputs.len();
sent.remove(&prepared1.hash);
assert!(
!sent.contains(&prepared1.hash),
"removed hash must not satisfy contains()"
);
assert!(sent.contains(&prepared2.hash));
assert_eq!(
sent.known_utxos.len(),
utxos_after_add - block1_utxos,
"remove must drop only the removed block's outpoints"
);
assert!(
!sent.curr_buf.iter().any(|(h, _)| h == &prepared1.hash),
"remove must drop the (hash, height) entry from curr_buf"
);
assert!(sent.curr_buf.iter().any(|(h, _)| h == &prepared2.hash));
let block3 = block1.make_fake_child();
sent.remove(&block3.hash());
assert!(sent.contains(&prepared2.hash));
Ok(())
}
#[test]
fn dequeue_children_preserves_same_height_siblings() -> Result<()> {
let _init_guard = zakura_test::init();
let root_block: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419200_BYTES.zcash_deserialize_into()?;
let left_child: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419201_BYTES.zcash_deserialize_into()?;
let left_grandchild = left_child.make_fake_child();
let right_child = root_block.make_fake_child();
let right_grandchild = right_child.make_fake_child();
let mut queue = QueuedBlocks::default();
queue.queue(left_grandchild.clone().into_queued());
queue.queue(right_grandchild.clone().into_queued());
let height = left_grandchild.coinbase_height().unwrap();
assert_eq!(
queue.by_height.get(&height).unwrap().len(),
2,
"expected both fork grandchildren to be in the same height bucket"
);
queue.dequeue_children(left_child.hash());
assert!(
queue.blocks.contains_key(&right_grandchild.hash()),
"sibling block must remain in queue after unrelated dequeue"
);
assert!(
queue
.by_height
.get(&height)
.unwrap()
.contains(&right_grandchild.hash()),
"sibling must remain indexed by height after unrelated dequeue"
);
Ok(())
}
#[test]
fn dequeue_descendants_removes_the_complete_failed_subtree() -> Result<()> {
let _init_guard = zakura_test::init();
let root: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419200_BYTES.zcash_deserialize_into()?;
let failed_child: Arc<Block> =
zakura_test::vectors::BLOCK_MAINNET_419201_BYTES.zcash_deserialize_into()?;
let failed_grandchild = failed_child.make_fake_child();
let sibling = root.make_fake_child();
let mut queue = QueuedBlocks::default();
let mut responses = Vec::new();
for block in [failed_child, failed_grandchild, sibling] {
let (response, receiver) = oneshot::channel();
queue.queue((block.prepare(), response, None));
responses.push(receiver);
}
let error = CommitSemanticallyVerifiedError::from(CommitBlockError::HeaderChainError {
error: format!("ancestor {} failed", root.hash()),
});
assert_eq!(queue.fail_descendants(root.hash(), error.clone()).len(), 3);
for response in &mut responses {
assert_eq!(response.try_recv(), Ok(Err(error.clone())));
}
assert!(queue.blocks.is_empty());
assert!(queue.by_parent.is_empty());
assert!(queue.by_height.is_empty());
assert!(queue.known_utxos.is_empty());
Ok(())
}