Merge remote-tracking branch 'origin/unstable' into tree-states

This commit is contained in:
Michael Sproul
2022-09-14 13:51:23 +10:00
404 changed files with 28947 additions and 12000 deletions

View File

@@ -15,6 +15,7 @@ struct ExitTest {
validator_index: u64,
exit_epoch: Epoch,
state_epoch: Epoch,
#[allow(clippy::type_complexity)]
state_modifier: Box<dyn FnOnce(&mut BeaconState<E>)>,
#[allow(clippy::type_complexity)]
block_modifier:
@@ -37,11 +38,12 @@ impl Default for ExitTest {
}
impl ExitTest {
fn block_and_pre_state(self) -> (SignedBeaconBlock<E>, BeaconState<E>) {
async fn block_and_pre_state(self) -> (SignedBeaconBlock<E>, BeaconState<E>) {
let harness = get_harness::<E>(
self.state_epoch.start_slot(E::slots_per_epoch()),
VALIDATOR_COUNT,
);
)
.await;
let mut state = harness.get_current_state();
(self.state_modifier)(&mut state);
@@ -49,11 +51,12 @@ impl ExitTest {
let validator_index = self.validator_index;
let exit_epoch = self.exit_epoch;
let (signed_block, state) =
harness.make_block_with_modifier(state.clone(), state.slot() + 1, |block| {
let (signed_block, state) = harness
.make_block_with_modifier(state.clone(), state.slot() + 1, |block| {
harness.add_voluntary_exit(block, validator_index, exit_epoch);
block_modifier(&harness, block);
});
})
.await;
(signed_block, state)
}
@@ -73,12 +76,12 @@ impl ExitTest {
}
#[cfg(all(test, not(debug_assertions)))]
fn run(self) -> BeaconState<E> {
async fn run(self) -> BeaconState<E> {
let spec = &E::default_spec();
let expected = self.expected.clone();
assert_eq!(STATE_EPOCH, spec.shard_committee_period);
let (block, mut state) = self.block_and_pre_state();
let (block, mut state) = self.block_and_pre_state().await;
let result = Self::process(&block, &mut state);
@@ -87,8 +90,8 @@ impl ExitTest {
state
}
fn test_vector(self, title: String) -> TestVector {
let (block, pre_state) = self.block_and_pre_state();
async fn test_vector(self, title: String) -> TestVector {
let (block, pre_state) = self.block_and_pre_state().await;
let mut post_state = pre_state.clone();
let (post_state, error) = match Self::process(&block, &mut post_state) {
Ok(_) => (Some(post_state), None),
@@ -344,14 +347,14 @@ mod custom_tests {
);
}
#[test]
fn valid() {
let state = ExitTest::default().run();
#[tokio::test]
async fn valid() {
let state = ExitTest::default().run().await;
assert_exited(&state, VALIDATOR_INDEX as usize);
}
#[test]
fn valid_three() {
#[tokio::test]
async fn valid_three() {
let state = ExitTest {
block_modifier: Box::new(|harness, block| {
harness.add_voluntary_exit(block, 1, STATE_EPOCH);
@@ -359,7 +362,8 @@ mod custom_tests {
}),
..ExitTest::default()
}
.run();
.run()
.await;
for i in &[VALIDATOR_INDEX, 1, 2] {
assert_exited(&state, *i as usize);