mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
2010-01-15 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Now --all-proxy, --http-proxy, --https-proxy and --ftp-proxy option accepts empty string "". When "" is given, it erases previously defined proxy. * doc/aria2c.1.txt * src/OptionHandlerImpl.h * src/usage_text.h * test/OptionHandlerTest.cc
This commit is contained in:
parent
c16b346bb9
commit
c022939c8f
7 changed files with 73 additions and 47 deletions
|
@ -313,6 +313,10 @@ void OptionHandlerTest::testHttpProxyOptionHandler()
|
|||
CPPUNIT_ASSERT_EQUAL(std::string("http://proxy:8080"),
|
||||
option.get(PREF_HTTP_PROXY));
|
||||
|
||||
handler.parse(option, "");
|
||||
CPPUNIT_ASSERT(option.defined(PREF_HTTP_PROXY));
|
||||
CPPUNIT_ASSERT(option.blank(PREF_HTTP_PROXY));
|
||||
|
||||
try {
|
||||
handler.parse(option, "http://bar:65536");
|
||||
CPPUNIT_FAIL("exception must be thrown.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue