| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 | #include "Metalink2RequestGroup.h"#include "SingleFileDownloadContext.h"#include "prefs.h"#include "Option.h"#include "RequestGroup.h"#include <cppunit/extensions/HelperMacros.h>class Metalink2RequestGroupTest:public CppUnit::TestFixture {  CPPUNIT_TEST_SUITE(Metalink2RequestGroupTest);  CPPUNIT_TEST(testGenerate);  CPPUNIT_TEST_SUITE_END();private:  SharedHandle<Option> _option;public:  void setUp()  {    _option = new Option();    _option->put(PREF_SPLIT, "1");  }  void testGenerate();};CPPUNIT_TEST_SUITE_REGISTRATION( Metalink2RequestGroupTest );void Metalink2RequestGroupTest::testGenerate(){  RequestGroups groups = Metalink2RequestGroup(_option.get()).generate("test.xml");  // first file  {    RequestGroupHandle rg = groups[0];    Strings uris = rg->getUris();    sort(uris.begin(), uris.end());    CPPUNIT_ASSERT_EQUAL((size_t)2, uris.size());    CPPUNIT_ASSERT_EQUAL(string("ftp://ftphost/aria2-0.5.2.tar.bz2"), uris[0]);    CPPUNIT_ASSERT_EQUAL(string("http://httphost/aria2-0.5.2.tar.bz2"), uris[1]);    SingleFileDownloadContextHandle dctx = rg->getDownloadContext();    CPPUNIT_ASSERT(!dctx.isNull());    CPPUNIT_ASSERT_EQUAL((int64_t)0, dctx->getTotalLength());#ifdef ENABLE_MESSAGE_DIGEST    CPPUNIT_ASSERT_EQUAL(string("sha1"), dctx->getChecksumHashAlgo());    CPPUNIT_ASSERT_EQUAL(string("a96cf3f0266b91d87d5124cf94326422800b627d"),			 dctx->getChecksum());#endif // ENABLE_MESSAGE_DIGEST  }  // second file  {    RequestGroupHandle rg = groups[1];    Strings uris = rg->getUris();    CPPUNIT_ASSERT_EQUAL((size_t)2, uris.size());    SingleFileDownloadContextHandle dctx = rg->getDownloadContext();    CPPUNIT_ASSERT(!dctx.isNull());#ifdef ENABLE_MESSAGE_DIGEST    CPPUNIT_ASSERT_EQUAL(string("sha1"), dctx->getPieceHashAlgo());    CPPUNIT_ASSERT_EQUAL((size_t)2, dctx->getPieceHashes().size());    CPPUNIT_ASSERT_EQUAL((int32_t)262144, dctx->getPieceLength());    CPPUNIT_ASSERT_EQUAL(string(""), dctx->getChecksumHashAlgo());    CPPUNIT_ASSERT_EQUAL(string(""), dctx->getChecksum());#endif // ENABLE_MESSAGE_DIGEST  }#ifdef ENABLE_BITTORRENT  // fifth file <- downloading .torrent file  {    RequestGroupHandle rg = groups[4];    Strings uris = rg->getUris();    CPPUNIT_ASSERT_EQUAL((size_t)1, uris.size());    CPPUNIT_ASSERT_EQUAL(string("http://host/torrent-http.integrated.torrent"),			 uris[0]);    SingleFileDownloadContextHandle dctx = rg->getDownloadContext();    CPPUNIT_ASSERT(!dctx.isNull());  }#endif // ENABLE_BITTORRENT  // sixth file <- depends on thrid file  {#ifdef ENABLE_BITTORRENT    RequestGroupHandle rg = groups[5];#else    RequestGroupHandle rg = groups[4];#endif // ENABLE_BITTORRENT    Strings uris = rg->getUris();    CPPUNIT_ASSERT_EQUAL((size_t)1, uris.size());    CPPUNIT_ASSERT_EQUAL(string("http://host/torrent-http.integrated"), uris[0]);    SingleFileDownloadContextHandle dctx = rg->getDownloadContext();    CPPUNIT_ASSERT(!dctx.isNull());  }}
 |