2019-09-11 21:10:54 +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-11 21:10:54 +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-11 21:10:54 +00:00
|
|
|
import
|
|
|
|
# Standard library
|
2021-04-28 16:41:02 +00:00
|
|
|
os,
|
2020-07-03 17:03:14 +00:00
|
|
|
# Utilities
|
|
|
|
stew/results,
|
2019-09-11 21:10:54 +00:00
|
|
|
# Beacon chain internals
|
2020-07-07 23:02:14 +00:00
|
|
|
../../beacon_chain/spec/[datatypes, beaconstate, presets],
|
2021-01-22 13:29:04 +00:00
|
|
|
../../beacon_chain/ssz,
|
2019-09-11 21:10:54 +00:00
|
|
|
# Test utilities
|
|
|
|
../testutil,
|
|
|
|
./fixtures_utils,
|
2019-11-06 15:02:06 +00:00
|
|
|
../helpers/debug_state
|
2019-09-11 21:10:54 +00:00
|
|
|
|
2019-11-12 11:46:46 +00:00
|
|
|
const OperationsDepositsDir = SszTestsDir/const_preset/"phase0"/"operations"/"deposit"/"pyspec_tests"
|
2019-09-11 21:10:54 +00:00
|
|
|
|
2020-02-10 12:56:53 +00:00
|
|
|
proc runTest(identifier: string) =
|
2019-09-11 21:10:54 +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 = OperationsDepositsDir / identifier
|
2019-09-11 21:10:54 +00:00
|
|
|
|
|
|
|
proc `testImpl _ operations_deposits _ identifier`() =
|
|
|
|
|
|
|
|
var prefix: string
|
|
|
|
if existsFile(testDir/"post.ssz"):
|
|
|
|
prefix = "[Valid] "
|
|
|
|
else:
|
|
|
|
prefix = "[Invalid] "
|
|
|
|
|
2021-04-28 16:41:02 +00:00
|
|
|
test prefix & " " & identifier:
|
2020-04-22 23:35:55 +00:00
|
|
|
let deposit = parseTest(testDir/"deposit.ssz", SSZ, Deposit)
|
2020-04-29 20:12:07 +00:00
|
|
|
var preState = newClone(parseTest(testDir/"pre.ssz", SSZ, BeaconState))
|
2019-09-11 21:10:54 +00:00
|
|
|
|
|
|
|
if existsFile(testDir/"post.ssz"):
|
2020-04-29 20:12:07 +00:00
|
|
|
let postState = newClone(parseTest(testDir/"post.ssz", SSZ, BeaconState))
|
2021-01-22 13:29:04 +00:00
|
|
|
discard process_deposit(defaultRuntimePreset, preState[], deposit)
|
2020-04-22 23:35:55 +00:00
|
|
|
reportDiff(preState, postState)
|
2019-09-11 21:10:54 +00:00
|
|
|
else:
|
2021-01-22 13:29:04 +00:00
|
|
|
check process_deposit(defaultRuntimePreset, preState[], deposit).isErr
|
2019-09-11 21:10:54 +00:00
|
|
|
|
|
|
|
`testImpl _ operations_deposits _ identifier`()
|
|
|
|
|
2021-04-28 16:41:02 +00:00
|
|
|
suite "Official - Operations - Deposits " & preset():
|
2020-02-10 12:56:53 +00:00
|
|
|
for kind, path in walkDir(OperationsDepositsDir, true):
|
|
|
|
runTest(path)
|