Add new ef tests

This commit is contained in:
Eitan Seri-Levi
2026-06-22 15:25:27 +03:00
parent cf8e930abe
commit 23ad7711a3
3 changed files with 32 additions and 3 deletions

View File

@@ -828,6 +828,18 @@ mod ssz_static {
SszStaticHandler::<Builder, MainnetEthSpec>::gloas_and_later().run();
}
#[test]
fn builder_deposit_request() {
SszStaticHandler::<BuilderDepositRequest, MinimalEthSpec>::gloas_and_later().run();
SszStaticHandler::<BuilderDepositRequest, MainnetEthSpec>::gloas_and_later().run();
}
#[test]
fn builder_exit_request() {
SszStaticHandler::<BuilderExitRequest, MinimalEthSpec>::gloas_and_later().run();
SszStaticHandler::<BuilderExitRequest, MainnetEthSpec>::gloas_and_later().run();
}
#[test]
fn builder_pending_payment() {
SszStaticHandler::<BuilderPendingPayment, MinimalEthSpec>::gloas_and_later().run();
@@ -1112,6 +1124,18 @@ fn fork_choice_on_payload_attestation_message() {
ForkChoiceHandler::<MainnetEthSpec>::new("on_payload_attestation_message").run();
}
#[test]
fn fork_choice_payload_timeliness() {
ForkChoiceHandler::<MinimalEthSpec>::new("payload_timeliness").run();
ForkChoiceHandler::<MainnetEthSpec>::new("payload_timeliness").run();
}
#[test]
fn fork_choice_payload_data_availability() {
ForkChoiceHandler::<MinimalEthSpec>::new("payload_data_availability").run();
ForkChoiceHandler::<MainnetEthSpec>::new("payload_data_availability").run();
}
#[test]
fn optimistic_sync() {
OptimisticSyncHandler::<MinimalEthSpec>::default().run();