190 lines
6.6 KiB
C++
190 lines
6.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
**
|
|
** $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 "util.h"
|
|
|
|
#include <qtest.h>
|
|
#include <QLibraryInfo>
|
|
#include <QDir>
|
|
#include <QProcess>
|
|
#include <QDebug>
|
|
#include <cstdlib>
|
|
|
|
class tst_qmlplugindump : public QQmlDataTest
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
tst_qmlplugindump();
|
|
|
|
private slots:
|
|
void initTestCase();
|
|
void builtins();
|
|
void singleton();
|
|
void compositeWithinSingleton();
|
|
void compositeWithEnum();
|
|
|
|
void plugin_data();
|
|
void plugin();
|
|
|
|
private:
|
|
QString qmlplugindumpPath;
|
|
};
|
|
|
|
tst_qmlplugindump::tst_qmlplugindump()
|
|
{
|
|
}
|
|
|
|
void tst_qmlplugindump::initTestCase()
|
|
{
|
|
QQmlDataTest::initTestCase();
|
|
qmlplugindumpPath = QLibraryInfo::location(QLibraryInfo::BinariesPath);
|
|
|
|
#if defined(Q_OS_WIN)
|
|
qmlplugindumpPath += QLatin1String("/qmlplugindump.exe");
|
|
#else
|
|
qmlplugindumpPath += QLatin1String("/qmlplugindump");
|
|
#endif
|
|
|
|
if (!QFileInfo(qmlplugindumpPath).exists()) {
|
|
QString message = QString::fromLatin1("qmlplugindump executable not found (looked for %0)")
|
|
.arg(qmlplugindumpPath);
|
|
QFAIL(qPrintable(message));
|
|
}
|
|
}
|
|
|
|
void tst_qmlplugindump::builtins()
|
|
{
|
|
QProcess dumper;
|
|
QStringList args;
|
|
args += QLatin1String("-builtins");
|
|
dumper.start(qmlplugindumpPath, args);
|
|
dumper.waitForFinished();
|
|
|
|
if (dumper.error() != QProcess::UnknownError
|
|
|| dumper.exitStatus() != QProcess::NormalExit) {
|
|
qWarning() << QString("Error while running '%1 %2'").arg(
|
|
qmlplugindumpPath, args.join(QLatin1Char(' ')));
|
|
}
|
|
|
|
if (dumper.error() == QProcess::FailedToStart) {
|
|
QFAIL("failed to start");
|
|
}
|
|
if (dumper.error() == QProcess::Crashed) {
|
|
qWarning() << "stderr:\n" << dumper.readAllStandardError();
|
|
QFAIL("crashed");
|
|
}
|
|
|
|
QCOMPARE(dumper.error(), QProcess::UnknownError);
|
|
QCOMPARE(dumper.exitStatus(), QProcess::NormalExit);
|
|
|
|
const QString &result = dumper.readAllStandardOutput();
|
|
QVERIFY(result.contains(QLatin1String("Module {")));
|
|
}
|
|
|
|
void tst_qmlplugindump::singleton()
|
|
{
|
|
QProcess dumper;
|
|
QStringList args;
|
|
args << QLatin1String("dumper.CompositeSingleton") << QLatin1String("1.0")
|
|
<< QLatin1String(QT_QMLTEST_DIR "/data");
|
|
dumper.start(qmlplugindumpPath, args);
|
|
QVERIFY2(dumper.waitForStarted(), qPrintable(dumper.errorString()));
|
|
QVERIFY2(dumper.waitForFinished(), qPrintable(dumper.errorString()));
|
|
|
|
const QString &result = dumper.readAllStandardOutput();
|
|
QVERIFY2(result.contains(QLatin1String("exports: [\"Singleton 1.0\"]")), qPrintable(result));
|
|
QVERIFY2(result.contains(QLatin1String("exportMetaObjectRevisions: [0]")), qPrintable(result));
|
|
}
|
|
|
|
void tst_qmlplugindump::compositeWithinSingleton()
|
|
{
|
|
QProcess dumper;
|
|
QStringList args;
|
|
args << QLatin1String("dumper.CompositeWithinSingleton") << QLatin1String("1.0")
|
|
<< QLatin1String(QT_QMLTEST_DIR "/data");
|
|
dumper.start(qmlplugindumpPath, args);
|
|
QVERIFY2(dumper.waitForStarted(), qPrintable(dumper.errorString()));
|
|
QVERIFY2(dumper.waitForFinished(), qPrintable(dumper.errorString()));
|
|
|
|
const QString &result = dumper.readAllStandardOutput();
|
|
QVERIFY2(result.contains(QLatin1String("exports: [\"Composite 1.0\"]")), qPrintable(result));
|
|
QVERIFY2(result.contains(QLatin1String("exportMetaObjectRevisions: [0]")), qPrintable(result));
|
|
}
|
|
|
|
void tst_qmlplugindump::compositeWithEnum()
|
|
{
|
|
QProcess dumper;
|
|
QStringList args;
|
|
args << QLatin1String("dumper.CompositeWithEnum") << QLatin1String("1.0")
|
|
<< QLatin1String(QT_QMLTEST_DIR "/data");
|
|
dumper.start(qmlplugindumpPath, args);
|
|
QVERIFY2(dumper.waitForStarted(), qPrintable(dumper.errorString()));
|
|
QVERIFY2(dumper.waitForFinished(), qPrintable(dumper.errorString()));
|
|
|
|
const QString &result = dumper.readAllStandardOutput();
|
|
QVERIFY2(result.contains(QLatin1String("exports: [\"Animal 1.0\"]")), qPrintable(result));
|
|
QVERIFY2(result.contains(QLatin1String("Enum {")), qPrintable(result));
|
|
}
|
|
|
|
void tst_qmlplugindump::plugin_data()
|
|
{
|
|
QTest::addColumn<QString>("import");
|
|
QTest::addColumn<QString>("version");
|
|
QTest::addColumn<QString>("expectedPath");
|
|
|
|
QTest::newRow("dumper.Dummy") << "dumper.Dummy" << "1.0" << testFile("dumper/Dummy/plugins.qmltypes");
|
|
QTest::newRow("dumper.Imports") << "dumper.Imports" << "1.0" << testFile("dumper/Imports/plugins.qmltypes");
|
|
QTest::newRow("dumper.Versions") << "dumper.Versions" << "1.1" << testFile("dumper/Versions/plugins.qmltypes");
|
|
QTest::newRow("dumper.ExtendedType") << "dumper.ExtendedType"
|
|
<< "1.1" << testFile("dumper/ExtendedType/plugins.qmltypes");
|
|
}
|
|
|
|
void tst_qmlplugindump::plugin()
|
|
{
|
|
QFETCH(QString, import);
|
|
QFETCH(QString, version);
|
|
QFETCH(QString, expectedPath);
|
|
|
|
QProcess dumper;
|
|
dumper.setWorkingDirectory(dataDirectory());
|
|
QStringList args = { QLatin1String("-nonrelocatable"), QLatin1String("-noforceqtquick"), import, version, QLatin1String(".") };
|
|
dumper.start(qmlplugindumpPath, args);
|
|
QVERIFY2(dumper.waitForStarted(), qPrintable(dumper.errorString()));
|
|
QVERIFY2(dumper.waitForFinished(), qPrintable(dumper.errorString()));
|
|
|
|
const QString &result = dumper.readAllStandardOutput();
|
|
QFile expectedFile(expectedPath);
|
|
QVERIFY2(expectedFile.open(QIODevice::ReadOnly), qPrintable(expectedFile.errorString()));
|
|
const QString expected = expectedFile.readAll();
|
|
QCOMPARE(result, expected);
|
|
}
|
|
|
|
QTEST_MAIN(tst_qmlplugindump)
|
|
|
|
#include "tst_qmlplugindump.moc"
|