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-04 18:34:33 +00:00
|
|
|
os, strutils, unittest,
|
2019-09-03 18:02:21 +00:00
|
|
|
# Beacon chain internals
|
|
|
|
../../beacon_chain/spec/datatypes,
|
|
|
|
../../beacon_chain/state_transition,
|
|
|
|
# Test utilities
|
|
|
|
../testutil,
|
|
|
|
./fixtures_utils,
|
|
|
|
../helpers/debug_state
|
|
|
|
|
|
|
|
const SanitySlotsDir = SszTestsDir/const_preset/"phase0"/"sanity"/"slots"/"pyspec_tests"
|
|
|
|
|
2020-02-04 18:34:33 +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-04 18:34:33 +00:00
|
|
|
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`() =
|
2020-02-04 18:34:33 +00:00
|
|
|
timedTest "Slots - " & identifier:
|
2019-09-03 18:02:21 +00:00
|
|
|
var stateRef, postRef: ref BeaconState
|
|
|
|
new stateRef
|
|
|
|
new postRef
|
|
|
|
stateRef[] = parseTest(testDir/"pre.ssz", SSZ, BeaconState)
|
|
|
|
postRef[] = parseTest(testDir/"post.ssz", SSZ, BeaconState)
|
|
|
|
|
|
|
|
process_slots(stateRef[], stateRef.slot + num_slots)
|
2019-11-08 10:30:22 +00:00
|
|
|
|
2020-03-11 16:06:06 +00:00
|
|
|
# check: stateRef.hash_tree_root() == postRef.hash_tree_root()
|
2019-11-14 19:03:08 +00:00
|
|
|
reportDiff(stateRef, postRef)
|
2019-09-03 18:02:21 +00:00
|
|
|
|
|
|
|
`testImpl _ slots _ identifier`()
|
|
|
|
|
|
|
|
suite "Official - Sanity - Slots " & preset():
|
2020-02-04 18:34:33 +00:00
|
|
|
for kind, path in walkDir(SanitySlotsDir, true):
|
|
|
|
runTest(path)
|