2019-09-09 03:33:24 +00:00
|
|
|
# beacon_chain
|
2021-09-30 16:28:02 +00:00
|
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
2019-09-09 03:33:24 +00: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-09 03:33:24 +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-09 03:33:24 +00:00
|
|
|
import
|
|
|
|
# Standard library
|
2021-04-28 16:41:02 +00:00
|
|
|
os,
|
2020-07-03 17:03:14 +00:00
|
|
|
# Utilities
|
2021-04-28 16:41:02 +00:00
|
|
|
unittest2,
|
2021-10-12 11:36:52 +00:00
|
|
|
chronicles,
|
2020-07-03 17:03:14 +00:00
|
|
|
stew/results,
|
2019-09-09 03:33:24 +00:00
|
|
|
# Beacon chain internals
|
2021-05-28 20:32:26 +00:00
|
|
|
../../../beacon_chain/spec/beaconstate,
|
|
|
|
../../../beacon_chain/spec/datatypes/altair,
|
2019-09-09 03:33:24 +00:00
|
|
|
# Test utilities
|
2021-05-28 20:32:26 +00:00
|
|
|
../../testutil,
|
|
|
|
../fixtures_utils,
|
|
|
|
../../helpers/debug_state
|
2019-09-09 03:33:24 +00:00
|
|
|
|
2021-05-28 15:25:58 +00:00
|
|
|
const OperationsAttestationsDir = SszTestsDir/const_preset/"altair"/"operations"/"attestation"/"pyspec_tests"
|
2019-09-09 03:33:24 +00:00
|
|
|
|
2020-02-04 18:34:33 +00:00
|
|
|
proc runTest(identifier: string) =
|
|
|
|
let testDir = OperationsAttestationsDir / identifier
|
2019-09-09 03:33:24 +00:00
|
|
|
|
|
|
|
proc `testImpl _ operations_attestations _ identifier`() =
|
|
|
|
|
2021-09-27 14:22:58 +00:00
|
|
|
let prefix =
|
|
|
|
if existsFile(testDir/"post.ssz_snappy"):
|
|
|
|
"[Valid] "
|
|
|
|
else:
|
|
|
|
"[Invalid] "
|
2019-09-09 03:33:24 +00:00
|
|
|
|
2021-04-28 16:41:02 +00:00
|
|
|
test prefix & identifier:
|
2021-10-12 11:36:52 +00:00
|
|
|
var
|
|
|
|
cache = StateCache()
|
|
|
|
preState =
|
|
|
|
newClone(parseTest(testDir/"pre.ssz_snappy", SSZ, altair.BeaconState))
|
2019-09-09 03:33:24 +00:00
|
|
|
|
2021-10-12 11:36:52 +00:00
|
|
|
let
|
|
|
|
attestation = parseTest(
|
|
|
|
testDir/"attestation.ssz_snappy", SSZ, Attestation)
|
2021-10-13 14:24:36 +00:00
|
|
|
|
|
|
|
total_active_balance = get_total_active_balance(preState[], cache)
|
|
|
|
base_reward_per_increment =
|
|
|
|
get_base_reward_per_increment(total_active_balance)
|
|
|
|
|
2021-10-12 11:36:52 +00:00
|
|
|
done = process_attestation(
|
2021-10-13 14:24:36 +00:00
|
|
|
preState[], attestation, {}, base_reward_per_increment, cache)
|
2019-09-09 03:33:24 +00:00
|
|
|
|
2021-05-24 08:42:40 +00:00
|
|
|
if existsFile(testDir/"post.ssz_snappy"):
|
|
|
|
let postState =
|
2021-08-12 13:08:20 +00:00
|
|
|
newClone(parseTest(testDir/"post.ssz_snappy", SSZ, altair.BeaconState))
|
2021-10-12 11:36:52 +00:00
|
|
|
|
|
|
|
check:
|
|
|
|
done.isOk()
|
|
|
|
preState[].hash_tree_root() == postState[].hash_tree_root()
|
2020-04-22 23:35:55 +00:00
|
|
|
reportDiff(preState, postState)
|
|
|
|
else:
|
2021-10-12 11:36:52 +00:00
|
|
|
check: done.isErr() # No post state = processing should fail
|
2019-09-09 03:33:24 +00:00
|
|
|
|
|
|
|
`testImpl _ operations_attestations _ identifier`()
|
|
|
|
|
2021-08-27 06:30:30 +00:00
|
|
|
suite "Ethereum Foundation - Altair - Operations - Attestations " & preset():
|
2021-07-02 17:33:59 +00:00
|
|
|
for kind, path in walkDir(
|
|
|
|
OperationsAttestationsDir, relative = true, checkDir = true):
|
2020-02-04 18:34:33 +00:00
|
|
|
runTest(path)
|