2021-01-18 20:34:41 +00:00
|
|
|
# beacon_chain
|
2022-02-20 20:13:06 +00:00
|
|
|
# Copyright (c) 2018-2022 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,
|
2022-09-26 19:13:50 +00:00
|
|
|
../beacon_chain/spec/datatypes/bellatrix,
|
2021-08-12 13:08:20 +00:00
|
|
|
../beacon_chain/spec/[forks, helpers],
|
2021-10-19 14:09:26 +00:00
|
|
|
../beacon_chain/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)
|
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-01-28 19:53:41 +00:00
|
|
|
let testStates = getTestStates(dag.headState, ConsensusFork.Bellatrix)
|
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)
|
|
|
|
if getStateField(testStates[i][], slot) + SLOTS_PER_EPOCH != getStateField(testStates[j][], slot):
|
2021-01-18 20:34:41 +00:00
|
|
|
continue
|
2022-09-26 19:13:50 +00:00
|
|
|
let tmpStateApplyBase = assignClone(testStates[i].bellatrixData.data)
|
2021-06-11 17:51:46 +00:00
|
|
|
let diff = diffStates(
|
2022-09-26 19:13:50 +00:00
|
|
|
testStates[i].bellatrixData.data, testStates[j].bellatrixData.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)
|
2022-09-26 19:13:50 +00:00
|
|
|
check hash_tree_root(testStates[j][].bellatrixData.data) ==
|
2021-01-18 20:34:41 +00:00
|
|
|
hash_tree_root(tmpStateApplyBase[])
|