dash/test/functional
pasta 0946eec692
Merge #6327: backport: merge bitcoin#23046, #24138, #24812, #24626, #21726, #25123, #25074, #24832, #26215, #24858, #26417, #16981 (index backports)
7d9ff96091 merge bitcoin#16981: Improve runtime performance of --reindex (Kittywhiskers Van Gogh)
e531dff5f7 merge bitcoin#26417: fix intermittent failure in feature_index_prune.py (Kittywhiskers Van Gogh)
b04b71a957 merge bitcoin#24858: incorrect blk file size calculation during reindex results in recoverable blk file corruption (Kittywhiskers Van Gogh)
9e75b99c53 merge bitcoin#26215: Improve BaseIndex::BlockUntilSyncedToCurrentChain reliability (Kittywhiskers Van Gogh)
3bd584c845 merge bitcoin#24832: Verify the block filter hash when reading the filter from disk (Kittywhiskers Van Gogh)
e507a51323 fix: avoid `mandatory-script-verify-flag-failed` crash in bench test (Kittywhiskers Van Gogh)
a86109a017 merge bitcoin#25074: During sync, commit best block after indexing (Kittywhiskers Van Gogh)
e6867a35ce merge bitcoin#25123: Fix race condition in index prune test (Kittywhiskers Van Gogh)
baf6e26eed merge bitcoin#21726: Improve Indices on pruned nodes via prune blockers (Kittywhiskers Van Gogh)
c65ec190c5 merge bitcoin#24626: disallow reindex-chainstate when pruning (Kittywhiskers Van Gogh)
bcd24a25e3 fix: push activation height for forks ahead, fix `feature_pruning.py` (Kittywhiskers Van Gogh)
10203560f5 merge bitcoin#24812: Add CHECK_NONFATAL identity function and NONFATAL_UNREACHABLE macro (Kittywhiskers Van Gogh)
1caaa85716 merge bitcoin#24138: Commit MuHash and best block together for coinstatsindex (Kittywhiskers Van Gogh)
b218f123b7 merge bitcoin#23046: Add txindex migration test (Kittywhiskers Van Gogh)
ebae59eedf fix: make sure we flush our committed best block in no-upgrade cases (Kittywhiskers Van Gogh)

