a1033a9247
* Start adding merge tests * Expose MockExecutionLayer * Add mock_execution_layer to BeaconChainHarness * Progress with merge test * Return more detailed errors with gas limit issues * Use a better gas limit in block gen * Ensure TTD is met in block gen * Fix basic_merge tests * Start geth testing * Fix conflicts after rebase * Remove geth tests * Improve merge test * Address clippy lints * Make pow block gen a pure function * Add working new test, breaking existing test * Fix test names * Add should_panic * Don't run merge tests in debug * Detect a tokio runtime when starting MockServer * Fix clippy lint, include merge tests
183 lines
5.0 KiB
Rust
183 lines
5.0 KiB
Rust
#![cfg(not(debug_assertions))] // Tests run too slow in debug.
|
|
|
|
use beacon_chain::test_utils::BeaconChainHarness;
|
|
use execution_layer::test_utils::{generate_pow_block, DEFAULT_TERMINAL_BLOCK};
|
|
use types::*;
|
|
|
|
const VALIDATOR_COUNT: usize = 32;
|
|
|
|
type E = MainnetEthSpec;
|
|
|
|
fn verify_execution_payload_chain<T: EthSpec>(chain: &[ExecutionPayload<T>]) {
|
|
let mut prev_ep: Option<ExecutionPayload<T>> = None;
|
|
|
|
for ep in chain {
|
|
assert!(*ep != ExecutionPayload::default());
|
|
assert!(ep.block_hash != Hash256::zero());
|
|
|
|
// Check against previous `ExecutionPayload`.
|
|
if let Some(prev_ep) = prev_ep {
|
|
assert_eq!(prev_ep.block_hash, ep.parent_hash);
|
|
assert_eq!(prev_ep.block_number + 1, ep.block_number);
|
|
}
|
|
prev_ep = Some(ep.clone());
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
// TODO(merge): This isn't working cause the non-zero values in `initialize_beacon_state_from_eth1`
|
|
// are causing failed lookups to the execution node. I need to come back to this.
|
|
#[should_panic]
|
|
fn merge_with_terminal_block_hash_override() {
|
|
let altair_fork_epoch = Epoch::new(0);
|
|
let merge_fork_epoch = Epoch::new(0);
|
|
|
|
let mut spec = E::default_spec();
|
|
spec.altair_fork_epoch = Some(altair_fork_epoch);
|
|
spec.merge_fork_epoch = Some(merge_fork_epoch);
|
|
|
|
let genesis_pow_block_hash = generate_pow_block(
|
|
spec.terminal_total_difficulty,
|
|
DEFAULT_TERMINAL_BLOCK,
|
|
0,
|
|
Hash256::zero(),
|
|
)
|
|
.unwrap()
|
|
.block_hash;
|
|
|
|
spec.terminal_block_hash = genesis_pow_block_hash;
|
|
|
|
let harness = BeaconChainHarness::builder(E::default())
|
|
.spec(spec)
|
|
.deterministic_keypairs(VALIDATOR_COUNT)
|
|
.fresh_ephemeral_store()
|
|
.mock_execution_layer()
|
|
.build();
|
|
|
|
assert_eq!(
|
|
harness
|
|
.execution_block_generator()
|
|
.latest_block()
|
|
.unwrap()
|
|
.block_hash(),
|
|
genesis_pow_block_hash,
|
|
"pre-condition"
|
|
);
|
|
|
|
assert!(
|
|
harness
|
|
.chain
|
|
.head()
|
|
.unwrap()
|
|
.beacon_block
|
|
.as_merge()
|
|
.is_ok(),
|
|
"genesis block should be a merge block"
|
|
);
|
|
|
|
let mut execution_payloads = vec![];
|
|
for i in 0..E::slots_per_epoch() * 3 {
|
|
harness.extend_slots(1);
|
|
|
|
let block = harness.chain.head().unwrap().beacon_block;
|
|
|
|
let execution_payload = block.message().body().execution_payload().unwrap().clone();
|
|
if i == 0 {
|
|
assert_eq!(execution_payload.block_hash, genesis_pow_block_hash);
|
|
}
|
|
execution_payloads.push(execution_payload);
|
|
}
|
|
|
|
verify_execution_payload_chain(&execution_payloads);
|
|
}
|
|
|
|
#[test]
|
|
fn base_altair_merge_with_terminal_block_after_fork() {
|
|
let altair_fork_epoch = Epoch::new(4);
|
|
let altair_fork_slot = altair_fork_epoch.start_slot(E::slots_per_epoch());
|
|
let merge_fork_epoch = Epoch::new(8);
|
|
let merge_fork_slot = merge_fork_epoch.start_slot(E::slots_per_epoch());
|
|
|
|
let mut spec = E::default_spec();
|
|
spec.altair_fork_epoch = Some(altair_fork_epoch);
|
|
spec.merge_fork_epoch = Some(merge_fork_epoch);
|
|
|
|
let mut execution_payloads = vec![];
|
|
|
|
let harness = BeaconChainHarness::builder(E::default())
|
|
.spec(spec)
|
|
.deterministic_keypairs(VALIDATOR_COUNT)
|
|
.fresh_ephemeral_store()
|
|
.mock_execution_layer()
|
|
.build();
|
|
|
|
/*
|
|
* Start with the base fork.
|
|
*/
|
|
|
|
assert!(harness.chain.head().unwrap().beacon_block.as_base().is_ok());
|
|
|
|
/*
|
|
* Do the Altair fork.
|
|
*/
|
|
|
|
harness.extend_to_slot(altair_fork_slot);
|
|
|
|
let altair_head = harness.chain.head().unwrap().beacon_block;
|
|
assert!(altair_head.as_altair().is_ok());
|
|
assert_eq!(altair_head.slot(), altair_fork_slot);
|
|
|
|
/*
|
|
* Do the merge fork, without a terminal PoW block.
|
|
*/
|
|
|
|
harness.extend_to_slot(merge_fork_slot);
|
|
|
|
let merge_head = harness.chain.head().unwrap().beacon_block;
|
|
assert!(merge_head.as_merge().is_ok());
|
|
assert_eq!(merge_head.slot(), merge_fork_slot);
|
|
assert_eq!(
|
|
*merge_head.message().body().execution_payload().unwrap(),
|
|
ExecutionPayload::default()
|
|
);
|
|
|
|
/*
|
|
* Next merge block shouldn't include an exec payload.
|
|
*/
|
|
|
|
harness.extend_slots(1);
|
|
|
|
let one_after_merge_head = harness.chain.head().unwrap().beacon_block;
|
|
assert_eq!(
|
|
*one_after_merge_head
|
|
.message()
|
|
.body()
|
|
.execution_payload()
|
|
.unwrap(),
|
|
ExecutionPayload::default()
|
|
);
|
|
assert_eq!(one_after_merge_head.slot(), merge_fork_slot + 1);
|
|
|
|
/*
|
|
* Trigger the terminal PoW block.
|
|
*/
|
|
|
|
harness
|
|
.execution_block_generator()
|
|
.move_to_terminal_block()
|
|
.unwrap();
|
|
|
|
/*
|
|
* Next merge block should include an exec payload.
|
|
*/
|
|
|
|
for _ in 0..4 {
|
|
harness.extend_slots(1);
|
|
|
|
let block = harness.chain.head().unwrap().beacon_block;
|
|
execution_payloads.push(block.message().body().execution_payload().unwrap().clone());
|
|
}
|
|
|
|
verify_execution_payload_chain(&execution_payloads);
|
|
}
|