1 /****************************************************************************
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
6 ** This file is part of the test suite of the Qt Toolkit.
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.
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.
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.
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.
40 ****************************************************************************/
42 #include <QtQml/qqmlextensionplugin.h>
43 #include <QtQml/qqml.h>
44 #include <QtQml/qjsvalue.h>
45 #include <QtQml/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 <QtQml/private/qqmlengine_p.h>
51 #include <QtGui/QGuiApplication>
52 #include <QtGui/qstylehints.h>
54 QML_DECLARE_TYPE(QuickTestResult)
55 QML_DECLARE_TYPE(QuickTestEvent)
61 class QuickTestUtil : public QObject
64 Q_PROPERTY(bool printAvailableFunctions READ printAvailableFunctions NOTIFY printAvailableFunctionsChanged)
65 Q_PROPERTY(int dragThreshold READ dragThreshold NOTIFY dragThresholdChanged)
67 QuickTestUtil(QObject *parent = 0)
73 bool printAvailableFunctions() const
75 return QTest::printAvailableFunctions;
77 int dragThreshold() const { return qApp->styleHints()->startDragDistance(); }
80 void printAvailableFunctionsChanged();
81 void dragThresholdChanged();
85 QQmlV8Handle typeName(const QVariant& v) const
87 QString name(v.typeName());
88 if (v.canConvert<QObject*>()) {
90 const QMetaObject *mo = v.value<QObject*>()->metaObject();
92 type = QQmlMetaType::qmlType(mo);
93 mo = mo->superClass();
96 name = type->qmlTypeName();
100 return QQmlV8Handle::fromHandle(v8::String::New(name.toUtf8()));
103 bool compare(const QVariant& act, const QVariant& exp) const {
107 QQmlV8Handle callerFile(int frameIndex = 0) const
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 QQmlV8Handle::fromHandle(frame->GetScriptNameOrSourceURL());
115 return QQmlV8Handle();
117 int callerLine(int frameIndex = 0) const
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();
131 QML_DECLARE_TYPE(QuickTestUtil)
135 class QTestQmlModule : public QQmlExtensionPlugin
138 Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface" FILE "testlib.json")
141 virtual void registerTypes(const char *uri)
143 Q_ASSERT(QLatin1String(uri) == QLatin1String("QtTest"));
144 qmlRegisterType<QuickTestResult>(uri,1,0,"TestResult");
145 qmlRegisterType<QuickTestEvent>(uri,1,0,"TestEvent");
146 qmlRegisterType<QuickTestUtil>(uri,1,0,"TestUtil");
149 void initializeEngine(QQmlEngine *, const char *)