summaryrefslogtreecommitdiffstats
path: root/api/logic/minecraft/ModList_test.cpp
blob: 155c238a71f3cea01ac02e4bed95fe2bdc23da8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

#include <QTest>
#include <QTemporaryDir>
#include "TestUtil.h"

#include "FileSystem.h"
#include "minecraft/ModList.h"

class ModListTest : 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;
			ModList m(tempDir.path());
			m.installMod(folder);
			verify(tempDir.path());
		}

		// 2. test with trailing /
		{
			QString folder = source + '/';
			QTemporaryDir tempDir;
			ModList m(tempDir.path());
			m.installMod(folder);
			verify(tempDir.path());
		}
	}
};

QTEST_GUILESS_MAIN(ModListTest)

#include "ModList_test.moc"