0e2490a3cf004458c81905229b7163682df44bbd
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick1 / moduleqt47 / tst_moduleqt47.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
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 #ifdef Q_OS_SYMBIAN
48 // In Symbian OS test data is located in applications private dir
49 #define SRCDIR "."
50 #endif
51
52 class tst_moduleqt47 : public QObject
53 {
54     Q_OBJECT
55 public:
56     tst_moduleqt47();
57
58 private slots:
59     void create();
60
61     void accidentalImport_data();
62     void accidentalImport();
63
64 private:
65     QStringList findFiles(const QDir &d);
66
67     QDeclarativeEngine engine;
68     QStringList excludedFiles;
69 };
70
71 tst_moduleqt47::tst_moduleqt47()
72 {
73     excludedFiles << "tests/auto/qtquick1/moduleqt47/data/importqt47.qml"
74                   << "doc/src/declarative/whatsnew.qdoc"
75                   << "doc/src/qtquick1/whatsnew.qdoc";
76 }
77
78 void tst_moduleqt47::create()
79 {
80     QDeclarativeEngine engine;
81     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/importqt47.qml"));
82     QObject *obj = qobject_cast<QObject*>(c.create());
83     if (!obj)
84         qWarning() << c.errorString();
85
86     QVERIFY(obj != 0);
87     delete obj;
88 }
89
90 QStringList tst_moduleqt47::findFiles(const QDir &d)
91 {
92     QStringList rv;
93
94     QStringList files = d.entryList(QStringList() << QLatin1String("*.qml") << QLatin1String("*.qdoc"), QDir::Files);
95     foreach (const QString &file, files) {
96
97         QString absFile = d.absoluteFilePath(file);
98
99         bool skip = false;
100         for (int ii = 0; !skip && ii < excludedFiles.count(); ++ii) 
101             skip = (absFile.endsWith(excludedFiles.at(ii)));
102
103         if (!skip)
104             rv << absFile;
105     }
106
107     QStringList dirs = d.entryList(QDir::Dirs | QDir::NoDotAndDotDot | QDir::NoSymLinks);
108     foreach (const QString &dir, dirs) {
109         QDir sub = d;
110         sub.cd(dir);
111         rv << findFiles(sub);
112     }
113
114     return rv;
115 }
116
117 void tst_moduleqt47::accidentalImport_data()
118 {
119     QTest::addColumn<QString>("file");
120     QStringList files = findFiles(QDir(SRCDIR "/../../../../"));
121
122     foreach(const QString &file, files) 
123         QTest::newRow(qPrintable(file)) << file;
124 }
125
126 void tst_moduleqt47::accidentalImport()
127 {
128     QFETCH(QString, file);
129
130     QFile f(file);
131     if (!f.open(QIODevice::ReadOnly))
132         return;
133     QByteArray data = f.readAll();
134
135     if (data.contains("import Qt 4"))
136         qDebug() << file;
137     QVERIFY(!data.contains("import Qt 4"));
138 }
139
140 QTEST_MAIN(tst_moduleqt47)
141
142 #include "tst_moduleqt47.moc"