dogecoin/qa/rpc-tests
Wladimir J. van der Laan 3203a0832a
Merge pull request #5881
5d34e16 Add txn_clone.py test (Tom Harding)
defd2d5 Better txn_doublespend.py test (Tom Harding)
b2b3619 Implement CTransaction::IsEquivalentTo(...) (Tom Harding)
2015-07-02 19:59:50 +02:00
..
test_framework rpc-tests: remove python-bitcoinrpc directory 2015-05-21 21:22:22 +02:00
.gitignore Python-based regression tests 2014-02-28 15:24:31 -05:00
bipdersig-p2p.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
bipdersig.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
conflictedbalance.sh clarify that there are only two nodes 2015-04-27 20:22:06 -04:00
decodescript.py add tests for the decodescript rpc. add mention of the rpc regression tests to the testing seciton of the main readme. 2015-06-30 09:45:49 -04:00
forknotify.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
fundrawtransaction.py fundrawtransaction tests 2015-06-11 01:03:23 -07:00
getblocktemplate_longpoll.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
getblocktemplate_proposals.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
getchaintips.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
httpbasics.py add RPC tests for setban & disconnectnode 2015-06-17 21:40:56 +02:00
invalidateblock.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
invalidblockrequest.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
keypool.py rpc-tests: remove python-bitcoinrpc directory 2015-05-21 21:22:22 +02:00
listtransactions.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
maxblocksinflight.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
mempool_coinbase_spends.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
mempool_resurrect_test.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
mempool_spendcoinbase.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
merkle_blocks.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
nodehandling.py add RPC tests for setban & disconnectnode 2015-06-17 21:40:56 +02:00
p2p-acceptblock.py P2P regression test for new AcceptBlock behavior 2015-06-02 14:01:35 -04:00
proxy_test.py tests: Extend RPC proxy tests 2015-06-15 12:45:13 +02:00
pruning.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
rawtransactions.py pull-tester/rpc-tests.sh: allow passing throug of arguments 2015-05-18 15:29:20 +02:00
README.md Add paytxfee to getwalletinfo, warnings to getnetworkinfo 2015-06-11 16:12:34 -04:00
receivedby.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
reindex.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
rest.py Merge pull request #6193 2015-06-01 09:48:17 +02:00
rpcbind_test.py rpc-tests: remove python-bitcoinrpc directory 2015-05-21 21:22:22 +02:00
script_test.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
send.sh Update license in pull-tester and rpc-tests 2014-10-23 09:48:19 +08:00
signrawtransactions.py pull-tester/rpc-tests.sh: allow passing throug of arguments 2015-05-18 15:29:20 +02:00
smartfees.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
txn_clone.py Add txn_clone.py test 2015-05-11 17:09:14 -07:00
txn_doublespend.py Merge pull request #5881 2015-07-02 19:59:50 +02:00
util.sh Update license in pull-tester and rpc-tests 2014-10-23 09:48:19 +08:00
wallet.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
walletbackup.py Fix walletbackup.py after directory restructuring 2015-05-27 10:00:15 -04:00
zapwallettxes.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00

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.

Bash-based tests, to be ported to Python:

  • conflictedbalance.sh : More testing of malleable transaction handling

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