37ef8880cc5758d405f5473f3e7b7b88873ca32b
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / parserstress / tst_parserstress.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
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     QFETCH(QString, file);
103
104     QFile f(file);
105     QVERIFY(f.open(QIODevice::ReadOnly));
106
107     QByteArray data = f.readAll();
108
109     QVERIFY(!data.isEmpty());
110
111     QString dataStr = QString::fromUtf8(data);
112
113     QString qml = "import QtQuick 1.0\n";
114             qml+= "\n";
115             qml+= "QtObject {\n";
116             qml+= "    property int test\n";
117             qml+= "    test: {\n";
118             qml+= dataStr + "\n";
119             qml+= "        return 1;\n";
120             qml+= "    }\n";
121             qml+= "    function stress() {\n";
122             qml+= dataStr;
123             qml+= "    }\n";
124             qml+= "}\n";
125
126     QByteArray qmlData = qml.toUtf8();
127
128     QDeclarativeComponent component(&engine);
129     
130     component.setData(qmlData, QUrl::fromLocalFile(SRCDIR + QString("/dummy.qml")));
131
132     QFileInfo info(file);
133
134     if (info.fileName() == QLatin1String("regress-352044-02-n.js")) {
135         QVERIFY(component.isError());
136
137         QCOMPARE(component.errors().length(), 2);
138
139         QCOMPARE(component.errors().at(0).description(), QString("Expected token `;'"));
140         QCOMPARE(component.errors().at(0).line(), 66);
141
142         QCOMPARE(component.errors().at(1).description(), QString("Expected token `;'"));
143         QCOMPARE(component.errors().at(1).line(), 142);
144
145     } else {
146
147         QVERIFY(!component.isError());
148     }
149 }
150
151
152 QTEST_MAIN(tst_parserstress)
153
154 #include "tst_parserstress.moc"