Declarative: Fix compiler warnings.
[profile/ivi/qtdeclarative.git] / src / imports / testlib / main.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 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 <QtDeclarative/qdeclarativeextensionplugin.h>
43 #include <QtDeclarative/qdeclarative.h>
44 #include <QtDeclarative/qjsvalue.h>
45 #include <QtDeclarative/qjsengine.h>
46 #include "QtQuickTest/private/quicktestresult_p.h"
47 #include "QtQuickTest/private/quicktestevent_p.h"
48 #include "private/qtestoptions_p.h"
49 #include "QtDeclarative/qquickitem.h"
50 #include <QtDeclarative/private/qdeclarativeengine_p.h>
51
52 QML_DECLARE_TYPE(QuickTestResult)
53 QML_DECLARE_TYPE(QuickTestEvent)
54
55 #include <QtDebug>
56
57 QT_BEGIN_NAMESPACE
58
59 class QuickTestUtil : public QObject
60 {
61     Q_OBJECT
62     Q_PROPERTY(bool printAvailableFunctions READ printAvailableFunctions NOTIFY printAvailableFunctionsChanged)
63     Q_PROPERTY(bool wrapper READ wrapper NOTIFY wrapperChanged)
64 public:
65     QuickTestUtil(QObject *parent = 0)
66         :QObject(parent)
67     {}
68
69     ~QuickTestUtil()
70     {}
71     bool printAvailableFunctions() const
72     {
73         return QTest::printAvailableFunctions;
74     }
75     bool wrapper() const
76     {
77         return true;
78     }
79 Q_SIGNALS:
80     void printAvailableFunctionsChanged();
81     void wrapperChanged();
82 public Q_SLOTS:
83
84     QDeclarativeV8Handle typeName(const QVariant& v) const
85     {
86         QString name(v.typeName());
87         //qDebug() << "type:" << name  << " string value:" << v.toString() << " value:" << v;
88         if (v.canConvert<QObject*>()) {
89             QDeclarativeType *type = 0;
90             const QMetaObject *mo = v.value<QObject*>()->metaObject();
91             while (!type && mo) {
92                 type = QDeclarativeMetaType::qmlType(mo);
93                 mo = mo->superClass();
94             }
95             if (type) {
96                 name = type->qmlTypeName();
97             }
98         }
99
100         return QDeclarativeV8Handle::fromHandle(v8::String::New(name.toUtf8()));
101     }
102
103     bool compare(const QVariant& act, const QVariant& exp) const {
104         return act == exp;
105     }
106 //    QDeclarativeV8Handle toString(const QVariant& v) const
107 //    {
108 //        QString name(v.typeName());
109
110 //        if (v.canConvert<QObject*>()) {
111 //            QDeclarativeType *type = 0;
112 //            const QMetaObject *mo = v.value<QObject*>()->metaObject();
113 //            while (!type && mo) {
114 //                type = QDeclarativeMetaType::qmlType(mo);
115 //                mo = mo->superClass();
116 //            }
117 //            if (type) {
118 //                name = type->qmlTypeName();
119 //            }
120 //        }
121
122 //        return QDeclarativeV8Handle::fromHandle(v8::String::New(name.toUtf8()));
123 //    }
124
125     QDeclarativeV8Handle callerFile(int frameIndex = 0) const
126     {
127         v8::HandleScope scope;
128
129         v8::Local<v8::StackTrace> stacks = v8::StackTrace::CurrentStackTrace(10, v8::StackTrace::kDetailed);
130         int count = stacks->GetFrameCount();
131         if (count >= frameIndex + 2) {
132             v8::Local<v8::StackFrame> frame = stacks->GetFrame(frameIndex + 2);
133             return QDeclarativeV8Handle::fromHandle(frame->GetScriptNameOrSourceURL());
134         }
135         return QDeclarativeV8Handle();
136     }
137     int callerLine(int frameIndex = 0) const
138     {
139         v8::HandleScope scope;
140         v8::Local<v8::StackTrace> stacks = v8::StackTrace::CurrentStackTrace(10, v8::StackTrace::kDetailed);
141         int count = stacks->GetFrameCount();
142         if (count >= frameIndex + 2) {
143             v8::Local<v8::StackFrame> frame = stacks->GetFrame(frameIndex + 2);
144             return frame->GetLineNumber();
145         }
146         return -1;
147     }
148 };
149
150 QT_END_NAMESPACE
151
152 QML_DECLARE_TYPE(QuickTestUtil)
153
154 QT_BEGIN_NAMESPACE
155
156 class QTestQmlModule : public QDeclarativeExtensionPlugin
157 {
158     Q_OBJECT
159 public:
160     virtual void registerTypes(const char *uri)
161     {
162         Q_ASSERT(QLatin1String(uri) == QLatin1String("QtTest"));
163         qmlRegisterType<QuickTestResult>(uri,1,0,"TestResult");
164         qmlRegisterType<QuickTestEvent>(uri,1,0,"TestEvent");
165         qmlRegisterType<QuickTestUtil>(uri,1,0,"TestUtil");
166     }
167
168     void initializeEngine(QDeclarativeEngine *, const char *)
169     {
170     }
171 };
172
173 QT_END_NAMESPACE
174
175 #include "main.moc"
176
177 Q_EXPORT_PLUGIN2(qmltestplugin, QT_PREPEND_NAMESPACE(QTestQmlModule))