2007-10-12 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Implemented BitTorrent/http/ftp integrated download.
	I've rewritten lots of files and now some headers have forward
	class declarations to reduce compile time.
	The implementation is extremely alpha stage, I recommend to use this
	for testing purpose only.
This commit is contained in:
Tatsuhiro Tsujikawa 2007-10-11 16:58:24 +00:00
parent e26bbbb9ee
commit 048a2cf597
252 changed files with 8646 additions and 5343 deletions

View file

@ -0,0 +1,42 @@
#include "BtPostDownloadHandler.h"
#include "BtContext.h"
#include "RequestGroup.h"
#include "Option.h"
#include <cppunit/extensions/HelperMacros.h>
class BtPostDownloadHandlerTest:public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(BtPostDownloadHandlerTest);
CPPUNIT_TEST(testCanHandle);
CPPUNIT_TEST(testGetNextRequestGroups);
CPPUNIT_TEST_SUITE_END();
private:
public:
void setUp() {}
void testCanHandle();
void testGetNextRequestGroups();
};
CPPUNIT_TEST_SUITE_REGISTRATION( BtPostDownloadHandlerTest );
void BtPostDownloadHandlerTest::testCanHandle()
{
Option op;
BtPostDownloadHandler handler(&op);
CPPUNIT_ASSERT(!handler.canHandle(".torrent!!"));
CPPUNIT_ASSERT(handler.canHandle(".torrent"));
}
void BtPostDownloadHandlerTest::testGetNextRequestGroups()
{
Option op;
BtPostDownloadHandler handler(&op);
RequestGroups groups = handler.getNextRequestGroups("test.torrent");
CPPUNIT_ASSERT_EQUAL((size_t)1, groups.size());
BtContextHandle btctx = groups.front()->getDownloadContext();
CPPUNIT_ASSERT(!btctx.isNull());
CPPUNIT_ASSERT_EQUAL(string("aria2-test"), btctx->getName());
}