summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/createoffline/tst_createoffline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/installer/createoffline/tst_createoffline.cpp')
-rw-r--r--tests/auto/installer/createoffline/tst_createoffline.cpp171
1 files changed, 171 insertions, 0 deletions
diff --git a/tests/auto/installer/createoffline/tst_createoffline.cpp b/tests/auto/installer/createoffline/tst_createoffline.cpp
new file mode 100644
index 000000000..474b1d5de
--- /dev/null
+++ b/tests/auto/installer/createoffline/tst_createoffline.cpp
@@ -0,0 +1,171 @@
+/**************************************************************************
+**
+** Copyright (C) 2021 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the Qt Installer Framework.
+**
+** $QT_BEGIN_LICENSE:GPL-EXCEPT$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+**************************************************************************/
+
+#include "../shared/packagemanager.h"
+
+#include <packagemanagercore.h>
+#include <errors.h>
+
+#include <QFile>
+#include <QTest>
+
+using namespace QInstaller;
+
+class tst_CreateOffline : public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void initTestCase()
+ {
+ // Need to provide a replacement base binary as we are not running actual installer
+#ifdef Q_OS_WIN
+ m_installerBase = "../../../../bin/installerbase.exe";
+#else
+ m_installerBase = "../../../../bin/installerbase";
+#endif
+ if (!QFile(m_installerBase).exists()) {
+ QSKIP("No \"installerbase\" binary found in source tree. This can be "
+ "the case if this is an out of sources build or the binaries are "
+ "installed to a location with a different path prefix.");
+ }
+ }
+
+ void init()
+ {
+ // Get new target directory for each test function
+ m_targetDir = QInstaller::generateTemporaryFileName();
+ }
+
+ void cleanup()
+ {
+ QDir dir(m_targetDir);
+ QVERIFY(dir.removeRecursively());
+ }
+
+ void testCreateOfflineInstaller_data()
+ {
+ QTest::addColumn<QString>("repository");
+ QTest::addColumn<QString>("component");
+ QTest::addColumn<PackageManagerCore::Status>("expectedStatus");
+ QTest::newRow("Both metaformats | License")
+ << ":///data/repository-bothmeta-license" << "org.qtproject.ifw.example.licenseagreement"
+ << PackageManagerCore::Success;
+ QTest::newRow("Both metaformats | UserInterface")
+ << ":///data/repository-bothmeta-userinteface" << "or.qtproject.ifw.example.openreadme"
+ << PackageManagerCore::Success;
+ QTest::newRow("Component metaformat | Script")
+ << ":///data/repository-componentmeta-script" << "org.qtproject.ifw.example"
+ << PackageManagerCore::Success;
+ QTest::newRow("Unified metaformat | Script")
+ << ":///data/repository-unifiedmeta-script" << "org.qtproject.ifw.example"
+ << PackageManagerCore::Success;
+ QTest::newRow("Non-existing component")
+ << ":///data/repository-unifiedmeta-script" << "a.dummy.component"
+ << PackageManagerCore::Canceled;
+ QTest::newRow("Invalid repository")
+ << ":///data/repository-invalid" << "a.dummy.component"
+ << PackageManagerCore::Failure;
+ }
+
+ void testCreateOfflineInstaller()
+ {
+ QFETCH(QString, repository);
+ QFETCH(QString, component);
+ QFETCH(PackageManagerCore::Status, expectedStatus);
+
+ PackageManagerCore *core = PackageManager::getPackageManagerWithInit(m_targetDir, repository);
+ core->setCommandLineInstance(true);
+ core->setOfflineBaseBinary(m_installerBase);
+ core->setOfflineBinaryName("ifw_test_offline");
+ core->setAutoAcceptLicenses();
+
+ // Replace the custom message handler installed in QInstaller::init() to suppress all output
+ qInstallMessageHandler(silentTestMessageHandler);
+
+ QCOMPARE(expectedStatus, core->createOfflineInstaller(QStringList() << component));
+
+ if (expectedStatus == PackageManagerCore::Success) {
+#ifdef Q_OS_LINUX
+ QVERIFY(QFile::exists(m_targetDir + QDir::separator() + "ifw_test_offline"));
+#elif defined Q_OS_MACOS
+ QVERIFY(QFile::exists(m_targetDir + QDir::separator() + "ifw_test_offline.dmg"));
+#elif defined Q_OS_WIN
+ QVERIFY(QFile::exists(m_targetDir + QDir::separator() + "ifw_test_offline.exe"));
+#endif
+ }
+ }
+
+ void testCreateOfflineWithUnstableComponent_data()
+ {
+ QTest::addColumn<QString>("repository");
+ QTest::addColumn<QString>("component");
+ QTest::addColumn<bool>("allowUnstable");
+ QTest::addColumn<PackageManagerCore::Status>("expectedStatus");
+ QTest::newRow("Allow unstable | Missing dependency with selected component")
+ << ":///data/repository-missingdependency" << "example.with.unstable.dependency"
+ << true << PackageManagerCore::Canceled;
+ QTest::newRow("Disallow unstable | Missing dependency with selected component")
+ << ":///data/repository-missingdependency" << "example.with.unstable.dependency"
+ << false << PackageManagerCore::Failure;
+ QTest::newRow("Allow unstable | Missing dependency with other component")
+ << ":///data/repository-missingdependency" << "example.without.unstable.dependency"
+ << true << PackageManagerCore::Success;
+ QTest::newRow("Disallow unstable | Missing dependency with other component")
+ << ":///data/repository-missingdependency" << "example.without.unstable.dependency"
+ << false << PackageManagerCore::Failure;
+ }
+
+ void testCreateOfflineWithUnstableComponent()
+ {
+ QFETCH(QString, repository);
+ QFETCH(QString, component);
+ QFETCH(bool, allowUnstable);
+ QFETCH(PackageManagerCore::Status, expectedStatus);
+
+ PackageManagerCore *core = PackageManager::getPackageManagerWithInit(m_targetDir, repository);
+ core->setCommandLineInstance(true);
+ core->setOfflineBaseBinary(m_installerBase);
+ core->setOfflineBinaryName("ifw_test_offline");
+ core->settings().setAllowUnstableComponents(allowUnstable);
+ core->autoAcceptMessageBoxes();
+
+ // Replace the custom message handler installed in QInstaller::init() to suppress all output
+ qInstallMessageHandler(silentTestMessageHandler);
+
+ QCOMPARE(expectedStatus, core->createOfflineInstaller(QStringList() << component));
+ }
+
+private:
+ QString m_targetDir;
+ QString m_installerBase;
+};
+
+QTEST_GUILESS_MAIN(tst_CreateOffline)
+
+#include "tst_createoffline.moc"