lbrycrd/src/test
2020-01-15 14:39:48 -07:00
..
data Match network id to regtest 2019-09-10 11:54:04 -06:00
addrman_tests.cpp
allocator_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
amount_tests.cpp
arith_uint256_tests.cpp
base32_tests.cpp
base58_tests.cpp
base64_tests.cpp
bech32_tests.cpp
bip32_tests.cpp
blockchain_tests.cpp
blockencodings_tests.cpp Rebase lbry on to Bitcoin 0.17. 2019-07-01 14:43:59 -06:00
bloom_tests.cpp
bswap_tests.cpp
Checkpoints_tests.cpp
checkqueue_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
claimtriebranching_tests.cpp fixed issue with untouched child nodes needing a parent update 2020-01-15 14:39:48 -07:00
claimtriecache_tests.cpp cache and hash fork tests pass 2020-01-15 14:39:48 -07:00
claimtrieexpirationfork_tests.cpp it compiles 2020-01-15 14:39:48 -07:00
claimtriefixture.cpp fixed issue with untouched child nodes needing a parent update 2020-01-15 14:39:48 -07:00
claimtriefixture.h fixed issue with untouched child nodes needing a parent update 2020-01-15 14:39:48 -07:00
claimtriehashfork_tests.cpp tried to fix hashfork tests; they're not working yet 2020-01-15 14:39:48 -07:00
claimtrienormalization_tests.cpp normalization tests pass 2020-01-15 14:39:48 -07:00
claimtrierpc_tests.cpp fixed some RPC tests 2020-01-15 14:39:48 -07:00
coins_tests.cpp Undo compatibility (#281) 2019-07-01 14:44:28 -06:00
compilerbug_tests.cpp
compress_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
crypto_tests.cpp
cuckoocache_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
dbwrapper_tests.cpp flattening prefix trie work 2019-07-01 14:44:28 -06:00
denialofservice_tests.cpp
descriptor_tests.cpp
getarg_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
hash_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
key_io_tests.cpp
key_tests.cpp
limitedmap_tests.cpp
main_tests.cpp
Makefile
mempool_tests.cpp Merge #13780: 0.17: Pre-branch maintenance 2018-08-08 13:55:27 +02:00
merkle_tests.cpp
merkleblock_tests.cpp
miner_tests.cpp flattening prefix trie work 2019-07-01 14:44:28 -06:00
multisig_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
nameclaim_tests.cpp initial commit of metadata on supports 2019-09-13 16:18:36 -06:00
net_tests.cpp
netbase_tests.cpp
pmt_tests.cpp
policyestimator_tests.cpp
pow_tests.cpp
prevector_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
raii_event_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
random_tests.cpp
README.md scripted-diff: Remove trailing whitespaces 2018-07-24 20:46:23 +01:00
reverselock_tests.cpp
rpc_tests.cpp
sanity_tests.cpp
scheduler_tests.cpp
script_p2sh_tests.cpp
script_standard_tests.cpp
script_tests.cpp Show correct script ops in asm 2019-09-10 10:02:16 -06:00
scriptnum10.h
scriptnum_tests.cpp
serialize_tests.cpp
sighash_tests.cpp
sigopcount_tests.cpp
skiplist_tests.cpp
streams_tests.cpp
test_bitcoin.cpp still fixing tests 2020-01-15 14:39:48 -07:00
test_bitcoin.h it compiles 2020-01-15 14:39:48 -07:00
test_bitcoin_fuzzy.cpp
test_bitcoin_main.cpp
timedata_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
torcontrol_tests.cpp
transaction_tests.cpp restored nonstandard output on getrawtransaction 2019-09-13 16:16:08 -06:00
txindex_tests.cpp
txvalidation_tests.cpp
txvalidationcache_tests.cpp
uint256_tests.cpp Update copyright headers to 2018 2018-07-27 07:15:02 -04:00
util_tests.cpp Match network id to regtest 2019-09-10 11:54:04 -06:00
validation_block_tests.cpp
versionbits_tests.cpp fix crash on cli help 2019-07-19 12:21:07 -06:00

Compiling/running unit tests

Unit tests will be automatically compiled if dependencies were met in ./configure and tests weren't explicitly disabled.

After configuring, they can be run with make check.

To run the bitcoind tests manually, launch src/test/test_bitcoin. To recompile after a test file was modified, run make and then run the test again. If you modify a non-test file, use make -C src/test to recompile only what's needed to run the bitcoind tests.

To add more bitcoind tests, add BOOST_AUTO_TEST_CASE functions to the existing .cpp files in the test/ directory or add new .cpp files that implement new BOOST_AUTO_TEST_SUITE sections.

To run the bitcoin-qt tests manually, launch src/qt/test/test_bitcoin-qt

To add more bitcoin-qt tests, add them to the src/qt/test/ directory and the src/qt/test/test_main.cpp file.

Running individual tests

test_bitcoin has some built-in command-line arguments; for example, to run just the getarg_tests verbosely:

test_bitcoin --log_level=all --run_test=getarg_tests

... or to run just the doubledash test:

test_bitcoin --run_test=getarg_tests/doubledash

Run test_bitcoin --help for the full list.

Note on adding test cases

The sources in this directory are unit test cases. Boost includes a unit testing framework, and since bitcoin already uses boost, it makes sense to simply use this framework rather than require developers to configure some other framework (we want as few impediments to creating unit tests as possible).

The build system is setup to compile an executable called test_bitcoin that runs all of the unit tests. The main source file is called test_bitcoin.cpp. To add a new unit test file to our test suite you need to add the file to src/Makefile.test.include. The pattern is to create one test file for each class or source file for which you want to create unit tests. The file naming convention is <source_filename>_tests.cpp and such files should wrap their tests in a test suite called <source_filename>_tests. For an example of this pattern, examine uint256_tests.cpp.

For further reading, I found the following website to be helpful in explaining how the boost unit test framework works: http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/.