summaryrefslogtreecommitdiffstats
path: root/api/logic/minecraft/Library_test.cpp
blob: fcf0b4d1099075d42690c69a463eec3ea918bc6c (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#include <QTest>
#include "TestUtil.h"

#include "minecraft/MojangVersionFormat.h"
#include "minecraft/onesix/OneSixVersionFormat.h"
#include "minecraft/Library.h"
#include "net/HttpMetaCache.h"
#include "FileSystem.h"

class LibraryTest : public QObject
{
	Q_OBJECT
private:
	LibraryPtr readMojangJson(const char *file)
	{
		auto path = QFINDTESTDATA(file);
		QFile jsonFile(path);
		jsonFile.open(QIODevice::ReadOnly);
		auto data = jsonFile.readAll();
		jsonFile.close();
		return MojangVersionFormat::libraryFromJson(QJsonDocument::fromJson(data).object(), file);
	}
	// get absolute path to expected storage, assuming default cache prefix
	QStringList getStorage(QString relative)
	{
		return {FS::PathCombine(cache->getBasePath("libraries"), relative)};
	}
private
slots:
	void initTestCase()
	{
		cache.reset(new HttpMetaCache());
		cache->addBase("libraries", QDir("libraries").absolutePath());
	}
	void test_legacy()
	{
		Library test("test.package:testname:testversion");
		QCOMPARE(test.artifactPrefix(), QString("test.package:testname"));
		QCOMPARE(test.isNative(), false);

		QStringList jar, native, native32, native64;
		test.getApplicableFiles(currentSystem, jar, native, native32, native64);
		QCOMPARE(jar, getStorage("test/package/testname/testversion/testname-testversion.jar"));
		QCOMPARE(native, {});
		QCOMPARE(native32, {});
		QCOMPARE(native64, {});
	}
	void test_legacy_url()
	{
		QStringList failedFiles;
		Library test("test.package:testname:testversion");
		test.setRepositoryURL("file://foo/bar");
		auto downloads = test.getDownloads(currentSystem, cache.get(), failedFiles);
		QCOMPARE(downloads.size(), 1);
		QCOMPARE(failedFiles, {});
		NetActionPtr dl = downloads[0];
		QCOMPARE(dl->m_url, QUrl("file://foo/bar/test/package/testname/testversion/testname-testversion.jar"));
	}
	void test_legacy_url_local_broken()
	{
		Library test("test.package:testname:testversion");
		QCOMPARE(test.isNative(), false);
		QStringList failedFiles;
		test.setHint("local");
		auto downloads = test.getDownloads(currentSystem, cache.get(), failedFiles);
		QCOMPARE(downloads.size(), 0);
		QCOMPARE(failedFiles, getStorage("test/package/testname/testversion/testname-testversion.jar"));
	}
	void test_legacy_native()
	{
		Library test("test.package:testname:testversion");
		test.m_nativeClassifiers[OpSys::Os_Linux]="linux";
		QCOMPARE(test.isNative(), true);
		test.setRepositoryURL("file://foo/bar");
		{
			QStringList jar, native, native32, native64;
			test.getApplicableFiles(Os_Linux, jar, native, native32, native64);
			QCOMPARE(jar, {});
			QCOMPARE(native, getStorage("test/package/testname/testversion/testname-testversion-linux.jar"));
			QCOMPARE(native32, {});
			QCOMPARE(native64, {});
			QStringList failedFiles;
			auto dls = test.getDownloads(Os_Linux, cache.get(), failedFiles);
			QCOMPARE(dls.size(), 1);
			QCOMPARE(failedFiles, {});
			auto dl = dls[0];
			QCOMPARE(dl->m_url, QUrl("file://foo/bar/test/package/testname/testversion/testname-testversion-linux.jar"));
		}
	}
	void test_legacy_native_arch()
	{
		Library test("test.package:testname:testversion");
		test.m_nativeClassifiers[OpSys::Os_Linux]="linux-${arch}";
		test.m_nativeClassifiers[OpSys::Os_OSX]="osx-${arch}";
		test.m_nativeClassifiers[OpSys::Os_Windows]="windows-${arch}";
		QCOMPARE(test.isNative(), true);
		test.setRepositoryURL("file://foo/bar");
		{
			QStringList jar, native, native32, native64;
			test.getApplicableFiles(Os_Linux, jar, native, native32, native64);
			QCOMPARE(jar, {});
			QCOMPARE(native, {});
			QCOMPARE(native32, getStorage("test/package/testname/testversion/testname-testversion-linux-32.jar"));
			QCOMPARE(native64, getStorage("test/package/testname/testversion/testname-testversion-linux-64.jar"));
			QStringList failedFiles;
			auto dls = test.getDownloads(Os_Linux, cache.get(), failedFiles);
			QCOMPARE(dls.size(), 2);
			QCOMPARE(failedFiles, {});
			QCOMPARE(dls[0]->m_url, QUrl("file://foo/bar/test/package/testname/testversion/testname-testversion-linux-32.jar"));
			QCOMPARE(dls[1]->m_url, QUrl("file://foo/bar/test/package/testname/testversion/testname-testversion-linux-64.jar"));
		}
		{
			QStringList jar, native, native32, native64;
			test.getApplicableFiles(Os_Windows, jar, native, native32, native64);
			QCOMPARE(jar, {});
			QCOMPARE(native, {});
			QCOMPARE(native32, getStorage("test/package/testname/testversion/testname-testversion-windows-32.jar"));
			QCOMPARE(native64, getStorage("test/package/testname/testversion/testname-testversion-windows-64.jar"));
			QStringList failedFiles;
			auto dls = test.getDownloads(Os_Windows, cache.get(), failedFiles);
			QCOMPARE(dls.size(), 2);
			QCOMPARE(failedFiles, {});
			QCOMPARE(dls[0]->m_url, QUrl("file://foo/bar/test/package/testname/testversion/testname-testversion-windows-32.jar"));
			QCOMPARE(dls[1]->m_url, QUrl("file://foo/bar/test/package/testname/testversion/testname-testversion-windows-64.jar"));
		}
		{
			QStringList jar, native, native32, native64;
			test.getApplicableFiles(Os_OSX, jar, native, native32, native64);
			QCOMPARE(jar, {});
			QCOMPARE(native, {});
			QCOMPARE(native32, getStorage("test/package/testname/testversion/testname-testversion-osx-32.jar"));
			QCOMPARE(native64, getStorage("test/package/testname/testversion/testname-testversion-osx-64.jar"));
			QStringList failedFiles;
			auto dls = test.getDownloads(Os_OSX, cache.get(), failedFiles);
			QCOMPARE(dls.size(), 2);
			QCOMPARE(failedFiles, {});
			QCOMPARE(dls[0]->m_url, QUrl("file://foo/bar/test/package/testname/testversion/testname-testversion-osx-32.jar"));
			QCOMPARE(dls[1]->m_url, QUrl("file://foo/bar/test/package/testname/testversion/testname-testversion-osx-64.jar"));
		}
	}
	void test_onenine()
	{
		auto test = readMojangJson("data/lib-simple.json");
		QStringList jar, native, native32, native64;
		test->getApplicableFiles(Os_OSX, jar, native, native32, native64);
		QCOMPARE(jar, getStorage("com/paulscode/codecwav/20101023/codecwav-20101023.jar"));
		QCOMPARE(native, {});
		QCOMPARE(native32, {});
		QCOMPARE(native64, {});
		QStringList failedFiles;
		auto dls = test->getDownloads(Os_Linux, cache.get(), failedFiles);
		QCOMPARE(dls.size(), 1);
		QCOMPARE(failedFiles, {});
		QCOMPARE(dls[0]->m_url, QUrl("https://libraries.minecraft.net/com/paulscode/codecwav/20101023/codecwav-20101023.jar"));
	}
	void test_onenine_native()
	{
		auto test = readMojangJson("data/lib-native.json");
		QStringList jar, native, native32, native64;
		test->getApplicableFiles(Os_OSX, jar, native, native32, native64);
		QCOMPARE(jar, getStorage("org/lwjgl/lwjgl/lwjgl-platform/2.9.4-nightly-20150209/lwjgl-platform-2.9.4-nightly-20150209.jar"));
		QCOMPARE(native, getStorage("org/lwjgl/lwjgl/lwjgl-platform/2.9.4-nightly-20150209/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar"));
		QCOMPARE(native32, {});
		QCOMPARE(native64, {});
		QStringList failedFiles;
		auto dls = test->getDownloads(Os_OSX, cache.get(), failedFiles);
		QCOMPARE(dls.size(), 2);
		QCOMPARE(failedFiles, {});
		QCOMPARE(dls[0]->m_url, QUrl("https://libraries.minecraft.net/org/lwjgl/lwjgl/lwjgl-platform/2.9.4-nightly-20150209/lwjgl-platform-2.9.4-nightly-20150209.jar"));
		QCOMPARE(dls[1]->m_url, QUrl("https://libraries.minecraft.net/org/lwjgl/lwjgl/lwjgl-platform/2.9.4-nightly-20150209/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar"));
	}
	void test_onenine_native_arch()
	{
		auto test = readMojangJson("data/lib-native-arch.json");
		QStringList jar, native, native32, native64;
		test->getApplicableFiles(Os_Windows, jar, native, native32, native64);
		QCOMPARE(jar, {});
		QCOMPARE(native, {});
		QCOMPARE(native32, getStorage("tv/twitch/twitch-platform/5.16/twitch-platform-5.16-natives-windows-32.jar"));
		QCOMPARE(native64, getStorage("tv/twitch/twitch-platform/5.16/twitch-platform-5.16-natives-windows-64.jar"));
		QStringList failedFiles;
		auto dls = test->getDownloads(Os_Windows, cache.get(), failedFiles);
		QCOMPARE(dls.size(), 2);
		QCOMPARE(failedFiles, {});
		QCOMPARE(dls[0]->m_url, QUrl("https://libraries.minecraft.net/tv/twitch/twitch-platform/5.16/twitch-platform-5.16-natives-windows-32.jar"));
		QCOMPARE(dls[1]->m_url, QUrl("https://libraries.minecraft.net/tv/twitch/twitch-platform/5.16/twitch-platform-5.16-natives-windows-64.jar"));
	}
private:
	std::unique_ptr<HttpMetaCache> cache;
	QString workDir;
};

QTEST_GUILESS_MAIN(LibraryTest)

#include "Library_test.moc"