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:
Tatsuhiro Tsujikawa 2012-09-23 14:59:05 +09:00
parent 461a542c5e
commit 295a62f538
15 changed files with 296 additions and 160 deletions

View file

@ -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()