| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 | #include "RequestGroup.h"#include <cppunit/extensions/HelperMacros.h>#include "Option.h"#include "DownloadContext.h"#include "FileEntry.h"#include "PieceStorage.h"#include "DownloadResult.h"namespace aria2 {class RequestGroupTest : public CppUnit::TestFixture {  CPPUNIT_TEST_SUITE(RequestGroupTest);  CPPUNIT_TEST(testGetFirstFilePath);  CPPUNIT_TEST(testTryAutoFileRenaming);  CPPUNIT_TEST(testCreateDownloadResult);  CPPUNIT_TEST_SUITE_END();private:  std::shared_ptr<Option> option_;public:  void setUp() { option_.reset(new Option()); }  void testGetFirstFilePath();  void testTryAutoFileRenaming();  void testCreateDownloadResult();};CPPUNIT_TEST_SUITE_REGISTRATION(RequestGroupTest);void RequestGroupTest::testGetFirstFilePath(){  std::shared_ptr<DownloadContext> ctx(      new DownloadContext(1_k, 1_k, "/tmp/myfile"));  RequestGroup group(GroupId::create(), option_);  group.setDownloadContext(ctx);  CPPUNIT_ASSERT_EQUAL(std::string("/tmp/myfile"), group.getFirstFilePath());  group.markInMemoryDownload();  CPPUNIT_ASSERT_EQUAL(std::string("[MEMORY]myfile"), group.getFirstFilePath());}void RequestGroupTest::testTryAutoFileRenaming(){  std::shared_ptr<DownloadContext> ctx(      new DownloadContext(1_k, 1_k, "/tmp/myfile"));  RequestGroup group(GroupId::create(), option_);  group.setDownloadContext(ctx);  option_->put(PREF_AUTO_FILE_RENAMING, "false");  try {    group.tryAutoFileRenaming();  }  catch (const Exception& ex) {    CPPUNIT_ASSERT_EQUAL(error_code::FILE_ALREADY_EXISTS, ex.getErrorCode());  }  option_->put(PREF_AUTO_FILE_RENAMING, "true");  group.tryAutoFileRenaming();  CPPUNIT_ASSERT_EQUAL(std::string("/tmp/myfile.1"), group.getFirstFilePath());  ctx->getFirstFileEntry()->setPath("/tmp/myfile.txt");  group.tryAutoFileRenaming();  CPPUNIT_ASSERT_EQUAL(std::string("/tmp/myfile.1.txt"),                       group.getFirstFilePath());  ctx->getFirstFileEntry()->setPath("/tmp.txt/myfile");  group.tryAutoFileRenaming();  CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/myfile.1"),                       group.getFirstFilePath());  ctx->getFirstFileEntry()->setPath("/tmp.txt/myfile.txt");  group.tryAutoFileRenaming();  CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/myfile.1.txt"),                       group.getFirstFilePath());  ctx->getFirstFileEntry()->setPath(".bashrc");  group.tryAutoFileRenaming();  CPPUNIT_ASSERT_EQUAL(std::string(".bashrc.1"), group.getFirstFilePath());  ctx->getFirstFileEntry()->setPath(".bashrc.txt");  group.tryAutoFileRenaming();  CPPUNIT_ASSERT_EQUAL(std::string(".bashrc.1.txt"), group.getFirstFilePath());  ctx->getFirstFileEntry()->setPath("/tmp.txt/.bashrc");  group.tryAutoFileRenaming();  CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/.bashrc.1"),                       group.getFirstFilePath());  ctx->getFirstFileEntry()->setPath("/tmp.txt/.bashrc.txt");  group.tryAutoFileRenaming();  CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/.bashrc.1.txt"),                       group.getFirstFilePath());}void RequestGroupTest::testCreateDownloadResult(){  std::shared_ptr<DownloadContext> ctx(      new DownloadContext(1_k, 1_m, "/tmp/myfile"));  RequestGroup group(GroupId::create(), option_);  group.setDownloadContext(ctx);  group.initPieceStorage();  {    std::shared_ptr<DownloadResult> result = group.createDownloadResult();    CPPUNIT_ASSERT_EQUAL(std::string("/tmp/myfile"),                         result->fileEntries[0]->getPath());    CPPUNIT_ASSERT_EQUAL((int64_t)1_m,                         result->fileEntries.back()->getLastOffset());    CPPUNIT_ASSERT_EQUAL((uint64_t)0, result->sessionDownloadLength);    CPPUNIT_ASSERT_EQUAL((int64_t)0, result->sessionTime.count());    // result is UNKNOWN_ERROR if download has not completed and no specific    // error has been reported    CPPUNIT_ASSERT_EQUAL(error_code::UNKNOWN_ERROR, result->result);    // if haltReason is set to RequestGroup::USER_REQUEST, download    // result will become REMOVED.    group.setHaltRequested(true, RequestGroup::USER_REQUEST);    result = group.createDownloadResult();    CPPUNIT_ASSERT_EQUAL(error_code::REMOVED, result->result);    // if haltReason is set to RequestGroup::SHUTDOWN_SIGNAL, download    // result will become IN_PROGRESS.    group.setHaltRequested(true, RequestGroup::SHUTDOWN_SIGNAL);    result = group.createDownloadResult();    CPPUNIT_ASSERT_EQUAL(error_code::IN_PROGRESS, result->result);  }  {    group.setLastErrorCode(error_code::RESOURCE_NOT_FOUND);    std::shared_ptr<DownloadResult> result = group.createDownloadResult();    CPPUNIT_ASSERT_EQUAL(error_code::RESOURCE_NOT_FOUND, result->result);  }  {    group.getPieceStorage()->markAllPiecesDone();    std::shared_ptr<DownloadResult> result = group.createDownloadResult();    CPPUNIT_ASSERT_EQUAL(error_code::FINISHED, result->result);  }}} // namespace aria2
 |