| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | 
							- #include "MetalinkPostDownloadHandler.h"
 
- #include <cppunit/extensions/HelperMacros.h>
 
- #include "RequestGroup.h"
 
- #include "Option.h"
 
- #include "DownloadContext.h"
 
- #include "FileEntry.h"
 
- namespace aria2 {
 
- class MetalinkPostDownloadHandlerTest:public CppUnit::TestFixture {
 
-   CPPUNIT_TEST_SUITE(MetalinkPostDownloadHandlerTest);
 
-   CPPUNIT_TEST(testCanHandle_extension);
 
-   CPPUNIT_TEST(testCanHandle_contentType);
 
-   CPPUNIT_TEST(testGetNextRequestGroups);
 
-   CPPUNIT_TEST_SUITE_END();
 
- private:
 
-   SharedHandle<Option> _option;
 
- public:
 
-   void setUp()
 
-   {
 
-     _option.reset(new Option());
 
-   }
 
-   void testCanHandle_extension();
 
-   void testCanHandle_contentType();
 
-   void testGetNextRequestGroups();
 
- };
 
- CPPUNIT_TEST_SUITE_REGISTRATION( MetalinkPostDownloadHandlerTest );
 
- void MetalinkPostDownloadHandlerTest::testCanHandle_extension()
 
- {
 
-   SharedHandle<DownloadContext> dctx
 
-     (new DownloadContext(0, 0, "test.metalink"));
 
-   RequestGroup rg(_option);
 
-   rg.setDownloadContext(dctx);
 
-   MetalinkPostDownloadHandler handler;
 
-   CPPUNIT_ASSERT(handler.canHandle(&rg));
 
-   dctx->getFirstFileEntry()->setPath("test.metalink2");
 
-   CPPUNIT_ASSERT(!handler.canHandle(&rg));
 
- }
 
- void MetalinkPostDownloadHandlerTest::testCanHandle_contentType()
 
- {
 
-   SharedHandle<DownloadContext> dctx(new DownloadContext(0, 0, "test"));
 
-   dctx->getFirstFileEntry()->setContentType("application/metalink+xml");
 
-   RequestGroup rg(_option);
 
-   rg.setDownloadContext(dctx);
 
-   MetalinkPostDownloadHandler handler;
 
-   CPPUNIT_ASSERT(handler.canHandle(&rg));
 
-   dctx->getFirstFileEntry()->setContentType("application/octet-stream");
 
-   CPPUNIT_ASSERT(!handler.canHandle(&rg));
 
- }
 
- void MetalinkPostDownloadHandlerTest::testGetNextRequestGroups()
 
- {
 
-   SharedHandle<DownloadContext> dctx
 
-     (new DownloadContext(1024, 0, "test.xml"));
 
-   RequestGroup rg(_option);
 
-   rg.setDownloadContext(dctx);
 
-   rg.initPieceStorage();
 
-   MetalinkPostDownloadHandler handler;
 
-   std::vector<SharedHandle<RequestGroup> > groups;
 
-   handler.getNextRequestGroups(groups, &rg);
 
- #ifdef ENABLE_BITTORRENT
 
-   CPPUNIT_ASSERT_EQUAL((size_t)6/* 5 + 1 torrent file download */, groups.size());
 
- #else
 
-   CPPUNIT_ASSERT_EQUAL((size_t)5, groups.size());
 
- #endif // ENABLE_BITTORRENT
 
- }
 
- } // namespace aria2
 
 
  |