dogecoin/qa/rpc-tests
2015-10-31 14:49:39 +00:00
..
test_framework Rename binaries to match Dogecoin 2015-10-31 14:49:39 +00:00
.gitignore Python-based regression tests 2014-02-28 15:24:31 -05:00
auxpow.py Add AUXPoW rpc tests 2015-08-26 22:14:51 +02: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 Rename binaries to match Dogecoin 2015-10-31 14:49:39 +00:00
forknotify.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
getauxblock.py Merge AuxPoW support from Namecore 2015-07-05 18:45:24 +01: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 Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
httpbasics.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +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 Rename binaries to match Dogecoin 2015-10-31 14:49:39 +00:00
listtransactions.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
maxblocksinflight.py Rename binaries to match Dogecoin 2015-10-31 14:49:39 +00:00
mempool_coinbase_spends.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
mempool_resurrect_test.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
mempool_spendcoinbase.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
merkle_blocks.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
p2p-acceptblock.py Rename binaries to match Dogecoin 2015-10-31 14:49:39 +00:00
proxy_test.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
pruning.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
rawtransactions.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
README.md Rename binaries to match Dogecoin 2015-10-31 14:49:39 +00:00
receivedby.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
reindex.py [QA] restructure rpc tests directory 2015-05-18 15:25:45 +02:00
rest.py fix rest.py test: cannot mine an auxpow block at height 1 2015-08-23 17:22:04 +02:00
rpcbind_test.py Rename binaries to match Dogecoin 2015-10-31 14:49:39 +00: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 Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
smartfees.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
txn_doublespend.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
util.sh Update license in pull-tester and rpc-tests 2014-10-23 09:48:19 +08:00
wallet.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
walletbackup.py Make most of the RPC tests pass 2015-08-02 20:08:42 +02:00
zapwallettxes.py Make most of the RPC tests pass 2015-08-02 20:08:42 +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 dogecoinds and test.* datadir on exit or error
  --noshutdown     Don't stop dogecoinds after the test execution
  --srcdir=SRCDIR  Source directory containing dogecoind/dogecoin-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:

```bash
rm -rf cache
killall bitcoind
```