prysm-pulse/testing/endtoend
Radosław Kapka 4c47756aed
HTTP endpoints cleanup (#13251)
* remove validation package

* structs cleanup

* merge with apimiddleware removal

* more validation and Bls capitalization

* builder test fix

* use strconv for uint->str conversions

* use DecodeHexWithLength

* use exact param names

* rename http package to httputil

* change conversions to fmt.Sprintf

* handle query paramsd and route variables

* spans and receiver name

* split structs, move bytes helper

* missing ok check

* fix reference to indexed failure

* errors fixup

* add godoc to helper

* fix BLS casing and chainhead ref

* review

* fix import in tests

* gzl
2023-12-08 20:37:20 +00:00
..
components Support New Subnet Backbone (#13179) 2023-12-08 04:07:48 +00:00
evaluators HTTP endpoints cleanup (#13251) 2023-12-08 20:37:20 +00:00
helpers Deneb E2E (#13040) 2023-11-08 12:24:23 +00:00
params Enable dupword linter & fix findings (#12271) 2023-04-18 22:01:27 +00:00
policies Better Beacon API evaluator part 1 (#13084) 2023-10-27 11:57:49 +00:00
static-files/eth1 Start chain from bellatrix state (#11746) 2022-12-14 07:13:49 +08:00
types Deneb E2E (#13040) 2023-11-08 12:24:23 +00:00
BUILD.bazel HTTP endpoints cleanup (#13251) 2023-12-08 20:37:20 +00:00
component_handler_test.go Fix Builder Testing For Multiclient Runs (#13091) 2023-10-23 06:33:46 +00:00
deps.bzl Simplify Beacon API evaluator (#13265) 2023-12-06 14:54:33 +00:00
endtoend_setup_test.go Redesign of Beacon API evaluator (#13229) 2023-11-30 16:53:51 +00:00
endtoend_test.go only run it in the middle of an epoch (#13303) 2023-12-08 15:14:01 +00:00
fork.go E2E from Phase0 or Bellatrix (#11802) 2022-12-21 04:43:29 +00:00
geth_deps.go
lighthouse.BUILD Multiclient E2E With Lighthouse (#10020) 2022-02-02 19:13:52 +00:00
mainnet_e2e_test.go Deneb E2E (#13040) 2023-11-08 12:24:23 +00:00
mainnet_scenario_e2e_test.go Deneb E2E (#13040) 2023-11-08 12:24:23 +00:00
minimal_builder_e2e_test.go Deneb E2E (#13040) 2023-11-08 12:24:23 +00:00
minimal_e2e_test.go Deneb E2E (#13040) 2023-11-08 12:24:23 +00:00
minimal_scenario_e2e_test.go Deneb E2E (#13040) 2023-11-08 12:24:23 +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 Refactor Exported Names to Follow Golang Best Practices (#13075) 2023-10-20 16:45:33 +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.