prysm-pulse/testing/endtoend
Preston Van Loon 65db331eaf
Remove bazel-go-ethereum fork, use upstream go-ethereum (#9725)
* Check in go-ethereum crypto/sepc256k1 package with proper build rules

* gaz

* Add karalabe/usb

* viz improvement

* Remove bazel-go-ethereum, use vendored libraries only

* move vendor stuff to third_party so that go mod wont be mad anymore

* fix geth e2e flags

* fix geth e2e flags

* remove old rules_foreign_cc toolchain

* Update cross compile docker image to support os x

* works for geth build

* remove copy of sepc256k1

* revert changes in tools/cross-toolchain

* gaz

* Update go-ethereum to 1.10.10

* Revert "revert changes in tools/cross-toolchain"

This reverts commit 2e8128f7c3a2d20a16e50b88ec7e5b69c70ddf2b.

* revert tags changes

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-10-19 00:00:22 +00:00
..
components Remove bazel-go-ethereum fork, use upstream go-ethereum (#9725) 2021-10-19 00:00:22 +00:00
evaluators E2e test: stricter participation check (#9718) 2021-10-12 11:32:36 +00:00
helpers Changes to E2E for Optimized Slasher (#9698) 2021-09-30 20:28:14 +00:00
params Changes to E2E for Optimized Slasher (#9698) 2021-09-30 20:28:14 +00:00
policies Move EndtoEnd Tests to Testing/ Folder (#9586) 2021-09-15 14:42:05 +00:00
types Changes to E2E for Optimized Slasher (#9698) 2021-09-30 20:28:14 +00:00
BUILD.bazel Changes to E2E for Optimized Slasher (#9698) 2021-09-30 20:28:14 +00:00
endtoend_test.go Changes to E2E for Optimized Slasher (#9698) 2021-09-30 20:28:14 +00:00
geth_deps.go Move EndtoEnd Tests to Testing/ Folder (#9586) 2021-09-15 14:42:05 +00:00
minimal_e2e_test.go Changes to E2E for Optimized Slasher (#9698) 2021-09-30 20:28:14 +00:00
minimal_slashing_e2e_test.go Changes to E2E for Optimized Slasher (#9698) 2021-09-30 20:28:14 +00:00
README.md Move EndtoEnd Tests to Testing/ Folder (#9586) 2021-09-15 14:42:05 +00:00
slasher_simulator_e2e_test.go Changes to E2E for Optimized Slasher (#9698) 2021-09-30 20:28:14 +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 featureflags to allow easy E2E testing of experimental features.

How it works

Through the end2EndConfig struct, you can declare several options such as how many epochs the test should run for, and what BeaconConfig the test should use. You can also declare how many beacon nodes and validator clients are run, the E2E will automatically divide the validators evently among the beacon nodes.

In order to "evaluate" the state of the beacon chain while the E2E is running, there are Evaluators that use the beacon chain node API to determine if the network is performing as it should. This can evaluate for conditions like validator activation, finalization, validator participation and more.

Evaluators have 3 parts, the name for it's test name, a policy which declares which epoch(s) the evaluator should run, and then the evaluation which uses the beacon chain API to determine if the beacon chain passes certain conditions like finality.

Current end-to-end tests

  • Minimal Config - 2 beacon nodes, 256 validators, running for 8 epochs
  • Minimal Config Slashing Test - 2 beacon nodes, 256 validators, tests attester and proposer slashing

Instructions

If you wish to run all the minimal spec E2E tests, you can run them through bazel with:

bazel test //testing/endtoend:go_default_test --define=ssz=minimal --test_output=streamed