dash/src/test
Wladimir J. van der Laan 2564c17330
Merge #12567: util: Print timestamp strings in logs using ISO 8601 formatting
a7324bd79 Format timestamps using ISO 8601 formatting (e.g. "2018-02-28T12:34:56Z") (practicalswift)

Pull request description:

  Print timestamp strings in logs using [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatting (e.g. `2018-02-28T12:34:56Z`):
  * `Z` is the zone designator for the zero [UTC](https://en.wikipedia.org/wiki/Coordinated_Universal_Time) offset.
  * `T` is the delimiter used to separate date and time.

  This makes it clear for the end-user that the date/time logged is specified in UTC and not in the local time zone.

  Before this patch:

  ```
  2018-02-28 12:34:56 New outbound peer connected: version: 70015, blocks=1286123, peer=0
  ```

  After this patch:

  ```
  2018-02-28T12:34:56Z New outbound peer connected: version: 70015, blocks=1286123, peer=0
  ```

Tree-SHA512: 52b53c3d3d11ddf4af521a3b5f90a79f6e6539ee5955ec56a5aa2c6a5cf29cecf166d8cb43277c62553c3325a31bcea83691acbb4e86429c523f8aff8d7b210a
Signed-off-by: pasta <pasta@dashboost.org>
2020-12-15 20:16:10 -06:00
..
data Consensus: DIP-0020: Dash opcode updates - OP_CAT and OP_SPLIT. (#3824) 2020-12-11 22:17:10 +00:00
addrman_tests.cpp Merge #9037: net: Add test-before-evict discipline to addrman 2020-06-13 14:50:11 -05:00
allocator_tests.cpp Bugfix: Include <memory> for std::unique_ptr 2020-04-08 11:46:27 -05:00
amount_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
arith_uint256_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
base32_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
base58_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
base64_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
bip32_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
bip39_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
blockchain_tests.cpp Merge #13288: rpc: Remove the need to include rpc/blockchain.cpp in order to put GetDifficulty under test 2020-07-01 20:12:03 -05:00
blockencodings_tests.cpp Merge #13234: Break circular dependency: chain -> pow -> chain 2020-07-01 14:08:47 -05:00
blockfilter_tests.cpp Merge #14073: blockfilter: Avoid out-of-bounds script access. 2020-06-13 14:08:18 -05:00
bloom_tests.cpp Merge #15324: test: Make bloom tests deterministic 2020-04-14 15:16:51 +02:00
bls_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
bswap_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
cachemap_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
cachemultimap_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
checkqueue_tests.cpp Merge #12477: test: Plug memory leaks and stack-use-after-scope 2020-06-17 14:29:55 -05:00
coins_tests.cpp Merge #12716: Fix typos and cleanup in various files 2020-06-11 23:20:48 -05:00
compress_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
crypto_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
cuckoocache_tests.cpp Merge #13551: tests: Fix incorrect documentation for test case cuckoocache_hit_rate_ok 2020-07-08 18:32:04 -05:00
dbwrapper_tests.cpp scripted-diff: Merge #13753: Remove trailing whitespaces 2020-07-28 20:23:12 -05:00
denialofservice_tests.cpp Merge #13615: net: Remove unused interrupt from SendMessages 2020-07-08 20:03:37 -05:00
evo_deterministicmns_tests.cpp Adjust CDeterministicMNState, add helper methods (#3643) 2020-08-04 14:36:02 +03:00
evo_simplifiedmns_tests.cpp refactor: Add/Use byte vector constructor for CBLSWrapper (#3868) 2020-12-14 17:26:30 -06:00
getarg_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
governance_validators_tests.cpp scripted-diff: Merge #13753: Remove trailing whitespaces 2020-07-28 20:23:12 -05:00
hash_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
key_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
limitedmap_tests.cpp scripted-diff: Merge #13753: Remove trailing whitespaces 2020-07-28 20:23:12 -05:00
main_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
Makefile
mempool_tests.cpp scripted-diff: Merge #13753: Remove trailing whitespaces 2020-07-28 20:23:12 -05:00
merkle_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
merkleblock_tests.cpp Merge #13230: Simplify include analysis by enforcing the developer guide's include syntax 2020-07-01 20:12:03 -05:00
miner_tests.cpp include pow.h 2020-07-01 14:08:47 -05:00
multisig_tests.cpp scripted-diff: Convert 11 enums into scoped enums (C++11) (merge #10742) 2020-06-11 23:20:48 -05:00
net_tests.cpp Merge #12740: Add native support for serializing char arrays without FLATDATA 2020-10-22 11:36:39 -04:00
netbase_tests.cpp scripted-diff: Replace NET_TOR with NET_ONION (#13575) 2020-06-08 20:27:14 -05:00
pmt_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
policyestimator_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
pow_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
prevector_tests.cpp scripted-diff: Merge #13753: Remove trailing whitespaces 2020-07-28 20:23:12 -05:00
privatesend_tests.cpp tests: Fix PrivateSend and wallet unit tests after 3680 (#3724) 2020-09-23 09:37:05 +03:00
raii_event_tests.cpp scripted-diff: Merge #13753: Remove trailing whitespaces 2020-07-28 20:23:12 -05:00
random_tests.cpp Merge #12742: Make FastRandomContext support standard C++11 RNG interface 2020-10-22 11:36:39 -04:00
ratecheck_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
README.md scripted-diff: Merge #13753: Remove trailing whitespaces 2020-07-28 20:23:12 -05:00
reverselock_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
rpc_tests.cpp Merge #10579: [RPC] Split signrawtransaction into wallet and non-wallet RPC command 2020-12-15 11:06:25 -06:00
sanity_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
scheduler_tests.cpp Merge #13247: Add tests to SingleThreadedSchedulerClient() and document the memory model 2020-07-17 15:45:43 -05:00
script_p2pk_tests.cpp continued 13312 2020-07-07 11:27:55 -05:00
script_p2pkh_tests.cpp continued 13312 2020-07-07 11:27:55 -05:00
script_p2sh_tests.cpp Merge #13565: test: Fix AreInputsStandard test to reference the proper scriptPubKey 2020-07-08 20:03:38 -05:00
script_standard_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
script_tests.cpp Consensus: DIP-0020: Dash opcode updates - OP_CAT and OP_SPLIT. (#3824) 2020-12-11 22:17:10 +00:00
scriptnum10.h Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
scriptnum_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
serialize_tests.cpp Merge #12740: Add native support for serializing char arrays without FLATDATA 2020-10-22 11:36:39 -04:00
sighash_tests.cpp Merge #12885: Reduce implementation code inside CScript 2020-11-17 14:34:32 -05:00
sigopcount_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
skiplist_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
streams_tests.cpp Merge #12740: Add native support for serializing char arrays without FLATDATA 2020-10-22 11:36:39 -04:00
subsidy_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
test_dash_fuzzy.cpp Bugfix: Include <memory> for std::unique_ptr 2020-04-08 11:46:27 -05:00
test_dash_main.cpp test: Rename test suite (#3792) 2020-11-08 17:45:13 +03:00
test_dash.cpp Merge #13020: Consistently log CValidationState on call failure 2020-11-17 14:32:37 -05:00
test_dash.h Merge #15324: test: Make bloom tests deterministic 2020-04-14 15:16:51 +02:00
timedata_tests.cpp Backport 11651 (#3358) 2020-03-20 01:46:56 +03:00
torcontrol_tests.cpp Merge #13291: test: Don't include torcontrol.cpp into the test file 2020-07-01 14:08:47 -05:00
transaction_tests.cpp Consensus: DIP-0020: Dash opcode updates - OP_CAT and OP_SPLIT. (#3824) 2020-12-11 22:17:10 +00:00
txvalidation_tests.cpp Merge #11746: trivial: Fix unsuccessful typo 2020-04-01 12:43:17 -05:00
txvalidationcache_tests.cpp scripted-diff: Convert 11 enums into scoped enums (C++11) (merge #10742) 2020-06-11 23:20:48 -05:00
uint256_tests.cpp Merge #12537: [arith_uint256] Make it safe to use "self" in operators 2020-11-01 01:58:06 -04:00
util_tests.cpp Merge #12567: util: Print timestamp strings in logs using ISO 8601 formatting 2020-12-15 20:16:10 -06:00
versionbits_tests.cpp Implement dynamic activation thresholds (#3692) 2020-09-12 17:33:12 +03: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 dashd tests manually, launch src/test/test_dash. 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 dashd tests.

To add more dashd 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 dash-qt tests manually, launch src/qt/test/test_dash-qt

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

Running individual tests

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

test_dash --log_level=all --run_test=getarg_tests

... or to run just the doubledash test:

test_dash --run_test=getarg_tests/doubledash

Run test_dash --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 Dash Core 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_dash that runs all of the unit tests. The main source file is called test_dash.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/.