Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / src / imports / testlib / main.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
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 "QtQuick/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
107     QDeclarativeV8Handle callerFile(int frameIndex = 0) const
108     {
109         v8::Local<v8::StackTrace> stacks = v8::StackTrace::CurrentStackTrace(10, v8::StackTrace::kDetailed);
110         int count = stacks->GetFrameCount();
111         if (count >= frameIndex + 1) {
112             v8::Local<v8::StackFrame> frame = stacks->GetFrame(frameIndex + 1);
113             return QDeclarativeV8Handle::fromHandle(frame->GetScriptNameOrSourceURL());
114         }
115         return QDeclarativeV8Handle();
116     }
117     int callerLine(int frameIndex = 0) const
118     {
119         v8::Local<v8::StackTrace> stacks = v8::StackTrace::CurrentStackTrace(10, v8::StackTrace::kDetailed);
120         int count = stacks->GetFrameCount();
121         if (count >= frameIndex + 1) {
122             v8::Local<v8::StackFrame> frame = stacks->GetFrame(frameIndex + 1);
123             return frame->GetLineNumber();
124         }
125         return -1;
126     }
127 };
128
129 QT_END_NAMESPACE
130
131 QML_DECLARE_TYPE(QuickTestUtil)
132
133 QT_BEGIN_NAMESPACE
134
135 class QTestQmlModule : public QDeclarativeExtensionPlugin
136 {
137     Q_OBJECT
138 public:
139     virtual void registerTypes(const char *uri)
140     {
141         Q_ASSERT(QLatin1String(uri) == QLatin1String("QtTest"));
142         qmlRegisterType<QuickTestResult>(uri,1,0,"TestResult");
143         qmlRegisterType<QuickTestEvent>(uri,1,0,"TestEvent");
144         qmlRegisterType<QuickTestUtil>(uri,1,0,"TestUtil");
145     }
146
147     void initializeEngine(QDeclarativeEngine *, const char *)
148     {
149     }
150 };
151
152 QT_END_NAMESPACE
153
154 #include "main.moc"
155
156 Q_EXPORT_PLUGIN2(qmltestplugin, QT_PREPEND_NAMESPACE(QTestQmlModule))