2019-09-03 18:02:21 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2018-Present Status Research & Development GmbH
|
|
|
|
# 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).
|
2019-09-03 18:02:21 +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.}
|
|
|
|
|
2019-09-03 18:02:21 +00:00
|
|
|
import
|
2021-05-28 15:25:58 +00:00
|
|
|
chronicles,
|
2019-09-03 18:02:21 +00:00
|
|
|
# Standard library
|
2021-04-28 16:41:02 +00:00
|
|
|
os, strutils,
|
2019-09-03 18:02:21 +00:00
|
|
|
# Beacon chain internals
|
2021-06-11 17:51:46 +00:00
|
|
|
../../../beacon_chain/spec/[forkedbeaconstate_helpers, state_transition],
|
2021-05-28 20:32:26 +00:00
|
|
|
../../../beacon_chain/spec/datatypes/altair,
|
2019-09-03 18:02:21 +00:00
|
|
|
# Test utilities
|
2021-05-28 20:32:26 +00:00
|
|
|
../../testutil,
|
|
|
|
../fixtures_utils,
|
|
|
|
../../helpers/debug_state
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2021-05-28 15:25:58 +00:00
|
|
|
const SanitySlotsDir = SszTestsDir/const_preset/"altair"/"sanity"/"slots"/"pyspec_tests"
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-04 18:34:33 +00:00
|
|
|
proc runTest(identifier: string) =
|
|
|
|
let
|
|
|
|
testDir = SanitySlotsDir / identifier
|
|
|
|
num_slots = readLines(testDir / "slots.yaml", 2)[0].parseInt.uint64
|
2019-09-03 18:02:21 +00:00
|
|
|
|
|
|
|
proc `testImpl _ slots _ identifier`() =
|
2021-04-28 16:41:02 +00:00
|
|
|
test "Slots - " & identifier:
|
2020-04-30 16:27:17 +00:00
|
|
|
var
|
2021-05-24 08:42:40 +00:00
|
|
|
preState = newClone(parseTest(testDir/"pre.ssz_snappy", SSZ, BeaconState))
|
2021-06-11 17:51:46 +00:00
|
|
|
fhPreState = (ref ForkedHashedBeaconState)(
|
|
|
|
hbsAltair: altair.HashedBeaconState(
|
|
|
|
data: preState[], root: hash_tree_root(preState[])),
|
|
|
|
beaconStateFork: forkAltair)
|
2020-09-07 15:04:33 +00:00
|
|
|
cache = StateCache()
|
2021-05-07 11:36:21 +00:00
|
|
|
rewards: RewardInfo
|
2021-05-24 08:42:40 +00:00
|
|
|
let postState = newClone(parseTest(testDir/"post.ssz_snappy", SSZ, BeaconState))
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-05-19 15:46:29 +00:00
|
|
|
check:
|
|
|
|
process_slots(
|
2021-06-11 17:51:46 +00:00
|
|
|
fhPreState[], getStateField(fhPreState[], slot) + num_slots, cache,
|
|
|
|
rewards, {}, FAR_FUTURE_SLOT)
|
2019-11-08 10:30:22 +00:00
|
|
|
|
2021-06-11 17:51:46 +00:00
|
|
|
getStateRoot(fhPreState[]) == postState[].hash_tree_root()
|
|
|
|
let newPreState = newClone(fhPreState.hbsAltair.data)
|
2020-04-30 16:27:17 +00:00
|
|
|
reportDiff(newPreState, postState)
|
2019-09-03 18:02:21 +00:00
|
|
|
|
|
|
|
`testImpl _ slots _ identifier`()
|
|
|
|
|
2021-05-28 20:32:26 +00:00
|
|
|
suite "Official - Altair - Sanity - Slots " & preset():
|
2020-02-04 18:34:33 +00:00
|
|
|
for kind, path in walkDir(SanitySlotsDir, true):
|
|
|
|
runTest(path)
|