/
githubmirror
/
aria2
Обзор
Документация
Войти
/
githubmirror
/
aria2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/RequestGroupTest.cc
150 строк
5 KB
Tatsuhiro Tsujikawa
clang-format
20 июл 2016, 19:00
20 июл 2016, 19:00
8e07568
Код
Авторство
О чём код?
#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