Remove SkipMode from qtestlib API.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / parserstress / tst_parserstress.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
42 #include <qtest.h>
43 #include <QDeclarativeEngine>
44 #include <QDeclarativeComponent>
45 #include <QDebug>
46 #include <QDir>
47 #include <QFile>
48
49 class tst_parserstress : public QObject
50 {
51     Q_OBJECT
52 public:
53     tst_parserstress() {}
54
55 private slots:
56     void ecmascript_data();
57     void ecmascript();
58
59 private:
60     static QStringList findJSFiles(const QDir &);
61     QDeclarativeEngine engine;
62 };
63
64 QStringList tst_parserstress::findJSFiles(const QDir &d)
65 {
66     QStringList rv;
67
68     QStringList files = d.entryList(QStringList() << QLatin1String("*.js"),
69                                     QDir::Files);
70     foreach (const QString &file, files) {
71         if (file == "browser.js")
72             continue;
73         rv << d.absoluteFilePath(file);
74     }
75
76     QStringList dirs = d.entryList(QDir::Dirs | QDir::NoDotAndDotDot |
77                                    QDir::NoSymLinks);
78     foreach (const QString &dir, dirs) {
79         QDir sub = d;
80         sub.cd(dir);
81         rv << findJSFiles(sub);
82     }
83
84     return rv;
85 }
86
87 void tst_parserstress::ecmascript_data()
88 {
89 #ifdef TESTDATADIR
90     QDir dir(TESTDATADIR);
91     QStringList files = findJSFiles(dir);
92
93     QTest::addColumn<QString>("file");
94     foreach (const QString &file, files) {
95         QTest::newRow(qPrintable(file)) << file;
96     }
97 #endif
98 }
99
100 void tst_parserstress::ecmascript()
101 {
102 #ifndef TESTDATADIR
103     QSKIP("Needs QtScript sources");
104 #else
105
106     QFETCH(QString, file);
107
108     QFile f(file);
109     QVERIFY(f.open(QIODevice::ReadOnly));
110
111     QByteArray data = f.readAll();
112
113     QVERIFY(!data.isEmpty());
114
115     QString dataStr = QString::fromUtf8(data);
116
117     QString qml = "import QtQuick 1.0\n";
118             qml+= "\n";
119             qml+= "QtObject {\n";
120             qml+= "    property int test\n";
121             qml+= "    test: {\n";
122             qml+= dataStr + "\n";
123             qml+= "        return 1;\n";
124             qml+= "    }\n";
125             qml+= "    function stress() {\n";
126             qml+= dataStr;
127             qml+= "    }\n";
128             qml+= "}\n";
129
130     QByteArray qmlData = qml.toUtf8();
131
132     QDeclarativeComponent component(&engine);
133     
134     component.setData(qmlData, QUrl::fromLocalFile(SRCDIR + QString("/dummy.qml")));
135
136     QFileInfo info(file);
137
138     if (info.fileName() == QLatin1String("regress-352044-02-n.js")) {
139         QVERIFY(component.isError());
140
141         QCOMPARE(component.errors().length(), 2);
142
143         QCOMPARE(component.errors().at(0).description(), QString("Expected token `;'"));
144         QCOMPARE(component.errors().at(0).line(), 66);
145
146         QCOMPARE(component.errors().at(1).description(), QString("Expected token `;'"));
147         QCOMPARE(component.errors().at(1).line(), 142);
148
149     } else {
150
151         QVERIFY(!component.isError());
152     }
153 #endif // ifdef TESTDATADIR
154 }
155
156
157 QTEST_MAIN(tst_parserstress)
158
159 #include "tst_parserstress.moc"