2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-19 11:23:05 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2016-01-19 11:23:05 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-20 05:21:40 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-28 11:55:39 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-19 11:23:05 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-20 05:21:40 +00:00
|
|
|
**
|
2016-01-19 11:23:05 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
#include <qtest.h>
|
|
|
|
#include <QtCore/qdebug.h>
|
|
|
|
#include <QtCore/qtimer.h>
|
|
|
|
#include <QtCore/qdir.h>
|
|
|
|
#include <QtCore/qfileinfo.h>
|
2012-02-16 04:43:03 +00:00
|
|
|
#include <QtQml/qjsengine.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
#include <QtQml/qqmlcomponent.h>
|
|
|
|
#include <QtQml/qqmlengine.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
#include <private/qquickworkerscript_p.h>
|
|
|
|
#include <private/qqmlengine_p.h>
|
Say hello to QtQuick module
This change moves the QtQuick 2 types and C++ API (including
SceneGraph) to a new module (AKA library), QtQuick.
99% of this change is moving files from src/declarative to
src/quick, and from tests/auto/declarative to
tests/auto/qtquick2.
The loading of QtQuick 2 ("import QtQuick 2.0") is now delegated to
a plugin, src/imports/qtquick2, just like it's done for QtQuick 1.
All tools, examples, and tests that use QtQuick C++ API have gotten
"QT += quick" or "QT += quick-private" added to their .pro file.
A few additional internal QtDeclarative classes had to be exported
(via Q_DECLARATIVE_PRIVATE_EXPORT) since they're needed by the
QtQuick 2 implementation.
The old header locations (e.g. QtDeclarative/qquickitem.h) will
still be supported for some time, but will produce compile-time
warnings. (To avoid the QtQuick implementation using the
compatibility headers (since QtDeclarative's includepath comes
first), a few include statements were modified, e.g. from
"#include <qsgnode.h>" to "#include <QtQuick/qsgnode.h>".)
There's a change in qtbase that automatically adds QtQuick to the
module list if QtDeclarative is used. Together with the compatibility
headers, this should help reduce the migration pain for existing
projects.
In theory, simply getting an existing QtDeclarative-based project
to compile and link shouldn't require any changes for now -- but
porting to the new scheme is of course recommended, and will
eventually become mandatory.
Task-number: QTBUG-22889
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Change-Id: Ia52be9373172ba2f37e7623231ecb060316c96a7
Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com>
2011-11-23 14:14:07 +00:00
|
|
|
#include "../../shared/util.h"
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
class tst_QQuickWorkerScript : public QQmlDataTest
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2012-02-16 04:43:03 +00:00
|
|
|
tst_QQuickWorkerScript() {}
|
2011-04-27 10:05:43 +00:00
|
|
|
private slots:
|
|
|
|
void source();
|
|
|
|
void messaging();
|
|
|
|
void messaging_data();
|
|
|
|
void messaging_sendQObjectList();
|
|
|
|
void messaging_sendJsObject();
|
2011-11-04 04:38:38 +00:00
|
|
|
void messaging_sendExternalObject();
|
2011-04-27 10:05:43 +00:00
|
|
|
void script_with_pragma();
|
|
|
|
void script_included();
|
|
|
|
void scriptError_onLoad();
|
|
|
|
void scriptError_onCall();
|
2014-02-17 15:35:20 +00:00
|
|
|
void script_function();
|
|
|
|
void script_var();
|
|
|
|
void script_global();
|
2011-06-07 06:34:04 +00:00
|
|
|
void stressDispose();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
private:
|
2012-02-16 04:43:03 +00:00
|
|
|
void waitForEchoMessage(QQuickWorkerScript *worker) {
|
2011-04-27 10:05:43 +00:00
|
|
|
QEventLoop loop;
|
|
|
|
QVERIFY(connect(worker, SIGNAL(done()), &loop, SLOT(quit())));
|
|
|
|
QTimer timer;
|
|
|
|
timer.setSingleShot(true);
|
|
|
|
connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
|
|
|
|
timer.start(10000);
|
|
|
|
loop.exec();
|
|
|
|
QVERIFY(timer.isActive());
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine m_engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::source()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(worker != 0);
|
|
|
|
const QMetaObject *mo = worker->metaObject();
|
|
|
|
|
|
|
|
QVariant value(100);
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
waitForEchoMessage(worker);
|
|
|
|
QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).value<QVariant>(), value);
|
|
|
|
|
2011-12-21 08:06:26 +00:00
|
|
|
QUrl source = testFileUrl("script_fixed_return.js");
|
2011-04-27 10:05:43 +00:00
|
|
|
worker->setSource(source);
|
|
|
|
QCOMPARE(worker->source(), source);
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
waitForEchoMessage(worker);
|
|
|
|
QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).value<QVariant>(), qVariantFromValue(QString("Hello_World")));
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::messaging()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QFETCH(QVariant, value);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
waitForEchoMessage(worker);
|
|
|
|
|
|
|
|
const QMetaObject *mo = worker->metaObject();
|
2014-09-10 15:13:10 +00:00
|
|
|
QVariant response = mo->property(mo->indexOfProperty("response")).read(worker).value<QVariant>();
|
|
|
|
if (response.userType() == qMetaTypeId<QJSValue>())
|
|
|
|
response = response.value<QJSValue>().toVariant();
|
|
|
|
QCOMPARE(response, value);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::messaging_data()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QTest::addColumn<QVariant>("value");
|
|
|
|
|
|
|
|
QTest::newRow("invalid") << QVariant();
|
|
|
|
QTest::newRow("bool") << qVariantFromValue(true);
|
|
|
|
QTest::newRow("int") << qVariantFromValue(1001);
|
|
|
|
QTest::newRow("real") << qVariantFromValue(10334.375);
|
|
|
|
QTest::newRow("string") << qVariantFromValue(QString("More cheeeese, Gromit!"));
|
|
|
|
QTest::newRow("variant list") << qVariantFromValue((QVariantList() << "a" << "b" << "c"));
|
|
|
|
QTest::newRow("date time") << qVariantFromValue(QDateTime::currentDateTime());
|
|
|
|
#ifndef QT_NO_REGEXP
|
2013-04-23 14:15:47 +00:00
|
|
|
// Qt Script's QScriptValue -> QRegExp uses RegExp2 pattern syntax
|
2011-04-27 10:05:43 +00:00
|
|
|
QTest::newRow("regexp") << qVariantFromValue(QRegExp("^\\d\\d?$", Qt::CaseInsensitive, QRegExp::RegExp2));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::messaging_sendQObjectList()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2013-01-10 22:07:37 +00:00
|
|
|
// Not allowed to send QObjects other than QQmlListModelWorkerAgent
|
2011-04-27 10:05:43 +00:00
|
|
|
// instances. If objects are sent in a list, they will be sent as 'undefined'
|
|
|
|
// js values.
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
QVariantList objects;
|
|
|
|
for (int i=0; i<3; i++)
|
|
|
|
objects << qVariantFromValue(new QObject(this));
|
|
|
|
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, qVariantFromValue(objects))));
|
|
|
|
waitForEchoMessage(worker);
|
|
|
|
|
|
|
|
const QMetaObject *mo = worker->metaObject();
|
|
|
|
QVariantList result = mo->property(mo->indexOfProperty("response")).read(worker).value<QVariantList>();
|
|
|
|
QCOMPARE(result, (QVariantList() << QVariant() << QVariant() << QVariant()));
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::messaging_sendJsObject()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
// Properties are in alphabetical order to enable string-based comparison after
|
|
|
|
// QVariant roundtrip, since the properties will be stored in a QVariantMap.
|
|
|
|
QString jsObject = "{'haste': 1125, 'name': 'zyz', 'spell power': 3101}";
|
|
|
|
|
2011-05-11 07:20:40 +00:00
|
|
|
QVariantMap map;
|
|
|
|
map.insert("haste", 1125);
|
|
|
|
map.insert("name", "zyz");
|
|
|
|
map.insert("spell power", 3101);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-05-11 07:20:40 +00:00
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, qVariantFromValue(map))));
|
2011-04-27 10:05:43 +00:00
|
|
|
waitForEchoMessage(worker);
|
|
|
|
|
|
|
|
QVariant result = qVariantFromValue(false);
|
2014-01-15 21:01:15 +00:00
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "compareLiteralResponse", Qt::DirectConnection,
|
2011-04-27 10:05:43 +00:00
|
|
|
Q_RETURN_ARG(QVariant, result), Q_ARG(QVariant, jsObject)));
|
|
|
|
QVERIFY(result.toBool());
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::messaging_sendExternalObject()
|
2011-11-04 04:38:38 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("externalObjectWorker.qml"));
|
2011-11-04 04:38:38 +00:00
|
|
|
QObject *obj = component.create();
|
|
|
|
QVERIFY(obj);
|
|
|
|
QMetaObject::invokeMethod(obj, "testExternalObject");
|
|
|
|
QTest::qWait(100); // shouldn't crash.
|
|
|
|
delete obj;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::script_with_pragma()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QVariant value(100);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker_pragma.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
waitForEchoMessage(worker);
|
|
|
|
|
|
|
|
const QMetaObject *mo = worker->metaObject();
|
|
|
|
QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).value<QVariant>(), value);
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::script_included()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker_include.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
QString value("Hello");
|
|
|
|
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
waitForEchoMessage(worker);
|
|
|
|
|
|
|
|
const QMetaObject *mo = worker->metaObject();
|
|
|
|
QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).toString(), value + " World");
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
static QString qquickworkerscript_lastWarning;
|
2012-09-13 12:35:42 +00:00
|
|
|
static void qquickworkerscript_warningsHandler(QtMsgType type, const QMessageLogContext &, const QString &msg)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
if (type == QtWarningMsg)
|
2012-09-13 12:35:42 +00:00
|
|
|
qquickworkerscript_lastWarning = msg;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::scriptError_onLoad()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker_error_onLoad.qml"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-13 12:35:42 +00:00
|
|
|
QtMessageHandler previousMsgHandler = qInstallMessageHandler(qquickworkerscript_warningsHandler);
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QTRY_COMPARE(qquickworkerscript_lastWarning,
|
2017-05-15 07:56:05 +00:00
|
|
|
testFileUrl("script_error_onLoad.js").toString() + QLatin1String(":3:10: SyntaxError: Expected token `,'"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-13 12:35:42 +00:00
|
|
|
qInstallMessageHandler(previousMsgHandler);
|
2011-04-27 10:05:43 +00:00
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::scriptError_onCall()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker_error_onCall.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
2012-09-13 12:35:42 +00:00
|
|
|
QtMessageHandler previousMsgHandler = qInstallMessageHandler(qquickworkerscript_warningsHandler);
|
2011-04-27 10:05:43 +00:00
|
|
|
QVariant value;
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QTRY_COMPARE(qquickworkerscript_lastWarning,
|
2012-03-14 11:51:22 +00:00
|
|
|
testFileUrl("script_error_onCall.js").toString() + QLatin1String(":4: ReferenceError: getData is not defined"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-13 12:35:42 +00:00
|
|
|
qInstallMessageHandler(previousMsgHandler);
|
2011-04-27 10:05:43 +00:00
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2014-02-17 15:35:20 +00:00
|
|
|
void tst_QQuickWorkerScript::script_function()
|
|
|
|
{
|
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker_function.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
QString value("Hello");
|
|
|
|
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
waitForEchoMessage(worker);
|
|
|
|
|
|
|
|
const QMetaObject *mo = worker->metaObject();
|
|
|
|
QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).toString(), value + " World");
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QQuickWorkerScript::script_var()
|
|
|
|
{
|
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker_var.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
QString value("Hello");
|
|
|
|
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
waitForEchoMessage(worker);
|
|
|
|
|
|
|
|
const QMetaObject *mo = worker->metaObject();
|
|
|
|
QCOMPARE(mo->property(mo->indexOfProperty("response")).read(worker).toString(), value + " World");
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QQuickWorkerScript::script_global()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker_global.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
QString value("Hello");
|
|
|
|
|
|
|
|
QtMessageHandler previousMsgHandler = qInstallMessageHandler(qquickworkerscript_warningsHandler);
|
|
|
|
|
|
|
|
QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, value)));
|
|
|
|
|
|
|
|
QTRY_COMPARE(qquickworkerscript_lastWarning,
|
|
|
|
testFileUrl("script_global.js").toString() + QLatin1String(":2: Invalid write to global property \"world\""));
|
|
|
|
|
|
|
|
qInstallMessageHandler(previousMsgHandler);
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
|
2015-08-13 20:08:49 +00:00
|
|
|
qquickworkerscript_lastWarning = QString();
|
|
|
|
|
2014-02-17 15:35:20 +00:00
|
|
|
{
|
2015-08-13 20:08:49 +00:00
|
|
|
QtMessageHandler previousMsgHandler = qInstallMessageHandler(qquickworkerscript_warningsHandler);
|
|
|
|
|
2014-02-17 15:35:20 +00:00
|
|
|
QQmlComponent component(&m_engine, testFileUrl("worker_global2.qml"));
|
|
|
|
QQuickWorkerScript *worker = qobject_cast<QQuickWorkerScript*>(component.create());
|
|
|
|
QVERIFY(worker != 0);
|
|
|
|
|
|
|
|
QTRY_COMPARE(qquickworkerscript_lastWarning,
|
2015-08-13 20:08:49 +00:00
|
|
|
testFileUrl("script_global2.js").toString() + QLatin1String(":1: Invalid write to global property \"world\""));
|
2014-02-17 15:35:20 +00:00
|
|
|
|
|
|
|
qInstallMessageHandler(previousMsgHandler);
|
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
delete worker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-07 06:34:04 +00:00
|
|
|
// Rapidly create and destroy worker scripts to test resources are being disposed
|
|
|
|
// in the correct isolate
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_QQuickWorkerScript::stressDispose()
|
2011-06-07 06:34:04 +00:00
|
|
|
{
|
|
|
|
for (int ii = 0; ii < 100; ++ii) {
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent component(&engine, testFileUrl("stressDispose.qml"));
|
2011-06-07 06:34:04 +00:00
|
|
|
QObject *o = component.create();
|
|
|
|
QVERIFY(o);
|
|
|
|
delete o;
|
|
|
|
}
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QTEST_MAIN(tst_QQuickWorkerScript)
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
#include "tst_qquickworkerscript.moc"
|