BitcoinPrivate-legacy/qa/rpc-tests
Homu 73676ce6d6 Auto merge of #2200 - str4d:1884-tx-priority-test, r=nathan-at-least
Fix prioritisetransaction RPC test

Part of #1884.
2017-05-16 11:54:49 -07:00
..
test_framework Fix an error reporting bug due to BrokenPipeError and ConnectionResetError not existing in Python 2. 2017-04-14 21:40:30 +01:00
.gitignore
README.md Add paytxfee to getwalletinfo, warnings to getnetworkinfo 2017-03-02 13:23:03 -08:00
bip65-cltv-p2p.py
bip65-cltv.py
bipdersig-p2p.py
bipdersig.py
decodescript.py add tests for the decodescript rpc. add mention of the rpc regression tests to the testing seciton of the main readme. 2017-03-02 13:23:03 -08:00
disablewallet.py Re-encode t-addrs in disablewallet.py with Zcash prefixes 2017-03-02 13:26:34 -08:00
forknotify.py
fundrawtransaction.py Adjust fundrawtransaction RPC test for Zcash 2017-03-02 13:26:34 -08:00
getblocktemplate.py
getblocktemplate_longpoll.py
getblocktemplate_proposals.py
getchaintips.py
hardforkdetection.py
httpbasics.py qa: Remove -rpckeepalive tests from httpbasics 2017-03-24 09:03:59 +13:00
invalidateblock.py
invalidblockrequest.py
keypool.py Require -experimentalmode for wallet encryption 2017-02-09 22:10:58 +00:00
listtransactions.py
maxblocksinflight.py
mempool_coinbase_spends.py
mempool_resurrect_test.py Part of #1969. Update tests to avoid error 'absurdly high fee' from change in min fee calc. 2017-02-28 11:44:51 -08:00
mempool_spendcoinbase.py Add tests for getmempoolinfo 2017-03-16 14:30:16 +13:00
merkle_blocks.py
nodehandling.py add RPC tests for setban & disconnectnode 2017-03-02 13:23:03 -08:00
p2p-acceptblock.py
prioritisetransaction.py Poll on getblocktemplate result rather than use bare sleep to avoid race condition. 2017-04-14 17:31:35 -07:00
proton_test.py Add AMQP 1.0 support via Apache Qpid Proton C++ API 0.17.0 2017-03-25 08:51:40 -07:00
proxy_test.py tests: Extend RPC proxy tests 2017-03-03 10:57:13 -08:00
pruning.py
rawtransactions.py Part of #1969. Update tests to avoid error 'absurdly high fee' from change in min fee calc. 2017-02-28 11:44:51 -08:00
receivedby.py
reindex.py
rest.py tests: GET requests cannot have request body, use POST in rest.py 2017-03-24 09:03:59 +13:00
rpcbind_test.py
script_test.py
signrawtransactions.py
smartfees.py
txn_doublespend.py
wallet.py [QA] add testcases for parsing strings as values 2017-03-02 13:26:34 -08:00
wallet_1941.py Test boolean fallback in z_importkey 2017-03-24 09:23:11 +13:00
wallet_nullifiers.py Require -experimentalmode for wallet encryption 2017-02-09 22:10:58 +00:00
wallet_protectcoinbase.py Part of #1969. Changing min fee calculation also changes the dust threshold. 2017-02-28 11:44:07 -08:00
wallet_treestate.py
walletbackup.py
zapwallettxes.py
zcjoinsplit.py Part of #1969. Update tests to avoid error 'absurdly high fee' from change in min fee calc. 2017-02-28 11:44:51 -08:00
zcjoinsplitdoublespend.py Part of #1969. Update tests to avoid error 'absurdly high fee' from change in min fee calc. 2017-02-28 11:44:51 -08:00
zmq_test.py [ZMQ] append a message sequence number to every ZMQ notification 2017-02-08 22:11:53 +00:00

README.md

Regression tests of RPC interface

python-bitcoinrpc

Git subtree of https://github.com/jgarzik/python-bitcoinrpc. Changes to python-bitcoinrpc should be made upstream, and then pulled here using git subtree.

test_framework/test_framework.py

Base class for new regression tests.

test_framework/util.py

Generally useful functions.

Notes

You can run a single test by calling qa/pull-tester/rpc-tests.sh <testname>.

Run all possible tests with qa/pull-tester/rpc-tests.sh -extended.

Possible options:

-h, --help       show this help message and exit
  --nocleanup      Leave bitcoinds and test.* datadir on exit or error
  --noshutdown     Don't stop bitcoinds after the test execution
  --srcdir=SRCDIR  Source directory containing bitcoind/bitcoin-cli (default:
                   ../../src)
  --tmpdir=TMPDIR  Root directory for datadirs
  --tracerpc       Print out all RPC calls as they are made

If you set the environment variable PYTHON_DEBUG=1 you will get some debug output (example: PYTHON_DEBUG=1 qa/pull-tester/rpc-tests.sh wallet).

A 200-block -regtest blockchain and wallets for four nodes is created the first time a regression test is run and is stored in the cache/ directory. Each node has 25 mature blocks (25*50=1250 BTC) in its wallet.

After the first run, the cache/ blockchain and wallets are copied into a temporary directory and used as the initial test state.

If you get into a bad state, you should be able to recover with:

rm -rf cache
killall bitcoind