2015-12-13 14:51:43 +01:00
|
|
|
// Copyright (c) 2012-2015 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 10:11:00 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2019-01-09 18:10:22 +01:00
|
|
|
#include <util/strencodings.h>
|
2021-06-27 08:33:13 +02:00
|
|
|
#include <util/system.h>
|
2022-02-25 18:19:25 +01:00
|
|
|
#include <test/util/setup_common.h>
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
#include <string>
|
merge bitcoin#16097: Add Flags enum to ArgsManager class (#4569)
* merge bitcoin#16097: Check IsArgKnown() early
* merge bitcoin#16097: Refactor InterpretNegatedOption() function
* merge bitcoin#16097: Add Flags enum to ArgsManager
* scripted-diff: Use Flags enum in AddArg()
-BEGIN VERIFY SCRIPT-
sed -i 's/const bool debug_only,/unsigned int flags, &/' src/util/system.h src/util/system.cpp
sed -i -E 's/(true|false), OptionsCategory::/ArgsManager::ALLOW_ANY, &/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* scripted-diff: Use ArgsManager::DEBUG_ONLY flag
-BEGIN VERIFY SCRIPT-
sed -i 's/unsigned int flags, const bool debug_only,/unsigned int flags,/' src/util/system.h src/util/system.cpp
sed -i 's/ArgsManager::NONE, debug_only/flags, false/' src/util/system.cpp
sed -i 's/arg.second.m_debug_only/(arg.second.m_flags \& ArgsManager::DEBUG_ONLY)/' src/util/system.cpp
sed -i 's/ArgsManager::ALLOW_ANY, true, OptionsCategory::/ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
sed -i 's/ArgsManager::ALLOW_ANY, false, OptionsCategory::/ArgsManager::ALLOW_ANY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* merge bitcoin#16097: Remove unused m_debug_only member from Arg struct
* merge bitcoin#16097: Use ArgsManager::NETWORK_ONLY flag
* merge bitcoin#16097: Replace IsArgKnown() with FlagsOfKnownArg()
* merge bitcoin#16097: Revamp option negating policy
* merge bitcoin#16097: Make tests arg type specific
2021-11-13 01:25:46 +01:00
|
|
|
#include <utility>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2012-02-06 18:37:49 +01:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2022-05-21 10:02:36 +02:00
|
|
|
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_args;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(getarg_tests, LocalTestingSetup)
|
2012-02-06 18:37:49 +01:00
|
|
|
|
2022-05-21 10:02:36 +02:00
|
|
|
void LocalTestingSetup :: ResetArgs(const std::string& strArg)
|
2012-02-06 18:37:49 +01:00
|
|
|
{
|
|
|
|
std::vector<std::string> vecArg;
|
2022-12-21 09:19:20 +01:00
|
|
|
if (strArg.size()) {
|
|
|
|
vecArg = SplitString(strArg, ' ');
|
|
|
|
}
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
// Insert dummy executable name:
|
2016-03-04 08:25:16 +01:00
|
|
|
vecArg.insert(vecArg.begin(), "testdash");
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
// Convert to char*:
|
|
|
|
std::vector<const char*> vecChar;
|
2018-09-04 15:36:09 +02:00
|
|
|
for (const std::string& s : vecArg)
|
2012-02-06 18:37:49 +01:00
|
|
|
vecChar.push_back(s.c_str());
|
|
|
|
|
2018-05-30 19:42:58 +02:00
|
|
|
std::string error;
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(m_args.ParseParameters(vecChar.size(), vecChar.data(), error));
|
2018-05-30 19:42:58 +02:00
|
|
|
}
|
|
|
|
|
2022-05-21 10:02:36 +02:00
|
|
|
void LocalTestingSetup :: SetupArgs(const std::vector<std::pair<std::string, unsigned int>>& args)
|
2018-05-30 19:42:58 +02:00
|
|
|
{
|
2022-05-21 10:02:36 +02:00
|
|
|
m_args.ClearArgs();
|
merge bitcoin#16097: Add Flags enum to ArgsManager class (#4569)
* merge bitcoin#16097: Check IsArgKnown() early
* merge bitcoin#16097: Refactor InterpretNegatedOption() function
* merge bitcoin#16097: Add Flags enum to ArgsManager
* scripted-diff: Use Flags enum in AddArg()
-BEGIN VERIFY SCRIPT-
sed -i 's/const bool debug_only,/unsigned int flags, &/' src/util/system.h src/util/system.cpp
sed -i -E 's/(true|false), OptionsCategory::/ArgsManager::ALLOW_ANY, &/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* scripted-diff: Use ArgsManager::DEBUG_ONLY flag
-BEGIN VERIFY SCRIPT-
sed -i 's/unsigned int flags, const bool debug_only,/unsigned int flags,/' src/util/system.h src/util/system.cpp
sed -i 's/ArgsManager::NONE, debug_only/flags, false/' src/util/system.cpp
sed -i 's/arg.second.m_debug_only/(arg.second.m_flags \& ArgsManager::DEBUG_ONLY)/' src/util/system.cpp
sed -i 's/ArgsManager::ALLOW_ANY, true, OptionsCategory::/ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
sed -i 's/ArgsManager::ALLOW_ANY, false, OptionsCategory::/ArgsManager::ALLOW_ANY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* merge bitcoin#16097: Remove unused m_debug_only member from Arg struct
* merge bitcoin#16097: Use ArgsManager::NETWORK_ONLY flag
* merge bitcoin#16097: Replace IsArgKnown() with FlagsOfKnownArg()
* merge bitcoin#16097: Revamp option negating policy
* merge bitcoin#16097: Make tests arg type specific
2021-11-13 01:25:46 +01:00
|
|
|
for (const auto& arg : args) {
|
2022-05-21 10:02:36 +02:00
|
|
|
m_args.AddArg(arg.first, "", arg.second, OptionsCategory::OPTIONS);
|
2018-05-30 19:42:58 +02:00
|
|
|
}
|
2012-02-06 18:37:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(boolarg)
|
|
|
|
{
|
merge bitcoin#16097: Add Flags enum to ArgsManager class (#4569)
* merge bitcoin#16097: Check IsArgKnown() early
* merge bitcoin#16097: Refactor InterpretNegatedOption() function
* merge bitcoin#16097: Add Flags enum to ArgsManager
* scripted-diff: Use Flags enum in AddArg()
-BEGIN VERIFY SCRIPT-
sed -i 's/const bool debug_only,/unsigned int flags, &/' src/util/system.h src/util/system.cpp
sed -i -E 's/(true|false), OptionsCategory::/ArgsManager::ALLOW_ANY, &/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* scripted-diff: Use ArgsManager::DEBUG_ONLY flag
-BEGIN VERIFY SCRIPT-
sed -i 's/unsigned int flags, const bool debug_only,/unsigned int flags,/' src/util/system.h src/util/system.cpp
sed -i 's/ArgsManager::NONE, debug_only/flags, false/' src/util/system.cpp
sed -i 's/arg.second.m_debug_only/(arg.second.m_flags \& ArgsManager::DEBUG_ONLY)/' src/util/system.cpp
sed -i 's/ArgsManager::ALLOW_ANY, true, OptionsCategory::/ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
sed -i 's/ArgsManager::ALLOW_ANY, false, OptionsCategory::/ArgsManager::ALLOW_ANY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* merge bitcoin#16097: Remove unused m_debug_only member from Arg struct
* merge bitcoin#16097: Use ArgsManager::NETWORK_ONLY flag
* merge bitcoin#16097: Replace IsArgKnown() with FlagsOfKnownArg()
* merge bitcoin#16097: Revamp option negating policy
* merge bitcoin#16097: Make tests arg type specific
2021-11-13 01:25:46 +01:00
|
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_BOOL);
|
|
|
|
SetupArgs({foo});
|
2012-02-06 18:37:49 +01:00
|
|
|
ResetArgs("-foo");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", true));
|
2012-02-06 18:37:49 +01:00
|
|
|
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-fo", false));
|
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-fo", true));
|
2012-02-06 18:37:49 +01:00
|
|
|
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-fooo", false));
|
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-fooo", true));
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo=0");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo=1");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", true));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
|
|
|
// New 0.6 feature: auto-map -nosomething to !-something:
|
|
|
|
ResetArgs("-nofoo");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
|
|
|
ResetArgs("-nofoo=1");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
2015-06-15 17:17:23 +02:00
|
|
|
ResetArgs("-foo -nofoo"); // -nofoo should win
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
2015-06-15 17:17:23 +02:00
|
|
|
ResetArgs("-foo=1 -nofoo=1"); // -nofoo should win
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
2015-06-15 17:17:23 +02:00
|
|
|
ResetArgs("-foo=0 -nofoo=0"); // -nofoo=0 should win
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", true));
|
2015-06-15 17:17:23 +02:00
|
|
|
|
2012-02-06 19:55:11 +01:00
|
|
|
// New 0.6 feature: treat -- same as -:
|
|
|
|
ResetArgs("--foo=1");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", true));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
|
|
|
ResetArgs("--nofoo=1");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
2012-02-06 18:37:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(stringarg)
|
|
|
|
{
|
merge bitcoin#16097: Add Flags enum to ArgsManager class (#4569)
* merge bitcoin#16097: Check IsArgKnown() early
* merge bitcoin#16097: Refactor InterpretNegatedOption() function
* merge bitcoin#16097: Add Flags enum to ArgsManager
* scripted-diff: Use Flags enum in AddArg()
-BEGIN VERIFY SCRIPT-
sed -i 's/const bool debug_only,/unsigned int flags, &/' src/util/system.h src/util/system.cpp
sed -i -E 's/(true|false), OptionsCategory::/ArgsManager::ALLOW_ANY, &/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* scripted-diff: Use ArgsManager::DEBUG_ONLY flag
-BEGIN VERIFY SCRIPT-
sed -i 's/unsigned int flags, const bool debug_only,/unsigned int flags,/' src/util/system.h src/util/system.cpp
sed -i 's/ArgsManager::NONE, debug_only/flags, false/' src/util/system.cpp
sed -i 's/arg.second.m_debug_only/(arg.second.m_flags \& ArgsManager::DEBUG_ONLY)/' src/util/system.cpp
sed -i 's/ArgsManager::ALLOW_ANY, true, OptionsCategory::/ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
sed -i 's/ArgsManager::ALLOW_ANY, false, OptionsCategory::/ArgsManager::ALLOW_ANY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* merge bitcoin#16097: Remove unused m_debug_only member from Arg struct
* merge bitcoin#16097: Use ArgsManager::NETWORK_ONLY flag
* merge bitcoin#16097: Replace IsArgKnown() with FlagsOfKnownArg()
* merge bitcoin#16097: Revamp option negating policy
* merge bitcoin#16097: Make tests arg type specific
2021-11-13 01:25:46 +01:00
|
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_STRING);
|
|
|
|
const auto bar = std::make_pair("-bar", ArgsManager::ALLOW_STRING);
|
|
|
|
SetupArgs({foo, bar});
|
2012-02-06 18:37:49 +01:00
|
|
|
ResetArgs("");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", ""), "");
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", "eleven"), "eleven");
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo -bar");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", ""), "");
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", "eleven"), "");
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo=");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", ""), "");
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", "eleven"), "");
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo=11");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", ""), "11");
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", "eleven"), "11");
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo=eleven");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", ""), "eleven");
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", "eleven"), "eleven");
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(intarg)
|
|
|
|
{
|
merge bitcoin#16097: Add Flags enum to ArgsManager class (#4569)
* merge bitcoin#16097: Check IsArgKnown() early
* merge bitcoin#16097: Refactor InterpretNegatedOption() function
* merge bitcoin#16097: Add Flags enum to ArgsManager
* scripted-diff: Use Flags enum in AddArg()
-BEGIN VERIFY SCRIPT-
sed -i 's/const bool debug_only,/unsigned int flags, &/' src/util/system.h src/util/system.cpp
sed -i -E 's/(true|false), OptionsCategory::/ArgsManager::ALLOW_ANY, &/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* scripted-diff: Use ArgsManager::DEBUG_ONLY flag
-BEGIN VERIFY SCRIPT-
sed -i 's/unsigned int flags, const bool debug_only,/unsigned int flags,/' src/util/system.h src/util/system.cpp
sed -i 's/ArgsManager::NONE, debug_only/flags, false/' src/util/system.cpp
sed -i 's/arg.second.m_debug_only/(arg.second.m_flags \& ArgsManager::DEBUG_ONLY)/' src/util/system.cpp
sed -i 's/ArgsManager::ALLOW_ANY, true, OptionsCategory::/ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
sed -i 's/ArgsManager::ALLOW_ANY, false, OptionsCategory::/ArgsManager::ALLOW_ANY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* merge bitcoin#16097: Remove unused m_debug_only member from Arg struct
* merge bitcoin#16097: Use ArgsManager::NETWORK_ONLY flag
* merge bitcoin#16097: Replace IsArgKnown() with FlagsOfKnownArg()
* merge bitcoin#16097: Revamp option negating policy
* merge bitcoin#16097: Make tests arg type specific
2021-11-13 01:25:46 +01:00
|
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_INT);
|
|
|
|
const auto bar = std::make_pair("-bar", ArgsManager::ALLOW_INT);
|
|
|
|
SetupArgs({foo, bar});
|
2012-02-06 18:37:49 +01:00
|
|
|
ResetArgs("");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", 11), 11);
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", 0), 0);
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo -bar");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", 11), 0);
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-bar", 11), 0);
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo=11 -bar=12");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", 0), 11);
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-bar", 11), 12);
|
2012-02-06 18:37:49 +01:00
|
|
|
|
|
|
|
ResetArgs("-foo=NaN -bar=NotANumber");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", 1), 0);
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-bar", 11), 0);
|
2012-02-06 18:37:49 +01:00
|
|
|
}
|
|
|
|
|
2012-02-06 19:55:11 +01:00
|
|
|
BOOST_AUTO_TEST_CASE(doubledash)
|
|
|
|
{
|
merge bitcoin#16097: Add Flags enum to ArgsManager class (#4569)
* merge bitcoin#16097: Check IsArgKnown() early
* merge bitcoin#16097: Refactor InterpretNegatedOption() function
* merge bitcoin#16097: Add Flags enum to ArgsManager
* scripted-diff: Use Flags enum in AddArg()
-BEGIN VERIFY SCRIPT-
sed -i 's/const bool debug_only,/unsigned int flags, &/' src/util/system.h src/util/system.cpp
sed -i -E 's/(true|false), OptionsCategory::/ArgsManager::ALLOW_ANY, &/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* scripted-diff: Use ArgsManager::DEBUG_ONLY flag
-BEGIN VERIFY SCRIPT-
sed -i 's/unsigned int flags, const bool debug_only,/unsigned int flags,/' src/util/system.h src/util/system.cpp
sed -i 's/ArgsManager::NONE, debug_only/flags, false/' src/util/system.cpp
sed -i 's/arg.second.m_debug_only/(arg.second.m_flags \& ArgsManager::DEBUG_ONLY)/' src/util/system.cpp
sed -i 's/ArgsManager::ALLOW_ANY, true, OptionsCategory::/ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
sed -i 's/ArgsManager::ALLOW_ANY, false, OptionsCategory::/ArgsManager::ALLOW_ANY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* merge bitcoin#16097: Remove unused m_debug_only member from Arg struct
* merge bitcoin#16097: Use ArgsManager::NETWORK_ONLY flag
* merge bitcoin#16097: Replace IsArgKnown() with FlagsOfKnownArg()
* merge bitcoin#16097: Revamp option negating policy
* merge bitcoin#16097: Make tests arg type specific
2021-11-13 01:25:46 +01:00
|
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_ANY);
|
|
|
|
const auto bar = std::make_pair("-bar", ArgsManager::ALLOW_ANY);
|
|
|
|
SetupArgs({foo, bar});
|
2012-02-06 19:55:11 +01:00
|
|
|
ResetArgs("--foo");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetBoolArg("-foo", false), true);
|
2012-02-06 19:55:11 +01:00
|
|
|
|
|
|
|
ResetArgs("--foo=verbose --bar=1");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-foo", ""), "verbose");
|
|
|
|
BOOST_CHECK_EQUAL(m_args.GetArg("-bar", 0), 1);
|
2012-02-06 19:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(boolargno)
|
|
|
|
{
|
merge bitcoin#16097: Add Flags enum to ArgsManager class (#4569)
* merge bitcoin#16097: Check IsArgKnown() early
* merge bitcoin#16097: Refactor InterpretNegatedOption() function
* merge bitcoin#16097: Add Flags enum to ArgsManager
* scripted-diff: Use Flags enum in AddArg()
-BEGIN VERIFY SCRIPT-
sed -i 's/const bool debug_only,/unsigned int flags, &/' src/util/system.h src/util/system.cpp
sed -i -E 's/(true|false), OptionsCategory::/ArgsManager::ALLOW_ANY, &/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* scripted-diff: Use ArgsManager::DEBUG_ONLY flag
-BEGIN VERIFY SCRIPT-
sed -i 's/unsigned int flags, const bool debug_only,/unsigned int flags,/' src/util/system.h src/util/system.cpp
sed -i 's/ArgsManager::NONE, debug_only/flags, false/' src/util/system.cpp
sed -i 's/arg.second.m_debug_only/(arg.second.m_flags \& ArgsManager::DEBUG_ONLY)/' src/util/system.cpp
sed -i 's/ArgsManager::ALLOW_ANY, true, OptionsCategory::/ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
sed -i 's/ArgsManager::ALLOW_ANY, false, OptionsCategory::/ArgsManager::ALLOW_ANY, OptionsCategory::/' $(git grep --files-with-matches 'AddArg(' src)
-END VERIFY SCRIPT-
* merge bitcoin#16097: Remove unused m_debug_only member from Arg struct
* merge bitcoin#16097: Use ArgsManager::NETWORK_ONLY flag
* merge bitcoin#16097: Replace IsArgKnown() with FlagsOfKnownArg()
* merge bitcoin#16097: Revamp option negating policy
* merge bitcoin#16097: Make tests arg type specific
2021-11-13 01:25:46 +01:00
|
|
|
const auto foo = std::make_pair("-foo", ArgsManager::ALLOW_BOOL);
|
|
|
|
const auto bar = std::make_pair("-bar", ArgsManager::ALLOW_BOOL);
|
|
|
|
SetupArgs({foo, bar});
|
2012-02-06 19:55:11 +01:00
|
|
|
ResetArgs("-nofoo");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
|
|
|
ResetArgs("-nofoo=1");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
|
|
|
ResetArgs("-nofoo=0");
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", true));
|
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", false));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
2015-06-15 17:17:23 +02:00
|
|
|
ResetArgs("-foo --nofoo"); // --nofoo should win
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", true));
|
|
|
|
BOOST_CHECK(!m_args.GetBoolArg("-foo", false));
|
2012-02-06 19:55:11 +01:00
|
|
|
|
|
|
|
ResetArgs("-nofoo -foo"); // foo always wins:
|
2022-05-21 10:02:36 +02:00
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", true));
|
|
|
|
BOOST_CHECK(m_args.GetBoolArg("-foo", false));
|
2012-02-06 19:55:11 +01:00
|
|
|
}
|
|
|
|
|
2020-01-30 23:10:50 +01:00
|
|
|
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_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);
|
|
|
|
}
|
|
|
|
|
2012-02-06 18:37:49 +01:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|