prysm-pulse/endtoend
Raul Jordan 71a6c73e93
Remove All Instances of Kademlia from Prysm (#6323)
* fully remove kad
* Merge branch 'master' into rem-kad
* Update beacon-chain/p2p/service.go
* no workspace kad
* Merge branch 'rem-kad' of github.com:prysmaticlabs/prysm into rem-kad
* mod tidy
* Merge refs/heads/master into rem-kad
* Merge refs/heads/master into rem-kad
* Merge refs/heads/master into rem-kad
* add back bootnode query tool
* Merge branch 'rem-kad' of github.com:prysmaticlabs/prysm into rem-kad
* fix up multiaddr tests
* fix build
* fix up go build
* fix go build
* update dep
* Merge refs/heads/master into rem-kad
* Merge refs/heads/master into rem-kad
* Merge refs/heads/master into rem-kad
* Merge refs/heads/master into rem-kad
2020-06-23 02:53:11 +00:00
..
components Remove All Instances of Kademlia from Prysm (#6323) 2020-06-23 02:53:11 +00:00
evaluators Fix long running E2E deposits testing (#6208) 2020-06-11 06:38:15 +00:00
helpers Prepare E2E for v0.12 (#5991) 2020-05-26 14:04:42 -05:00
params Fix long running E2E deposits testing (#6208) 2020-06-11 06:38:15 +00:00
types Add Slasher double block detection to E2E (#5936) 2020-05-21 06:02:40 +00:00
BUILD.bazel E2E Improvements (#6091) 2020-06-03 18:44:13 +00:00
endtoend_test.go Update to v0.12 (#5614) 2020-06-09 15:40:48 -07:00
geth_deps.go Refactor dependencies, make Prysm "go gettable" (#6053) 2020-05-31 14:44:34 +08:00
long_minimal_e2e_test.go Fix long running E2E deposits testing (#6208) 2020-06-11 06:38:15 +00:00
minimal_e2e_test.go Fix long running E2E deposits testing (#6208) 2020-06-11 06:38:15 +00:00
minimal_slashing_e2e_test.go Fix long running E2E deposits testing (#6208) 2020-06-11 06:38:15 +00:00
README.md Prepare E2E for v0.12 (#5991) 2020-05-26 14:04:42 -05: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 E2E tests, you can run them through bazel with:

bazel test //endtoend:go_default_test --test_output=streamed --test_arg=-test.v --nocache_test_results