summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJan Dalheimer <jan@dalheimer.de>2013-12-15 18:50:56 +0100
committerJan Dalheimer <jan@dalheimer.de>2013-12-15 18:50:56 +0100
commit7f884a18a85eca8c1a395ab0e9d421f17a98f142 (patch)
tree7a4f0c263954b28a141aac007afae76530320bfc /tests
parent3e8bcc1cf6f3400fff9aa361ddc109bafe16d646 (diff)
downloadMultiMC-7f884a18a85eca8c1a395ab0e9d421f17a98f142.tar
MultiMC-7f884a18a85eca8c1a395ab0e9d421f17a98f142.tar.gz
MultiMC-7f884a18a85eca8c1a395ab0e9d421f17a98f142.tar.lz
MultiMC-7f884a18a85eca8c1a395ab0e9d421f17a98f142.tar.xz
MultiMC-7f884a18a85eca8c1a395ab0e9d421f17a98f142.zip
Finish unit tests for the DownloadUpdateTask class
Diffstat (limited to 'tests')
-rw-r--r--tests/tst_DownloadUpdateTask.cpp66
1 files changed, 65 insertions, 1 deletions
diff --git a/tests/tst_DownloadUpdateTask.cpp b/tests/tst_DownloadUpdateTask.cpp
index 69391466..d96e4cf1 100644
--- a/tests/tst_DownloadUpdateTask.cpp
+++ b/tests/tst_DownloadUpdateTask.cpp
@@ -5,8 +5,10 @@
#include "logic/updater/DownloadUpdateTask.h"
#include "logic/updater/UpdateChecker.h"
+#include "depends/util/include/pathutils.h"
Q_DECLARE_METATYPE(DownloadUpdateTask::VersionFileList)
+Q_DECLARE_METATYPE(DownloadUpdateTask::UpdateOperation)
bool operator==(const DownloadUpdateTask::FileSource &f1, const DownloadUpdateTask::FileSource &f2)
{
@@ -21,6 +23,13 @@ bool operator==(const DownloadUpdateTask::VersionFileEntry &v1, const DownloadUp
v1.sources == v2.sources &&
v1.md5 == v2.md5;
}
+bool operator==(const DownloadUpdateTask::UpdateOperation &u1, const DownloadUpdateTask::UpdateOperation &u2)
+{
+ return u1.type == u2.type &&
+ u1.file == u2.file &&
+ u1.dest == u2.dest &&
+ u1.mode == u2.mode;
+}
QDebug operator<<(QDebug dbg, const DownloadUpdateTask::FileSource &f)
{
@@ -32,6 +41,22 @@ QDebug operator<<(QDebug dbg, const DownloadUpdateTask::VersionFileEntry &v)
dbg.nospace() << "VersionFileEntry(path=" << v.path << " mode=" << v.mode << " md5=" << v.md5 << " sources=" << v.sources << ")";
return dbg.maybeSpace();
}
+QDebug operator<<(QDebug dbg, const DownloadUpdateTask::UpdateOperation::Type &t)
+{
+ switch (t)
+ {
+ case DownloadUpdateTask::UpdateOperation::OP_COPY: dbg << "OP_COPY"; break;
+ case DownloadUpdateTask::UpdateOperation::OP_DELETE: dbg << "OP_DELETE"; break;
+ case DownloadUpdateTask::UpdateOperation::OP_MOVE: dbg << "OP_MOVE"; break;
+ case DownloadUpdateTask::UpdateOperation::OP_CHMOD: dbg << "OP_CHMOD"; break;
+ }
+ return dbg.maybeSpace();
+}
+QDebug operator<<(QDebug dbg, const DownloadUpdateTask::UpdateOperation &u)
+{
+ dbg.nospace() << "UpdateOperation(type=" << u.type << " file=" << u.file << " dest=" << u.dest << " mode=" << u.mode << ")";
+ return dbg.maybeSpace();
+}
class DownloadUpdateTaskTest : public QObject
{
@@ -108,9 +133,48 @@ slots:
QCOMPARE(outError, error);
}
+ void test_processFileLists_data()
+ {
+ QTest::addColumn<DownloadUpdateTask *>("downloader");
+ QTest::addColumn<DownloadUpdateTask::VersionFileList>("currentVersion");
+ QTest::addColumn<DownloadUpdateTask::VersionFileList>("newVersion");
+ QTest::addColumn<DownloadUpdateTask::UpdateOperationList>("expectedOperations");
+
+ DownloadUpdateTask *downloader = new DownloadUpdateTask(QString(), -1);
+
+ // update fileOne, keep fileTwo, remove fileThree
+ QTest::newRow("test 1") << downloader
+ << (DownloadUpdateTask::VersionFileList()
+ << DownloadUpdateTask::VersionFileEntry{QFINDTESTDATA("tests/data/fileOne"), 493, DownloadUpdateTask::FileSourceList()
+ << DownloadUpdateTask::FileSource("http", "http://host/path/fileOne-1"), "9eb84090956c484e32cb6c08455a667b"}
+ << DownloadUpdateTask::VersionFileEntry{QFINDTESTDATA("tests/data/fileTwo"), 644, DownloadUpdateTask::FileSourceList()
+ << DownloadUpdateTask::FileSource("http", "http://host/path/fileTwo-1"), "38f94f54fa3eb72b0ea836538c10b043"}
+ << DownloadUpdateTask::VersionFileEntry{QFINDTESTDATA("tests/data/fileThree"), 420, DownloadUpdateTask::FileSourceList()
+ << DownloadUpdateTask::FileSource("http", "http://host/path/fileThree-1"), "f12df554b21e320be6471d7154130e70"})
+ << (DownloadUpdateTask::VersionFileList()
+ << DownloadUpdateTask::VersionFileEntry{QFINDTESTDATA("tests/data/fileOne"), 493, DownloadUpdateTask::FileSourceList()
+ << DownloadUpdateTask::FileSource("http", "http://host/path/fileOne-2"), "42915a71277c9016668cce7b82c6b577"}
+ << DownloadUpdateTask::VersionFileEntry{QFINDTESTDATA("tests/data/fileTwo"), 644, DownloadUpdateTask::FileSourceList()
+ << DownloadUpdateTask::FileSource("http", "http://host/path/fileTwo-2"), "38f94f54fa3eb72b0ea836538c10b043"})
+ << (DownloadUpdateTask::UpdateOperationList()
+ << DownloadUpdateTask::UpdateOperation::DeleteOp(QFINDTESTDATA("tests/data/fileThree"))
+ << DownloadUpdateTask::UpdateOperation::CopyOp(PathCombine(downloader->updateFilesDir(), QFINDTESTDATA("tests/data/fileOne").replace("/", "_")),
+ QFINDTESTDATA("tests/data/fileOne"), 493));
+ }
void test_processFileLists()
{
- // TODO create unit test for this
+ QFETCH(DownloadUpdateTask *, downloader);
+ QFETCH(DownloadUpdateTask::VersionFileList, currentVersion);
+ QFETCH(DownloadUpdateTask::VersionFileList, newVersion);
+ QFETCH(DownloadUpdateTask::UpdateOperationList, expectedOperations);
+
+ DownloadUpdateTask::UpdateOperationList operations;
+
+ downloader->processFileLists(new NetJob("Dummy"), currentVersion, newVersion, operations);
+ qDebug() << (operations == expectedOperations);
+ qDebug() << operations;
+ qDebug() << expectedOperations;
+ QCOMPARE(operations, expectedOperations);
}
void test_masterTest()