PrismLauncher/api/logic/minecraft/mod/ModFolderModel_test.cpp

54 lines
1.3 KiB
C++
Raw Normal View History

2015-12-26 02:13:31 +00:00
#include <QTest>
#include <QTemporaryDir>
2015-12-26 02:13:31 +00:00
#include "TestUtil.h"
#include "FileSystem.h"
#include "minecraft/mod/ModFolderModel.h"
2015-12-26 02:13:31 +00:00
class ModFolderModelTest : public QObject
2015-12-26 02:13:31 +00:00
{
2018-07-15 13:51:05 +01:00
Q_OBJECT
2015-12-26 02:13:31 +00:00
private
slots:
2018-07-15 13:51:05 +01:00
// 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;
ModFolderModel m(tempDir.path());
2018-07-15 13:51:05 +01:00
m.installMod(folder);
verify(tempDir.path());
}
// 2. test with trailing /
{
QString folder = source + '/';
QTemporaryDir tempDir;
ModFolderModel m(tempDir.path());
2018-07-15 13:51:05 +01:00
m.installMod(folder);
verify(tempDir.path());
}
}
2015-12-26 02:13:31 +00:00
};
QTEST_GUILESS_MAIN(ModFolderModelTest)
2015-12-26 02:13:31 +00:00
#include "ModFolderModel_test.moc"