mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
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:
parent
e26bbbb9ee
commit
048a2cf597
252 changed files with 8646 additions and 5343 deletions
42
test/BtPostDownloadHandlerTest.cc
Normal file
42
test/BtPostDownloadHandlerTest.cc
Normal 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());
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue