2021-01-18 20:34:41 +00:00
|
|
|
# beacon_chain
|
2021-03-11 05:39:04 +00:00
|
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
2021-01-18 20:34:41 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * 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).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
{.used.}
|
|
|
|
|
|
|
|
import
|
2021-04-28 16:41:02 +00:00
|
|
|
options, sequtils,
|
|
|
|
unittest2,
|
|
|
|
./testutil, ./testdbutil, ./teststateutil,
|
2021-08-12 13:08:20 +00:00
|
|
|
../beacon_chain/spec/datatypes/phase0,
|
|
|
|
../beacon_chain/spec/[forks, helpers],
|
2021-03-03 06:23:05 +00:00
|
|
|
../beacon_chain/[beacon_node_types, statediff],
|
2021-03-15 14:11:51 +00:00
|
|
|
../beacon_chain/consensus_object_pools/[blockchain_dag, block_quarantine]
|
2021-01-18 20:34:41 +00:00
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
import chronicles # or some random compile error happens...
|
|
|
|
|
2021-04-28 16:41:02 +00:00
|
|
|
suite "state diff tests" & preset():
|
2021-01-18 20:34:41 +00:00
|
|
|
setup:
|
|
|
|
var
|
|
|
|
db = makeTestDB(SLOTS_PER_EPOCH)
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
dag = init(ChainDAGRef, defaultRuntimeConfig, db, {})
|
2021-01-18 20:34:41 +00:00
|
|
|
|
2021-04-28 16:41:02 +00:00
|
|
|
test "random slot differences" & preset():
|
2021-01-18 20:34:41 +00:00
|
|
|
let testStates = getTestStates(dag.headState.data)
|
|
|
|
|
|
|
|
for i in 0 ..< testStates.len:
|
|
|
|
for j in (i+1) ..< testStates.len:
|
2021-06-11 17:51:46 +00:00
|
|
|
doAssert getStateField(testStates[i][], slot) <
|
|
|
|
getStateField(testStates[j][], slot)
|
|
|
|
if getStateField(testStates[i][], slot) + SLOTS_PER_EPOCH != getStateField(testStates[j][], slot):
|
2021-01-18 20:34:41 +00:00
|
|
|
continue
|
2021-06-11 17:51:46 +00:00
|
|
|
var tmpStateApplyBase = assignClone(testStates[i].hbsPhase0.data)
|
|
|
|
let diff = diffStates(
|
|
|
|
testStates[i].hbsPhase0.data, testStates[j].hbsPhase0.data)
|
2021-01-18 20:34:41 +00:00
|
|
|
# Immutable parts of validators stored separately, so aren't part of
|
|
|
|
# the state diff. Synthesize required portion here for testing.
|
|
|
|
applyDiff(
|
|
|
|
tmpStateApplyBase[],
|
2021-06-11 17:51:46 +00:00
|
|
|
mapIt(
|
|
|
|
getStateField(testStates[j][], validators).asSeq[
|
|
|
|
getStateField(testStates[i][], validators).len ..
|
|
|
|
getStateField(testStates[j][], validators).len - 1],
|
2021-01-18 20:34:41 +00:00
|
|
|
it.getImmutableValidatorData),
|
|
|
|
diff)
|
2021-06-11 17:51:46 +00:00
|
|
|
check hash_tree_root(testStates[j][]) ==
|
2021-01-18 20:34:41 +00:00
|
|
|
hash_tree_root(tmpStateApplyBase[])
|