2021-01-18 20:34:41 +00:00
|
|
|
# beacon_chain
|
2023-03-31 20:46:47 +00:00
|
|
|
# Copyright (c) 2018-2023 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
|
|
|
unittest2,
|
|
|
|
./testutil, ./testdbutil, ./teststateutil,
|
2023-04-23 19:15:14 +00:00
|
|
|
../beacon_chain/spec/forks,
|
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
|
|
|
|
2023-04-23 19:15:14 +00:00
|
|
|
from std/sequtils import mapIt
|
|
|
|
from ../beacon_chain/statediff import applyDiff, diffStates
|
|
|
|
|
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)
|
2021-12-20 19:20:31 +00:00
|
|
|
validatorMonitor = newClone(ValidatorMonitor.init())
|
|
|
|
dag = init(ChainDAGRef, defaultRuntimeConfig, db, validatorMonitor, {})
|
2021-01-18 20:34:41 +00:00
|
|
|
|
2021-04-28 16:41:02 +00:00
|
|
|
test "random slot differences" & preset():
|
2023-04-23 19:15:14 +00:00
|
|
|
let testStates = getTestStates(dag.headState, ConsensusFork.Capella)
|
2021-01-18 20:34:41 +00:00
|
|
|
|
|
|
|
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)
|
2023-04-23 19:15:14 +00:00
|
|
|
if getStateField(testStates[i][], slot) + SLOTS_PER_EPOCH !=
|
|
|
|
getStateField(testStates[j][], slot):
|
2021-01-18 20:34:41 +00:00
|
|
|
continue
|
2023-04-23 19:15:14 +00:00
|
|
|
let
|
|
|
|
tmpStateApplyBase = assignClone(testStates[i].capellaData.data)
|
|
|
|
diff = diffStates(
|
|
|
|
testStates[i].capellaData.data, testStates[j].capellaData.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)
|
2023-04-23 19:15:14 +00:00
|
|
|
check hash_tree_root(testStates[j][].capellaData.data) ==
|
2021-01-18 20:34:41 +00:00
|
|
|
hash_tree_root(tmpStateApplyBase[])
|