Fixed parserstress test.
[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 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
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", SkipAll);
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"