mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
2008-02-08 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Removed "using namespace std;" from all sources. Appended std:: prefix to c++ standard classes. Included string.h where mem* function are used.
This commit is contained in:
parent
d82e183d34
commit
1b7c198289
801 changed files with 12024 additions and 8627 deletions
|
@ -6,6 +6,8 @@
|
|||
#include "Option.h"
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
class AuthConfigFactoryTest:public CppUnit::TestFixture {
|
||||
|
||||
CPPUNIT_TEST_SUITE(AuthConfigFactoryTest);
|
||||
|
@ -25,7 +27,7 @@ CPPUNIT_TEST_SUITE_REGISTRATION( AuthConfigFactoryTest );
|
|||
|
||||
void AuthConfigFactoryTest::testCreateAuthConfig_http()
|
||||
{
|
||||
RequestHandle req = new Request();
|
||||
SharedHandle<Request> req = new Request();
|
||||
req->setUrl("http://localhost/download/aria2-1.0.0.tar.bz2");
|
||||
|
||||
Option option;
|
||||
|
@ -34,37 +36,37 @@ void AuthConfigFactoryTest::testCreateAuthConfig_http()
|
|||
AuthConfigFactory factory(&option);
|
||||
|
||||
// without auth info
|
||||
CPPUNIT_ASSERT_EQUAL(string(":"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string(":"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
|
||||
// with Netrc: disabled by default
|
||||
NetrcHandle netrc = new Netrc();
|
||||
SharedHandle<Netrc> netrc = new Netrc();
|
||||
netrc->addAuthenticator(new DefaultAuthenticator("default", "defaultpassword", "defaultaccount"));
|
||||
factory.setNetrc(netrc);
|
||||
CPPUNIT_ASSERT_EQUAL(string(":"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string(":"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
|
||||
// with Netrc + user defined
|
||||
option.put(PREF_HTTP_USER, "userDefinedUser");
|
||||
option.put(PREF_HTTP_PASSWD, "userDefinedPassword");
|
||||
CPPUNIT_ASSERT_EQUAL(string("userDefinedUser:userDefinedPassword"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("userDefinedUser:userDefinedPassword"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
|
||||
// username and password in URI: disabled by default.
|
||||
req->setUrl("http://aria2user:aria2password@localhost/download/aria2-1.0.0.tar.bz2");
|
||||
CPPUNIT_ASSERT_EQUAL(string("userDefinedUser:userDefinedPassword"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("userDefinedUser:userDefinedPassword"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
|
||||
// CPPUNIT_ASSERT_EQUAL(string("aria2user:aria2password"),
|
||||
// CPPUNIT_ASSERT_EQUAL(std::string("aria2user:aria2password"),
|
||||
// factory.createAuthConfig(req)->getAuthText());
|
||||
}
|
||||
|
||||
void AuthConfigFactoryTest::testCreateAuthConfigForHttpProxy()
|
||||
{
|
||||
RequestHandle req = new Request();
|
||||
SharedHandle<Request> req = new Request();
|
||||
req->setUrl("http://localhost/download/aria2-1.0.0.tar.bz2");
|
||||
// with Netrc
|
||||
NetrcHandle netrc = new Netrc();
|
||||
SharedHandle<Netrc> netrc = new Netrc();
|
||||
netrc->addAuthenticator(new DefaultAuthenticator("default", "defaultpassword", "defaultaccount"));
|
||||
|
||||
Option option;
|
||||
|
@ -74,19 +76,19 @@ void AuthConfigFactoryTest::testCreateAuthConfigForHttpProxy()
|
|||
factory.setNetrc(netrc);
|
||||
|
||||
// netrc is not used in http proxy auth
|
||||
CPPUNIT_ASSERT_EQUAL(string(":"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string(":"),
|
||||
factory.createAuthConfigForHttpProxy(req)->getAuthText());
|
||||
|
||||
option.put(PREF_HTTP_PROXY_USER, "userDefinedUser");
|
||||
option.put(PREF_HTTP_PROXY_PASSWD, "userDefinedPassword");
|
||||
CPPUNIT_ASSERT_EQUAL(string("userDefinedUser:userDefinedPassword"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("userDefinedUser:userDefinedPassword"),
|
||||
factory.createAuthConfigForHttpProxy(req)->getAuthText());
|
||||
|
||||
}
|
||||
|
||||
void AuthConfigFactoryTest::testCreateAuthConfig_ftp()
|
||||
{
|
||||
RequestHandle req = new Request();
|
||||
SharedHandle<Request> req = new Request();
|
||||
req->setUrl("ftp://localhost/download/aria2-1.0.0.tar.bz2");
|
||||
|
||||
Option option;
|
||||
|
@ -95,30 +97,32 @@ void AuthConfigFactoryTest::testCreateAuthConfig_ftp()
|
|||
AuthConfigFactory factory(&option);
|
||||
|
||||
// without auth info
|
||||
CPPUNIT_ASSERT_EQUAL(string("anonymous:ARIA2USER@"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("anonymous:ARIA2USER@"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
|
||||
// with Netrc
|
||||
NetrcHandle netrc = new Netrc();
|
||||
SharedHandle<Netrc> netrc = new Netrc();
|
||||
netrc->addAuthenticator(new DefaultAuthenticator("default", "defaultpassword", "defaultaccount"));
|
||||
factory.setNetrc(netrc);
|
||||
CPPUNIT_ASSERT_EQUAL(string("default:defaultpassword"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("default:defaultpassword"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
|
||||
// disable Netrc
|
||||
option.put(PREF_NO_NETRC, V_TRUE);
|
||||
CPPUNIT_ASSERT_EQUAL(string("anonymous:ARIA2USER@"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("anonymous:ARIA2USER@"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
|
||||
// with Netrc + user defined
|
||||
option.put(PREF_NO_NETRC, V_FALSE);
|
||||
option.put(PREF_FTP_USER, "userDefinedUser");
|
||||
option.put(PREF_FTP_PASSWD, "userDefinedPassword");
|
||||
CPPUNIT_ASSERT_EQUAL(string("userDefinedUser:userDefinedPassword"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("userDefinedUser:userDefinedPassword"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
|
||||
// username and password in URI
|
||||
req->setUrl("ftp://aria2user:aria2password@localhost/download/aria2-1.0.0.tar.bz2");
|
||||
CPPUNIT_ASSERT_EQUAL(string("aria2user:aria2password"),
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("aria2user:aria2password"),
|
||||
factory.createAuthConfig(req)->getAuthText());
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue