prysm-pulse/testing/endtoend
Radosław Kapka 879e310332
Native Blocks Ep. 2 - Switch usages to new package (#10885)
* panic in SizeSSZ

* moving slowly

* adapt old code to new interfaces

* return interfaces from factory functions

* replace the rest of WrappedSignedBeaconBlock

* WrappedBeaconBlock

* WrappedBeaconBlockBody

* miscellaneous

* Test_BeaconBlockIsNil

* replace usages of BeaconBlockIsNil

* replace usages of mutator

* fix all build errors

* fix some more issues

* mutator changes

* relax assertions when initializing

* revert changes in object_mapping.go

* allow calling Proto on nil

* Revert "allow calling Proto on nil"

This reverts commit ecc84e455381b03d24aec2fa0fa17bddbec71705.

* modify Copy and Proto methods

* remove unused var

* fix block batch tests

* correct BUILD file

* Error when initializing nil objects

* one more error fix

* add missing comma

* rename alias to blocktest

* add logging

* error when SignedBeaconBlock is nil

* fix last test

* import fix

* broken

* working

* test fixes

* reduce complexity of processPendingBlocks

* simplified
2022-08-02 15:30:46 +00:00
..
components initial commit (#11084) 2022-07-22 13:10:19 -04:00
evaluators Native Blocks Ep. 2 - Switch usages to new package (#10885) 2022-08-02 15:30:46 +00:00
helpers Sync from finalized (#10723) 2022-05-25 22:52:43 +00:00
params Integrate Engine Proxy into E2E (#10808) 2022-06-06 23:35:54 +00:00
policies Remove Eth2-Types Dependency in Prysm (#10578) 2022-04-29 10:32:11 -04:00
static-files/eth1 Fix E2E Failures (#10540) 2022-04-19 07:53:02 +00:00
types Revert "Move Slasher E2E To Scenario Test" (#10986) 2022-07-06 13:03:30 +00:00
BUILD.bazel e2e: fix scenario test suite (#11039) 2022-07-12 22:31:37 +00:00
component_handler_test.go Add Optimistic Sync Scenario Testing (#10836) 2022-06-09 23:24:53 +00:00
deps.bzl Web3Signer: Validator Registration (#10964) 2022-07-14 15:04:03 -05:00
endtoend_setup_test.go Validator gRPC: Add deprecated endpoint to prevent breaking change from v2.1.3 (#11078) 2022-07-20 11:08:13 -05:00
endtoend_test.go Batch Scenario Runs Into Single Test (#10878) 2022-06-15 08:02:31 +00:00
geth_deps.go Move EndtoEnd Tests to Testing/ Folder (#9586) 2021-09-15 14:42:05 +00:00
lighthouse.BUILD Multiclient E2E With Lighthouse (#10020) 2022-02-02 19:13:52 +00:00
mainnet_e2e_test.go Scenario End To End Testing (#10696) 2022-05-20 09:34:10 +00:00
mainnet_scenario_e2e_test.go Fix Multiclient E2E (#10965) 2022-07-01 14:02:01 +00:00
minimal_e2e_test.go Stop ruining our lives with flaky e2e (#10929) 2022-06-24 17:01:12 +00:00
minimal_scenario_e2e_test.go Revert "Move Slasher E2E To Scenario Test" (#10986) 2022-07-06 13:03:30 +00:00
minimal_slashing_e2e_test.go Revert "Move Slasher E2E To Scenario Test" (#10986) 2022-07-06 13:03:30 +00:00
README.md Add link to e2e docs in README (#10672) 2022-05-10 14:16:40 +00:00
slasher_simulator_e2e_test.go Remove Eth2-Types Dependency in Prysm (#10578) 2022-04-29 10:32:11 -04:00
web3signer.BUILD e2e: Add web3signer component (#10088) 2022-01-19 16:22:23 +00:00

End-to-end Testing Package

This is the main project folder of the end-to-end testing suite for Prysm. This performs a full end-to-end test for Prysm, including spinning up an ETH1 dev chain, sending deposits to the deposit contract, and making sure the beacon node and its validators are running and performing properly for a few epochs. It also performs a test on a syncing node, and supports feature flags to allow easy E2E testing of experimental features.

How it works

Please see our docs page, https://docs.prylabs.network/docs/devtools/end-to-end, to read more about the feature.