Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test batch opening mtree #773

Merged
merged 5 commits into from
Feb 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions mithril-stm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ hex = "0.4.3"
num-bigint = "0.4.0"
num-rational = "0.4.0"
proptest = "1.0.0"
rand = "0.8"
rand_chacha = "0.3.1"

[[bench]]
Expand Down
74 changes: 44 additions & 30 deletions mithril-stm/src/merkle_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,7 @@ mod tests {
use blake2::{digest::consts::U32, Blake2b};
use proptest::collection::vec;
use proptest::prelude::*;
use rand::{seq::IteratorRandom, thread_rng};

prop_compose! {
fn arb_tree(max_size: u32)
Expand Down Expand Up @@ -683,36 +684,6 @@ mod tests {
assert_eq!(tree.nodes, decoded.nodes);
}

#[test]
fn test_create_batch_proof((t, values) in arb_tree(30)) {
let mut mt_index_list :Vec<usize> = Vec::new();
for (i, _v) in values.iter().enumerate() {
mt_index_list.push(i);
}
mt_index_list.sort_unstable();
let batch_proof = t.get_batched_path(mt_index_list);
assert!(t.to_commitment_batch_compat().check(&values, &batch_proof).is_ok());
}

#[test]
fn test_bytes_batch_path((t, values) in arb_tree(30)) {
let mut mt_index_list :Vec<usize> = Vec::new();
for (i, _v) in values.iter().enumerate() {
mt_index_list.push(i);
}
mt_index_list.sort_unstable();

let bp = t.get_batched_path(mt_index_list);

let bytes = &bp.to_bytes();
let deserialized = BatchPath::from_bytes(bytes).unwrap();
assert!(t.to_commitment_batch_compat().check(&values, &deserialized).is_ok());

let encoded = bincode::serialize(&bp).unwrap();
let decoded: BatchPath<Blake2b<U32>> = bincode::deserialize(&encoded).unwrap();
assert!(t.to_commitment_batch_compat().check(&values, &decoded).is_ok());
}

#[test]
fn test_bytes_tree_commitment_batch_compat((t, values) in arb_tree(5)) {
let encoded = bincode::serialize(&t.to_commitment_batch_compat()).unwrap();
Expand Down Expand Up @@ -778,4 +749,47 @@ mod tests {
assert!(t.to_commitment_batch_compat().check(&batch_values, &path).is_err());
}
}

prop_compose! {
fn arb_tree_arb_batch(max_size: u32)
(v in vec(any::<u64>(), 2..max_size as usize)) -> (MerkleTree<Blake2b<U32>>, Vec<MTLeaf>, Vec<usize>) {
let mut rng = thread_rng();
let size = v.len();
let pks = vec![VerificationKey::default(); size];
let leaves = pks.into_iter().zip(v.into_iter()).map(|(key, stake)| MTLeaf(key, stake)).collect::<Vec<MTLeaf>>();

let indices: Vec<usize> = (0..size).collect();
let mut mt_list: Vec<usize> = indices.into_iter().choose_multiple(&mut rng, size * 2 / 10 + 1);
mt_list.sort_unstable();

let mut batch_values: Vec<MTLeaf> = Vec::with_capacity(mt_list.len());
for i in mt_list.iter() {
batch_values.push(leaves[*i]);
}

(MerkleTree::<Blake2b<U32>>::create(&leaves), batch_values, mt_list)
}
}

proptest! {
#![proptest_config(ProptestConfig::with_cases(100))]
#[test]
fn test_create_batch_proof((t, batch_values, indices) in arb_tree_arb_batch(30)) {
let batch_proof = t.get_batched_path(indices);
assert!(t.to_commitment_batch_compat().check(&batch_values, &batch_proof).is_ok());
}

#[test]
fn test_bytes_batch_path((t, batch_values, indices) in arb_tree_arb_batch(30)) {
let bp = t.get_batched_path(indices);

let bytes = &bp.to_bytes();
let deserialized = BatchPath::from_bytes(bytes).unwrap();
assert!(t.to_commitment_batch_compat().check(&batch_values, &deserialized).is_ok());

let encoded = bincode::serialize(&bp).unwrap();
let decoded: BatchPath<Blake2b<U32>> = bincode::deserialize(&encoded).unwrap();
assert!(t.to_commitment_batch_compat().check(&batch_values, &decoded).is_ok());
}
}
}