Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick1 / moduleqt47 / tst_moduleqt47.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 #include <qtest.h>
42 #include <QDir>
43 #include <QtDeclarative/qdeclarativeengine.h>
44 #include <QtDeclarative/qdeclarativecomponent.h>
45 #include <QDebug>
46
47 class tst_moduleqt47 : public QObject
48 {
49     Q_OBJECT
50 public:
51     tst_moduleqt47();
52
53 private slots:
54     void create();
55
56     void accidentalImport_data();
57     void accidentalImport();
58
59 private:
60     QStringList findFiles(const QDir &d);
61
62     QDeclarativeEngine engine;
63     QStringList excludedFiles;
64 };
65
66 tst_moduleqt47::tst_moduleqt47()
67 {
68     excludedFiles << "tests/auto/qtquick1/moduleqt47/data/importqt47.qml"
69                   << "doc/src/declarative/whatsnew.qdoc"
70                   << "doc/src/qtquick1/whatsnew.qdoc";
71 }
72
73 void tst_moduleqt47::create()
74 {
75     QDeclarativeEngine engine;
76     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/importqt47.qml"));
77     QObject *obj = qobject_cast<QObject*>(c.create());
78     if (!obj)
79         qWarning() << c.errorString();
80
81     QVERIFY(obj != 0);
82     delete obj;
83 }
84
85 QStringList tst_moduleqt47::findFiles(const QDir &d)
86 {
87     QStringList rv;
88
89     QStringList files = d.entryList(QStringList() << QLatin1String("*.qml") << QLatin1String("*.qdoc"), QDir::Files);
90     foreach (const QString &file, files) {
91
92         QString absFile = d.absoluteFilePath(file);
93
94         bool skip = false;
95         for (int ii = 0; !skip && ii < excludedFiles.count(); ++ii) 
96             skip = (absFile.endsWith(excludedFiles.at(ii)));
97
98         if (!skip)
99             rv << absFile;
100     }
101
102     QStringList dirs = d.entryList(QDir::Dirs | QDir::NoDotAndDotDot | QDir::NoSymLinks);
103     foreach (const QString &dir, dirs) {
104         QDir sub = d;
105         sub.cd(dir);
106         rv << findFiles(sub);
107     }
108
109     return rv;
110 }
111
112 void tst_moduleqt47::accidentalImport_data()
113 {
114     QTest::addColumn<QString>("file");
115     QStringList files = findFiles(QDir(SRCDIR "/../../../../"));
116
117     foreach(const QString &file, files) 
118         QTest::newRow(qPrintable(file)) << file;
119 }
120
121 void tst_moduleqt47::accidentalImport()
122 {
123     QFETCH(QString, file);
124
125     QFile f(file);
126     if (!f.open(QIODevice::ReadOnly))
127         return;
128     QByteArray data = f.readAll();
129
130     if (data.contains("import Qt 4"))
131         qDebug() << file;
132     QVERIFY(!data.contains("import Qt 4"));
133 }
134
135 QTEST_MAIN(tst_moduleqt47)
136
137 #include "tst_moduleqt47.moc"