2019-09-10 22:03:06 +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-10 22:03:06 +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-10 22:03:06 +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-10 22:03:06 +00:00
|
|
|
# Beacon chain internals
|
2020-07-15 10:44:18 +00:00
|
|
|
../../beacon_chain/spec/[datatypes, state_transition_block],
|
2020-04-10 14:06:24 +00:00
|
|
|
../../beacon_chain/ssz,
|
2019-09-10 22:03:06 +00:00
|
|
|
# Test utilities
|
|
|
|
../testutil,
|
|
|
|
./fixtures_utils,
|
|
|
|
../helpers/debug_state
|
|
|
|
|
2019-11-13 11:30:11 +00:00
|
|
|
const OpAttSlashingDir = SszTestsDir/const_preset/"phase0"/"operations"/"attester_slashing"/"pyspec_tests"
|
2019-09-10 22:03:06 +00:00
|
|
|
|
2020-02-06 11:41:06 +00:00
|
|
|
proc runTest(identifier: string) =
|
2019-09-10 22:03:06 +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-06 11:41:06 +00:00
|
|
|
let testDir = OpAttSlashingDir / identifier
|
2019-09-10 22:03:06 +00:00
|
|
|
|
|
|
|
proc `testImpl _ operations_attester_slashing _ 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-07-15 10:44:18 +00:00
|
|
|
var cache = StateCache()
|
2019-09-10 22:03:06 +00:00
|
|
|
|
2020-04-22 23:35:55 +00:00
|
|
|
let attesterSlashing = parseTest(testDir/"attester_slashing.ssz", SSZ, AttesterSlashing)
|
2020-04-29 20:12:07 +00:00
|
|
|
var preState = newClone(parseTest(testDir/"pre.ssz", SSZ, BeaconState))
|
2019-09-10 22:03:06 +00:00
|
|
|
|
|
|
|
if existsFile(testDir/"post.ssz"):
|
2020-04-29 20:12:07 +00:00
|
|
|
let postState = newClone(parseTest(testDir/"post.ssz", SSZ, BeaconState))
|
2020-04-23 18:58:54 +00:00
|
|
|
let done = process_attester_slashing(preState[], attesterSlashing,
|
2020-07-03 17:03:14 +00:00
|
|
|
{}, cache).isOk
|
2019-09-10 22:03:06 +00:00
|
|
|
doAssert done, "Valid attestater slashing not processed"
|
2020-04-29 20:12:07 +00:00
|
|
|
check: preState[].hash_tree_root() == postState[].hash_tree_root()
|
2020-04-22 23:35:55 +00:00
|
|
|
reportDiff(preState, postState)
|
|
|
|
else:
|
2020-04-23 18:58:54 +00:00
|
|
|
let done = process_attester_slashing(preState[], attesterSlashing,
|
2020-07-03 17:03:14 +00:00
|
|
|
{}, cache).isOk
|
2020-04-22 23:35:55 +00:00
|
|
|
doAssert done == false, "We didn't expect this invalid attester slashing to be processed."
|
2019-09-10 22:03:06 +00:00
|
|
|
|
|
|
|
`testImpl _ operations_attester_slashing _ identifier`()
|
|
|
|
|
2021-04-28 16:41:02 +00:00
|
|
|
suite "Official - Operations - Attester slashing " & preset():
|
2020-02-06 11:41:06 +00:00
|
|
|
for kind, path in walkDir(OpAttSlashingDir, true):
|
|
|
|
runTest(path)
|