Simplify process_blockstore tests (#19553)

Some of the blockstore_processor tests weren't using
`test_process_blockstore()`, but could.  I updated those tests, and also
changed to using `..` for ignoring, instead of `_`, since I'll be adding
another return value here shortly (thus reducing the need to change
these again).
This commit is contained in:
Brooks Prumo
2021-09-01 15:13:52 -05:00
committed by GitHub
parent b078edffe1
commit 1d2f0f6641

View File

@ -1476,17 +1476,14 @@ pub mod tests {
Ok(_) Ok(_)
); );
let (bank_forks, _leader_schedule) = process_blockstore( let (bank_forks, ..) = test_process_blockstore(
&genesis_config, &genesis_config,
&blockstore, &blockstore,
Vec::new(),
ProcessOptions { ProcessOptions {
poh_verify: true, poh_verify: true,
..ProcessOptions::default() ..ProcessOptions::default()
}, },
None, );
)
.unwrap();
assert_eq!(frozen_bank_slots(&bank_forks), vec![0]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0]);
} }
@ -1521,34 +1518,28 @@ pub mod tests {
); );
// Should return slot 0, the last slot on the fork that is valid // Should return slot 0, the last slot on the fork that is valid
let (bank_forks, _leader_schedule) = process_blockstore( let (bank_forks, ..) = test_process_blockstore(
&genesis_config, &genesis_config,
&blockstore, &blockstore,
Vec::new(),
ProcessOptions { ProcessOptions {
poh_verify: true, poh_verify: true,
..ProcessOptions::default() ..ProcessOptions::default()
}, },
None, );
)
.unwrap();
assert_eq!(frozen_bank_slots(&bank_forks), vec![0]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0]);
// Write slot 2 fully // Write slot 2 fully
let _last_slot2_entry_hash = let _last_slot2_entry_hash =
fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 2, 0, blockhash); fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 2, 0, blockhash);
let (bank_forks, _leader_schedule) = process_blockstore( let (bank_forks, ..) = test_process_blockstore(
&genesis_config, &genesis_config,
&blockstore, &blockstore,
Vec::new(),
ProcessOptions { ProcessOptions {
poh_verify: true, poh_verify: true,
..ProcessOptions::default() ..ProcessOptions::default()
}, },
None, );
)
.unwrap();
// One valid fork, one bad fork. process_blockstore() should only return the valid fork // One valid fork, one bad fork. process_blockstore() should only return the valid fork
assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 2]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 2]);
@ -1602,8 +1593,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
assert_eq!(frozen_bank_slots(&bank_forks), vec![0]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0]);
} }
@ -1668,8 +1658,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
assert_eq!(frozen_bank_slots(&bank_forks), vec![0]); // slot 1 isn't "full", we stop at slot zero assert_eq!(frozen_bank_slots(&bank_forks), vec![0]); // slot 1 isn't "full", we stop at slot zero
@ -1688,8 +1677,7 @@ pub mod tests {
}; };
fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 3, 0, blockhash); fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 3, 0, blockhash);
// Slot 0 should not show up in the ending bank_forks_info // Slot 0 should not show up in the ending bank_forks_info
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
// slot 1 isn't "full", we stop at slot zero // slot 1 isn't "full", we stop at slot zero
assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 3]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 3]);
@ -1756,8 +1744,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
// One fork, other one is ignored b/c not a descendant of the root // One fork, other one is ignored b/c not a descendant of the root
assert_eq!(frozen_bank_slots(&bank_forks), vec![4]); assert_eq!(frozen_bank_slots(&bank_forks), vec![4]);
@ -1836,8 +1823,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
assert_eq!(frozen_bank_slots(&bank_forks), vec![1, 2, 3, 4]); assert_eq!(frozen_bank_slots(&bank_forks), vec![1, 2, 3, 4]);
assert_eq!(bank_forks.working_bank().slot(), 4); assert_eq!(bank_forks.working_bank().slot(), 4);
@ -1892,14 +1878,8 @@ pub mod tests {
blockstore.set_dead_slot(2).unwrap(); blockstore.set_dead_slot(2).unwrap();
fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 3, 1, slot1_blockhash); fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 3, 1, slot1_blockhash);
let (bank_forks, _leader_schedule) = process_blockstore( let (bank_forks, ..) =
&genesis_config, test_process_blockstore(&genesis_config, &blockstore, ProcessOptions::default());
&blockstore,
Vec::new(),
ProcessOptions::default(),
None,
)
.unwrap();
assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 1, 3]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 1, 3]);
assert_eq!(bank_forks.working_bank().slot(), 3); assert_eq!(bank_forks.working_bank().slot(), 3);
@ -1942,14 +1922,8 @@ pub mod tests {
blockstore.set_dead_slot(4).unwrap(); blockstore.set_dead_slot(4).unwrap();
fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 3, 1, slot1_blockhash); fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 3, 1, slot1_blockhash);
let (bank_forks, _leader_schedule) = process_blockstore( let (bank_forks, ..) =
&genesis_config, test_process_blockstore(&genesis_config, &blockstore, ProcessOptions::default());
&blockstore,
Vec::new(),
ProcessOptions::default(),
None,
)
.unwrap();
// Should see the parent of the dead child // Should see the parent of the dead child
assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 1, 2, 3]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 1, 2, 3]);
@ -1995,14 +1969,8 @@ pub mod tests {
fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 2, 0, blockhash); fill_blockstore_slot_with_ticks(&blockstore, ticks_per_slot, 2, 0, blockhash);
blockstore.set_dead_slot(1).unwrap(); blockstore.set_dead_slot(1).unwrap();
blockstore.set_dead_slot(2).unwrap(); blockstore.set_dead_slot(2).unwrap();
let (bank_forks, _leader_schedule) = process_blockstore( let (bank_forks, ..) =
&genesis_config, test_process_blockstore(&genesis_config, &blockstore, ProcessOptions::default());
&blockstore,
Vec::new(),
ProcessOptions::default(),
None,
)
.unwrap();
// Should see only the parent of the dead children // Should see only the parent of the dead children
assert_eq!(frozen_bank_slots(&bank_forks), vec![0]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0]);
@ -2053,8 +2021,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
// There is one fork, head is last_slot + 1 // There is one fork, head is last_slot + 1
assert_eq!(frozen_bank_slots(&bank_forks), vec![last_slot + 1]); assert_eq!(frozen_bank_slots(&bank_forks), vec![last_slot + 1]);
@ -2197,8 +2164,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 1]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0, 1]);
assert_eq!(bank_forks.root(), 0); assert_eq!(bank_forks.root(), 0);
@ -2227,8 +2193,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
assert_eq!(frozen_bank_slots(&bank_forks), vec![0]); assert_eq!(frozen_bank_slots(&bank_forks), vec![0]);
let bank = bank_forks[0].clone(); let bank = bank_forks[0].clone();
@ -2973,8 +2938,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
// Should be able to fetch slot 0 because we specified halting at slot 0, even // Should be able to fetch slot 0 because we specified halting at slot 0, even
// if there is a greater root at slot 1. // if there is a greater root at slot 1.
@ -3479,9 +3443,7 @@ pub mod tests {
accounts_db_test_hash_calculation: true, accounts_db_test_hash_calculation: true,
..ProcessOptions::default() ..ProcessOptions::default()
}; };
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts.clone());
process_blockstore(&genesis_config, &blockstore, Vec::new(), opts.clone(), None)
.unwrap();
// prepare to add votes // prepare to add votes
let last_vote_bank_hash = bank_forks.get(last_main_fork_slot - 1).unwrap().hash(); let last_vote_bank_hash = bank_forks.get(last_main_fork_slot - 1).unwrap().hash();
@ -3512,9 +3474,7 @@ pub mod tests {
&leader_keypair, &leader_keypair,
); );
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts.clone());
process_blockstore(&genesis_config, &blockstore, Vec::new(), opts.clone(), None)
.unwrap();
assert_eq!(bank_forks.root(), expected_root_slot); assert_eq!(bank_forks.root(), expected_root_slot);
assert_eq!( assert_eq!(
@ -3568,8 +3528,7 @@ pub mod tests {
&leader_keypair, &leader_keypair,
); );
let (bank_forks, _leader_schedule) = let (bank_forks, ..) = test_process_blockstore(&genesis_config, &blockstore, opts);
test_process_blockstore(&genesis_config, &blockstore, opts);
assert_eq!(bank_forks.root(), really_expected_root_slot); assert_eq!(bank_forks.root(), really_expected_root_slot);
} }