dash/src/test
Wladimir J. van der Laan 058c9f729f Merge #17754: net: Don't allow resolving of std::string with embedded NUL characters. Add tests.
7a046cdc1423963bdcbcf9bb98560af61fa90b37 tests: Avoid using C-style NUL-terminated strings as arguments (practicalswift)
fefb9165f23fe9d10ad092ec31715f906e0d2ee7 tests: Add tests to make sure lookup methods fail on std::string parameters with embedded NUL characters (practicalswift)
9574de86ad703ad942cdd0eca79f48c0d42b102b net: Avoid using C-style NUL-terminated strings as arguments in the netbase interface (practicalswift)

Pull request description:

  Don't allow resolving of `std::string`:s with embedded `NUL` characters.

  Avoid using C-style `NUL`-terminated strings as arguments in the `netbase` interface

  Add tests.

  The only place in where C-style `NUL`-terminated strings are actually needed is here:

  ```diff
  +    if (!ValidAsCString(name)) {
  +        return false;
  +    }
  ...
  -    int nErr = getaddrinfo(pszName, nullptr, &aiHint, &aiRes);
  +    int nErr = getaddrinfo(name.c_str(), nullptr, &aiHint, &aiRes);
       if (nErr)
           return false;
  ```

  Interface changes:

  ```diff
  -bool LookupHost(const char *pszName, std::vector<CNetAddr>& vIP, unsigned int nMaxSolutions, bool fAllowLookup);
  +bool LookupHost(const std::string& name, std::vector<CNetAddr>& vIP, unsigned int nMaxSolutions, bool fAllowLookup);

  -bool LookupHost(const char *pszName, CNetAddr& addr, bool fAllowLookup);
  +bool LookupHost(const std::string& name, CNetAddr& addr, bool fAllowLookup);

  -bool Lookup(const char *pszName, CService& addr, int portDefault, bool fAllowLookup);
  +bool Lookup(const std::string& name, CService& addr, int portDefault, bool fAllowLookup);

  -bool Lookup(const char *pszName, std::vector<CService>& vAddr, int portDefault, bool fAllowLookup, unsigned int nMaxSolutions);
  +bool Lookup(const std::string& name, std::vector<CService>& vAddr, int portDefault, bool fAllowLookup, unsigned int nMaxSolutions);

  -bool LookupSubNet(const char *pszName, CSubNet& subnet);
  +bool LookupSubNet(const std::string& strSubnet, CSubNet& subnet);

  -CService LookupNumeric(const char *pszName, int portDefault = 0);
  +CService LookupNumeric(const std::string& name, int portDefault = 0);

  -bool ConnectThroughProxy(const proxyType &proxy, const std::string& strDest, int port, const SOCKET& hSocketRet, int nTimeout, bool *outProxyConnectionFailed);
  +bool ConnectThroughProxy(const proxyType &proxy, const std::string& strDest, int port, const SOCKET& hSocketRet, int nTimeout, bool& outProxyConnectionFailed);
  ```

  It should be noted that the `ConnectThroughProxy` change (from `bool *outProxyConnectionFailed` to `bool& outProxyConnectionFailed`) has nothing to do with `NUL` handling but I thought it was worth doing when touching this file :)

ACKs for top commit:
  EthanHeilman:
    ACK 7a046cdc1423963bdcbcf9bb98560af61fa90b37
  laanwj:
    ACK 7a046cdc1423963bdcbcf9bb98560af61fa90b37

