mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
6a45e72edd
bb8d1c6e029a2fd01387599d2ff3bfc879a8ada5 Change ClearDataDirPathCache() to ArgsManager.ClearPathCache(). (Kiminuo) b4190eff72c00e384ad238f9c2f10c8b91be969b Change GetBlocksDir() to ArgsManager.GetBlocksDirPath(). (Kiminuo) 83292e2a700afbf39936bd67bb89fab5398d0066 scripted-diff: Modify unit tests to use the ArgsManager in the BasicTestingSetup class instead of implicitly relying on gArgs. (Kiminuo) 55c68e6f011ee604c8a65b9bca668eb4dec452aa scripted-diff: Replace m_args with m_local_args in getarg_tests.cpp (Kiminuo) 511ce3a26b3b78e14acd0d85496b5422a236cf63 BasicTestingSetup: Add ArgsManager. (Kiminuo) 1cb52ba0656e78ca6c2ef84b1558198ad113b76a Modify "util_datadir" unit test to not use gArgs. (Kiminuo) 1add318704108faa98f5b1b8e9c96d960e9d23a8 Move GetDataDir(fNetSpecific) implementation to ArgsManager. (Kiminuo) 70cdf679f8e665dbdc3301873a0267fe9faa72cd Move StripRedundantLastElementsOfPath before ArgsManager class. (Kiminuo) Pull request description: This PR attempts to contribute to "Remove gArgs" (#21005). Main changes: * `GetDataDir()` function is moved to `ArgsManager.GetDataDirPath()`. * `GetBlocksDir()` function is moved to `ArgsManager.GetBlocksDirPath()`. ACKs for top commit: ryanofsky: Code review ACK bb8d1c6e029a2fd01387599d2ff3bfc879a8ada5. Just minor const/naming changes and splitting/scripting commits since last review MarcoFalke: review ACK bb8d1c6e029a2fd01387599d2ff3bfc879a8ada5 📓 hebasto: re-ACK bb8d1c6e029a2fd01387599d2ff3bfc879a8ada5, addressed comments, and two commits made scripted-diffs since my [previous](https://github.com/bitcoin/bitcoin/pull/21244#pullrequestreview-638270583) review. Tree-SHA512: ba9408c22129d6572beaa103dca0324131766f06d562bb7d6b9e214a0a4d40b0216ce861384562bde24b744003b3fbe6fac239061c8fd798abd3981ebc1b9019
224 lines
7.8 KiB
C++
224 lines
7.8 KiB
C++
// Copyright (c) 2012-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <test/util/setup_common.h>
|
|
#include <util/strencodings.h>
|
|
#include <util/system.h>
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
namespace getarg_tests{
|
|
class LocalTestingSetup : BasicTestingSetup {
|
|
protected:
|
|
void SetupArgs(const std::vector<std::pair<std::string, unsigned int>>& args);
|
|
void ResetArgs(const std::string& strArg);
|
|
ArgsManager m_local_args;
|
|
};
|
|
}
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(getarg_tests, LocalTestingSetup)
|
|
|
|
void LocalTestingSetup :: ResetArgs(const std::string& strArg)
|
|
{
|
|
std::vector<std::string> vecArg;
|
|
if (strArg.size()) {
|
|
vecArg = SplitString(strArg, ' ');
|
|
}
|
|
|
|
// Insert dummy executable name:
|
|
vecArg.insert(vecArg.begin(), "testdash");
|
|
|
|
// Convert to char*:
|
|
std::vector<const char*> vecChar;
|
|
for (const std::string& s : vecArg)
|
|
vecChar.push_back(s.c_str());
|
|
|
|
std::string error;
|
|
BOOST_CHECK(m_local_args.ParseParameters(vecChar.size(), vecChar.data(), error));
|
|
}
|
|
|
|
void LocalTestingSetup :: SetupArgs(const std::vector<std::pair<std::string, unsigned int>>& args)
|
|
{
|
|
m_local_args.ClearArgs();
|
|
for (const auto& arg : args) {
|
|
m_local_args.AddArg(arg.first, "", arg.second, OptionsCategory::OPTIONS);
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(boolarg)
|
|
{
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_ANY);
|
|
SetupArgs({foo});
|
|
ResetArgs("-foo");
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", true));
|
|
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-fo", false));
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-fo", true));
|
|
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-fooo", false));
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-fooo", true));
|
|
|
|
ResetArgs("-foo=0");
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
|
|
ResetArgs("-foo=1");
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", true));
|
|
|
|
// New 0.6 feature: auto-map -nosomething to !-something:
|
|
ResetArgs("-nofoo");
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
|
|
ResetArgs("-nofoo=1");
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
|
|
ResetArgs("-foo -nofoo"); // -nofoo should win
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
|
|
ResetArgs("-foo=1 -nofoo=1"); // -nofoo should win
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
|
|
ResetArgs("-foo=0 -nofoo=0"); // -nofoo=0 should win
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", true));
|
|
|
|
// New 0.6 feature: treat -- same as -:
|
|
ResetArgs("--foo=1");
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", true));
|
|
|
|
ResetArgs("--nofoo=1");
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(stringarg)
|
|
{
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_ANY);
|
|
const auto bar = std::make_pair("-bar", ArgsManager::ALLOW_ANY);
|
|
SetupArgs({foo, bar});
|
|
ResetArgs("");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", ""), "");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", "eleven"), "eleven");
|
|
|
|
ResetArgs("-foo -bar");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", ""), "");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", "eleven"), "");
|
|
|
|
ResetArgs("-foo=");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", ""), "");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", "eleven"), "");
|
|
|
|
ResetArgs("-foo=11");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", ""), "11");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", "eleven"), "11");
|
|
|
|
ResetArgs("-foo=eleven");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", ""), "eleven");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", "eleven"), "eleven");
|
|
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(intarg)
|
|
{
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_ANY);
|
|
const auto bar = std::make_pair("-bar", ArgsManager::ALLOW_ANY);
|
|
SetupArgs({foo, bar});
|
|
ResetArgs("");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", 11), 11);
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", 0), 0);
|
|
|
|
ResetArgs("-foo -bar");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", 11), 0);
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-bar", 11), 0);
|
|
|
|
ResetArgs("-foo=11 -bar=12");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", 0), 11);
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-bar", 11), 12);
|
|
|
|
ResetArgs("-foo=NaN -bar=NotANumber");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", 1), 0);
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-bar", 11), 0);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(doubledash)
|
|
{
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_ANY);
|
|
const auto bar = std::make_pair("-bar", ArgsManager::ALLOW_ANY);
|
|
SetupArgs({foo, bar});
|
|
ResetArgs("--foo");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetBoolArg("-foo", false), true);
|
|
|
|
ResetArgs("--foo=verbose --bar=1");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-foo", ""), "verbose");
|
|
BOOST_CHECK_EQUAL(m_local_args.GetArg("-bar", 0), 1);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(boolargno)
|
|
{
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_ANY);
|
|
const auto bar = std::make_pair("-bar", ArgsManager::ALLOW_ANY);
|
|
SetupArgs({foo, bar});
|
|
ResetArgs("-nofoo");
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
|
|
ResetArgs("-nofoo=1");
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
|
|
ResetArgs("-nofoo=0");
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", true));
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", false));
|
|
|
|
ResetArgs("-foo --nofoo"); // --nofoo should win
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", true));
|
|
BOOST_CHECK(!m_local_args.GetBoolArg("-foo", false));
|
|
|
|
ResetArgs("-nofoo -foo"); // foo always wins:
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", true));
|
|
BOOST_CHECK(m_local_args.GetBoolArg("-foo", false));
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(logargs)
|
|
{
|
|
const auto okaylog_bool = std::make_pair("-okaylog-bool", ArgsManager::ALLOW_BOOL);
|
|
const auto okaylog_negbool = std::make_pair("-okaylog-negbool", ArgsManager::ALLOW_BOOL);
|
|
const auto okaylog = std::make_pair("-okaylog", ArgsManager::ALLOW_ANY);
|
|
const auto dontlog = std::make_pair("-dontlog", ArgsManager::ALLOW_ANY | ArgsManager::SENSITIVE);
|
|
SetupArgs({okaylog_bool, okaylog_negbool, okaylog, dontlog});
|
|
ResetArgs("-okaylog-bool -nookaylog-negbool -okaylog=public -dontlog=private");
|
|
|
|
// Everything logged to debug.log will also append to str
|
|
std::string str;
|
|
auto print_connection = LogInstance().PushBackCallback(
|
|
[&str](const std::string& s) {
|
|
str += s;
|
|
});
|
|
|
|
// Log the arguments
|
|
m_local_args.LogArgs();
|
|
|
|
LogInstance().DeleteCallback(print_connection);
|
|
// Check that what should appear does, and what shouldn't doesn't.
|
|
BOOST_CHECK(str.find("Command-line arg: okaylog-bool=\"\"") != std::string::npos);
|
|
BOOST_CHECK(str.find("Command-line arg: okaylog-negbool=false") != std::string::npos);
|
|
BOOST_CHECK(str.find("Command-line arg: okaylog=\"public\"") != std::string::npos);
|
|
BOOST_CHECK(str.find("dontlog=****") != std::string::npos);
|
|
BOOST_CHECK(str.find("private") == std::string::npos);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|