f56f9d96df6bddce9c35416f1da13db4d3a71b1e
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeexpression / tst_qdeclarativeexpression.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 <QtDeclarative/qdeclarativeengine.h>
44 #include <QtDeclarative/qdeclarativecomponent.h>
45 #include <QtDeclarative/qdeclarativeexpression.h>
46 #include <QtDeclarative/qdeclarativescriptstring.h>
47 #include "../../shared/util.h"
48
49 class tst_qdeclarativeexpression : public QDeclarativeDataTest
50 {
51     Q_OBJECT
52 public:
53     tst_qdeclarativeexpression() {}
54
55 private slots:
56     void scriptString();
57     void syntaxError();
58 };
59
60 class TestObject : public QObject
61 {
62     Q_OBJECT
63     Q_PROPERTY(QDeclarativeScriptString scriptString READ scriptString WRITE setScriptString)
64     Q_PROPERTY(QDeclarativeScriptString scriptStringError READ scriptStringError WRITE setScriptStringError)
65 public:
66     TestObject(QObject *parent = 0) : QObject(parent) {}
67
68     QDeclarativeScriptString scriptString() const { return m_scriptString; }
69     void setScriptString(QDeclarativeScriptString scriptString) { m_scriptString = scriptString; }
70
71     QDeclarativeScriptString scriptStringError() const { return m_scriptStringError; }
72     void setScriptStringError(QDeclarativeScriptString scriptString) { m_scriptStringError = scriptString; }
73
74 private:
75     QDeclarativeScriptString m_scriptString;
76     QDeclarativeScriptString m_scriptStringError;
77 };
78
79 QML_DECLARE_TYPE(TestObject)
80
81 void tst_qdeclarativeexpression::scriptString()
82 {
83     qmlRegisterType<TestObject>("Test", 1, 0, "TestObject");
84
85     QDeclarativeEngine engine;
86     QDeclarativeComponent c(&engine, testFileUrl("scriptString.qml"));
87     TestObject *testObj = qobject_cast<TestObject*>(c.create());
88     QVERIFY(testObj != 0);
89
90     QDeclarativeScriptString script = testObj->scriptString();
91     QCOMPARE(script.script(), QLatin1String("value1 + value2"));
92
93     QDeclarativeExpression expression(script);
94     QVariant value = expression.evaluate();
95     QCOMPARE(value.toInt(), 15);
96
97     QDeclarativeScriptString scriptError = testObj->scriptStringError();
98     QCOMPARE(scriptError.script(), QLatin1String("value3 * 5"));
99
100     //verify that the expression has the correct error location information
101     QDeclarativeExpression expressionError(scriptError);
102     QVariant valueError = expressionError.evaluate();
103     QVERIFY(!valueError.isValid());
104     QVERIFY(expressionError.hasError());
105     QDeclarativeError error = expressionError.error();
106     QCOMPARE(error.url(), c.url());
107     QCOMPARE(error.line(), 8);
108 }
109
110 // QTBUG-21310 - crash test
111 void tst_qdeclarativeexpression::syntaxError()
112 {
113     QDeclarativeEngine engine;
114     QDeclarativeExpression expression(engine.rootContext(), 0, "asd asd");
115     QVariant v = expression.evaluate();
116     QCOMPARE(v, QVariant());
117 }
118
119 QTEST_MAIN(tst_qdeclarativeexpression)
120
121 #include "tst_qdeclarativeexpression.moc"