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],
|
2020-05-04 21:07:18 +00:00
|
|
|
../../beacon_chain/[ssz, state_transition],
|
2019-09-03 18:02:21 +00:00
|
|
|
# Test utilities
|
|
|
|
../testutil,
|
2020-04-20 17:27:52 +00:00
|
|
|
./fixtures_utils
|
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:
|
2020-04-30 16:27:17 +00:00
|
|
|
var
|
|
|
|
preState = newClone(parseTest(testDir/"pre.ssz", SSZ, BeaconState))
|
|
|
|
hasPostState = existsFile(testDir/"post.ssz")
|
2020-05-28 08:28:14 +00:00
|
|
|
hashedPreState = (ref HashedBeaconState)(
|
2020-04-30 16:27:17 +00:00
|
|
|
data: preState[], root: hash_tree_root(preState[]))
|
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.
|
2020-05-19 14:37:29 +00:00
|
|
|
let numBlocks = toSeq(walkPattern(testDir/"blocks_*.ssz")).len
|
|
|
|
for i in 0 ..< numBlocks:
|
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-04-22 23:35:55 +00:00
|
|
|
if hasPostState:
|
2020-04-26 19:13:33 +00:00
|
|
|
let success = state_transition(
|
2020-05-28 08:28:14 +00:00
|
|
|
hashedPreState[], blck, flags = {}, noRollback)
|
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(
|
2020-05-28 08:28:14 +00:00
|
|
|
hashedPreState[], blck, flags = {}, noRollback)
|
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:
|
2020-04-29 20:12:07 +00:00
|
|
|
let postState = newClone(parseTest(testDir/"post.ssz", SSZ, BeaconState))
|
2020-04-17 22:09:34 +00:00
|
|
|
when false:
|
2020-04-30 16:27:17 +00:00
|
|
|
reportDiff(hashedPreState.data, postState)
|
|
|
|
doAssert hashedPreState.root == postState[].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)
|