diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-28 02:03:53 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-28 04:23:48 +0100 |
commit | 7652b3d64a63c587f520633364412345083210d4 (patch) | |
tree | 12d98c301aa931f20aee0875242bc762cf4d22d1 /tests | |
parent | 30d4f5981d3220386bd320534048594fc364d0e9 (diff) | |
download | MultiMC-7652b3d64a63c587f520633364412345083210d4.tar MultiMC-7652b3d64a63c587f520633364412345083210d4.tar.gz MultiMC-7652b3d64a63c587f520633364412345083210d4.tar.lz MultiMC-7652b3d64a63c587f520633364412345083210d4.tar.xz MultiMC-7652b3d64a63c587f520633364412345083210d4.zip |
Various updater fixes
Updater tests for path utils
The updater now doesn't use splitpath on Windows (fixes problems with Windows XP)
Fix up paths for the OSX updater - should now install the updates into the right place
Fix translations install path - translation isntall and deploy should be fixed
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tst_DownloadUpdateTask.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/tst_DownloadUpdateTask.cpp b/tests/tst_DownloadUpdateTask.cpp index f47552fe..3b2c6793 100644 --- a/tests/tst_DownloadUpdateTask.cpp +++ b/tests/tst_DownloadUpdateTask.cpp @@ -245,6 +245,25 @@ slots: QVERIFY(succeededSpy.wait()); } + + void test_OSXPathFixup() + { + QString path, pathOrig; + bool result; + // Proper OSX path + pathOrig = path = "MultiMC.app/Foo/Bar/Baz"; + qDebug() << "Proper OSX path: " << path; + result = DownloadUpdateTask::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 = DownloadUpdateTask::fixPathForOSX(path); + QCOMPARE(path, pathOrig); + QCOMPARE(result, false); + } }; QTEST_GUILESS_MAIN_MULTIMC(DownloadUpdateTaskTest) |