prysm-pulse/testing/endtoend
Sammy Rosso e49f1321b7
HTTP Beacon API: /eth/v1/beacon/blocks/{block_id}/root (#12716)
* Initial setup

* Fix all tests and handler func

* Cleanup

* Fix the tests

* Remove middleware endpoint

* Add endpoint

* Switch query param to path

* Fix e2e test

* Update beacon-chain/rpc/eth/beacon/handlers.go

Co-authored-by: Radosław Kapka <rkapka@wp.pl>

* Update beacon-chain/rpc/eth/beacon/handlers.go

Co-authored-by: Radosław Kapka <rkapka@wp.pl>

* Radek & James Reviews

* Check blockId length

* Add length check

* Fix

* Revert "Fix e2e test"

This reverts commit 6289c1de5c569daef6e6bda3600c2e5561a168d9.

* use v1alpha1 server to get root

---------

Co-authored-by: Radosław Kapka <rkapka@wp.pl>
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2023-08-22 06:18:02 +00:00
..
components run ineffassign for all code (#12578) 2023-06-29 15:38:26 +00:00
evaluators Builder gas limit fix default to 0 in some cases (#12647) 2023-07-22 03:44:50 +00:00
helpers Enable whitespace linter & fix findings (#12273) 2023-04-18 18:58:27 +00:00
params Enable dupword linter & fix findings (#12271) 2023-04-18 22:01:27 +00:00
policies Update to V4 🚀 (#12134) 2023-03-17 18:52:56 +00:00
static-files/eth1 Start chain from bellatrix state (#11746) 2022-12-14 07:13:49 +08:00
types Add In Support For Builder in E2E (#12343) 2023-05-11 11:10:29 -05:00
BUILD.bazel Add In Support For Builder in E2E (#12343) 2023-05-11 11:10:29 -05:00
component_handler_test.go run ineffassign for all code (#12578) 2023-06-29 15:38:26 +00:00
deps.bzl E2E: updating web3signer dependency (#12207) 2023-03-29 20:32:34 +00:00
endtoend_setup_test.go Add In Support For Builder in E2E (#12343) 2023-05-11 11:10:29 -05:00
endtoend_test.go HTTP Beacon API: /eth/v1/beacon/blocks/{block_id}/root (#12716) 2023-08-22 06:18:02 +00:00
fork.go E2E from Phase0 or Bellatrix (#11802) 2022-12-21 04:43:29 +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 Update to V4 🚀 (#12134) 2023-03-17 18:52:56 +00:00
mainnet_scenario_e2e_test.go Update to V4 🚀 (#12134) 2023-03-17 18:52:56 +00:00
minimal_builder_e2e_test.go Add In Support For Builder in E2E (#12343) 2023-05-11 11:10:29 -05:00
minimal_e2e_test.go Update to V4 🚀 (#12134) 2023-03-17 18:52:56 +00:00
minimal_scenario_e2e_test.go Update to V4 🚀 (#12134) 2023-03-17 18:52:56 +00:00
minimal_slashing_e2e_test.go Update to V4 🚀 (#12134) 2023-03-17 18:52:56 +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 Replace statefeed Initialize (#12285) 2023-05-03 04:34:01 +00: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.