2007-10-11 16:58:24 +00:00
|
|
|
#include "MetalinkPostDownloadHandler.h"
|
|
|
|
#include "RequestGroup.h"
|
|
|
|
#include "Option.h"
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
|
|
|
|
class MetalinkPostDownloadHandlerTest:public CppUnit::TestFixture {
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(MetalinkPostDownloadHandlerTest);
|
|
|
|
CPPUNIT_TEST(testCanHandle);
|
|
|
|
CPPUNIT_TEST(testGetNextRequestGroups);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
private:
|
|
|
|
|
|
|
|
public:
|
|
|
|
void setUp() {}
|
|
|
|
|
|
|
|
void testCanHandle();
|
|
|
|
void testGetNextRequestGroups();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( MetalinkPostDownloadHandlerTest );
|
|
|
|
|
|
|
|
void MetalinkPostDownloadHandlerTest::testCanHandle()
|
|
|
|
{
|
|
|
|
Option op;
|
|
|
|
MetalinkPostDownloadHandler handler(&op);
|
|
|
|
CPPUNIT_ASSERT(!handler.canHandle(".metalink!!"));
|
|
|
|
CPPUNIT_ASSERT(handler.canHandle(".metalink"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void MetalinkPostDownloadHandlerTest::testGetNextRequestGroups()
|
|
|
|
{
|
|
|
|
Option op;
|
|
|
|
MetalinkPostDownloadHandler handler(&op);
|
|
|
|
RequestGroups groups = handler.getNextRequestGroups("test.xml");
|
2007-11-14 10:10:38 +00:00
|
|
|
#ifdef ENABLE_BITTORRENT
|
2007-10-11 16:58:24 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((size_t)6/* 5 + 1 torrent file download */, groups.size());
|
2007-11-14 10:10:38 +00:00
|
|
|
#else
|
|
|
|
CPPUNIT_ASSERT_EQUAL((size_t)5, groups.size());
|
|
|
|
#endif // ENABLE_BITTORRENT
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|