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
|
|
|
|
# Standard library
|
2021-04-28 16:41:02 +00:00
|
|
|
os, sequtils, chronicles,
|
2019-09-03 18:02:21 +00:00
|
|
|
# Beacon chain internals
|
2021-06-11 17:51:46 +00:00
|
|
|
../../../beacon_chain/spec/[
|
|
|
|
crypto, forkedbeaconstate_helpers, presets, state_transition],
|
2021-05-28 20:32:26 +00:00
|
|
|
../../../beacon_chain/spec/datatypes/phase0,
|
|
|
|
../../../beacon_chain/ssz,
|
2019-09-03 18:02:21 +00:00
|
|
|
# Test utilities
|
2021-05-28 20:32:26 +00:00
|
|
|
../../testutil,
|
|
|
|
../fixtures_utils
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-08-17 07:19:48 +00:00
|
|
|
const
|
2021-05-28 20:32:26 +00:00
|
|
|
FinalityDir = SszTestsDir/const_preset/"phase0"/"finality"/"finality"/"pyspec_tests"
|
|
|
|
SanityBlocksDir = SszTestsDir/const_preset/"phase0"/"sanity"/"blocks"/"pyspec_tests"
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-08-17 07:19:48 +00:00
|
|
|
proc runTest(testName, testDir, unitTestName: string) =
|
2019-09-03 18:02:21 +00:00
|
|
|
# We wrap the tests in a proc to avoid running out of globals
|
|
|
|
# in the future: Nim supports up to 3500 globals
|
|
|
|
# but unittest with the macro/templates put everything as globals
|
|
|
|
# https://github.com/nim-lang/Nim/issues/12084#issue-486866402
|
|
|
|
|
2020-08-17 07:19:48 +00:00
|
|
|
let testPath = testDir / unitTestName
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-08-17 07:19:48 +00:00
|
|
|
proc `testImpl _ blck _ testName`() =
|
|
|
|
let
|
2021-05-24 08:42:40 +00:00
|
|
|
hasPostState = existsFile(testPath/"post.ssz_snappy")
|
2020-08-17 07:19:48 +00:00
|
|
|
prefix = if hasPostState: "[Valid] " else: "[Invalid] "
|
2020-02-07 07:11:26 +00:00
|
|
|
|
2021-04-28 16:41:02 +00:00
|
|
|
test prefix & testName & " - " & unitTestName & preset():
|
2020-04-30 16:27:17 +00:00
|
|
|
var
|
2021-05-24 08:42:40 +00:00
|
|
|
preState = newClone(parseTest(testPath/"pre.ssz_snappy", SSZ, BeaconState))
|
2021-06-11 17:51:46 +00:00
|
|
|
fhPreState = (ref ForkedHashedBeaconState)(hbsPhase0: phase0.HashedBeaconState(
|
|
|
|
data: preState[], root: hash_tree_root(preState[])), beaconStateFork: forkPhase0)
|
2020-11-12 19:24:07 +00:00
|
|
|
cache = StateCache()
|
2021-05-07 11:36:21 +00:00
|
|
|
rewards = RewardInfo()
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-10 12:56:53 +00:00
|
|
|
# In test cases with more than 10 blocks the first 10 aren't 0-prefixed,
|
|
|
|
# so purely lexicographic sorting wouldn't sort properly.
|
2021-05-24 08:42:40 +00:00
|
|
|
let numBlocks = toSeq(walkPattern(testPath/"blocks_*.ssz_snappy")).len
|
2020-05-19 14:37:29 +00:00
|
|
|
for i in 0 ..< numBlocks:
|
2021-05-24 08:42:40 +00:00
|
|
|
let blck = parseTest(testPath/"blocks_" & $i & ".ssz_snappy", SSZ, SignedBeaconBlock)
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-04-22 23:35:55 +00:00
|
|
|
if hasPostState:
|
2020-04-26 19:13:33 +00:00
|
|
|
let success = state_transition(
|
2021-06-11 17:51:46 +00:00
|
|
|
defaultRuntimePreset, fhPreState[], blck, cache, rewards, flags = {},
|
2021-06-23 14:43:18 +00:00
|
|
|
noRollback, FAR_FUTURE_SLOT)
|
2020-02-07 07:11:26 +00:00
|
|
|
doAssert success, "Failure when applying block " & $i
|
2020-04-22 23:35:55 +00:00
|
|
|
else:
|
2020-04-26 19:13:33 +00:00
|
|
|
let success = state_transition(
|
2021-06-11 17:51:46 +00:00
|
|
|
defaultRuntimePreset, fhPreState[], blck, cache, rewards, flags = {},
|
2021-06-23 14:43:18 +00:00
|
|
|
noRollback, FAR_FUTURE_SLOT)
|
2020-05-19 14:37:29 +00:00
|
|
|
doAssert (i + 1 < numBlocks) or not success,
|
|
|
|
"We didn't expect these invalid blocks to be processed"
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-04-22 23:35:55 +00:00
|
|
|
if hasPostState:
|
2021-05-24 08:42:40 +00:00
|
|
|
let postState = newClone(parseTest(testPath/"post.ssz_snappy", SSZ, BeaconState))
|
2020-04-17 22:09:34 +00:00
|
|
|
when false:
|
2021-06-11 17:51:46 +00:00
|
|
|
reportDiff(hashedPreState.hbsPhase0.data, postState)
|
|
|
|
doAssert getStateRoot(fhPreState[]) == postState[].hash_tree_root()
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-08-17 07:19:48 +00:00
|
|
|
`testImpl _ blck _ testName`()
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2021-05-28 20:32:26 +00:00
|
|
|
suite "Official - Phase 0 - Sanity - Blocks " & preset():
|
2020-02-10 12:56:53 +00:00
|
|
|
for kind, path in walkDir(SanityBlocksDir, true):
|
2021-05-28 20:32:26 +00:00
|
|
|
runTest("Official - Phase 0 - Sanity - Blocks", SanityBlocksDir, path)
|
2020-08-17 07:19:48 +00:00
|
|
|
|
2021-05-28 20:32:26 +00:00
|
|
|
suite "Official - Phase 0 - Finality " & preset():
|
2020-08-17 07:19:48 +00:00
|
|
|
for kind, path in walkDir(FinalityDir, true):
|
2021-05-28 20:32:26 +00:00
|
|
|
runTest("Official - Phase 0 - Finality", FinalityDir, path)
|