mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-12 07:14:20 +00:00
b32205de7c
* reworked some of the das core specs, pr'd to check whether whether the conflicting type issue is centric to my machine or not * bumped nim-blscurve to 9c6e80c6109133c0af3025654f5a8820282cff05, same as unstable * bumped nim-eth2-scenarios, nim-nat-traversal at par with unstable, added more pathches, made peerdas devnet branch backward compatible, peerdas passing new ssz tests as per alpha3, disabled electra fixture tests, as branch hasn't been rebased for a while * refactor test fixture files * rm: serializeDataColumn * refactor: took data columns extracted from blobs during block proposal to the heap * disable blob broadcast in pd devnet * fix addBlock in message router * fix: data column iterator * added debug checkpoints to check CI * refactor if else conditions * add: updated das core specs to alpha 3, and unit tests pass
175 lines
7.5 KiB
Nim
175 lines
7.5 KiB
Nim
# beacon_chain
|
|
# Copyright (c) 2022-2024 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * 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).
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
{.push raises: [].}
|
|
{.used.}
|
|
|
|
import
|
|
# Standard library
|
|
std/[
|
|
strutils, streams, strformat,
|
|
macros, sets],
|
|
# Third-party
|
|
yaml,
|
|
# Beacon chain internals
|
|
../../../beacon_chain/spec/datatypes/[altair, capella],
|
|
# Status libraries
|
|
snappy,
|
|
# Test utilities
|
|
../../testutil, ../fixtures_utils, ../os_ops
|
|
|
|
from ../../../beacon_chain/spec/datatypes/bellatrix import PowBlock
|
|
|
|
# SSZ tests of consensus objects (minimal/mainnet preset specific)
|
|
|
|
# Parsing definitions
|
|
# ----------------------------------------------------------------
|
|
|
|
const
|
|
SSZDir = SszTestsDir/const_preset/"capella"/"ssz_static"
|
|
|
|
type
|
|
SSZHashTreeRoot = object
|
|
# The test files have the values at the "root"
|
|
# so we **must** use "root" as a field name
|
|
root: string
|
|
# Some have a signing_root field
|
|
signing_root {.defaultVal: "".}: string
|
|
|
|
# Note this only tracks HashTreeRoot
|
|
# Checking the values against the yaml file is TODO (require more flexible Yaml parser)
|
|
|
|
proc checkSSZ(
|
|
T: type capella.SignedBeaconBlock,
|
|
dir: string,
|
|
expectedHash: SSZHashTreeRoot
|
|
) {.raises: [IOError, SerializationError, UnconsumedInput].} =
|
|
# Deserialize into a ref object to not fill Nim stack
|
|
let encoded = snappy.decode(
|
|
readFileBytes(dir/"serialized.ssz_snappy"), MaxObjectSize)
|
|
let deserialized = newClone(sszDecodeEntireInput(encoded, T))
|
|
|
|
# SignedBeaconBlocks usually not hashed because they're identified by
|
|
# htr(BeaconBlock), so do it manually
|
|
check: expectedHash.root == "0x" & toLowerAscii($hash_tree_root(
|
|
[hash_tree_root(deserialized.message),
|
|
hash_tree_root(deserialized.signature)]))
|
|
|
|
check deserialized.root == hash_tree_root(deserialized.message)
|
|
check SSZ.encode(deserialized[]) == encoded
|
|
check sszSize(deserialized[]) == encoded.len
|
|
|
|
# TODO check the value (requires YAML loader)
|
|
|
|
proc checkSSZ(
|
|
T: type,
|
|
dir: string,
|
|
expectedHash: SSZHashTreeRoot
|
|
) {.raises: [IOError, SerializationError, UnconsumedInput].} =
|
|
# Deserialize into a ref object to not fill Nim stack
|
|
let encoded = snappy.decode(
|
|
readFileBytes(dir/"serialized.ssz_snappy"), MaxObjectSize)
|
|
let deserialized = newClone(sszDecodeEntireInput(encoded, T))
|
|
|
|
check: expectedHash.root == "0x" & toLowerAscii($hash_tree_root(deserialized[]))
|
|
|
|
check SSZ.encode(deserialized[]) == encoded
|
|
check sszSize(deserialized[]) == encoded.len
|
|
|
|
# TODO check the value (requires YAML loader)
|
|
|
|
proc loadExpectedHashTreeRoot(
|
|
dir: string
|
|
): SSZHashTreeRoot {.raises: [
|
|
Exception, IOError, OSError, YamlConstructionError, YamlParserError].} =
|
|
let s = openFileStream(dir/"roots.yaml")
|
|
yaml.load(s, result)
|
|
s.close()
|
|
|
|
# Test runner
|
|
# ----------------------------------------------------------------
|
|
|
|
suite "EF - Capella - SSZ consensus objects " & preset():
|
|
doAssert dirExists(SSZDir), "You need to run the \"download_test_vectors.sh\" script to retrieve the consensus spec test vectors."
|
|
for pathKind, sszType in walkDir(SSZDir, relative = true, checkDir = true):
|
|
doAssert pathKind == pcDir
|
|
|
|
test &" Testing {sszType}":
|
|
let path = SSZDir/sszType
|
|
for pathKind, sszTestKind in walkDir(
|
|
path, relative = true, checkDir = true):
|
|
doAssert pathKind == pcDir
|
|
let path = SSZDir/sszType/sszTestKind
|
|
for pathKind, sszTestCase in walkDir(
|
|
path, relative = true, checkDir = true):
|
|
let path = SSZDir/sszType/sszTestKind/sszTestCase
|
|
let hash = loadExpectedHashTreeRoot(path)
|
|
|
|
case sszType:
|
|
of "AggregateAndProof": checkSSZ(phase0.AggregateAndProof, path, hash)
|
|
of "Attestation": checkSSZ(phase0.Attestation, path, hash)
|
|
of "AttestationData": checkSSZ(AttestationData, path, hash)
|
|
of "AttesterSlashing": checkSSZ(phase0.AttesterSlashing, path, hash)
|
|
of "BeaconBlock": checkSSZ(capella.BeaconBlock, path, hash)
|
|
of "BeaconBlockBody": checkSSZ(capella.BeaconBlockBody, path, hash)
|
|
of "BeaconBlockHeader": checkSSZ(BeaconBlockHeader, path, hash)
|
|
of "BeaconState": checkSSZ(capella.BeaconState, path, hash)
|
|
of "BLSToExecutionChange": checkSSZ(BLSToExecutionChange, path, hash)
|
|
of "Checkpoint": checkSSZ(Checkpoint, path, hash)
|
|
of "ContributionAndProof": checkSSZ(ContributionAndProof, path, hash)
|
|
of "Deposit": checkSSZ(Deposit, path, hash)
|
|
of "DepositData": checkSSZ(DepositData, path, hash)
|
|
of "DepositMessage": checkSSZ(DepositMessage, path, hash)
|
|
of "Eth1Block": checkSSZ(Eth1Block, path, hash)
|
|
of "Eth1Data": checkSSZ(Eth1Data, path, hash)
|
|
of "ExecutionPayload":
|
|
checkSSZ(capella.ExecutionPayload, path, hash)
|
|
of "ExecutionPayloadHeader":
|
|
checkSSZ(capella.ExecutionPayloadHeader, path, hash)
|
|
of "Fork": checkSSZ(Fork, path, hash)
|
|
of "ForkData": checkSSZ(ForkData, path, hash)
|
|
of "HistoricalBatch": checkSSZ(HistoricalBatch, path, hash)
|
|
of "HistoricalSummary": checkSSZ(HistoricalSummary, path, hash)
|
|
of "IndexedAttestation":
|
|
checkSSZ(phase0.IndexedAttestation, path, hash)
|
|
of "LightClientBootstrap":
|
|
checkSSZ(capella.LightClientBootstrap, path, hash)
|
|
of "LightClientHeader":
|
|
checkSSZ(capella.LightClientHeader, path, hash)
|
|
of "LightClientUpdate":
|
|
checkSSZ(capella.LightClientUpdate, path, hash)
|
|
of "LightClientFinalityUpdate":
|
|
checkSSZ(capella.LightClientFinalityUpdate, path, hash)
|
|
of "LightClientOptimisticUpdate":
|
|
checkSSZ(capella.LightClientOptimisticUpdate, path, hash)
|
|
of "PendingAttestation": checkSSZ(PendingAttestation, path, hash)
|
|
of "PowBlock": checkSSZ(PowBlock, path, hash)
|
|
of "ProposerSlashing": checkSSZ(ProposerSlashing, path, hash)
|
|
of "SignedAggregateAndProof":
|
|
checkSSZ(phase0.SignedAggregateAndProof, path, hash)
|
|
of "SignedBeaconBlock":
|
|
checkSSZ(capella.SignedBeaconBlock, path, hash)
|
|
of "SignedBeaconBlockHeader":
|
|
checkSSZ(SignedBeaconBlockHeader, path, hash)
|
|
of "SignedBLSToExecutionChange":
|
|
checkSSZ(SignedBLSToExecutionChange, path, hash)
|
|
of "SignedContributionAndProof":
|
|
checkSSZ(SignedContributionAndProof, path, hash)
|
|
of "SignedVoluntaryExit": checkSSZ(SignedVoluntaryExit, path, hash)
|
|
of "SigningData": checkSSZ(SigningData, path, hash)
|
|
of "SyncAggregate": checkSSZ(SyncAggregate, path, hash)
|
|
of "SyncAggregatorSelectionData":
|
|
checkSSZ(SyncAggregatorSelectionData, path, hash)
|
|
of "SyncCommittee": checkSSZ(SyncCommittee, path, hash)
|
|
of "SyncCommitteeContribution":
|
|
checkSSZ(SyncCommitteeContribution, path, hash)
|
|
of "SyncCommitteeMessage": checkSSZ(SyncCommitteeMessage, path, hash)
|
|
of "Withdrawal": checkSSZ(Withdrawal, path, hash)
|
|
of "Validator": checkSSZ(Validator, path, hash)
|
|
of "VoluntaryExit": checkSSZ(VoluntaryExit, path, hash)
|
|
else:
|
|
raise newException(ValueError, "Unsupported test: " & sszType) |