nimbus-eth2/tests/test_attestation_pool.nim
Dustin Brody c7e06374f4
Remove get_crosslink_committees_at_slot and fix research/state_sim (#291)
* migrate attestation pool tests from get_crosslink_committees_at_slot(...) to get_crosslink_committee(...)

* rm obsolete, unused get_crosslink_committees_at_slot_cached(...) and migrate tests/test_state_transition from get_crosslink_committees_at_slot(...) to get_crosslink_committee(...)

* migrate tests/testutil from get_crosslink_committees_at_slot(...) to get_crosslink_committee(...)

* use more pervasive caching infrastructure, initially of compute_committee; remove buggy (and per-index) shuffling to fix research/state_sim, which was noticing validators on multiple shard committees; rm now-unused specific get_attesting_balance_cached

* add some get_active_validator_index caching

* rm obsolete/unused get_attesting_indices_cached

* rm get_crosslink_committees_at_slot(...)

* some more 0.7 changes -- some of which can't be completed pending some data structure updates -- and shard handling changes to offset with epoch start shards
2019-06-24 09:21:56 +00:00

161 lines
5.5 KiB
Nim

# beacon_chain
# Copyright (c) 2018 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
# at your option. This file may not be copied, modified, or distributed except according to those terms.
import
options, sequtils, unittest,
./testutil,
../beacon_chain/spec/[beaconstate, crypto, datatypes, digest, helpers, validator],
../beacon_chain/[beacon_node_types, attestation_pool, block_pool, extras, state_transition, ssz]
template withPool(body: untyped) =
mixin genState, genBlock
var
blockPool {.inject.} = BlockPool.init(makeTestDB(genState, genBlock))
pool {.inject.} = AttestationPool.init(blockPool)
state {.inject.} = loadTailState(blockPool)
# Slot 0 is a finalized slot - won't be making attestations for it..
advanceState(state.data)
body
suite "Attestation pool processing" & preset():
## For now just test that we can compile and execute block processing with
## mock data.
# Genesis state that results in 2 members per committee
let
genState = get_genesis_beacon_state(
makeInitialDeposits(SLOTS_PER_EPOCH * 2, {skipValidation}), 0, Eth1Data(),
{skipValidation})
genBlock = get_initial_beacon_block(genState)
test "Can add and retrieve simple attestation" & preset():
var cache = get_empty_per_epoch_cache()
withPool:
let
# Create an attestation for slot 1!
crosslink_committee = get_crosslink_committee(state.data.data,
slot_to_epoch(state.data.data.slot), 0, cache)
attestation = makeAttestation(
state.data.data, state.blck.root, crosslink_committee[0])
pool.add(state.data.data, attestation)
for i in 0..<MIN_ATTESTATION_INCLUSION_DELAY.int - 1:
advanceState(state.data)
let attestations = pool.getAttestationsForBlock(
state.data.data, state.data.data.slot + 1)
check:
attestations.len == 1
test "Attestations may arrive in any order" & preset():
var cache = get_empty_per_epoch_cache()
withPool:
let
# Create an attestation for slot 1!
cc0 = get_crosslink_committee(state.data.data,
slot_to_epoch(state.data.data.slot), 0, cache)
attestation0 = makeAttestation(
state.data.data, state.blck.root, cc0[0])
advanceState(state.data)
let
cc1 = get_crosslink_committee(state.data.data,
slot_to_epoch(state.data.data.slot), 0, cache)
attestation1 = makeAttestation(
state.data.data, state.blck.root, cc1[0])
# test reverse order
pool.add(state.data.data, attestation1)
pool.add(state.data.data, attestation0)
for i in 0..<MIN_ATTESTATION_INCLUSION_DELAY.int - 1: advanceState(state.data)
let attestations = pool.getAttestationsForBlock(
state.data.data, state.data.data.slot + 1)
check:
attestations.len == 1
test "Attestations should be combined" & preset():
var cache = get_empty_per_epoch_cache()
withPool:
let
# Create an attestation for slot 1!
cc0 = get_crosslink_committee(state.data.data,
slot_to_epoch(state.data.data.slot), 0, cache)
attestation0 = makeAttestation(
state.data.data, state.blck.root, cc0[0])
attestation1 = makeAttestation(
state.data.data, state.blck.root, cc0[1])
pool.add(state.data.data, attestation0)
pool.add(state.data.data, attestation1)
for i in 0..<MIN_ATTESTATION_INCLUSION_DELAY.int - 1: advanceState(state.data)
let attestations = pool.getAttestationsForBlock(
state.data.data, state.data.data.slot + 1)
check:
attestations.len == 1
test "Attestations may overlap, bigger first" & preset():
var cache = get_empty_per_epoch_cache()
withPool:
var
# Create an attestation for slot 1!
cc0 = get_crosslink_committee(state.data.data,
slot_to_epoch(state.data.data.slot), 0, cache)
attestation0 = makeAttestation(
state.data.data, state.blck.root, cc0[0])
attestation1 = makeAttestation(
state.data.data, state.blck.root, cc0[1])
attestation0.combine(attestation1, {skipValidation})
pool.add(state.data.data, attestation0)
pool.add(state.data.data, attestation1)
for i in 0..<MIN_ATTESTATION_INCLUSION_DELAY.int - 1: advanceState(state.data)
let attestations = pool.getAttestationsForBlock(
state.data.data, state.data.data.slot + 1)
check:
attestations.len == 1
test "Attestations may overlap, smaller first" & preset():
var cache = get_empty_per_epoch_cache()
withPool:
var
# Create an attestation for slot 1!
cc0 = get_crosslink_committee(state.data.data,
slot_to_epoch(state.data.data.slot), 0, cache)
attestation0 = makeAttestation(
state.data.data, state.blck.root, cc0[0])
attestation1 = makeAttestation(
state.data.data, state.blck.root, cc0[1])
attestation0.combine(attestation1, {skipValidation})
pool.add(state.data.data, attestation1)
pool.add(state.data.data, attestation0)
for i in 0..<MIN_ATTESTATION_INCLUSION_DELAY.int - 1: advanceState(state.data)
let attestations = pool.getAttestationsForBlock(
state.data.data, state.data.data.slot + 1)
check:
attestations.len == 1