2018-07-20 13:46:03 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
2019-11-25 15:30:02 +00:00
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
2018-07-20 13:46:03 +00:00
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2019-12-05 10:27:00 +00:00
|
|
|
import ./testutil
|
|
|
|
|
2019-11-22 19:56:39 +00:00
|
|
|
import # Official constants
|
|
|
|
./official/test_fixture_const_sanity_check
|
|
|
|
|
2019-05-10 08:14:01 +00:00
|
|
|
import # Unit test
|
2019-02-19 23:35:02 +00:00
|
|
|
./test_attestation_pool,
|
2019-02-21 17:20:50 +00:00
|
|
|
./test_beacon_chain_db,
|
|
|
|
./test_beacon_node,
|
2018-11-29 05:23:40 +00:00
|
|
|
./test_beaconstate,
|
2019-02-28 21:21:29 +00:00
|
|
|
./test_block_pool,
|
2020-02-06 15:35:51 +00:00
|
|
|
./test_discovery_helpers,
|
2018-12-05 13:07:42 +00:00
|
|
|
./test_helpers,
|
2020-01-15 15:06:50 +00:00
|
|
|
./test_kvstore,
|
2020-02-20 10:49:34 +00:00
|
|
|
./test_kvstore_sqlite3,
|
2018-11-19 16:47:57 +00:00
|
|
|
./test_ssz,
|
2019-02-21 17:20:50 +00:00
|
|
|
./test_state_transition,
|
2019-09-08 00:56:24 +00:00
|
|
|
./test_sync_protocol,
|
2019-05-10 08:14:01 +00:00
|
|
|
# ./test_validator # Empty!
|
2019-11-25 20:18:02 +00:00
|
|
|
./test_zero_signature,
|
2020-01-22 12:50:14 +00:00
|
|
|
./test_peer_pool,
|
2020-02-21 12:16:58 +00:00
|
|
|
./test_sync_manager,
|
|
|
|
./test_honest_validator
|
2019-04-29 16:48:30 +00:00
|
|
|
|
2020-03-04 21:27:11 +00:00
|
|
|
# ./test_interop
|
|
|
|
# TODO: BLS changes in v0.10.1 will generate different interop signatures
|
|
|
|
# Requires an update of the interop mocked start: https://github.com/ethereum/eth2.0-pm/tree/master/interop/mocked_start
|
|
|
|
# or of ZRNT / ZCLI to v0.10.1
|
|
|
|
|
2019-08-28 12:07:00 +00:00
|
|
|
import # Refactor state transition unit tests
|
2019-12-06 16:07:58 +00:00
|
|
|
# TODO re-enable when useful
|
|
|
|
# ./spec_block_processing/test_genesis,
|
|
|
|
# In mainnet these take 2 minutes and are empty TODOs
|
2019-08-28 12:07:00 +00:00
|
|
|
./spec_block_processing/test_process_deposits,
|
|
|
|
./spec_block_processing/test_process_attestation,
|
2019-09-24 14:56:12 +00:00
|
|
|
./spec_epoch_processing/test_process_justification_and_finalization
|
2019-08-28 12:07:00 +00:00
|
|
|
|
2019-11-24 10:46:45 +00:00
|
|
|
# TODO: json tests were removed
|
|
|
|
|
|
|
|
# import # Official fixtures that don't require SSZ parsing of invalid BLS signatures
|
|
|
|
# # https://github.com/status-im/nim-beacon-chain/issues/374
|
|
|
|
# ./official/test_fixture_shuffling,
|
|
|
|
# ./official/test_fixture_bls
|
2019-12-05 10:27:00 +00:00
|
|
|
|
2020-03-10 04:00:19 +00:00
|
|
|
summarizeLongTests("AllTests")
|