2015-02-08 22:26:14 +05:30
|
|
|
#include <QTest>
|
|
|
|
#include <QSignalSpy>
|
|
|
|
|
|
|
|
#include "TestUtil.h"
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "updater/GoUpdate.h"
|
|
|
|
#include "updater/DownloadTask.h"
|
|
|
|
#include "updater/UpdateChecker.h"
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <FileSystem.h>
|
2015-02-08 22:26:14 +05:30
|
|
|
|
|
|
|
using namespace GoUpdate;
|
|
|
|
|
|
|
|
FileSourceList encodeBaseFile(const char *suffix)
|
|
|
|
{
|
2016-05-01 07:19:46 +05:30
|
|
|
auto base = QDir::currentPath();
|
2015-02-08 22:26:14 +05:30
|
|
|
QUrl localFile = QUrl::fromLocalFile(base + suffix);
|
|
|
|
QString localUrlString = localFile.toString(QUrl::FullyEncoded);
|
|
|
|
auto item = FileSource("http", localUrlString);
|
|
|
|
return FileSourceList({item});
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(VersionFileList)
|
|
|
|
Q_DECLARE_METATYPE(Operation)
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug dbg, const FileSource &f)
|
|
|
|
{
|
|
|
|
dbg.nospace() << "FileSource(type=" << f.type << " url=" << f.url
|
|
|
|
<< " comp=" << f.compressionType << ")";
|
|
|
|
return dbg.maybeSpace();
|
|
|
|
}
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug dbg, const 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 Operation::Type &t)
|
|
|
|
{
|
|
|
|
switch (t)
|
|
|
|
{
|
2015-06-10 02:53:46 +05:30
|
|
|
case Operation::OP_REPLACE:
|
2015-02-08 22:26:14 +05:30
|
|
|
dbg << "OP_COPY";
|
|
|
|
break;
|
|
|
|
case Operation::OP_DELETE:
|
|
|
|
dbg << "OP_DELETE";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return dbg.maybeSpace();
|
|
|
|
}
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug dbg, const Operation &u)
|
|
|
|
{
|
2016-11-18 20:34:08 +05:30
|
|
|
dbg.nospace() << "Operation(type=" << u.type << " file=" << u.source
|
|
|
|
<< " dest=" << u.destination << " mode=" << u.destinationMode << ")";
|
2015-02-08 22:26:14 +05:30
|
|
|
return dbg.maybeSpace();
|
|
|
|
}
|
|
|
|
|
|
|
|
class DownloadTaskTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private
|
|
|
|
slots:
|
|
|
|
void initTestCase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void cleanupTestCase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_parseVersionInfo_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QByteArray>("data");
|
|
|
|
QTest::addColumn<VersionFileList>("list");
|
|
|
|
QTest::addColumn<QString>("error");
|
|
|
|
QTest::addColumn<bool>("ret");
|
|
|
|
|
|
|
|
QTest::newRow("one")
|
2016-04-14 04:53:54 +05:30
|
|
|
<< MULTIMC_GET_TEST_FILE("data/1.json")
|
2015-02-08 22:26:14 +05:30
|
|
|
<< (VersionFileList()
|
|
|
|
<< VersionFileEntry{"fileOne",
|
|
|
|
493,
|
2016-04-14 04:53:54 +05:30
|
|
|
encodeBaseFile("/data/fileOneA"),
|
2015-02-08 22:26:14 +05:30
|
|
|
"9eb84090956c484e32cb6c08455a667b"}
|
|
|
|
<< VersionFileEntry{"fileTwo",
|
|
|
|
644,
|
2016-04-14 04:53:54 +05:30
|
|
|
encodeBaseFile("/data/fileTwo"),
|
2015-02-08 22:26:14 +05:30
|
|
|
"38f94f54fa3eb72b0ea836538c10b043"}
|
|
|
|
<< VersionFileEntry{"fileThree",
|
|
|
|
750,
|
2016-04-14 04:53:54 +05:30
|
|
|
encodeBaseFile("/data/fileThree"),
|
2015-02-08 22:26:14 +05:30
|
|
|
"f12df554b21e320be6471d7154130e70"})
|
|
|
|
<< QString() << true;
|
|
|
|
QTest::newRow("two")
|
2016-04-14 04:53:54 +05:30
|
|
|
<< MULTIMC_GET_TEST_FILE("data/2.json")
|
2015-02-08 22:26:14 +05:30
|
|
|
<< (VersionFileList()
|
|
|
|
<< VersionFileEntry{"fileOne",
|
|
|
|
493,
|
2016-04-14 04:53:54 +05:30
|
|
|
encodeBaseFile("/data/fileOneB"),
|
2015-02-08 22:26:14 +05:30
|
|
|
"42915a71277c9016668cce7b82c6b577"}
|
|
|
|
<< VersionFileEntry{"fileTwo",
|
|
|
|
644,
|
2016-04-14 04:53:54 +05:30
|
|
|
encodeBaseFile("/data/fileTwo"),
|
2015-02-08 22:26:14 +05:30
|
|
|
"38f94f54fa3eb72b0ea836538c10b043"})
|
|
|
|
<< QString() << true;
|
|
|
|
}
|
|
|
|
void test_parseVersionInfo()
|
|
|
|
{
|
|
|
|
QFETCH(QByteArray, data);
|
|
|
|
QFETCH(VersionFileList, list);
|
|
|
|
QFETCH(QString, error);
|
|
|
|
QFETCH(bool, ret);
|
|
|
|
|
|
|
|
VersionFileList outList;
|
|
|
|
QString outError;
|
|
|
|
bool outRet = parseVersionInfo(data, outList, outError);
|
|
|
|
QCOMPARE(outRet, ret);
|
|
|
|
QCOMPARE(outList, list);
|
|
|
|
QCOMPARE(outError, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_processFileLists_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QString>("tempFolder");
|
|
|
|
QTest::addColumn<VersionFileList>("currentVersion");
|
|
|
|
QTest::addColumn<VersionFileList>("newVersion");
|
|
|
|
QTest::addColumn<OperationList>("expectedOperations");
|
|
|
|
|
|
|
|
QTemporaryDir tempFolderObj;
|
|
|
|
QString tempFolder = tempFolderObj.path();
|
|
|
|
// update fileOne, keep fileTwo, remove fileThree
|
|
|
|
QTest::newRow("test 1")
|
|
|
|
<< tempFolder << (VersionFileList()
|
|
|
|
<< VersionFileEntry{
|
2016-04-14 04:53:54 +05:30
|
|
|
"data/fileOne", 493,
|
2015-02-08 22:26:14 +05:30
|
|
|
FileSourceList()
|
|
|
|
<< FileSource(
|
|
|
|
"http", "http://host/path/fileOne-1"),
|
|
|
|
"9eb84090956c484e32cb6c08455a667b"}
|
|
|
|
<< VersionFileEntry{
|
2016-04-14 04:53:54 +05:30
|
|
|
"data/fileTwo", 644,
|
2015-02-08 22:26:14 +05:30
|
|
|
FileSourceList()
|
|
|
|
<< FileSource(
|
|
|
|
"http", "http://host/path/fileTwo-1"),
|
|
|
|
"38f94f54fa3eb72b0ea836538c10b043"}
|
|
|
|
<< VersionFileEntry{
|
2016-04-14 04:53:54 +05:30
|
|
|
"data/fileThree", 420,
|
2015-02-08 22:26:14 +05:30
|
|
|
FileSourceList()
|
|
|
|
<< FileSource(
|
|
|
|
"http", "http://host/path/fileThree-1"),
|
|
|
|
"f12df554b21e320be6471d7154130e70"})
|
|
|
|
<< (VersionFileList()
|
|
|
|
<< VersionFileEntry{
|
2016-04-14 04:53:54 +05:30
|
|
|
"data/fileOne", 493,
|
2015-02-08 22:26:14 +05:30
|
|
|
FileSourceList()
|
|
|
|
<< FileSource("http",
|
|
|
|
"http://host/path/fileOne-2"),
|
|
|
|
"42915a71277c9016668cce7b82c6b577"}
|
|
|
|
<< VersionFileEntry{
|
2016-04-14 04:53:54 +05:30
|
|
|
"data/fileTwo", 644,
|
2015-02-08 22:26:14 +05:30
|
|
|
FileSourceList()
|
|
|
|
<< FileSource("http",
|
|
|
|
"http://host/path/fileTwo-2"),
|
|
|
|
"38f94f54fa3eb72b0ea836538c10b043"})
|
|
|
|
<< (OperationList()
|
2016-04-14 04:53:54 +05:30
|
|
|
<< Operation::DeleteOp("data/fileThree")
|
2015-02-08 22:26:14 +05:30
|
|
|
<< Operation::CopyOp(
|
2015-10-05 05:17:27 +05:30
|
|
|
FS::PathCombine(tempFolder,
|
2016-04-14 04:53:54 +05:30
|
|
|
QString("data/fileOne").replace("/", "_")),
|
|
|
|
"data/fileOne", 493));
|
2015-02-08 22:26:14 +05:30
|
|
|
}
|
|
|
|
void test_processFileLists()
|
|
|
|
{
|
|
|
|
QFETCH(QString, tempFolder);
|
|
|
|
QFETCH(VersionFileList, currentVersion);
|
|
|
|
QFETCH(VersionFileList, newVersion);
|
|
|
|
QFETCH(OperationList, expectedOperations);
|
|
|
|
|
|
|
|
OperationList operations;
|
|
|
|
|
2016-05-01 07:19:46 +05:30
|
|
|
processFileLists(currentVersion, newVersion, QDir::currentPath(), tempFolder, new NetJob("Dummy"), operations);
|
2015-02-08 22:26:14 +05:30
|
|
|
qDebug() << (operations == expectedOperations);
|
|
|
|
qDebug() << operations;
|
|
|
|
qDebug() << expectedOperations;
|
|
|
|
QCOMPARE(operations, expectedOperations);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_OSXPathFixup()
|
|
|
|
{
|
|
|
|
QString path, pathOrig;
|
|
|
|
bool result;
|
|
|
|
// Proper OSX path
|
|
|
|
pathOrig = path = "MultiMC.app/Foo/Bar/Baz";
|
|
|
|
qDebug() << "Proper OSX path: " << path;
|
|
|
|
result = fixPathForOSX(path);
|
|
|
|
QCOMPARE(path, QString("Foo/Bar/Baz"));
|
|
|
|
QCOMPARE(result, true);
|
|
|
|
|
|
|
|
// Bad OSX path
|
|
|
|
pathOrig = path = "translations/klingon.lol";
|
|
|
|
qDebug() << "Bad OSX path: " << path;
|
|
|
|
result = fixPathForOSX(path);
|
|
|
|
QCOMPARE(path, pathOrig);
|
|
|
|
QCOMPARE(result, false);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
QTEST_GUILESS_MAIN(DownloadTaskTest)
|
|
|
|
}
|
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
#include "DownloadTask_test.moc"
|