Pull request description:

  ## Additional Information

  * When backporting [bitcoin#23046](https://github.com/bitcoin/bitcoin/pull/23046), it was discovered that there has been a longstanding bug in `CDeterministicMNManager::MigrateDBIfNeeded`(`2`)`()` that flagged a database taken from an older version for failing its "previous migration attempt", requiring the database to be fully rebuilt through a reindex.

    This occurred because the older database would be read pre-DIP3 in `MigrateDBIfNeeded()`, which then caused the migration logic to write the new best block ([source](3f0c2ff324/src/evo/deterministicmns.cpp (L1236-L1241))) (the legacy best block is erased before the DIP3 condition is checked, [source](3f0c2ff324/src/evo/deterministicmns.cpp (L1233))) but while it completed the transaction ([source](3f0c2ff324/src/evo/deterministicmns.cpp (L1240))), critically, it didn't write it to disk (example of writing to disk, [here](3f0c2ff324/src/evo/deterministicmns.cpp (L1288-L1292))).

    This meant that when it was read again by `MigrateDBIfNeeded2()`, it saw three things a) there is no new best block (because it didn't get written), b) there is no legacy best block (because it gets erased before the new best block is written) and c) that the chain height is greater than 1 (since this isn't a new datadir and the chain has already advanced), it concludes that it was a botched migration attempt and fails ([source](3f0c2ff324/src/evo/deterministicmns.cpp (L1337-L1343))).

    This bug affects v19 to `develop` (`3f0c2ff3` as of this writing) and prevents `feature_txindex_compatibility.py` from working as expected as it would migrate legacy databases to newer versions to test txindex migration code and get stuck at unhappy EvoDB migration logic, to allow the test to function properly when testing against the latest version of the client, this bug has been fixed as part of this PR.

  * In [bitcoin#23046](https://github.com/bitcoin/bitcoin/pull/23046), version v0.17 was used as the last version to support legacy txindex as the updated txindex format was introduced in [dash#4178](https://github.com/dashpay/dash/pull/4178) (i.e. after v0.17) and the version selected for having migration code in it (note, migration code was removed in [dash#6296](https://github.com/dashpay/dash/pull/6296), so far not included as part of any release) was v18.2.2 despite the range being v18.x to v21.x was a) due to the bug mentioned above affecting v19.x onwards and b) v18.2.2 being the latest release in the v18.x lifecycle.

    * The specific version number used for v0.17 is `170003` as the binaries corresponding to `170000` are not populated in `releases/`, which causes a CI failure ([source](https://gitlab.com/dashpay/dash/-/jobs/8073041955#L380))

  * As of `develop` (`3f0c2ff3` as of this writing), `feature_pruning.py` was broken due to changes in Core that were not adjusted for, namely:
    * The enforcement of `MAX_STANDARD_TX_SIZE` ([source](3f0c2ff324/src/policy/policy.h (L23-L24))) from DIP1 onwards ([source](3f0c2ff324/src/validation.cpp (L299-L301)))  resulting in `bad-txns-oversize` errors in blocks generated for the test as the transactions generated are ~9.5x larger than the now-enforced limit ([source](3f0c2ff324/test/functional/feature_pruning.py (L48C51-L48C57))), this is resolved by pushing the DIP1 activation height upwards to `2000` (the same activation height used for DIP3 and DIP8).
    * Change in subsidy logic in v20 ([source](3f0c2ff324/src/validation.cpp (L1073-L1082))) that results in `bad-cb-amount` errors, this is resolved by pushing the v20 activation height upwards.

    Additionally, an inopportune implicit post-`generate` sync ([source](3f0c2ff324/test/functional/feature_pruning.py (L215))) also causes the test to fail. Alongside the above, they have been resolved in this PR.

  * As of `develop` (`3f0c2ff3` as of this writing), `bench_dash` crashes when running the `AssembleBlock` benchmark. The regression was traced back to [bitcoin#21840](https://github.com/bitcoin/bitcoin/pull/21840) (5d10b41) in [dash#6152](https://github.com/dashpay/dash/pull/6152) due to the switch to `P2SH_OP_TRUE`.

    This has been resolved by reverting this particular change.

    <details>

    <summary>Pre-fix test failure:</summary>

    ```
    $ ./src/bench/bench_dash
    Warning, results might be unstable:
    * CPU governor is '' but should be 'performance'
    * Turbo is enabled, CPU frequency will fluctuate

    Recommendations
    * Use 'pyperf system tune' before benchmarking. See https://github.com/psf/pyperf

    |               ns/op |                op/s |    err% |          ins/op |         bra/op |   miss% |     total | benchmark
    |--------------------:|--------------------:|--------:|----------------:|---------------:|--------:|----------:|:----------
    |       17,647,657.00 |               56.66 |    0.1% |  231,718,349.00 |  42,246,265.00 |    0.1% |      0.20 | `AddrManAdd`
    |       42,201,861.00 |               23.70 |    0.1% |  544,366,811.00 | 102,569,244.00 |    0.0% |      0.46 | `AddrManAddThenGood`
    |          189,697.83 |            5,271.54 |    0.1% |    1,763,991.40 |     356,189.40 |    0.3% |      0.01 | `AddrManGetAddr`
    |              454.38 |        2,200,808.04 |    0.6% |        6,229.11 |       1,343.92 |    0.1% |      0.01 | `AddrManSelect`
    |        1,066,471.00 |              937.67 |   67.6% |   13,350,463.00 |   3,150,465.00 |    0.4% |      0.01 | 〰️ `AddrManSelectByNetwork` (Unstable with ~1.0 iters. Increase `minEpochIterations` to e.g. 10)
    |        1,181,774.50 |              846.19 |   49.0% |   18,358,489.50 |   4,224,642.50 |    0.0% |      0.02 | 〰️ `AddrManSelectFromAlmostEmpty` (Unstable with ~1.1 iters. Increase `minEpochIterations` to e.g. 11)
    bench_dash: bench/block_assemble.cpp:46: void AssembleBlock(benchmark::Bench &): Assertion `res.m_result_type == MempoolAcceptResult::ResultType::VALID' failed.
    [1]    2343746 IOT instruction (core dumped)  ./src/bench/bench_dash
    ```
    </details>

  ## Breaking changes

  None expected

  ## Checklist

  - [x] I have performed a self-review of my own code
  - [x] I have commented my code, particularly in hard-to-understand areas
  - [x] I have added or updated relevant unit/integration/functional/e2e tests
  - [x] I have made corresponding changes to the documentation **(note: N/A)**
  - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_

ACKs for top commit:
  UdjinM6:
    utACK 7d9ff96091
  PastaPastaPasta:
    utACK 7d9ff96091

Tree-SHA512: e2f1e58abb0a0368c4f1d5e488520957e042e6207b7d2d68a15eb18662405a3cdac91c5ff8e93c8a94c0fdab9b1412bd608d055f196230506c1640439939c25d
2024-10-21 11:32:29 -05:00
..
data test: drop genesis block from blockheader_testnet3 2024-08-09 17:34:40 +07:00
test_framework merge bitcoin#29239: Make v2transport default for addnode RPC when enabled 2024-10-15 15:34:12 +00:00
.gitignore
combine_logs.py
combined_log_template.html
create_cache.py
example_test.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
feature_abortnode.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
feature_addressindex.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_addrman.py merge bitcoin#23102: Add missing re.escape() to feature_addrman test 2024-09-30 09:03:27 +00:00
feature_anchors.py merge bitcoin#23392: move check_node_connections to util 2024-09-30 09:03:27 +00:00
feature_asmap.py merge bitcoin#22872: improve checkaddrman logging with duration in milliseconds 2024-09-03 14:57:48 +00:00
feature_asset_locks.py fix: limit amount of attempts for test test_withdrawal_fork 2024-10-17 23:10:37 +07:00
feature_assumevalid.py
feature_backwards_compatibility.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
feature_bind_extra.py Merge bitcoin/bitcoin#25333: test: Fix out-of-range port collisions 2024-06-08 20:59:34 -05:00
feature_bind_port_discover.py merge bitcoin#20196: fix GetListenPort() to derive the proper port 2024-06-12 16:37:12 +00:00
feature_bind_port_externalip.py merge bitcoin#20196: fix GetListenPort() to derive the proper port 2024-06-12 16:37:12 +00:00
feature_bip68_sequence.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
feature_block.py perf: activate v20 on the same block as v19 for Reg Test 2024-09-26 14:16:38 +07:00
feature_blocksdir.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
feature_cltv.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
feature_coinstatsindex.py Merge bitcoin/bitcoin#25034: test: add missing stop_node calls to feature_coinstatsindex and feature_prune 2024-10-09 13:44:32 +03:00
feature_config_args.py merge bitcoin#27577: give seednodes time before falling back to fixed seeds 2024-09-20 12:24:22 +00:00
feature_csv_activation.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
feature_dbcrash.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
feature_dersig.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
feature_dip3_deterministicmns.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_dip3_v19.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_dip4_coinbasemerkleroots.py test: opt-out of post-generate* syncing in some Dash tests 2024-10-04 19:01:05 +00:00
feature_dirsymlinks.py Merge bitcoin/bitcoin#24338: util: Work around libstdc++ create_directories issue 2024-08-14 12:47:45 +07:00
feature_discover.py Merge bitcoin/bitcoin#24269: test: add functional test for -discover 2024-06-10 11:00:46 -05:00
feature_fee_estimation.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
feature_filelock.py
feature_governance_cl.py test: cleanup generate logic in some governance functional tests 2024-10-04 19:01:05 +00:00
feature_governance_objects.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
feature_governance.py test: cleanup generate logic in some governance functional tests 2024-10-04 19:01:05 +00:00
feature_help.py
feature_includeconf.py
feature_index_prune.py merge bitcoin#26417: fix intermittent failure in feature_index_prune.py 2024-10-15 06:58:52 +00:00
feature_init.py merge bitcoin#25294: Fix wait_for_debug_log UnicodeDecodeError 2024-10-05 17:09:35 +00:00
feature_llmq_chainlocks.py test: opt-out of post-generate* syncing in some Dash tests 2024-10-04 19:01:05 +00:00
feature_llmq_connections.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
feature_llmq_data_recovery.py test: opt-out of post-generate* syncing in some Dash tests 2024-10-04 19:01:05 +00:00
feature_llmq_dkgerrors.py rpc: switch to taking an integer for rate in quorum dkgsimerror 2024-10-08 15:58:58 +00:00
feature_llmq_evo.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_llmq_is_cl_conflicts.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_llmq_is_retroactive.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
feature_llmq_rotation.py test: opt-out of post-generate* syncing in some Dash tests 2024-10-04 19:01:05 +00:00
feature_llmq_signing.py refactor: drop fast_dip3_enforcement=True from functional tests. 2024-09-26 14:17:05 +07:00
feature_llmq_simplepose.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_loadblock.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
feature_logging.py
feature_maxuploadtarget.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
feature_minchainwork.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
feature_mnehf.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
feature_multikeysporks.py
feature_new_quorum_type_activation.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
feature_notifications.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
feature_nulldummy.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
feature_proxy.py Merge bitcoin/bitcoin#24258: test: check localaddresses in getnetworkinfo for nodes with proxy 2024-06-11 12:09:21 -05:00
feature_pruning.py merge bitcoin#21726: Improve Indices on pruned nodes via prune blockers 2024-10-15 06:58:51 +00:00
feature_reindex.py merge bitcoin#16981: Improve runtime performance of --reindex 2024-10-15 06:58:52 +00:00
feature_settings.py
feature_shutdown.py
feature_spentindex.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_sporks.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
feature_startupnotify.py Merge bitcoin/bitcoin#26818: test: Fix feature_startupnotify intermittent issue 2024-08-12 11:52:39 +07:00
feature_timestampindex.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_txindex_compatibility.py merge bitcoin#23046: Add txindex migration test 2024-10-15 06:58:49 +00:00
feature_txindex.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
feature_uacomment.py
feature_utxo_set_hash.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
feature_versionbits_warning.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
interface_bitcoin_cli.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
interface_http.py
interface_rest.py merge bitcoin#17631: Expose block filters over REST 2024-10-08 15:59:18 +00:00
interface_rpc.py
interface_usdt_net.py merge bitcoin#24358: USDT tracepoint interface tests 2024-09-04 18:46:14 +00:00
interface_usdt_utxocache.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
interface_usdt_validation.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
interface_zmq_dash.py test: opt-out of post-generate* syncing in some Dash tests 2024-10-04 19:01:05 +00:00
interface_zmq.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
mempool_accept.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
mempool_compatibility.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
mempool_expiry.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
mempool_limit.py merge bitcoin#22741: Add generate* calls to test framework 2024-10-04 19:00:57 +00:00
mempool_package_limits.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
mempool_package_onemore.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
mempool_packages.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
mempool_persist.py Merge bitcoin/bitcoin#23061: Fix (inverse) meaning of -persistmempool 2024-10-17 20:25:27 +05:30
mempool_reorg.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
mempool_resurrect.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
mempool_spend_coinbase.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
mempool_unbroadcast.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
mempool_updatefromblock.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
mining_basic.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
mining_getblocktemplate_longpoll.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
mining_prioritisetransaction.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
p2p_add_connections.py merge bitcoin#23774: Add missing assert_equal import to p2p_add_connections.py 2024-10-02 08:31:48 +00:00
p2p_addr_relay.py feat: bump_mocktime also bumps schedulers now 2024-09-10 18:36:40 +03:00
p2p_addrfetch.py Merge bitcoin/bitcoin#22568: test: add addr-fetch peer connection state and timeout coverage 2024-08-29 08:07:41 +05:30
p2p_addrv2_relay.py merge bitcoin#23380: Fix AddrMan::Add() return semantics and logging 2024-06-10 17:16:38 +00:00
p2p_block_sync.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_blockfilters.py merge bitcoin#25192: add coverage for unknown value to -blockfilterindex 2024-10-05 17:09:34 +00:00
p2p_blocksonly.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_compactblocks_blocksonly.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
p2p_compactblocks_hb.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_compactblocks.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_connect_to_devnet.py
p2p_disconnect_ban.py merge bitcoin#27128: fix intermittent issue in p2p_disconnect_ban 2024-10-02 08:31:48 +00:00
p2p_dos_header_tree.py
p2p_eviction.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_filter.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_fingerprint.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_getaddr_caching.py Merge bitcoin/bitcoin#25333: test: Fix out-of-range port collisions 2024-06-08 20:59:34 -05:00
p2p_getdata.py
p2p_governance_invs.py test: add test for governance inv expiration 2024-08-22 22:03:48 +03:00
p2p_i2p_ports.py
p2p_i2p_sessions.py merge bitcoin#26838: I2P documentation updates 2024-05-29 11:48:38 -05:00
p2p_ibd_stalling.py perf: activate v20 on the same block as v19 for Reg Test 2024-09-26 14:16:38 +07:00
p2p_ibd_txrelay.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
p2p_initial_headers_sync.py test: remove dead code from p2p_initial_headers_sync.py to favor of disable mocktime 2024-09-01 18:27:19 +07:00
p2p_instantsend.py test: remove redundant sync after generate* calls in Dash tests 2024-10-04 19:01:05 +00:00
p2p_invalid_block.py merge bitcoin#23636: Remove GetAdjustedTime from init.cpp 2024-10-05 17:10:03 +00:00
p2p_invalid_locator.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_invalid_messages.py test: add missing import 2024-09-11 08:11:08 -05:00
p2p_invalid_tx.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_leak_tx.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_leak.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
p2p_message_capture.py
p2p_net_deadlock.py test: call self.generate() in p2p_net_deadlock.py 2024-10-05 09:41:53 +00:00
p2p_nobloomfilter_messages.py
p2p_node_network_limited.py merge bitcoin#28805: Make existing functional tests compatible with --v2transport 2024-10-15 15:34:12 +00:00
p2p_permissions.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
p2p_ping.py Merge #18638: net: Use mockable time for ping/pong, add tests 2024-07-08 23:57:01 +07:00
p2p_quorum_data.py test: move differing sync logic into sync_fun lambda in Dash tests 2024-10-04 19:01:05 +00:00
p2p_sendheaders_compressed.py test: opt-out of post-generate* syncing in some Dash tests 2024-10-04 19:01:05 +00:00
p2p_sendheaders.py test: remove redundant self.nodes from self.sync_{blocks,all} 2024-10-04 19:01:05 +00:00
p2p_timeouts.py merge bitcoin#28805: Make existing functional tests compatible with --v2transport 2024-10-15 15:34:12 +00:00
p2p_tx_download.py
p2p_unrequested_blocks.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
p2p_v2_transport.py merge bitcoin#28849: fix node index bug when comparing peerinfo 2024-10-15 15:34:12 +00:00
README.md Merge bitcoin/bitcoin#23001: doc: Enable TLS in links in documentation 2024-09-12 20:24:08 +05:30
rpc_addresses_deprecation.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
rpc_bind.py
rpc_blockchain.py Merge #6279: fix: new fork 'withdrawals' and fixes for asset unlock signature verification 2024-10-21 11:17:37 -05:00
rpc_coinjoin.py
rpc_createmultisig.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
rpc_decodescript.py Merge bitcoin#22593: remove hex_str_to_bytes helper 2024-08-25 07:55:20 +05:30
rpc_deprecated_platform_filter.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
rpc_deprecated.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
rpc_deriveaddresses.py
rpc_dumptxoutset.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
rpc_estimatefee.py Merge #20305: wallet: introduce fee_rate sat/vB param/option 2024-09-23 02:13:14 +07:00
rpc_external_queue.py chore: deprecate a setting platform-user in favour of whitelist 2024-09-26 14:01:44 +07:00
rpc_fundrawtransaction.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
rpc_generate.py
rpc_generateblock.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
rpc_getblockfilter.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
rpc_getblockfrompeer.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
rpc_getblockstats.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
rpc_getchaintips.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
rpc_getdescriptorinfo.py
rpc_getpeerinfo_deprecation.py Merge #19725: [RPC] Add connection type to getpeerinfo, improve logs 2024-05-29 14:03:55 +07:00
rpc_help.py Merge #20012: rpc: Remove duplicate name and argNames from CRPCCommand 2024-07-16 00:14:14 +07:00
rpc_invalid_address_message.py
rpc_invalidateblock.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
rpc_masternode.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
rpc_misc.py merge bitcoin#24812: Add CHECK_NONFATAL identity function and NONFATAL_UNREACHABLE macro 2024-10-15 06:58:50 +00:00
rpc_mnauth.py refactor: drop fast_dip3_enforcement=True from functional tests. 2024-09-26 14:17:05 +07:00
rpc_named_arguments.py
rpc_net.py merge bitcoin#28805: Make existing functional tests compatible with --v2transport 2024-10-15 15:34:12 +00:00
rpc_packages.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
rpc_preciousblock.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
rpc_psbt.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
rpc_quorum.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
rpc_rawtransaction.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
rpc_scantxoutset.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
rpc_setban.py
rpc_signmessage.py
rpc_signrawtransaction.py
rpc_txoutproof.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
rpc_uptime.py
rpc_users.py
rpc_verifychainlock.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
rpc_verifyislock.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
rpc_whitelist.py feat: test composite commands in functional test for whitelist 2024-07-12 00:07:54 +07:00
rpc_wipewallettxes.py chore: run contrib/devtools/copyright_header.py update . 2024-10-05 23:17:41 +03:00
test_runner.py Merge #6327: backport: merge bitcoin#23046, #24138, #24812, #24626, #21726, #25123, #25074, #24832, #26215, #24858, #26417, #16981 (index backports) 2024-10-21 11:32:29 -05:00
test-shell.md merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
tool_wallet.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_abandonconflict.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_avoidreuse.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_backup.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_balance.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_basic.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_change_address.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_coinbase_category.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_create_tx.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_createwallet.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_descriptor.py merge bitcoin#23207: Delete generate* calls from TestNode 2024-10-04 19:01:01 +00:00
wallet_disable.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_dump.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_encryption.py partial Merge #20842: docs: consolidate typo & url fixing 2024-07-26 13:32:54 +07:00
wallet_fallbackfee.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_groups.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_hd.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_import_rescan.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_import_with_label.py
wallet_importdescriptors.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_importmulti.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_importprunedfunds.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_keypool_hd.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_keypool_topup.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_keypool.py
wallet_labels.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_listdescriptors.py Merge bitcoin/bitcoin#21329: descriptor wallet: Cache last hardened xpub and use in normalized descriptors 2024-05-10 14:02:01 +07:00
wallet_listreceivedby.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_listsinceblock.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_listtransactions.py test: remove redundant sync after generate* calls in Bitcoin tests 2024-10-04 19:01:05 +00:00
wallet_mnemonicbits.py refactor: simplify extra arguments wallet_mnemonicbits.py since usehd=1 is default option 2024-10-11 16:38:53 +07:00
wallet_multiwallet.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_orphanedreward.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00
wallet_reorgsrestore.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_resendwallettransactions.py
wallet_send.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_startup.py
wallet_txn_clone.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_txn_doublespend.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_upgradetohd.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_upgradewallet.py merge bitcoin#23300: Implicitly sync after generate*, unless opted out 2024-10-04 19:01:05 +00:00
wallet_watchonly.py merge bitcoin#22788: Use generate* from TestFramework 2024-10-04 19:01:00 +00:00

Functional tests

Writing Functional Tests

Example test

The file test/functional/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/functional/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)
  • The oldest supported Python version is specified in doc/dependencies.md. Consider using pyenv, which checks .python-version, to prevent accidentally introducing modern syntax from an unsupported Python version. The CI linter job also checks this, but possibly not in all cases.
  • See the python lint script that checks for violations that could lead to bugs and issues in the test code.
  • Use type hints in your code to improve code readability and to detect possible bugs earlier.
  • Avoid wildcard imports.
  • If more than one name from a module is needed, use lexicographically sorted multi-line imports in order to reduce the possibility of potential merge conflicts.
  • Use a module-level docstring to describe what the test is testing, and how it is testing it.
  • When subclassing the BitcoinTestFramework, 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 f'{x}' for string formatting in preference to '{}'.format(x) or '%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
    • tool for tests for tools, eg tool_wallet.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

  • Instead of inline comments or no test documentation at all, log the comments to the test log, e.g. self.log.info('Create enough transactions to fill a block'). Logs make the test code easier to read and the test logic easier to debug.
  • 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).
  • 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 True to initialize an empty blockchain and start from the Genesis block, rather than load a premined blockchain from cache with the default value of False. The cached data directories contain a 200-block pre-mined blockchain with the spendable mining rewards being split between four nodes. Each node has 25 mature block subsidies (25x500=12500 DASH) in its wallet. Using them is much more efficient than mining blocks in your test.
  • 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.
  • Many of the core test framework classes such as CBlock and CTransaction don't allow new attributes to be added to their objects at runtime like typical Python objects allow. This helps prevent unpredictable side effects from typographical errors or usage of the objects outside of their intended purpose.

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

  • P2Ps can be used to test specific P2P protocol behavior. p2p.py contains test framework p2p objects and messages.py contains all the definitions for objects passed 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 in a callback-based event loop; 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.

P2PConnections can be used as such:

p2p_conn = node.add_p2p_connection(P2PInterface())
p2p_conn.send_and_ping(msg)

They can also be referenced by indexing into a TestNode's p2ps list, which contains the list of test framework p2p objects connected to itself (it does not include any TestNodes):

node.p2ps[0].sync_with_ping()

More examples can be found in p2p_unrequested_blocks.py, p2p_compactblocks.py.

Prototyping tests

The TestShell class exposes the BitcoinTestFramework functionality to interactive Python3 environments and can be used to prototype tests. This may be especially useful in a REPL environment with session logging utilities, such as IPython. The logs of such interactive sessions can later be adapted into permanent test cases.

Test framework modules

The following are useful modules for test developers. They are located in test/functional/test_framework/.

authproxy.py

Taken from the python-bitcoinrpc repository.

test_framework.py

Base class for functional tests.

util.py

Generally useful functions.

p2p.py

Test objects for interacting with a dashd node over the p2p interface.

script.py

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

key.py

Test-only secp256k1 elliptic curve implementation

blocktools.py

Helper functions for creating blocks and transactions.

Benchmarking with perf

An easy way to profile node performance during functional tests is provided for Linux platforms using perf.

Perf will sample the running node and will generate profile data in the node's datadir. The profile data can then be presented using perf report or a graphical tool like hotspot.

There are two ways of invoking perf: one is to use the --perf flag when running tests, which will profile each node during the entire test run: perf begins to profile when the node starts and ends when it shuts down. The other way is the use the profile_with_perf context manager, e.g.

with node.profile_with_perf("send-big-msgs"):
    # Perform activity on the node you're interested in profiling, e.g.:
    for _ in range(10000):
        node.p2ps[0].send_message(some_large_message)

To see useful textual output, run

perf report -i /path/to/datadir/send-big-msgs.perf.data.xxxx --stdio | c++filt | less

See also: