dash/test/functional
Pieter Wuille 7ff6515c88
Merge #13033: Build txindex in parallel with validation
9b2704777c [doc] Include txindex changes in the release notes. (Jim Posen)
ed77dd6b30 [test] Simple unit test for TxIndex. (Jim Posen)
6d772a3d44 [rpc] Public interfaces to GetTransaction block until synced. (Jim Posen)
a03f804f2a [index] Move disk IO logic from GetTransaction to TxIndex::FindTx. (Jim Posen)
e0a3b80033 [validation] Replace tx index code in validation code with TxIndex. (Jim Posen)
8181db88f6 [init] Initialize and start TxIndex in init code. (Jim Posen)
f90c3a62f5 [index] TxIndex method to wait until caught up. (Jim Posen)
70d510d93c [index] Allow TxIndex sync thread to be interrupted. (Jim Posen)
94b4f8bbb9 [index] TxIndex initial sync thread. (Jim Posen)
34d68bf3a3 [index] Create new TxIndex class. (Jim Posen)
c88bcec93f [db] Migration for txindex data to new, separate database. (Jim Posen)
0cb8303241 [db] Create separate database for txindex. (Jim Posen)

Pull request description:

  I'm re-opening #11857 as a new pull request because the last one stopped loading for people

  -------------------------------

  This refactors the tx index code to be in it's own class and get built concurrently with validation code. The main benefit is decoupling and moving the txindex into a separate DB. The primary motivation is to lay the groundwork for other indexers that might be desired (such as the [compact filters](https://github.com/bitcoin/bips/pull/636)). The basic idea is that the TxIndex spins up its own thread, which first syncs the txindex to the current block index, then once in sync the BlockConnected ValidationInterface hook writes new blocks.

  ### DB changes

  At the suggestion of some other developers, the txindex has been split out into a separate database. A data migration runs at startup on any nodes with a legacy txindex. Currently the migration blocks node initialization until complete.

  ### Open questions

  - Should the migration of txindex data from the old DB to the new DB block in init or should it happen in a background thread? The downside to backgrounding it is that `getrawtransaction` would return an error message saying the txindex is syncing while the migration is running.

  ### Impact

  In a sample size n=1 test where I synced nodes from scratch, the average time [Index writing](https://github.com/bitcoin/bitcoin/blob/master/src/validation.cpp#L1903) was 3.36ms in master and 1.72ms in this branch. The average time between `UpdateTip` log lines for sequential blocks between 400,000 and IBD end on mainnet was 0.297204s in master and 0.286134s in this branch. Most likely this is just variance in IBD times, but I can try with some more trials if people want.

Tree-SHA512: 451fd7d95df89dfafceaa723cdf0f7b137615b531cf5c5035cfb54e9ccc2026cec5ac85edbcf71b7f4e2f102e36e9202b8b3a667e1504a9e1a9976ab1f0079c4
2021-05-25 13:48:04 +03:00
..
data
test_framework Merge #13033: Build txindex in parallel with validation 2021-05-25 13:48:04 +03:00
.gitignore
combine_logs.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
combined_log_template.html
create_cache.py
example_test.py
feature_addressindex.py Merge #12853: qa: Match full plain text by default 2021-05-23 01:19:32 +03:00
feature_asmap.py Merge #17812: asmap feature refinements and functional tests 2021-05-20 00:05:12 +05:30
feature_assumevalid.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
feature_bip68_sequence.py Merge #13047: [trivial] Tidy blocktools.py 2021-05-23 01:19:33 +03:00
feature_block_reward_reallocation.py
feature_block.py
feature_blocksdir.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
feature_cltv.py
feature_config_args.py Merge #12853: qa: Match full plain text by default 2021-05-23 01:19:32 +03:00
feature_csv_activation.py
feature_dbcrash.py
feature_dersig.py
feature_dip3_deterministicmns.py backport: bitcoin#10583 - [RPC] Split part of validateaddress into getaddressinfo (#3880) 2020-12-17 13:46:20 +01:00
feature_dip4_coinbasemerkleroots.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
feature_dip0020_activation.py Rename bit 6 from "v17" to "dip0020" (#4142) 2021-05-07 18:36:30 +02:00
feature_fee_estimation.py Merge #12746: tests: Remove unused argument max_invalid from check_estimates(...) 2020-12-15 21:44:23 -06:00
feature_governance_objects.py rpc: remove duplicated type field from gobject list-prepared (#3881) 2020-12-23 17:27:07 -06:00
feature_help.py
feature_llmq_chainlocks.py tests: Use wait_for_chainlocked_block_all_nodes in more places (#4139) 2021-05-11 18:55:40 +02:00
feature_llmq_connections.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
feature_llmq_data_recovery.py tests: Use wait_for_chainlocked_block_all_nodes in more places (#4139) 2021-05-11 18:55:40 +02:00
feature_llmq_dkgerrors.py Harden DIP0008 activation (#3889) 2020-12-28 12:21:01 +01:00
feature_llmq_is_cl_conflicts.py Merge #13047: [trivial] Tidy blocktools.py 2021-05-23 01:19:33 +03:00
feature_llmq_is_retroactive.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
feature_llmq_signing.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
feature_llmq_simplepose.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
feature_logging.py Merge #12853: qa: Match full plain text by default 2021-05-23 01:19:32 +03:00
feature_maxuploadtarget.py
feature_minchainwork.py
feature_multikeysporks.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
feature_new_quorum_type_activation.py Rename bit 6 from "v17" to "dip0020" (#4142) 2021-05-07 18:36:30 +02:00
feature_notifications.py Merge #12917: qa: Windows fixups for functional tests 2021-05-23 01:19:32 +03:00
feature_nulldummy.py
feature_proxy.py
feature_pruning.py tests: fix feature_pruning.py (#3967) 2021-02-01 11:17:29 -05:00
feature_reindex.py
feature_shutdown.py
feature_spentindex.py Merge #12853: qa: Match full plain text by default 2021-05-23 01:19:32 +03:00
feature_sporks.py
feature_timestampindex.py Merge #12853: qa: Match full plain text by default 2021-05-23 01:19:32 +03:00
feature_txindex.py Merge #13033: Build txindex in parallel with validation 2021-05-25 13:48:04 +03:00
feature_uacomment.py Merge #12853: qa: Match full plain text by default 2021-05-23 01:19:32 +03:00
feature_versionbits_warning.py
interface_bitcoin_cli.py refactor: PrivateSend -> CoinJoin + Move the tab (#4038) 2021-03-17 18:36:11 -04:00
interface_http.py
interface_rest.py Merge #12766: [Tests] Tidy up REST interface functional tests 2021-05-23 01:19:32 +03:00
interface_zmq_dash.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
interface_zmq.py Merge #13645: [tests] skip rpc_zmq functional test as necessary 2020-12-18 12:55:45 -06:00
mempool_accept.py Merge #14819: Bugfix: test/functional/mempool_accept: Ensure oversize transaction is actually oversize 2021-05-23 01:19:32 +03:00
mempool_limit.py
mempool_packages.py
mempool_persist.py Merge #12917: qa: Windows fixups for functional tests 2021-05-23 01:19:32 +03:00
mempool_reorg.py
mempool_resurrect.py
mempool_spend_coinbase.py
mining_basic.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
mining_getblocktemplate_longpoll.py
mining_prioritisetransaction.py
p2p_compactblocks.py Merge #13512: [qa] mininode: Expose connection state through is_connected 2020-12-15 23:28:08 -06:00
p2p_connect_to_devnet.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
p2p_disconnect_ban.py
p2p_fingerprint.py
p2p_instantsend.py
p2p_invalid_block.py Merge #13047: [trivial] Tidy blocktools.py 2021-05-23 01:19:33 +03:00
p2p_invalid_tx.py
p2p_leak.py Merge #13512: [qa] mininode: Expose connection state through is_connected 2020-12-15 23:28:08 -06:00
p2p_mempool.py
p2p_node_network_limited.py
p2p_quorum_data.py llmq|init|test: Implement DKG data recovery / quorum verification vector sync (#3964) 2021-02-01 17:10:19 +01:00
p2p_sendheaders.py Merge #12849: Tests: Add logging in loops in p2p_sendhears.py 2020-12-15 22:30:55 -06:00
p2p_timeouts.py Merge #13512: [qa] mininode: Expose connection state through is_connected 2020-12-15 23:28:08 -06:00
p2p_unrequested_blocks.py
README.md
rpc_bind.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
rpc_blockchain.py Merge #13924: tests: Simplify comparison in rpc_blockchain.py 2021-02-04 14:58:13 -06:00
rpc_coinjoin.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
rpc_decodescript.py
rpc_deprecated.py Merge #13130: [tests] Fix race in rpc_deprecated.py 2020-12-22 17:58:11 +01:00
rpc_fundrawtransaction_hd.py Merge #12493: [wallet] Reopen CDBEnv after encryption instead of shutting down 2021-04-05 03:31:50 +02:00
rpc_fundrawtransaction.py Merge #12493: [wallet] Reopen CDBEnv after encryption instead of shutting down 2021-04-05 03:31:50 +02:00
rpc_getblockstats.py
rpc_getchaintips.py
rpc_invalidateblock.py Fix two issues with ResetBlockFailureFlags, add tests (#3965) 2021-02-01 11:15:46 -05:00
rpc_masternode.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
rpc_mnauth.py rpc|test: Introduce "mnauth" RPC command to override masternode authentications (#3930) 2021-01-24 21:50:16 -05:00
rpc_named_arguments.py
rpc_net.py
rpc_platform_filter.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
rpc_preciousblock.py
rpc_rawtransaction.py backport: bitcoin#10583 - [RPC] Split part of validateaddress into getaddressinfo (#3880) 2020-12-17 13:46:20 +01:00
rpc_signmessage.py
rpc_signrawtransaction.py
rpc_txoutproof.py Merge #13452: rpc: have verifytxoutproof check the number of txns in proof structure 2020-12-18 12:55:45 -06:00
rpc_uptime.py
rpc_users.py Merge #12076: qa: Use node.datadir instead of tmpdir in test framework 2020-12-15 22:06:42 -06:00
rpc_verifychainlock.py tests: Use wait_for_chainlocked_block_all_nodes in more places (#4139) 2021-05-11 18:55:40 +02:00
rpc_verifyislock.py Update copyright (#4115) 2021-04-20 22:33:02 +03:00
rpc_zmq.py Merge #13645: [tests] skip rpc_zmq functional test as necessary 2020-12-18 12:55:45 -06:00
test_runner.py Merge #11742: rpc: Add testmempoolaccept 2021-05-23 01:19:31 +03:00
wallet_abandonconflict.py
wallet_backup.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
wallet_basic.py Merge #13566: Fix get balance 2020-12-22 17:58:12 +01:00
wallet_disable.py
wallet_dump.py Merge #12493: [wallet] Reopen CDBEnv after encryption instead of shutting down 2021-04-05 03:31:50 +02:00
wallet_encryption.py Merge #12493: [wallet] Reopen CDBEnv after encryption instead of shutting down 2021-04-05 03:31:50 +02:00
wallet_hd.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
wallet_import_rescan.py Merge #14441: [wallet] Backport(0.17): Restore ability to list incoming transactions by label 2020-12-22 17:58:12 +01:00
wallet_importmulti.py backport: bitcoin#10583 - [RPC] Split part of validateaddress into getaddressinfo (#3880) 2020-12-17 13:46:20 +01:00
wallet_importprunedfunds.py Merge bitcoin#12953: Deprecate accounts 2020-12-22 17:53:03 +01:00
wallet_keypool_hd.py Merge #12493: [wallet] Reopen CDBEnv after encryption instead of shutting down 2021-04-05 03:31:50 +02:00
wallet_keypool_topup.py backport bitcoin#16509 and add devnet test (#3946) 2021-01-22 09:58:07 -05:00
wallet_keypool.py Merge #12493: [wallet] Reopen CDBEnv after encryption instead of shutting down 2021-04-05 03:31:50 +02:00
wallet_labels.py Merge #13498: [wallet] Fixups from account API deprecation 2020-12-22 17:58:12 +01:00
wallet_listreceivedby.py Merge bitcoin#13075: [tests] Remove 'account' API from wallet functional tests 2020-12-22 17:58:11 +01:00
wallet_listsinceblock.py Merge bitcoin#13075: [tests] Remove 'account' API from wallet functional tests 2020-12-22 17:58:11 +01:00
wallet_listtransactions.py Merge #14441: [wallet] Backport(0.17): Restore ability to list incoming transactions by label 2020-12-22 17:58:12 +01:00
wallet_multiwallet.py Merge #12909: wallet: Make fee settings to be non-static members 2021-05-23 01:19:33 +03:00
wallet_resendwallettransactions.py
wallet_txn_clone.py Merge bitcoin#13075: [tests] Remove 'account' API from wallet functional tests 2020-12-22 17:58:11 +01:00
wallet_txn_doublespend.py Merge bitcoin#13075: [tests] Remove 'account' API from wallet functional tests 2020-12-22 17:58:11 +01:00
wallet_upgradetohd.py Merge #12493: [wallet] Reopen CDBEnv after encryption instead of shutting down 2021-04-05 03:31:50 +02:00
wallet_zapwallettxes.py

Functional tests

Writing Functional Tests

Example test

The example_test.py is a heavily commented example of a test case that uses both the RPC and P2P interfaces. If you are writing your first test, copy that file and modify to fit your needs.

Coverage

Running test_runner.py with the --coverage argument tracks which RPCs are called by the tests and prints a report of uncovered RPCs in the summary. This can be used (along with the --extended argument) to find out which RPCs we don't have test cases for.

Style guidelines

  • Where possible, try to adhere to PEP-8 guidelines
  • Use a python linter like flake8 before submitting PRs to catch common style nits (eg trailing whitespace, unused imports, etc)
  • See the python lint script that checks for violations that could lead to bugs and issues in the test code.
  • Avoid wildcard imports where possible
  • Use a module-level docstring to describe what the test is testing, and how it is testing it.
  • When subclassing the BitcoinTestFramwork, place overrides for the set_test_params(), add_options() and setup_xxxx() methods at the top of the subclass, then locally-defined helper methods, then the run_test() method.
  • Use '{}'.format(x) for string formatting, not '%s' % x.

Naming guidelines

  • Name the test <area>_test.py, where area can be one of the following:
    • feature for tests for full features that aren't wallet/mining/mempool, eg feature_rbf.py
    • interface for tests for other interfaces (REST, ZMQ, etc), eg interface_rest.py
    • mempool for tests for mempool behaviour, eg mempool_reorg.py
    • mining for tests for mining features, eg mining_prioritisetransaction.py
    • p2p for tests that explicitly test the p2p interface, eg p2p_disconnect_ban.py
    • rpc for tests for individual RPC methods or features, eg rpc_listtransactions.py
    • wallet for tests for wallet features, eg wallet_keypool.py
  • use an underscore to separate words
    • exception: for tests for specific RPCs or command line options which don't include underscores, name the test after the exact RPC or argument name, eg rpc_decodescript.py, not rpc_decode_script.py
  • Don't use the redundant word test in the name, eg interface_zmq.py, not interface_zmq_test.py

General test-writing advice

  • Set self.num_nodes to the minimum number of nodes necessary for the test. Having additional unrequired nodes adds to the execution time of the test as well as memory/CPU/disk requirements (which is important when running tests in parallel or on Travis).
  • Avoid stop-starting the nodes multiple times during the test if possible. A stop-start takes several seconds, so doing it several times blows up the runtime of the test.
  • Set the self.setup_clean_chain variable in set_test_params() to control whether or not to use the cached data directories. The cached data directories contain a 200-block pre-mined blockchain and wallets for four nodes. Each node has 25 mature blocks (25x500=12500 DASH) in its wallet.
  • When calling RPCs with lots of arguments, consider using named keyword arguments instead of positional arguments to make the intent of the call clear to readers.

RPC and P2P definitions

Test writers may find it helpful to refer to the definitions for the RPC and P2P messages. These can be found in the following source files:

  • /src/rpc/* for RPCs
  • /src/wallet/rpc* for wallet RPCs
  • ProcessMessage() in /src/net_processing.cpp for parsing P2P messages

Using the P2P interface

  • mininode.py contains all the definitions for objects that pass over the network (CBlock, CTransaction, etc, along with the network-level wrappers for them, msg_block, msg_tx, etc).

  • P2P tests have two threads. One thread handles all network communication with the dashd(s) being tested (using python's asyncore package); the other implements the test logic.

  • P2PConnection is the class used to connect to a dashd. P2PInterface contains the higher level logic for processing P2P payloads and connecting to the Bitcoin Core node application logic. For custom behaviour, subclass the P2PInterface object and override the callback methods.

  • Call network_thread_start() after all P2PInterface objects are created to start the networking thread. (Continue with the test logic in your existing thread.)

  • Can be used to write tests where specific P2P protocol behavior is tested. Examples tests are p2p_unrequested_blocks.py, p2p_compactblocks.py.

test-framework modules

test_framework/authproxy.py

Taken from the python-bitcoinrpc repository.

test_framework/test_framework.py

Base class for functional tests.

test_framework/util.py

Generally useful functions.

test_framework/mininode.py

Basic code to support P2P connectivity to a dashd.

test_framework/script.py

Utilities for manipulating transaction scripts (originally from python-bitcoinlib)

test_framework/key.py

Wrapper around OpenSSL EC_Key (originally from python-bitcoinlib)

test_framework/bignum.py

Helpers for script.py

test_framework/blocktools.py

Helper functions for creating blocks and transactions.