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