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
|
2019-11-13 11:30:11 +00:00
|
|
|
os, unittest,
|
2019-09-03 18:02:21 +00:00
|
|
|
# Beacon chain internals
|
2019-12-16 18:08:50 +00:00
|
|
|
../../beacon_chain/spec/[crypto, datatypes],
|
2019-09-03 18:02:21 +00:00
|
|
|
../../beacon_chain/[ssz, state_transition, extras],
|
|
|
|
# Test utilities
|
|
|
|
../testutil,
|
|
|
|
./fixtures_utils,
|
2019-11-06 15:02:06 +00:00
|
|
|
../helpers/debug_state
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2019-11-13 11:30:11 +00:00
|
|
|
const SanityBlocksDir = SszTestsDir/const_preset/"phase0"/"sanity"/"blocks"/"pyspec_tests"
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-07 07:11:26 +00:00
|
|
|
template runTest(identifier: string, num_blocks: int): untyped =
|
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-07 07:11:26 +00:00
|
|
|
const testDir = SanityBlocksDir / identifier
|
2019-09-03 18:02:21 +00:00
|
|
|
|
|
|
|
proc `testImpl _ blck _ identifier`() =
|
2020-02-07 07:11:26 +00:00
|
|
|
let prefix = if existsFile(testDir/"post.ssz"):
|
|
|
|
"[Valid] "
|
|
|
|
else:
|
|
|
|
"[Invalid] "
|
|
|
|
|
|
|
|
timedTest prefix & identifier:
|
2019-09-03 18:02:21 +00:00
|
|
|
var stateRef, postRef: ref BeaconState
|
|
|
|
new stateRef
|
|
|
|
stateRef[] = parseTest(testDir/"pre.ssz", SSZ, BeaconState)
|
2020-02-07 07:11:26 +00:00
|
|
|
|
|
|
|
if existsFile(testDir/"post.ssz"):
|
|
|
|
new postRef
|
|
|
|
postRef[] = parseTest(testDir/"post.ssz", SSZ, BeaconState)
|
2019-09-03 18:02:21 +00:00
|
|
|
|
|
|
|
for i in 0 ..< num_blocks:
|
2019-12-16 18:08:50 +00:00
|
|
|
let blck = parseTest(testDir/"blocks_" & $i & ".ssz", SSZ, SignedBeaconBlock)
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-07 07:11:26 +00:00
|
|
|
if postRef.isNil:
|
|
|
|
let success = state_transition(stateRef[], blck.message, flags = {})
|
|
|
|
doAssert not success, "We didn't expect this invalid block to be processed"
|
|
|
|
else:
|
|
|
|
# TODO: The EF is using invalid BLS keys so we can't verify them
|
|
|
|
let success = state_transition(stateRef[], blck.message, flags = {skipValidation})
|
|
|
|
doAssert success, "Failure when applying block " & $i
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-07 07:11:26 +00:00
|
|
|
# Checks:
|
|
|
|
# check: stateRef.hash_tree_root() == postRef.hash_tree_root()
|
|
|
|
if i == num_blocks - 1: reportDiff(stateRef, postRef)
|
2019-09-03 18:02:21 +00:00
|
|
|
|
|
|
|
`testImpl _ blck _ identifier`()
|
|
|
|
|
|
|
|
suite "Official - Sanity - Blocks " & preset():
|
2020-02-07 07:11:26 +00:00
|
|
|
const expected_failures = ["attester_slashing"]
|
|
|
|
runTest("attestation", 2)
|
2019-11-10 00:03:41 +00:00
|
|
|
|
2019-11-13 11:30:11 +00:00
|
|
|
when false:
|
2020-02-07 07:11:26 +00:00
|
|
|
# Failing due to signature checking in indexed validation checking pending
|
|
|
|
# 0.10 BLS verification API with new domain handling.
|
|
|
|
runTest("attester_slashing", 1)
|
|
|
|
echo "Skipping test: attester_slashing"
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2020-02-07 07:11:26 +00:00
|
|
|
runTest("balance_driven_status_transitions", 1)
|
|
|
|
runTest("deposit_in_block", 1)
|
|
|
|
runTest("deposit_top_up", 1)
|
|
|
|
runTest("empty_block_transition", 1)
|
|
|
|
runTest("empty_epoch_transition", 1)
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2019-11-13 11:30:11 +00:00
|
|
|
when const_preset=="minimal":
|
2020-02-07 07:11:26 +00:00
|
|
|
runTest("empty_epoch_transition_not_finalizing", 1)
|
|
|
|
runTest("eth1_data_votes_consensus", 17)
|
|
|
|
runTest("eth1_data_votes_no_consensus", 16)
|
|
|
|
|
|
|
|
runTest("expected_deposit_in_block", 1)
|
|
|
|
runTest("high_proposer_index", 1)
|
|
|
|
runTest("historical_batch", 1)
|
|
|
|
runTest("invalid_block_sig", 1)
|
|
|
|
runTest("invalid_state_root", 1)
|
|
|
|
runTest("prev_slot_block_transition", 1)
|
|
|
|
runTest("proposer_after_inactive_index", 1)
|
|
|
|
runTest("proposer_slashing", 1)
|
|
|
|
runTest("same_slot_block_transition", 1)
|
|
|
|
runTest("skipped_slots", 1)
|
|
|
|
runTest("voluntary_exit", 2)
|
2019-09-12 21:28:33 +00:00
|
|
|
when const_preset=="minimal":
|
2020-02-07 07:11:26 +00:00
|
|
|
runTest("zero_block_sig", 1)
|