2018-12-13 16:00:55 +00:00
|
|
|
# beacon_chain
|
2020-01-28 21:24:45 +00:00
|
|
|
# Copyright (c) 2018-2020 Status Research & Development GmbH
|
2018-12-13 16:00:55 +00:00
|
|
|
# Licensed and distributed under either of
|
2019-11-25 15:30:02 +00:00
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
2018-12-13 16:00:55 +00:00
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2019-11-14 10:47:55 +00:00
|
|
|
{.used.}
|
|
|
|
|
2018-12-13 16:00:55 +00:00
|
|
|
import
|
2020-08-15 17:33:58 +00:00
|
|
|
unittest, chronicles,
|
2019-12-03 16:45:12 +00:00
|
|
|
./testutil, ./testblockutil,
|
2020-08-15 17:33:58 +00:00
|
|
|
../beacon_chain/spec/[beaconstate, datatypes, digest, crypto,
|
2020-07-07 23:02:14 +00:00
|
|
|
validator, state_transition, presets],
|
2020-06-23 13:54:24 +00:00
|
|
|
../beacon_chain/ssz
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2020-03-10 04:00:19 +00:00
|
|
|
suiteReport "Block processing" & preset():
|
2018-12-13 16:00:55 +00:00
|
|
|
## For now just test that we can compile and execute block processing with
|
|
|
|
## mock data.
|
|
|
|
|
2018-12-19 04:36:10 +00:00
|
|
|
let
|
|
|
|
# Genesis state with minimal number of deposits
|
|
|
|
# TODO bls verification is a bit of a bottleneck here
|
2020-05-28 08:28:14 +00:00
|
|
|
genesisState = newClone(initialize_hashed_beacon_state_from_eth1(
|
2020-07-07 23:02:14 +00:00
|
|
|
defaultRuntimePreset, Eth2Digest(), 0, makeInitialDeposits(), {}))
|
2020-04-30 06:44:19 +00:00
|
|
|
genesisBlock = get_initial_beacon_block(genesisState.data)
|
2019-12-16 18:08:50 +00:00
|
|
|
genesisRoot = hash_tree_root(genesisBlock.message)
|
2018-12-19 04:36:10 +00:00
|
|
|
|
2020-04-23 18:58:54 +00:00
|
|
|
setup:
|
2020-09-07 15:04:33 +00:00
|
|
|
var
|
|
|
|
state = newClone(genesisState[])
|
|
|
|
cache = StateCache()
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2020-04-23 18:58:54 +00:00
|
|
|
timedTest "Passes from genesis state, no block" & preset():
|
2019-03-08 16:40:17 +00:00
|
|
|
check:
|
2020-09-07 15:04:33 +00:00
|
|
|
process_slots(state[], state.data.slot + 1, cache)
|
2020-04-30 06:44:19 +00:00
|
|
|
state.data.slot == genesisState.data.slot + 1
|
2018-12-21 22:37:46 +00:00
|
|
|
|
2019-12-05 10:27:00 +00:00
|
|
|
timedTest "Passes from genesis state, empty block" & preset():
|
2018-12-27 20:14:37 +00:00
|
|
|
var
|
2020-07-16 13:16:51 +00:00
|
|
|
previous_block_root = genesisBlock.root
|
2020-06-04 12:03:16 +00:00
|
|
|
new_block = makeTestBlock(state[], previous_block_root, cache)
|
2018-12-27 20:14:37 +00:00
|
|
|
|
2020-11-12 19:24:07 +00:00
|
|
|
let block_ok = state_transition(
|
|
|
|
defaultRuntimePreset, state[], new_block, cache, {}, noRollback)
|
2018-12-13 16:00:55 +00:00
|
|
|
|
|
|
|
check:
|
2018-12-27 20:14:37 +00:00
|
|
|
block_ok
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2020-04-30 06:44:19 +00:00
|
|
|
state.data.slot == genesisState.data.slot + 1
|
2018-12-21 22:37:46 +00:00
|
|
|
|
2019-12-05 10:27:00 +00:00
|
|
|
timedTest "Passes through epoch update, no block" & preset():
|
2018-12-13 16:00:55 +00:00
|
|
|
check:
|
2020-09-07 15:04:33 +00:00
|
|
|
process_slots(state[], Slot(SLOTS_PER_EPOCH), cache)
|
2020-04-30 06:44:19 +00:00
|
|
|
state.data.slot == genesisState.data.slot + SLOTS_PER_EPOCH
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-12-05 10:27:00 +00:00
|
|
|
timedTest "Passes through epoch update, empty block" & preset():
|
2018-12-13 16:00:55 +00:00
|
|
|
var
|
2019-03-27 01:32:35 +00:00
|
|
|
previous_block_root = genesisRoot
|
2020-07-15 10:44:18 +00:00
|
|
|
cache = StateCache()
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2020-07-26 18:55:48 +00:00
|
|
|
for i in 1..SLOTS_PER_EPOCH:
|
2020-06-04 12:03:16 +00:00
|
|
|
let new_block = makeTestBlock(state[], previous_block_root, cache)
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2020-11-12 19:24:07 +00:00
|
|
|
let block_ok = state_transition(
|
|
|
|
defaultRuntimePreset, state[], new_block, cache, {}, noRollback)
|
2018-12-13 16:00:55 +00:00
|
|
|
|
|
|
|
check:
|
2018-12-27 20:14:37 +00:00
|
|
|
block_ok
|
|
|
|
|
2020-07-16 13:16:51 +00:00
|
|
|
previous_block_root = new_block.root
|
2018-12-14 22:38:25 +00:00
|
|
|
|
|
|
|
check:
|
2020-04-30 06:44:19 +00:00
|
|
|
state.data.slot == genesisState.data.slot + SLOTS_PER_EPOCH
|
2018-12-21 23:47:55 +00:00
|
|
|
|
2019-12-05 10:27:00 +00:00
|
|
|
timedTest "Attestation gets processed at epoch" & preset():
|
2018-12-21 23:47:55 +00:00
|
|
|
var
|
2019-03-27 01:32:35 +00:00
|
|
|
previous_block_root = genesisRoot
|
2020-07-15 10:44:18 +00:00
|
|
|
cache = StateCache()
|
2018-12-21 23:47:55 +00:00
|
|
|
|
|
|
|
# Slot 0 is a finalized slot - won't be making attestations for it..
|
2020-05-19 15:46:29 +00:00
|
|
|
check:
|
2020-09-07 15:04:33 +00:00
|
|
|
process_slots(state[], state.data.slot + 1, cache)
|
2018-12-21 23:47:55 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
# Create an attestation for slot 1 signed by the only attester we have!
|
2019-11-15 22:37:39 +00:00
|
|
|
beacon_committee =
|
2020-04-30 06:44:19 +00:00
|
|
|
get_beacon_committee(state.data, state.data.slot, 0.CommitteeIndex, cache)
|
2018-12-21 23:47:55 +00:00
|
|
|
attestation = makeAttestation(
|
2020-04-30 06:44:19 +00:00
|
|
|
state.data, previous_block_root, beacon_committee[0], cache)
|
2018-12-21 23:47:55 +00:00
|
|
|
|
|
|
|
# Some time needs to pass before attestations are included - this is
|
|
|
|
# to let the attestation propagate properly to interested participants
|
2020-05-19 15:46:29 +00:00
|
|
|
check:
|
|
|
|
process_slots(
|
2020-09-07 15:04:33 +00:00
|
|
|
state[], GENESIS_SLOT + MIN_ATTESTATION_INCLUSION_DELAY + 1, cache)
|
2018-12-21 23:47:55 +00:00
|
|
|
|
|
|
|
let
|
2020-06-04 12:03:16 +00:00
|
|
|
new_block = makeTestBlock(state[], previous_block_root, cache,
|
2020-03-19 23:48:03 +00:00
|
|
|
attestations = @[attestation]
|
|
|
|
)
|
2020-11-12 19:24:07 +00:00
|
|
|
check state_transition(
|
|
|
|
defaultRuntimePreset, state[], new_block, cache, {}, noRollback)
|
2018-12-21 23:47:55 +00:00
|
|
|
|
|
|
|
check:
|
2019-08-14 08:56:32 +00:00
|
|
|
# TODO epoch attestations can get multiplied now; clean up paths to
|
|
|
|
# enable exact 1-check again and keep finalization.
|
2020-04-30 06:44:19 +00:00
|
|
|
state.data.current_epoch_attestations.len >= 1
|
2018-12-21 23:47:55 +00:00
|
|
|
|
2020-10-20 08:54:11 +00:00
|
|
|
check:
|
|
|
|
process_slots(state[], Slot(191), cache)
|
2018-12-21 23:47:55 +00:00
|
|
|
|
|
|
|
# Would need to process more epochs for the attestation to be removed from
|
|
|
|
# the state! (per above bug)
|
|
|
|
#
|
|
|
|
# check:
|
|
|
|
# state.latest_attestations.len == 0
|