2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2014-09-06 21:46:56 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QTest>
|
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <Version.h>
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2023-01-20 05:48:39 +05:30
|
|
|
class VersionTest : public QObject {
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2023-01-20 05:48:39 +05:30
|
|
|
|
|
|
|
void addDataColumns()
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
|
|
|
QTest::addColumn<QString>("first");
|
|
|
|
QTest::addColumn<QString>("second");
|
|
|
|
QTest::addColumn<bool>("lessThan");
|
|
|
|
QTest::addColumn<bool>("equal");
|
2023-01-20 05:48:39 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void setupVersions()
|
|
|
|
{
|
|
|
|
addDataColumns();
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QTest::newRow("equal, explicit") << "1.2.0" << "1.2.0" << false << true;
|
|
|
|
QTest::newRow("equal, two-digit") << "1.42" << "1.42" << false << true;
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QTest::newRow("lessThan, explicit 1") << "1.2.0" << "1.2.1" << true << false;
|
|
|
|
QTest::newRow("lessThan, explicit 2") << "1.2.0" << "1.3.0" << true << false;
|
|
|
|
QTest::newRow("lessThan, explicit 3") << "1.2.0" << "2.2.0" << true << false;
|
2023-01-20 19:41:35 +05:30
|
|
|
QTest::newRow("lessThan, implicit 1") << "1.2" << "1.2.0" << true << false;
|
|
|
|
QTest::newRow("lessThan, implicit 2") << "1.2" << "1.2.1" << true << false;
|
|
|
|
QTest::newRow("lessThan, implicit 3") << "1.2" << "1.3.0" << true << false;
|
|
|
|
QTest::newRow("lessThan, implicit 4") << "1.2" << "2.2.0" << true << false;
|
2018-07-15 18:21:05 +05:30
|
|
|
QTest::newRow("lessThan, two-digit") << "1.41" << "1.42" << true << false;
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QTest::newRow("greaterThan, explicit 1") << "1.2.1" << "1.2.0" << false << false;
|
|
|
|
QTest::newRow("greaterThan, explicit 2") << "1.3.0" << "1.2.0" << false << false;
|
|
|
|
QTest::newRow("greaterThan, explicit 3") << "2.2.0" << "1.2.0" << false << false;
|
2023-01-20 19:41:35 +05:30
|
|
|
QTest::newRow("greaterThan, implicit 1") << "1.2.0" << "1.2" << false << false;
|
|
|
|
QTest::newRow("greaterThan, implicit 2") << "1.2.1" << "1.2" << false << false;
|
|
|
|
QTest::newRow("greaterThan, implicit 3") << "1.3.0" << "1.2" << false << false;
|
|
|
|
QTest::newRow("greaterThan, implicit 4") << "2.2.0" << "1.2" << false << false;
|
2018-07-15 18:21:05 +05:30
|
|
|
QTest::newRow("greaterThan, two-digit") << "1.42" << "1.41" << false << false;
|
|
|
|
}
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2023-01-20 05:48:39 +05:30
|
|
|
private slots:
|
|
|
|
void test_versionCompare_data()
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2023-01-20 05:48:39 +05:30
|
|
|
setupVersions();
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2023-01-20 05:48:39 +05:30
|
|
|
|
|
|
|
void test_versionCompare()
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2023-01-20 05:48:39 +05:30
|
|
|
QFETCH(QString, first);
|
|
|
|
QFETCH(QString, second);
|
|
|
|
QFETCH(bool, lessThan);
|
|
|
|
QFETCH(bool, equal);
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2023-01-20 05:48:39 +05:30
|
|
|
const auto v1 = Version(first);
|
|
|
|
const auto v2 = Version(second);
|
|
|
|
|
|
|
|
qDebug() << v1 << "vs" << v2;
|
|
|
|
|
|
|
|
QCOMPARE(v1 < v2, lessThan);
|
|
|
|
QCOMPARE(v1 > v2, !lessThan && !equal);
|
|
|
|
QCOMPARE(v1 == v2, equal);
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2023-01-20 05:48:39 +05:30
|
|
|
void test_flexVerTestVector_data()
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2023-01-20 05:48:39 +05:30
|
|
|
addDataColumns();
|
|
|
|
|
|
|
|
QDir test_vector_dir(QFINDTESTDATA("testdata/Version"));
|
|
|
|
|
|
|
|
QFile vector_file{test_vector_dir.absoluteFilePath("test_vectors.txt")};
|
|
|
|
|
|
|
|
vector_file.open(QFile::OpenModeFlag::ReadOnly);
|
|
|
|
|
|
|
|
int test_number = 0;
|
|
|
|
const QString test_name_template { "FlexVer test #%1 (%2)" };
|
|
|
|
for (auto line = vector_file.readLine(); !vector_file.atEnd(); line = vector_file.readLine()) {
|
|
|
|
line = line.simplified();
|
|
|
|
if (line.startsWith('#') || line.isEmpty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
test_number += 1;
|
|
|
|
|
|
|
|
auto split_line = line.split('<');
|
|
|
|
if (split_line.size() == 2) {
|
|
|
|
QString first{split_line.first().simplified()};
|
|
|
|
QString second{split_line.last().simplified()};
|
|
|
|
|
|
|
|
auto new_test_name = test_name_template.arg(QString::number(test_number), "lessThan").toLatin1().data();
|
|
|
|
QTest::newRow(new_test_name) << first << second << true << false;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
split_line = line.split('=');
|
|
|
|
if (split_line.size() == 2) {
|
|
|
|
QString first{split_line.first().simplified()};
|
|
|
|
QString second{split_line.last().simplified()};
|
|
|
|
|
|
|
|
auto new_test_name = test_name_template.arg(QString::number(test_number), "equals").toLatin1().data();
|
|
|
|
QTest::newRow(new_test_name) << first << second << false << true;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
split_line = line.split('>');
|
|
|
|
if (split_line.size() == 2) {
|
|
|
|
QString first{split_line.first().simplified()};
|
|
|
|
QString second{split_line.last().simplified()};
|
|
|
|
|
|
|
|
auto new_test_name = test_name_template.arg(QString::number(test_number), "greaterThan").toLatin1().data();
|
|
|
|
QTest::newRow(new_test_name) << first << second << false << false;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
qCritical() << "Unexpected separator in the test vector: ";
|
|
|
|
qCritical() << line;
|
|
|
|
|
|
|
|
QVERIFY(0 != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
vector_file.close();
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2023-01-20 05:48:39 +05:30
|
|
|
|
|
|
|
void test_flexVerTestVector()
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
|
|
|
QFETCH(QString, first);
|
|
|
|
QFETCH(QString, second);
|
|
|
|
QFETCH(bool, lessThan);
|
|
|
|
QFETCH(bool, equal);
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
const auto v1 = Version(first);
|
|
|
|
const auto v2 = Version(second);
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2023-01-19 13:16:35 +05:30
|
|
|
qDebug() << v1 << "vs" << v2;
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QCOMPARE(v1 < v2, lessThan);
|
|
|
|
QCOMPARE(v1 > v2, !lessThan && !equal);
|
|
|
|
QCOMPARE(v1 == v2, equal);
|
|
|
|
}
|
2014-09-06 21:46:56 +05:30
|
|
|
};
|
|
|
|
|
2023-01-20 05:48:39 +05:30
|
|
|
QTEST_GUILESS_MAIN(VersionTest)
|
2014-09-06 21:46:56 +05:30
|
|
|
|
2016-04-14 04:53:54 +05:30
|
|
|
#include "Version_test.moc"
|