Kevacoin source tree
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
zathras-crypto 0aad1f13b2
Exempt unspendable transaction outputs from dust checks
10 years ago
..
test_framework
.gitignore
README.md Remove bash test note from rpc-tests readme 10 years ago
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. 10 years ago
forknotify.py
fundrawtransaction.py Exempt unspendable transaction outputs from dust checks 10 years ago
getblocktemplate_longpoll.py
getblocktemplate_proposals.py
getchaintips.py
httpbasics.py add RPC tests for setban & disconnectnode 10 years ago
invalidateblock.py
invalidblockrequest.py
keypool.py
listtransactions.py
maxblocksinflight.py
mempool_coinbase_spends.py
mempool_resurrect_test.py
mempool_spendcoinbase.py
merkle_blocks.py
nodehandling.py banlist.dat: store banlist on disk 10 years ago
p2p-acceptblock.py P2P regression test for new AcceptBlock behavior 10 years ago
proxy_test.py tests: Extend RPC proxy tests 10 years ago
pruning.py
rawtransactions.py [QA] fix possible reorg issue in rawtransaction.py/fundrawtransaction.py RPC test 10 years ago
receivedby.py
reindex.py
rest.py [REST] add JSON support for /rest/headers/ 10 years ago
rpcbind_test.py
script_test.py
signrawtransactions.py
smartfees.py
txn_clone.py Fix intermittent test failure, reduce test time 10 years ago
txn_doublespend.py Merge pull request #5881 10 years ago
wallet.py
walletbackup.py Fix walletbackup.py after directory restructuring 10 years ago
zapwallettxes.py

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