mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Rewritten help tags and various internal flag handling in OptionHandler
Now help tags are defined as enum values to avoid vector of strings. The internal flags are represented by bitmask to shrink size.
This commit is contained in:
parent
461a542c5e
commit
295a62f538
15 changed files with 296 additions and 160 deletions
|
@ -5,6 +5,7 @@
|
|||
#include "Option.h"
|
||||
#include "prefs.h"
|
||||
#include "Exception.h"
|
||||
#include "help_tags.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
|
@ -28,7 +29,7 @@ class OptionHandlerTest:public CppUnit::TestFixture {
|
|||
CPPUNIT_TEST(testHttpProxyOptionHandler);
|
||||
CPPUNIT_TEST(testDeprecatedOptionHandler);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
|
||||
public:
|
||||
void testBooleanOptionHandler();
|
||||
void testNumberOptionHandler();
|
||||
|
@ -207,13 +208,13 @@ void OptionHandlerTest::testDefaultOptionHandler()
|
|||
CPPUNIT_ASSERT_EQUAL(std::string(""), option.get(PREF_TIMEOUT));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string(""), handler.createPossibleValuesString());
|
||||
|
||||
handler.addTag("apple");
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("apple"), handler.toTagString());
|
||||
handler.addTag("orange");
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("apple, orange"), handler.toTagString());
|
||||
CPPUNIT_ASSERT(handler.hasTag("apple"));
|
||||
CPPUNIT_ASSERT(handler.hasTag("orange"));
|
||||
CPPUNIT_ASSERT(!handler.hasTag("pineapple"));
|
||||
handler.addTag(TAG_ADVANCED);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("#advanced"), handler.toTagString());
|
||||
handler.addTag(TAG_BASIC);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("#basic, #advanced"), handler.toTagString());
|
||||
CPPUNIT_ASSERT(handler.hasTag(TAG_ADVANCED));
|
||||
CPPUNIT_ASSERT(handler.hasTag(TAG_BASIC));
|
||||
CPPUNIT_ASSERT(!handler.hasTag(TAG_HTTP));
|
||||
}
|
||||
|
||||
void OptionHandlerTest::testFloatNumberOptionHandler()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue