mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-20 05:14:35 +00:00
213 lines
6.3 KiB
Rust
213 lines
6.3 KiB
Rust
use ef_tests::*;
|
|
use types::{
|
|
Attestation, AttestationData, AttestationDataAndCustodyBit, AttesterSlashing, BeaconBlock,
|
|
BeaconBlockBody, BeaconBlockHeader, BeaconState, Checkpoint, CompactCommittee, Crosslink,
|
|
Deposit, DepositData, Eth1Data, Fork, HistoricalBatch, IndexedAttestation, MainnetEthSpec,
|
|
MinimalEthSpec, PendingAttestation, ProposerSlashing, Transfer, Validator, VoluntaryExit,
|
|
};
|
|
|
|
#[test]
|
|
fn ssz_generic() {
|
|
SszGenericHandler::<BasicVector>::run();
|
|
SszGenericHandler::<Bitlist>::run();
|
|
SszGenericHandler::<Bitvector>::run();
|
|
SszGenericHandler::<Boolean>::run();
|
|
SszGenericHandler::<Uints>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn shuffling() {
|
|
ShufflingHandler::<MinimalEthSpec>::run();
|
|
ShufflingHandler::<MainnetEthSpec>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn operations_deposit() {
|
|
OperationsHandler::<MinimalEthSpec, Deposit>::run();
|
|
OperationsHandler::<MainnetEthSpec, Deposit>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn operations_transfer() {
|
|
OperationsHandler::<MinimalEthSpec, Transfer>::run();
|
|
// Note: there are no transfer tests for mainnet
|
|
}
|
|
|
|
#[test]
|
|
fn operations_exit() {
|
|
OperationsHandler::<MinimalEthSpec, VoluntaryExit>::run();
|
|
OperationsHandler::<MainnetEthSpec, VoluntaryExit>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn operations_proposer_slashing() {
|
|
OperationsHandler::<MinimalEthSpec, ProposerSlashing>::run();
|
|
OperationsHandler::<MainnetEthSpec, ProposerSlashing>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn operations_attester_slashing() {
|
|
OperationsHandler::<MinimalEthSpec, AttesterSlashing<_>>::run();
|
|
OperationsHandler::<MainnetEthSpec, AttesterSlashing<_>>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn operations_attestation() {
|
|
OperationsHandler::<MinimalEthSpec, Attestation<_>>::run();
|
|
OperationsHandler::<MainnetEthSpec, Attestation<_>>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn operations_block_header() {
|
|
OperationsHandler::<MinimalEthSpec, BeaconBlock<_>>::run();
|
|
OperationsHandler::<MainnetEthSpec, BeaconBlock<_>>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn sanity_blocks() {
|
|
SanityBlocksHandler::<MinimalEthSpec>::run();
|
|
SanityBlocksHandler::<MainnetEthSpec>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn sanity_slots() {
|
|
SanitySlotsHandler::<MinimalEthSpec>::run();
|
|
SanitySlotsHandler::<MainnetEthSpec>::run();
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(not(feature = "fake_crypto"))]
|
|
fn bls_aggregate_pubkeys() {
|
|
BlsAggregatePubkeysHandler::run();
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(not(feature = "fake_crypto"))]
|
|
fn bls_aggregate_sigs() {
|
|
BlsAggregateSigsHandler::run();
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(not(feature = "fake_crypto"))]
|
|
fn bls_msg_hash_g2_compressed() {
|
|
BlsG2CompressedHandler::run();
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(not(feature = "fake_crypto"))]
|
|
fn bls_priv_to_pub() {
|
|
BlsPrivToPubHandler::run();
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(not(feature = "fake_crypto"))]
|
|
fn bls_sign_msg() {
|
|
BlsSignMsgHandler::run();
|
|
}
|
|
|
|
macro_rules! ssz_static_test {
|
|
// Signed-root
|
|
($test_name:ident, $typ:ident$(<$generics:tt>)?, SR) => {
|
|
ssz_static_test!($test_name, SszStaticSRHandler, $typ$(<$generics>)?);
|
|
};
|
|
// Non-signed root
|
|
($test_name:ident, $typ:ident$(<$generics:tt>)?) => {
|
|
ssz_static_test!($test_name, SszStaticHandler, $typ$(<$generics>)?);
|
|
};
|
|
// Generic
|
|
($test_name:ident, $handler:ident, $typ:ident<_>) => {
|
|
ssz_static_test!(
|
|
$test_name, $handler, {
|
|
($typ<MinimalEthSpec>, MinimalEthSpec),
|
|
($typ<MainnetEthSpec>, MainnetEthSpec)
|
|
}
|
|
);
|
|
};
|
|
// Non-generic
|
|
($test_name:ident, $handler:ident, $typ:ident) => {
|
|
ssz_static_test!(
|
|
$test_name, $handler, {
|
|
($typ, MinimalEthSpec),
|
|
($typ, MainnetEthSpec)
|
|
}
|
|
);
|
|
};
|
|
// Base case
|
|
($test_name:ident, $handler:ident, { $(($typ:ty, $spec:ident)),+ }) => {
|
|
#[test]
|
|
#[cfg(feature = "fake_crypto")]
|
|
fn $test_name() {
|
|
$(
|
|
$handler::<$typ, $spec>::run();
|
|
)+
|
|
}
|
|
};
|
|
}
|
|
|
|
ssz_static_test!(ssz_static_attestation, Attestation<_>, SR);
|
|
ssz_static_test!(ssz_static_attestation_data, AttestationData);
|
|
ssz_static_test!(
|
|
ssz_static_attestation_data_and_custody_bit,
|
|
AttestationDataAndCustodyBit
|
|
);
|
|
ssz_static_test!(ssz_static_attester_slashing, AttesterSlashing<_>);
|
|
ssz_static_test!(ssz_static_beacon_block, BeaconBlock<_>, SR);
|
|
ssz_static_test!(ssz_static_beacon_block_body, BeaconBlockBody<_>);
|
|
ssz_static_test!(ssz_static_beacon_block_header, BeaconBlockHeader, SR);
|
|
ssz_static_test!(ssz_static_beacon_state, BeaconState<_>);
|
|
ssz_static_test!(ssz_static_checkpoint, Checkpoint);
|
|
ssz_static_test!(ssz_static_compact_committee, CompactCommittee<_>);
|
|
ssz_static_test!(ssz_static_crosslink, Crosslink);
|
|
ssz_static_test!(ssz_static_deposit, Deposit);
|
|
ssz_static_test!(ssz_static_deposit_data, DepositData, SR);
|
|
ssz_static_test!(ssz_static_eth1_data, Eth1Data);
|
|
ssz_static_test!(ssz_static_fork, Fork);
|
|
ssz_static_test!(ssz_static_historical_batch, HistoricalBatch<_>);
|
|
ssz_static_test!(ssz_static_indexed_attestation, IndexedAttestation<_>, SR);
|
|
ssz_static_test!(ssz_static_pending_attestation, PendingAttestation<_>);
|
|
ssz_static_test!(ssz_static_proposer_slashing, ProposerSlashing);
|
|
ssz_static_test!(ssz_static_transfer, Transfer, SR);
|
|
ssz_static_test!(ssz_static_validator, Validator);
|
|
ssz_static_test!(ssz_static_voluntary_exit, VoluntaryExit, SR);
|
|
|
|
#[test]
|
|
fn epoch_processing_justification_and_finalization() {
|
|
EpochProcessingHandler::<MinimalEthSpec, JustificationAndFinalization>::run();
|
|
EpochProcessingHandler::<MainnetEthSpec, JustificationAndFinalization>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn epoch_processing_crosslinks() {
|
|
EpochProcessingHandler::<MinimalEthSpec, Crosslinks>::run();
|
|
EpochProcessingHandler::<MainnetEthSpec, Crosslinks>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn epoch_processing_registry_updates() {
|
|
EpochProcessingHandler::<MinimalEthSpec, RegistryUpdates>::run();
|
|
EpochProcessingHandler::<MainnetEthSpec, RegistryUpdates>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn epoch_processing_slashings() {
|
|
EpochProcessingHandler::<MinimalEthSpec, Slashings>::run();
|
|
EpochProcessingHandler::<MainnetEthSpec, Slashings>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn epoch_processing_final_updates() {
|
|
EpochProcessingHandler::<MainnetEthSpec, FinalUpdates>::run();
|
|
EpochProcessingHandler::<MainnetEthSpec, FinalUpdates>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn genesis_initialization() {
|
|
GenesisInitializationHandler::<MinimalEthSpec>::run();
|
|
}
|
|
|
|
#[test]
|
|
fn genesis_validity() {
|
|
GenesisValidityHandler::<MinimalEthSpec>::run();
|
|
// Note: there are no genesis validity tests for mainnet
|
|
}
|