2008-12-04 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Added Option::blank().
	Use !Option::blank(name) instead of Option::defined(name) for
	the options that take filename.
	* src/MultiUrlRequestInfo.cc
	* src/Option.cc
	* src/Option.h
	* src/main.cc
	* src/option_processing.cc
	* test/OptionTest.cc
This commit is contained in:
Tatsuhiro Tsujikawa 2008-12-04 13:05:05 +00:00
parent fe66fb6eae
commit 1e6a579258
7 changed files with 59 additions and 11 deletions

View file

@ -10,6 +10,8 @@ class OptionTest:public CppUnit::TestFixture {
CPPUNIT_TEST(testPutAndGet);
CPPUNIT_TEST(testPutAndGetAsInt);
CPPUNIT_TEST(testPutAndGetAsDouble);
CPPUNIT_TEST(testDefined);
CPPUNIT_TEST(testBlank);
CPPUNIT_TEST_SUITE_END();
private:
@ -20,6 +22,8 @@ public:
void testPutAndGet();
void testPutAndGetAsInt();
void testPutAndGetAsDouble();
void testDefined();
void testBlank();
};
@ -48,4 +52,24 @@ void OptionTest::testPutAndGetAsDouble() {
CPPUNIT_ASSERT_EQUAL(10.0, op.getAsDouble("key"));
}
void OptionTest::testDefined()
{
Option op;
op.put("k", "v");
op.put("k1", "");
CPPUNIT_ASSERT(op.defined("k"));
CPPUNIT_ASSERT(op.defined("k1"));
CPPUNIT_ASSERT(!op.defined("undefined"));
}
void OptionTest::testBlank()
{
Option op;
op.put("k", "v");
op.put("k1", "");
CPPUNIT_ASSERT(!op.blank("k"));
CPPUNIT_ASSERT(op.blank("k1"));
CPPUNIT_ASSERT(op.blank("undefined"));
}
} // namespace aria2