diff options
author | Petr Mrázek <peterix@gmail.com> | 2018-07-15 14:04:09 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2018-07-15 14:04:09 +0200 |
commit | 03280cc62e75f8073f8d3d9e9e3952acf21fa77d (patch) | |
tree | 06f7546fb4941b51ca2367d9cdb257011271452a /api/logic/minecraft/SimpleModList_test.cpp | |
parent | 128bce6acb4fa320b70e580b2d2e0db5d41db8e6 (diff) | |
download | MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.tar MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.tar.gz MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.tar.lz MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.tar.xz MultiMC-03280cc62e75f8073f8d3d9e9e3952acf21fa77d.zip |
NOISSUE separate new mods model from the simple one
It should list mods in various locations...
Diffstat (limited to 'api/logic/minecraft/SimpleModList_test.cpp')
-rw-r--r-- | api/logic/minecraft/SimpleModList_test.cpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/api/logic/minecraft/SimpleModList_test.cpp b/api/logic/minecraft/SimpleModList_test.cpp new file mode 100644 index 00000000..28ce8471 --- /dev/null +++ b/api/logic/minecraft/SimpleModList_test.cpp @@ -0,0 +1,53 @@ + +#include <QTest> +#include <QTemporaryDir> +#include "TestUtil.h" + +#include "FileSystem.h" +#include "minecraft/SimpleModList.h" + +class SimpleModListTest : public QObject +{ + Q_OBJECT + +private +slots: + // test for GH-1178 - install a folder with files to a mod list + void test_1178() + { + // source + QString source = QFINDTESTDATA("data/test_folder"); + + // sanity check + QVERIFY(!source.endsWith('/')); + + auto verify = [](QString path) + { + QDir target_dir(FS::PathCombine(path, "test_folder")); + QVERIFY(target_dir.entryList().contains("pack.mcmeta")); + QVERIFY(target_dir.entryList().contains("assets")); + }; + + // 1. test with no trailing / + { + QString folder = source; + QTemporaryDir tempDir; + SimpleModList m(tempDir.path()); + m.installMod(folder); + verify(tempDir.path()); + } + + // 2. test with trailing / + { + QString folder = source + '/'; + QTemporaryDir tempDir; + SimpleModList m(tempDir.path()); + m.installMod(folder); + verify(tempDir.path()); + } + } +}; + +QTEST_GUILESS_MAIN(SimpleModListTest) + +#include "SimpleModList_test.moc" |