2019-09-11 03:50:07 -04:00
|
|
|
# beacon_chain
|
2021-09-30 18:28:02 +02:00
|
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
2019-09-11 03:50:07 -04:00
|
|
|
# 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 03:50:07 -04: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 03:50:07 -04:00
|
|
|
import
|
|
|
|
# Standard library
|
2021-04-28 18:41:02 +02:00
|
|
|
os,
|
2020-07-03 17:03:14 +00:00
|
|
|
# Utilities
|
|
|
|
stew/results,
|
2019-09-11 03:50:07 -04:00
|
|
|
# Beacon chain internals
|
2021-05-28 20:32:26 +00:00
|
|
|
../../../beacon_chain/spec/state_transition_block,
|
|
|
|
../../../beacon_chain/spec/datatypes/phase0,
|
2019-09-11 03:50:07 -04:00
|
|
|
# Test utilities
|
2021-05-28 20:32:26 +00:00
|
|
|
../../testutil,
|
|
|
|
../fixtures_utils,
|
|
|
|
../../helpers/debug_state
|
2019-09-11 03:50:07 -04:00
|
|
|
|
2021-05-28 15:25:58 +00:00
|
|
|
when isMainModule:
|
|
|
|
import chronicles # or some random compile error happens...
|
|
|
|
|
2021-05-28 20:32:26 +00:00
|
|
|
const OpProposerSlashingDir = SszTestsDir/const_preset/"phase0"/"operations"/"proposer_slashing"/"pyspec_tests"
|
2019-09-11 03:50:07 -04:00
|
|
|
|
2020-02-04 19:34:33 +01:00
|
|
|
proc runTest(identifier: string) =
|
|
|
|
let testDir = OpProposerSlashingDir / identifier
|
2019-09-11 03:50:07 -04:00
|
|
|
|
|
|
|
proc `testImpl_proposer_slashing _ identifier`() =
|
|
|
|
|
2021-09-27 14:22:58 +00:00
|
|
|
let prefix =
|
|
|
|
if existsFile(testDir/"post.ssz_snappy"):
|
|
|
|
"[Valid] "
|
|
|
|
else:
|
|
|
|
"[Invalid] "
|
2019-09-11 03:50:07 -04:00
|
|
|
|
2021-04-28 18:41:02 +02:00
|
|
|
test prefix & identifier:
|
2021-05-24 08:42:40 +00:00
|
|
|
var
|
2021-10-12 13:36:52 +02:00
|
|
|
cache = StateCache()
|
2021-05-24 08:42:40 +00:00
|
|
|
preState =
|
2021-08-12 15:08:20 +02:00
|
|
|
newClone(parseTest(testDir/"pre.ssz_snappy", SSZ, phase0.BeaconState))
|
2021-10-12 13:36:52 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
proposerSlashing = parseTest(
|
|
|
|
testDir/"proposer_slashing.ssz_snappy", SSZ, ProposerSlashing)
|
|
|
|
done = process_proposer_slashing(
|
|
|
|
defaultRuntimeConfig, preState[], proposerSlashing, {}, cache)
|
2019-09-11 03:50:07 -04:00
|
|
|
|
2021-05-24 08:42:40 +00:00
|
|
|
if existsFile(testDir/"post.ssz_snappy"):
|
2021-10-12 13:36:52 +02:00
|
|
|
let postState =
|
|
|
|
newClone(parseTest(testDir/"post.ssz_snappy", SSZ, phase0.BeaconState))
|
|
|
|
|
|
|
|
check:
|
|
|
|
done.isOk()
|
|
|
|
preState[].hash_tree_root() == postState[].hash_tree_root()
|
2020-04-23 02:35:55 +03:00
|
|
|
reportDiff(preState, postState)
|
|
|
|
else:
|
2021-10-12 13:36:52 +02:00
|
|
|
check: done.isErr() # No post state = processing should fail
|
2019-09-11 03:50:07 -04:00
|
|
|
|
|
|
|
`testImpl_proposer_slashing _ identifier`()
|
|
|
|
|
2021-08-27 06:30:30 +00:00
|
|
|
suite "Ethereum Foundation - Phase 0 - Operations - Proposer slashing " & preset():
|
2021-07-02 17:33:59 +00:00
|
|
|
for kind, path in walkDir(
|
|
|
|
OpProposerSlashingDir, relative = true, checkDir = true):
|
2020-02-04 19:34:33 +01:00
|
|
|
runTest(path)
|