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:
Tatsuhiro Tsujikawa 2008-02-08 15:53:45 +00:00
parent d82e183d34
commit 1b7c198289
801 changed files with 12024 additions and 8627 deletions

View file

@ -6,8 +6,11 @@
#include "Option.h"
#include "Exception.h"
#include "SegmentMan.h"
#include "FileEntry.h"
#include <cppunit/extensions/HelperMacros.h>
namespace aria2 {
class BtDependencyTest:public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(BtDependencyTest);
@ -17,20 +20,21 @@ class BtDependencyTest:public CppUnit::TestFixture {
CPPUNIT_TEST(testResolve_dependeeInProgress);
CPPUNIT_TEST_SUITE_END();
RequestGroupHandle createDependant(const Option* option)
SharedHandle<RequestGroup> createDependant(const Option* option)
{
RequestGroupHandle dependant = new RequestGroup(option, Strings());
SingleFileDownloadContextHandle dctx =
SharedHandle<RequestGroup> dependant = new RequestGroup(option, std::deque<std::string>());
SharedHandle<SingleFileDownloadContext> dctx =
new SingleFileDownloadContext(0, 0, "");
dctx->setDir("/tmp");
dependant->setDownloadContext(dctx);
return dependant;
}
RequestGroupHandle createDependee(const Option* option, const string& torrentFile, int64_t length)
SharedHandle<RequestGroup>
createDependee(const Option* option, const std::string& torrentFile, int64_t length)
{
RequestGroupHandle dependee = new RequestGroup(option, Strings());
SingleFileDownloadContextHandle dctx =
SharedHandle<RequestGroup> dependee = new RequestGroup(option, std::deque<std::string>());
SharedHandle<SingleFileDownloadContext> dctx =
new SingleFileDownloadContext(1024*1024, length, torrentFile);
dctx->setDir(".");
dependee->setDownloadContext(dctx);
@ -55,36 +59,36 @@ CPPUNIT_TEST_SUITE_REGISTRATION( BtDependencyTest );
void BtDependencyTest::testResolve()
{
string filename = "test.torrent";
std::string filename = "test.torrent";
Option option;
RequestGroupHandle dependant = createDependant(&option);
RequestGroupHandle dependee = createDependee(&option, filename, File(filename).size());
SharedHandle<RequestGroup> dependant = createDependant(&option);
SharedHandle<RequestGroup> dependee = createDependee(&option, filename, File(filename).size());
dependee->getPieceStorage()->markAllPiecesDone();
BtDependency dep(dependant, dependee, &option);
CPPUNIT_ASSERT(dep.resolve());
BtContextHandle btContext = dependant->getDownloadContext();
SharedHandle<BtContext> btContext = dependant->getDownloadContext();
CPPUNIT_ASSERT(!btContext.isNull());
CPPUNIT_ASSERT_EQUAL(string("/tmp/aria2-test"), btContext->getActualBasePath());
CPPUNIT_ASSERT_EQUAL(std::string("/tmp/aria2-test"), btContext->getActualBasePath());
}
void BtDependencyTest::testResolve_loadError()
{
try {
Option option;
RequestGroupHandle dependant = createDependant(&option);
RequestGroupHandle dependee = createDependee(&option, "notExist", 40);
SharedHandle<RequestGroup> dependant = createDependant(&option);
SharedHandle<RequestGroup> dependee = createDependee(&option, "notExist", 40);
dependee->getPieceStorage()->markAllPiecesDone();
BtDependency dep(dependant, dependee, &option);
CPPUNIT_ASSERT(dep.resolve());
SingleFileDownloadContextHandle dctx = dependant->getDownloadContext();
SharedHandle<SingleFileDownloadContext> dctx = dependant->getDownloadContext();
CPPUNIT_ASSERT(!dctx.isNull());
CPPUNIT_ASSERT_EQUAL(string("/tmp/index.html"), dctx->getActualBasePath());
CPPUNIT_ASSERT_EQUAL(std::string("/tmp/index.html"), dctx->getActualBasePath());
} catch(Exception* e) {
cerr << e->getMsg() << endl;
std::cerr << e->getMsg() << std::endl;
delete e;
CPPUNIT_FAIL("an exception was thrown.");
}
@ -93,25 +97,27 @@ void BtDependencyTest::testResolve_loadError()
void BtDependencyTest::testResolve_dependeeFailure()
{
Option option;
RequestGroupHandle dependant = createDependant(&option);
RequestGroupHandle dependee = createDependee(&option, "notExist", 40);
SharedHandle<RequestGroup> dependant = createDependant(&option);
SharedHandle<RequestGroup> dependee = createDependee(&option, "notExist", 40);
BtDependency dep(dependant, dependee, &option);
CPPUNIT_ASSERT(dep.resolve());
SingleFileDownloadContextHandle dctx = dependant->getDownloadContext();
SharedHandle<SingleFileDownloadContext> dctx = dependant->getDownloadContext();
CPPUNIT_ASSERT(!dctx.isNull());
CPPUNIT_ASSERT_EQUAL(string("/tmp/index.html"), dctx->getActualBasePath());
CPPUNIT_ASSERT_EQUAL(std::string("/tmp/index.html"), dctx->getActualBasePath());
}
void BtDependencyTest::testResolve_dependeeInProgress()
{
string filename = "test.torrent";
std::string filename = "test.torrent";
Option option;
RequestGroupHandle dependant = createDependant(&option);
RequestGroupHandle dependee = createDependee(&option, filename, File(filename).size());
SharedHandle<RequestGroup> dependant = createDependant(&option);
SharedHandle<RequestGroup> dependee = createDependee(&option, filename, File(filename).size());
dependee->increaseNumCommand();
BtDependency dep(dependant, dependee, &option);
CPPUNIT_ASSERT(!dep.resolve());
}
} // namespace aria2