From 92938ceeebea9dad31b47e7ab5ecbf9c992240b5 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Fri, 25 May 2012 16:44:39 +0300 Subject: [PATCH] Added download/cancel/resume unit test --- platform/platform_tests/downloader_test.cpp | 74 ++++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/platform/platform_tests/downloader_test.cpp b/platform/platform_tests/downloader_test.cpp index e422bfe56d..9f05836c90 100644 --- a/platform/platform_tests/downloader_test.cpp +++ b/platform/platform_tests/downloader_test.cpp @@ -34,14 +34,21 @@ class DownloadObserver { bool m_progressWasCalled; HttpRequest::StatusT * m_status; + // Interrupt download after this number of chunks + int m_chunksToFail; public: - DownloadObserver() : m_status(0) + DownloadObserver() : m_status(0), m_chunksToFail(-1) { Reset(); my::g_LogLevel = LDEBUG; } + void CancelDownloadOnGivenChunk(int chunksToFail) + { + m_chunksToFail = chunksToFail; + } + void Reset() { m_progressWasCalled = false; @@ -67,6 +74,18 @@ public: { m_progressWasCalled = true; TEST_EQUAL(request.Status(), HttpRequest::EInProgress, ()); + + // Cancel download if needed + if (m_chunksToFail != -1) + { + --m_chunksToFail; + if (m_chunksToFail == 0) + { + m_chunksToFail = -1; + LOG(LINFO, ("Download canceled")); + QCoreApplication::quit(); + } + } } void OnDownloadFinish(HttpRequest & request) @@ -535,3 +554,56 @@ UNIT_TEST(DownloadResumeChunks) FileWriter::DeleteFileX(FILENAME); } } + +// Unit test with forcible canceling of http request +UNIT_TEST(DownloadResumeChunksWithCancel) +{ + string const FILENAME = "some_test_filename_12345"; + string const RESUME_FILENAME = FILENAME + RESUME_FILE_EXTENSION; + string const DOWNLOADING_FILENAME = FILENAME + DOWNLOADING_FILE_EXTENSION; + string const SHA256 = "EE6AE6A2A3619B2F4A397326BEC32583DE2196D9D575D66786CB3B6F9D04A633"; + + { // remove data from previously failed files + Platform::FilesList files; + Platform::GetFilesInDir(".", "*" RESUME_FILE_EXTENSION, files); + Platform::GetFilesInDir(".", "*" DOWNLOADING_FILE_EXTENSION, files); + for (Platform::FilesList::iterator it = files.begin(); it != files.end(); ++it) + FileWriter::DeleteFileX(*it); + } + + vector urls; + urls.push_back(TEST_URL_BIG_FILE); + + // 1st step - download full file with canceling + { + DownloadObserver observer; + observer.CancelDownloadOnGivenChunk(1); + + scoped_ptr request(HttpRequest::GetFile(urls, FILENAME, FILESIZE, + bind(&DownloadObserver::OnDownloadFinish, &observer, _1), + bind(&DownloadObserver::OnDownloadProgress, &observer, _1), 1024, false)); + QCoreApplication::exec(); + + request.reset(); + observer.CancelDownloadOnGivenChunk(20); + request.reset(HttpRequest::GetFile(urls, FILENAME, FILESIZE, + bind(&DownloadObserver::OnDownloadFinish, &observer, _1), + bind(&DownloadObserver::OnDownloadProgress, &observer, _1), 1024, false)); + QCoreApplication::exec(); + + request.reset(); + request.reset(HttpRequest::GetFile(urls, FILENAME, FILESIZE, + bind(&DownloadObserver::OnDownloadFinish, &observer, _1), + bind(&DownloadObserver::OnDownloadProgress, &observer, _1), 1024, false)); + QCoreApplication::exec(); + + observer.TestOk(); + string s; + TEST(ReadFileAsString(FILENAME, s), ()); + TEST_EQUAL(sha2::digest256(s), SHA256, ()); + uint64_t size; + TEST(!Platform::GetFileSizeByFullPath(RESUME_FILENAME, size), ("No resume file on success")); + + FileWriter::DeleteFileX(FILENAME); + } +}