2023-08-09 18:11:50 +01:00
|
|
|
## Waku v2
|
|
|
|
|
|
|
|
# Waku core test suite
|
|
|
|
import
|
|
|
|
./waku_core/test_namespaced_topics,
|
|
|
|
./waku_core/test_time,
|
|
|
|
./waku_core/test_message_digest,
|
2023-09-11 11:30:12 +03:00
|
|
|
./waku_core/test_peers,
|
|
|
|
./waku_core/test_published_address
|
2023-08-09 18:11:50 +01:00
|
|
|
|
|
|
|
# Waku archive test suite
|
|
|
|
import
|
|
|
|
./waku_archive/test_driver_queue_index,
|
|
|
|
./waku_archive/test_driver_queue_pagination,
|
|
|
|
./waku_archive/test_driver_queue_query,
|
|
|
|
./waku_archive/test_driver_queue,
|
|
|
|
./waku_archive/test_driver_sqlite_query,
|
|
|
|
./waku_archive/test_driver_sqlite,
|
|
|
|
./waku_archive/test_retention_policy,
|
2024-06-05 17:45:38 +02:00
|
|
|
./waku_archive/test_waku_archive,
|
2024-07-12 12:19:12 -04:00
|
|
|
./waku_archive/test_partition_manager,
|
|
|
|
./waku_archive_legacy/test_driver_queue_index,
|
|
|
|
./waku_archive_legacy/test_driver_queue_pagination,
|
|
|
|
./waku_archive_legacy/test_driver_queue_query,
|
|
|
|
./waku_archive_legacy/test_driver_queue,
|
|
|
|
./waku_archive_legacy/test_driver_sqlite_query,
|
|
|
|
./waku_archive_legacy/test_driver_sqlite,
|
|
|
|
./waku_archive_legacy/test_waku_archive
|
2023-08-09 18:11:50 +01:00
|
|
|
|
|
|
|
const os* {.strdefine.} = ""
|
2023-09-13 12:45:55 +02:00
|
|
|
when os == "Linux" and
|
2024-03-16 00:08:47 +01:00
|
|
|
# GitHub only supports container actions on Linux
|
|
|
|
# and we need to start a postgress database in a docker container
|
|
|
|
defined(postgres):
|
2024-05-28 17:24:22 +05:30
|
|
|
import
|
|
|
|
./waku_archive/test_driver_postgres_query,
|
|
|
|
./waku_archive/test_driver_postgres,
|
2024-07-12 12:19:12 -04:00
|
|
|
#./waku_archive_legacy/test_driver_postgres_query,
|
|
|
|
#./waku_archive_legacy/test_driver_postgres,
|
2024-05-28 17:24:22 +05:30
|
|
|
./factory/test_node_factory,
|
|
|
|
./wakunode_rest/test_rest_store
|
2023-08-09 18:11:50 +01:00
|
|
|
|
|
|
|
# Waku store test suite
|
|
|
|
import
|
2024-02-06 17:37:42 +01:00
|
|
|
./waku_store/test_client,
|
2023-08-09 18:11:50 +01:00
|
|
|
./waku_store/test_rpc_codec,
|
|
|
|
./waku_store/test_waku_store,
|
|
|
|
./waku_store/test_wakunode_store
|
|
|
|
|
2024-04-25 09:09:52 -04:00
|
|
|
# Waku legacy store test suite
|
|
|
|
import
|
|
|
|
./waku_store_legacy/test_client,
|
|
|
|
./waku_store_legacy/test_rpc_codec,
|
|
|
|
./waku_store_legacy/test_waku_store,
|
|
|
|
./waku_store_legacy/test_wakunode_store
|
|
|
|
|
2023-08-09 18:11:50 +01:00
|
|
|
when defined(waku_exp_store_resume):
|
|
|
|
# TODO: Review store resume test cases (#1282)
|
2024-04-25 09:09:52 -04:00
|
|
|
import ./waku_store_legacy/test_resume
|
2023-08-09 18:11:50 +01:00
|
|
|
|
2024-03-14 17:48:09 +01:00
|
|
|
import
|
|
|
|
./node/test_all,
|
|
|
|
./waku_filter_v2/test_all,
|
|
|
|
./waku_peer_exchange/test_all,
|
|
|
|
./waku_lightpush/test_all,
|
2024-03-26 18:25:42 +01:00
|
|
|
./waku_relay/test_all,
|
|
|
|
./incentivization/test_all
|
2023-08-09 18:11:50 +01:00
|
|
|
|
|
|
|
import
|
|
|
|
# Waku v2 tests
|
|
|
|
./test_wakunode,
|
|
|
|
./test_wakunode_lightpush,
|
|
|
|
./test_peer_store_extended,
|
|
|
|
./test_message_cache,
|
|
|
|
./test_peer_manager,
|
|
|
|
./test_peer_storage,
|
|
|
|
./test_waku_keepalive,
|
|
|
|
./test_waku_enr,
|
|
|
|
./test_waku_dnsdisc,
|
2024-03-14 17:48:09 +01:00
|
|
|
./test_relay_peer_exchange,
|
2023-08-09 18:11:50 +01:00
|
|
|
./test_waku_noise,
|
|
|
|
./test_waku_noise_sessions,
|
2023-09-29 16:30:07 +03:00
|
|
|
./test_waku_netconfig,
|
2023-08-09 18:11:50 +01:00
|
|
|
./test_waku_switch,
|
|
|
|
./test_waku_rendezvous
|
|
|
|
|
|
|
|
# Waku Keystore test suite
|
2024-02-06 17:37:42 +01:00
|
|
|
import ./test_waku_keystore_keyfile, ./test_waku_keystore
|
2023-08-09 18:11:50 +01:00
|
|
|
|
|
|
|
## Wakunode Rest API test suite
|
|
|
|
import
|
|
|
|
./wakunode_rest/test_rest_debug,
|
|
|
|
./wakunode_rest/test_rest_debug_serdes,
|
|
|
|
./wakunode_rest/test_rest_relay,
|
|
|
|
./wakunode_rest/test_rest_relay_serdes,
|
|
|
|
./wakunode_rest/test_rest_serdes,
|
2023-09-14 21:28:57 +02:00
|
|
|
./wakunode_rest/test_rest_filter,
|
2023-10-05 14:00:09 +02:00
|
|
|
./wakunode_rest/test_rest_lightpush,
|
2024-02-29 09:48:14 +01:00
|
|
|
./wakunode_rest/test_rest_admin,
|
2024-04-23 18:53:18 +02:00
|
|
|
./wakunode_rest/test_rest_cors,
|
|
|
|
./wakunode_rest/test_rest_health
|
2023-08-09 18:11:50 +01:00
|
|
|
|
2024-03-12 16:20:30 +05:30
|
|
|
import ./waku_rln_relay/test_all
|
2024-03-12 09:12:44 -06:00
|
|
|
|
|
|
|
# Node Factory
|