Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
174 lines
6.7 KiB
C++
174 lines
6.7 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** 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
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at http://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
** following information to ensure the GNU Lesser General Public License
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3.0 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
#include <qtest.h>
|
|
#include <QDebug>
|
|
|
|
#include <QtGui/qgraphicsitem.h>
|
|
#include <QtDeclarative/qdeclarativeengine.h>
|
|
#include <QtDeclarative/qdeclarativecomponent.h>
|
|
#include <QtDeclarative/qdeclarativeitem.h>
|
|
#include <QtDeclarative/qdeclarativeproperty.h>
|
|
#include <qcolor.h>
|
|
|
|
#ifdef Q_OS_SYMBIAN
|
|
// In Symbian OS test data is located in applications private dir
|
|
#define SRCDIR "."
|
|
#endif
|
|
|
|
class tst_qdeclarativecomponent : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
tst_qdeclarativecomponent() { }
|
|
|
|
private slots:
|
|
void null();
|
|
void loadEmptyUrl();
|
|
void qmlCreateObject();
|
|
void qmlCreateObjectWithProperties();
|
|
|
|
private:
|
|
QDeclarativeEngine engine;
|
|
};
|
|
|
|
void tst_qdeclarativecomponent::null()
|
|
{
|
|
{
|
|
QDeclarativeComponent c;
|
|
QVERIFY(c.isNull());
|
|
}
|
|
|
|
{
|
|
QDeclarativeComponent c(&engine);
|
|
QVERIFY(c.isNull());
|
|
}
|
|
}
|
|
|
|
|
|
void tst_qdeclarativecomponent::loadEmptyUrl()
|
|
{
|
|
QDeclarativeComponent c(&engine);
|
|
c.loadUrl(QUrl());
|
|
|
|
QVERIFY(c.isError());
|
|
QCOMPARE(c.errors().count(), 1);
|
|
QDeclarativeError error = c.errors().first();
|
|
QCOMPARE(error.url(), QUrl());
|
|
QCOMPARE(error.line(), -1);
|
|
QCOMPARE(error.column(), -1);
|
|
QCOMPARE(error.description(), QLatin1String("Invalid empty URL"));
|
|
}
|
|
|
|
void tst_qdeclarativecomponent::qmlCreateObject()
|
|
{
|
|
QDeclarativeEngine engine;
|
|
QDeclarativeComponent component(&engine, QUrl::fromLocalFile(SRCDIR "/data/createObject.qml"));
|
|
QObject *object = component.create();
|
|
QVERIFY(object != 0);
|
|
|
|
QObject *testObject1 = object->property("qobject").value<QObject*>();
|
|
QVERIFY(testObject1);
|
|
QVERIFY(testObject1->parent() == object);
|
|
|
|
QObject *testObject2 = object->property("declarativeitem").value<QObject*>();
|
|
QVERIFY(testObject2);
|
|
QVERIFY(testObject2->parent() == object);
|
|
QCOMPARE(testObject2->metaObject()->className(), "QDeclarativeItem");
|
|
|
|
//Note that QGraphicsObjects are not exposed to QML for instantiation, and so can't be used in a component directly
|
|
//Also this is actually the extended type QDeclarativeGraphicsWidget, but it still doesn't inherit QDeclarativeItem
|
|
QGraphicsObject *testObject3 = qobject_cast<QGraphicsObject*>(object->property("graphicswidget").value<QObject*>());
|
|
QVERIFY(testObject3);
|
|
QVERIFY(testObject3->parent() == object);
|
|
QVERIFY(testObject3->parentItem() == qobject_cast<QGraphicsObject*>(object));
|
|
QCOMPARE(testObject3->metaObject()->className(), "QDeclarativeGraphicsWidget");
|
|
}
|
|
|
|
void tst_qdeclarativecomponent::qmlCreateObjectWithProperties()
|
|
{
|
|
QDeclarativeEngine engine;
|
|
QDeclarativeComponent component(&engine, QUrl::fromLocalFile(SRCDIR "/data/createObjectWithScript.qml"));
|
|
QVERIFY2(component.errorString().isEmpty(), component.errorString().toUtf8());
|
|
QObject *object = component.create();
|
|
QVERIFY(object != 0);
|
|
|
|
QObject *testObject1 = object->property("declarativerectangle").value<QObject*>();
|
|
QVERIFY(testObject1);
|
|
QVERIFY(testObject1->parent() == object);
|
|
QCOMPARE(testObject1->property("x").value<int>(), 17);
|
|
QCOMPARE(testObject1->property("y").value<int>(), 17);
|
|
QCOMPARE(testObject1->property("color").value<QColor>(), QColor(255,255,255));
|
|
QCOMPARE(QDeclarativeProperty::read(testObject1,"border.width").toInt(), 3);
|
|
QCOMPARE(QDeclarativeProperty::read(testObject1,"innerRect.border.width").toInt(), 20);
|
|
delete testObject1;
|
|
|
|
QObject *testObject2 = object->property("declarativeitem").value<QObject*>();
|
|
QVERIFY(testObject2);
|
|
QVERIFY(testObject2->parent() == object);
|
|
//QCOMPARE(testObject2->metaObject()->className(), "QDeclarativeItem_QML_2");
|
|
QCOMPARE(testObject2->property("x").value<int>(), 17);
|
|
QCOMPARE(testObject2->property("y").value<int>(), 17);
|
|
QCOMPARE(testObject2->property("testBool").value<bool>(), true);
|
|
QCOMPARE(testObject2->property("testInt").value<int>(), 17);
|
|
QCOMPARE(testObject2->property("testObject").value<QObject*>(), object);
|
|
delete testObject2;
|
|
|
|
QObject *testBindingObj = object->property("bindingTestObject").value<QObject*>();
|
|
QVERIFY(testBindingObj);
|
|
QCOMPARE(testBindingObj->parent(), object);
|
|
QCOMPARE(testBindingObj->property("testValue").value<int>(), 300);
|
|
object->setProperty("width", 150);
|
|
QCOMPARE(testBindingObj->property("testValue").value<int>(), 150 * 3);
|
|
delete testBindingObj;
|
|
|
|
QObject *testBindingThisObj = object->property("bindingThisTestObject").value<QObject*>();
|
|
QVERIFY(testBindingThisObj);
|
|
QCOMPARE(testBindingThisObj->parent(), object);
|
|
QCOMPARE(testBindingThisObj->property("testValue").value<int>(), 900);
|
|
testBindingThisObj->setProperty("width", 200);
|
|
QCOMPARE(testBindingThisObj->property("testValue").value<int>(), 200 * 3);
|
|
delete testBindingThisObj;
|
|
}
|
|
|
|
QTEST_MAIN(tst_qdeclarativecomponent)
|
|
|
|
#include "tst_qdeclarativecomponent.moc"
|