Tree-SHA512: 66556e290db996917b54091acd591df221f72230f6b9f6b167b9195ee870ebef6e26f4cda2f6f54d00e1c362e1743bf56785d0de7cae854e6bf7d26f6caccaba
2022-10-03 16:08:31 -04:00
..
data fix(gov): do not allow empty proposal names (#4883) 2022-06-14 12:04:56 +03:00
fuzz merge bitcoin#18783: Add fuzzing harness for MessageSign, MessageVerify and other functions in util/message.h 2022-09-24 08:51:05 +05:30
util refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
addrman_tests.cpp Merge #17754: net: Don't allow resolving of std::string with embedded NUL characters. Add tests. 2022-10-03 16:08:31 -04:00
allocator_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
amount_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
arith_uint256_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
base32_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
base58_tests.cpp Merge #17511: Add bounds checks before base58 decoding 2022-06-08 12:33:00 +07:00
base64_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
bech32_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
bip32_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
bip39_tests.cpp chore: bump copyrights (#4873) 2022-06-08 02:36:46 +03:00
block_reward_reallocation_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
blockchain_tests.cpp chore: bump copyrights (#4873) 2022-06-08 02:36:46 +03:00
blockencodings_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
blockfilter_index_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
blockfilter_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
bloom_tests.cpp test: bls scheme basic/legacy tests (#5027) 2022-09-30 10:29:51 -05:00
bls_tests.cpp test: bls scheme basic/legacy tests (#5027) 2022-09-30 10:29:51 -05:00
bswap_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
cachemap_tests.cpp chore: bump copyrights (#4873) 2022-06-08 02:36:46 +03:00
cachemultimap_tests.cpp chore: bump copyrights (#4873) 2022-06-08 02:36:46 +03:00
checkdatasig_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
checkqueue_tests.cpp Merge #17634: qt: Fix comparison function signature 2022-06-16 01:34:38 -04:00
coins_tests.cpp Merge #17669: tests: have coins simulation test also use CCoinsViewDB 2022-03-05 14:36:25 -05:00
compilerbug_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
compress_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
crypto_tests.cpp partial bitcoin#19055: Add MuHash3072 implementation 2022-04-27 20:05:13 +05:30
cuckoocache_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
dbwrapper_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
denialofservice_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
descriptor_tests.cpp merge bitcoin#18204: improve descriptor cache and cache xpubs 2022-09-24 08:51:05 +05:30
dip0020opcodes_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
dynamic_activation_thresholds_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
evo_deterministicmns_tests.cpp refactor: migrate globals to managed pointers in preparation for deglobalization (#4930) 2022-08-26 16:52:53 -05:00
evo_instantsend_tests.cpp test: add very basic tests for llmq::CInstantSendLock::IsDeterministic (#4719) 2022-03-13 23:56:10 +03:00
evo_simplifiedmns_tests.cpp test: bls scheme basic/legacy tests (#5027) 2022-09-30 10:29:51 -05:00
evo_trivialvalidation.cpp test: bls scheme basic/legacy tests (#5027) 2022-09-30 10:29:51 -05:00
evo_utils_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
flatfile_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
fs_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
getarg_tests.cpp merge #16115: On bitcoind startup, write config args to debug.log 2022-06-21 19:08:55 +05:30
governance_validators_tests.cpp chore: bump copyrights (#4873) 2022-06-08 02:36:46 +03:00
hash_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
key_io_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
key_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
lcg.h
limitedmap_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
llmq_dkg_tests.cpp refactor: create an enum for DKGError, instead of passing around potentially invalid strings (#4998) 2022-09-06 20:32:53 +03:00
logging_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
main.cpp Merge #18472: test: Remove unsafe BOOST_TEST_MESSAGE 2022-04-03 08:35:45 +05:30
Makefile
mempool_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
merkle_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
merkleblock_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
miner_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
multisig_tests.cpp Bitcoin backport #16227 refactoring CWallet (#4903) 2022-07-12 22:46:31 -05:00
net_tests.cpp Merge #17754: net: Don't allow resolving of std::string with embedded NUL characters. Add tests. 2022-10-03 16:08:31 -04:00
netbase_tests.cpp Merge #17754: net: Don't allow resolving of std::string with embedded NUL characters. Add tests. 2022-10-03 16:08:31 -04:00
pmt_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
policyestimator_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
pow_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
prevector_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
raii_event_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
random_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
ratecheck_tests.cpp chore: bump copyrights (#4873) 2022-06-08 02:36:46 +03:00
README.md Merge #18486: doc: Explain new test logging 2022-04-03 08:35:46 +05:30
ref_tests.cpp merge bitcoin#18740: Remove g_rpc_node global 2022-05-18 20:50:50 +05:30
reverselock_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
rpc_tests.cpp merge bitcoin#18740: Remove g_rpc_node global 2022-05-18 20:50:50 +05:30
sanity_tests.cpp merge bitcoin#21405: remove memcpy -> memmove backwards compatibility alias 2022-07-01 09:02:38 +05:30
scheduler_tests.cpp Merge #18211: test: Disable mockforward scheduler unit test for now 2022-04-20 08:51:35 -05:00
script_p2pk_tests.cpp chore: bump copyrights (#4873) 2022-06-08 02:36:46 +03:00
script_p2pkh_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
script_p2sh_tests.cpp Bitcoin backport #16227 refactoring CWallet (#4903) 2022-07-12 22:46:31 -05:00
script_standard_tests.cpp Bitcoin backport #16227 refactoring CWallet (#4903) 2022-07-12 22:46:31 -05:00
script_tests.cpp Merge #18612: script: Remove undocumented and unused operator+ 2022-09-16 19:22:13 +05:30
scriptnum10.h Merge #16278: tests: Remove unused includes (#4528) 2021-11-30 00:53:40 -05:00
scriptnum_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
serialize_tests.cpp Merge #13558: Drop unused GetType() from CSizeComputer 2022-05-30 01:11:03 -04:00
settings_tests.cpp merge #15935: Add <datadir>/settings.json persistent settings storage 2022-06-21 19:08:55 +05:30
sighash_tests.cpp merge bitcoin#20016: 1 is a constant 2022-07-02 23:47:42 +05:30
sigopcount_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
skiplist_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
specialtx_tests.cpp merge bitcoin#15141: Rewrite DoS interface between validation and net_processing 2022-06-21 19:11:26 +05:30
streams_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
subsidy_tests.cpp chore: bump copyrights (#4873) 2022-06-08 02:36:46 +03:00
sync_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
timedata_tests.cpp Merge #17750: util: change GetWarnings parameter to bool 2022-06-14 16:48:15 +07:00
torcontrol_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
transaction_tests.cpp Bitcoin backport #16227 refactoring CWallet (#4903) 2022-07-12 22:46:31 -05:00
txindex_tests.cpp merge bitcoin#18615: Avoid accessing free'd memory in validation_chainstatemanager_tests 2022-05-23 10:39:43 +05:30
txvalidation_tests.cpp merge bitcoin#15141: Rewrite DoS interface between validation and net_processing 2022-06-21 19:11:26 +05:30
txvalidationcache_tests.cpp Bitcoin backport #16227 refactoring CWallet (#4903) 2022-07-12 22:46:31 -05:00
uint256_tests.cpp merge bitcoin#20016: 1 is a constant 2022-07-02 23:47:42 +05:30
util_tests.cpp merge bitcoin#17577: deduplicate the message sign/verify code 2022-09-24 08:51:05 +05:30
util_threadnames_tests.cpp partial revert dash#2911: s/dash-config/bitcoin-config/g 2022-08-09 14:16:28 +05:30
util.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
util.h Merge #15988: Add test for ArgsManager::GetChainName 2022-05-17 12:58:23 -04:00
validation_block_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
validation_chainstate_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
validation_chainstatemanager_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
validation_flush_tests.cpp refactor: pass references to objects instead of using global definitions (#4988) 2022-09-22 15:14:48 +04:00
validation_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30
versionbits_tests.cpp merge bitcoin#17384: Create new test library 2022-02-26 10:45:13 +05:30

Unit tests

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 set up to compile an executable called test_dash that runs all of the unit tests. The main source file for the test library is found in util/setup_common.cpp.

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 unit 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 unit tests.

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

To add more GUI unit 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 -- DEBUG_LOG_OUT

log_level controls the verbosity of the test framework, which logs when a test case is entered, for example. The DEBUG_LOG_OUT after the two dashes redirects the debug log, which would normally go to a file in the test datadir (BasicTestingSetup::m_path_root), to the standard terminal output.

... or to run just the doubledash test:

test_dash --run_test=getarg_tests/doubledash

Run test_dash --help for the full list.

Adding test cases

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, see uint256_tests.cpp.

Logging and debugging in unit tests

make check will write to a log file foo_tests.cpp.log and display this file on failure. For running individual tests verbosely, refer to the section above.

To write to logs from unit tests you need to use specific message methods provided by Boost. The simplest is BOOST_TEST_MESSAGE.

For debugging you can launch the test_dash executable with gdbor lldb and start debugging, just like you would with any other program:

gdb src/test/test_dash