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
|
2020-02-10 12:56:53 +00:00
|
|
|
os, sequtils, unittest,
|
2019-09-03 18:02:21 +00:00
|
|
|
# Beacon chain internals
|
2019-12-16 18:08:50 +00:00
|
|
|
../../beacon_chain/spec/[crypto, datatypes],
|
2019-09-03 18:02:21 +00:00
|
|
|
../../beacon_chain/[ssz, state_transition, extras],
|
|
|
|
# Test utilities
|
|
|
|
../testutil,
|
|
|
|
./fixtures_utils,
|
2019-11-06 15:02:06 +00:00
|
|
|
../helpers/debug_state
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2019-11-13 11:30:11 +00:00
|
|
|
const SanityBlocksDir = SszTestsDir/const_preset/"phase0"/"sanity"/"blocks"/"pyspec_tests"
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-10 12:56:53 +00:00
|
|
|
proc runTest(identifier: 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-02-10 12:56:53 +00:00
|
|
|
let testDir = SanityBlocksDir / identifier
|
2019-09-03 18:02:21 +00:00
|
|
|
|
|
|
|
proc `testImpl _ blck _ identifier`() =
|
2020-02-07 07:11:26 +00:00
|
|
|
let prefix = if existsFile(testDir/"post.ssz"):
|
|
|
|
"[Valid] "
|
|
|
|
else:
|
|
|
|
"[Invalid] "
|
|
|
|
|
|
|
|
timedTest prefix & identifier:
|
2019-09-03 18:02:21 +00:00
|
|
|
var stateRef, postRef: ref BeaconState
|
|
|
|
new stateRef
|
|
|
|
stateRef[] = parseTest(testDir/"pre.ssz", SSZ, BeaconState)
|
2020-02-07 07:11:26 +00:00
|
|
|
|
|
|
|
if existsFile(testDir/"post.ssz"):
|
|
|
|
new postRef
|
|
|
|
postRef[] = parseTest(testDir/"post.ssz", SSZ, BeaconState)
|
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.
|
|
|
|
for i in 0 ..< toSeq(walkPattern(testDir/"blocks_*.ssz")).len:
|
2019-12-16 18:08:50 +00:00
|
|
|
let blck = parseTest(testDir/"blocks_" & $i & ".ssz", SSZ, SignedBeaconBlock)
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-07 07:11:26 +00:00
|
|
|
if postRef.isNil:
|
2020-02-29 15:15:44 +00:00
|
|
|
let success = state_transition(stateRef[], blck, flags = {})
|
2020-02-07 07:11:26 +00:00
|
|
|
doAssert not success, "We didn't expect this invalid block to be processed"
|
|
|
|
else:
|
|
|
|
# TODO: The EF is using invalid BLS keys so we can't verify them
|
2020-03-05 12:52:10 +00:00
|
|
|
let success = state_transition(stateRef[], blck, flags = {skipBlsValidation})
|
2020-02-07 07:11:26 +00:00
|
|
|
doAssert success, "Failure when applying block " & $i
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-10 12:56:53 +00:00
|
|
|
# check: stateRef.hash_tree_root() == postRef.hash_tree_root()
|
|
|
|
if not postRef.isNil:
|
2020-04-17 22:09:34 +00:00
|
|
|
when false:
|
|
|
|
reportDiff(stateRef, postRef)
|
|
|
|
doAssert stateRef.hash_tree_root() == postRef.hash_tree_root()
|
2019-09-03 18:02:21 +00:00
|
|
|
|
|
|
|
`testImpl _ blck _ identifier`()
|
|
|
|
|
2020-03-10 04:00:19 +00:00
|
|
|
suiteReport "Official - Sanity - Blocks " & preset():
|
2020-02-10 12:56:53 +00:00
|
|
|
for kind, path in walkDir(SanityBlocksDir, true):
|
|
|
|
runTest(path)
|