0f271027649a45045726f6ffdab4fe5fb77fce01
[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     QDeclarativeV8Handle callerFile(int frameIndex = 0) const
83     {
84         v8::HandleScope scope;
85
86         v8::Local<v8::StackTrace> stacks = v8::StackTrace::CurrentStackTrace(10, v8::StackTrace::kDetailed);
87         int count = stacks->GetFrameCount();
88         if (count >= frameIndex + 2) {
89             v8::Local<v8::StackFrame> frame = stacks->GetFrame(frameIndex + 2);
90             return QDeclarativeV8Handle::fromHandle(frame->GetScriptNameOrSourceURL());
91         }
92         return QDeclarativeV8Handle();
93     }
94     int callerLine(int frameIndex = 0) const
95     {
96         v8::HandleScope scope;
97         v8::Local<v8::StackTrace> stacks = v8::StackTrace::CurrentStackTrace(10, v8::StackTrace::kDetailed);
98         int count = stacks->GetFrameCount();
99         if (count >= frameIndex + 2) {
100             v8::Local<v8::StackFrame> frame = stacks->GetFrame(frameIndex + 2);
101             return frame->GetLineNumber();
102         }
103         return -1;
104     }
105 };
106 QML_DECLARE_TYPE(QuickTestUtil)
107
108 class QTestQmlModule : public QDeclarativeExtensionPlugin
109 {
110     Q_OBJECT
111 public:
112     virtual void registerTypes(const char *uri)
113     {
114         Q_ASSERT(QLatin1String(uri) == QLatin1String("QtTest"));
115         qmlRegisterType<QuickTestResult>(uri,1,0,"TestResult");
116         qmlRegisterType<QuickTestEvent>(uri,1,0,"TestEvent");
117         qmlRegisterType<QuickTestUtil>(uri,1,0,"TestUtil");
118     }
119
120     void initializeEngine(QDeclarativeEngine *engine, const char *)
121     {
122     }
123 };
124
125 QT_END_NAMESPACE
126
127 #include "main.moc"
128
129 Q_EXPORT_PLUGIN2(qmltestplugin, QT_PREPEND_NAMESPACE(QTestQmlModule));