Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlplugindump / tst_qmlplugindump.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include <qtest.h>
43 #include <QLibraryInfo>
44 #include <QDir>
45 #include <QProcess>
46 #include <QDebug>
47 #include <cstdlib>
48
49 class tst_qmlplugindump : public QObject
50 {
51     Q_OBJECT
52 public:
53     tst_qmlplugindump();
54
55 private slots:
56     void initTestCase();
57     void builtins();
58
59 private:
60     QString qmlplugindumpPath;
61 };
62
63 tst_qmlplugindump::tst_qmlplugindump()
64 {
65 }
66
67 void tst_qmlplugindump::initTestCase()
68 {
69     qmlplugindumpPath = QLibraryInfo::location(QLibraryInfo::BinariesPath);
70
71 #if defined(Q_OS_MAC)
72     qmlplugindumpPath += QLatin1String("/qmlplugindump.app/Contents/MacOS/qmlplugindump");
73 #elif defined(Q_OS_WIN)
74     qmlplugindumpPath += QLatin1String("/qmlplugindump.exe");
75 #else
76     qmlplugindumpPath += QLatin1String("/qmlplugindump");
77 #endif
78
79     if (!QFileInfo(qmlplugindumpPath).exists()) {
80         QString message = QString::fromLatin1("qmlplugindump executable not found (looked for %0)")
81                 .arg(qmlplugindumpPath);
82         QFAIL(qPrintable(message));
83     }
84 }
85
86 void tst_qmlplugindump::builtins()
87 {
88     QProcess dumper;
89     QStringList args;
90     args += QLatin1String("-builtins");
91     dumper.start(qmlplugindumpPath, args);
92     dumper.waitForFinished();
93
94     if (dumper.error() != QProcess::UnknownError
95             || dumper.exitStatus() != QProcess::NormalExit) {
96         qWarning() << QString("Error while running '%1 %2'").arg(
97                           qmlplugindumpPath, args.join(QLatin1String(" ")));
98     }
99
100     if (dumper.error() == QProcess::FailedToStart) {
101         QFAIL("failed to start");
102     }
103     if (dumper.error() == QProcess::Crashed) {
104         qWarning() << "stderr:\n" << dumper.readAllStandardError();
105         QFAIL("crashed");
106     }
107
108     QCOMPARE(dumper.error(), QProcess::UnknownError);
109     QCOMPARE(dumper.exitStatus(), QProcess::NormalExit);
110
111     const QString &result = dumper.readAllStandardOutput();
112     QVERIFY(result.contains(QLatin1String("Module {")));
113 }
114
115 QTEST_MAIN(tst_qmlplugindump)
116
117 #include "tst_qmlplugindump.moc"