/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/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 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt 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 #include #include #include #include #include #include #include #include #include class tst_QDeclarativeRepeater : public QDeclarativeDataTest { Q_OBJECT public: tst_QDeclarativeRepeater(); private slots: void numberModel(); void objectList(); void stringList(); void dataModel_adding(); void dataModel_removing(); void dataModel_changes(); void itemModel(); void resetModel(); void modelChanged(); void properties(); void testQtQuick11Attributes(); void testQtQuick11Attributes_data(); private: QDeclarativeView *createView(); template T *findItem(QGraphicsObject *parent, const QString &objectName, int index); template T *findItem(QGraphicsObject *parent, const QString &id); }; class TestObject : public QObject { Q_OBJECT Q_PROPERTY(bool error READ error WRITE setError) Q_PROPERTY(bool useModel READ useModel NOTIFY useModelChanged) public: TestObject() : QObject(), mError(true), mUseModel(false) {} bool error() const { return mError; } void setError(bool err) { mError = err; } bool useModel() const { return mUseModel; } void setUseModel(bool use) { mUseModel = use; emit useModelChanged(); } signals: void useModelChanged(); private: bool mError; bool mUseModel; }; class TestModel : public QAbstractListModel { public: enum Roles { Name = Qt::UserRole+1, Number = Qt::UserRole+2 }; TestModel(QObject *parent=0) : QAbstractListModel(parent) { QHash roles; roles[Name] = "name"; roles[Number] = "number"; setRoleNames(roles); } int rowCount(const QModelIndex &parent=QModelIndex()) const { Q_UNUSED(parent); return list.count(); } QVariant data(const QModelIndex &index, int role=Qt::DisplayRole) const { QVariant rv; if (role == Name) rv = list.at(index.row()).first; else if (role == Number) rv = list.at(index.row()).second; return rv; } int count() const { return rowCount(); } QString name(int index) const { return list.at(index).first; } QString number(int index) const { return list.at(index).second; } void addItem(const QString &name, const QString &number) { emit beginInsertRows(QModelIndex(), list.count(), list.count()); list.append(QPair(name, number)); emit endInsertRows(); } void insertItem(int index, const QString &name, const QString &number) { emit beginInsertRows(QModelIndex(), index, index); list.insert(index, QPair(name, number)); emit endInsertRows(); } void removeItem(int index) { emit beginRemoveRows(QModelIndex(), index, index); list.removeAt(index); emit endRemoveRows(); } void moveItem(int from, int to) { emit beginMoveRows(QModelIndex(), from, from, QModelIndex(), to); list.move(from, to); emit endMoveRows(); } void modifyItem(int idx, const QString &name, const QString &number) { list[idx] = QPair(name, number); emit dataChanged(index(idx,0), index(idx,0)); } private: QList > list; }; tst_QDeclarativeRepeater::tst_QDeclarativeRepeater() { } void tst_QDeclarativeRepeater::numberModel() { QDeclarativeView *canvas = createView(); QDeclarativeContext *ctxt = canvas->rootContext(); ctxt->setContextProperty("testData", 5); TestObject *testObject = new TestObject; ctxt->setContextProperty("testObject", testObject); canvas->setSource(testFileUrl("intmodel.qml")); qApp->processEvents(); QDeclarativeRepeater *repeater = findItem(canvas->rootObject(), "repeater"); QVERIFY(repeater != 0); QCOMPARE(repeater->parentItem()->childItems().count(), 5+1); QVERIFY(!repeater->itemAt(-1)); for (int i=0; icount(); i++) QCOMPARE(repeater->itemAt(i), repeater->parentItem()->childItems().at(i)); QVERIFY(!repeater->itemAt(repeater->count())); QMetaObject::invokeMethod(canvas->rootObject(), "checkProperties"); QVERIFY(testObject->error() == false); delete testObject; delete canvas; } class MyObject : public QObject { Q_OBJECT Q_PROPERTY(int idx READ idx CONSTANT) public: MyObject(int i) : QObject(), m_idx(i) {} int idx() const { return m_idx; } int m_idx; }; void tst_QDeclarativeRepeater::objectList() { QDeclarativeView *canvas = createView(); QObjectList data; for(int i=0; i<100; i++) data << new MyObject(i); QDeclarativeContext *ctxt = canvas->rootContext(); ctxt->setContextProperty("testData", QVariant::fromValue(data)); canvas->setSource(testFileUrl("objlist.qml")); qApp->processEvents(); QDeclarativeRepeater *repeater = findItem(canvas->rootObject(), "repeater"); QVERIFY(repeater != 0); QCOMPARE(repeater->property("errors").toInt(), 0);//If this fails either they are out of order or can't find the object's data QCOMPARE(repeater->property("instantiated").toInt(), 100); QVERIFY(!repeater->itemAt(-1)); for (int i=0; iitemAt(i), repeater->parentItem()->childItems().at(i)); QVERIFY(!repeater->itemAt(data.count())); QSignalSpy addedSpy(repeater, SIGNAL(itemAdded(int,QDeclarativeItem*))); QSignalSpy removedSpy(repeater, SIGNAL(itemRemoved(int,QDeclarativeItem*))); ctxt->setContextProperty("testData", QVariant::fromValue(data)); QCOMPARE(addedSpy.count(), data.count()); QCOMPARE(removedSpy.count(), data.count()); qDeleteAll(data); delete canvas; } /* The Repeater element creates children at its own position in its parent's stacking order. In this test we insert a repeater between two other Text elements to test this. */ void tst_QDeclarativeRepeater::stringList() { QDeclarativeView *canvas = createView(); QStringList data; data << "One"; data << "Two"; data << "Three"; data << "Four"; QDeclarativeContext *ctxt = canvas->rootContext(); ctxt->setContextProperty("testData", data); canvas->setSource(testFileUrl("repeater1.qml")); qApp->processEvents(); QDeclarativeRepeater *repeater = findItem(canvas->rootObject(), "repeater"); QVERIFY(repeater != 0); QDeclarativeItem *container = findItem(canvas->rootObject(), "container"); QVERIFY(container != 0); QCOMPARE(container->childItems().count(), data.count() + 3); bool saw_repeater = false; for (int i = 0; i < container->childItems().count(); ++i) { if (i == 0) { QDeclarativeText *name = qobject_cast(container->childItems().at(i)); QVERIFY(name != 0); QCOMPARE(name->text(), QLatin1String("Zero")); } else if (i == container->childItems().count() - 2) { // The repeater itself QDeclarativeRepeater *rep = qobject_cast(container->childItems().at(i)); QCOMPARE(rep, repeater); saw_repeater = true; continue; } else if (i == container->childItems().count() - 1) { QDeclarativeText *name = qobject_cast(container->childItems().at(i)); QVERIFY(name != 0); QCOMPARE(name->text(), QLatin1String("Last")); } else { QDeclarativeText *name = qobject_cast(container->childItems().at(i)); QVERIFY(name != 0); QCOMPARE(name->text(), data.at(i-1)); } } QVERIFY(saw_repeater); delete canvas; } void tst_QDeclarativeRepeater::dataModel_adding() { QDeclarativeView *canvas = createView(); QDeclarativeContext *ctxt = canvas->rootContext(); TestObject *testObject = new TestObject; ctxt->setContextProperty("testObject", testObject); TestModel testModel; ctxt->setContextProperty("testData", &testModel); canvas->setSource(testFileUrl("repeater2.qml")); qApp->processEvents(); QDeclarativeRepeater *repeater = findItem(canvas->rootObject(), "repeater"); QVERIFY(repeater != 0); QDeclarativeItem *container = findItem(canvas->rootObject(), "container"); QVERIFY(container != 0); QVERIFY(!repeater->itemAt(0)); QSignalSpy countSpy(repeater, SIGNAL(countChanged())); QSignalSpy addedSpy(repeater, SIGNAL(itemAdded(int,QDeclarativeItem*))); // add to empty model testModel.addItem("two", "2"); QCOMPARE(repeater->itemAt(0), container->childItems().at(0)); QCOMPARE(countSpy.count(), 1); countSpy.clear(); QCOMPARE(addedSpy.count(), 1); QCOMPARE(addedSpy.at(0).at(0).toInt(), 0); QCOMPARE(addedSpy.at(0).at(1).value(), container->childItems().at(0)); addedSpy.clear(); // insert at start testModel.insertItem(0, "one", "1"); QCOMPARE(repeater->itemAt(0), container->childItems().at(0)); QCOMPARE(countSpy.count(), 1); countSpy.clear(); QCOMPARE(addedSpy.count(), 1); QCOMPARE(addedSpy.at(0).at(0).toInt(), 0); QCOMPARE(addedSpy.at(0).at(1).value(), container->childItems().at(0)); addedSpy.clear(); // insert at end testModel.insertItem(2, "four", "4"); QCOMPARE(repeater->itemAt(2), container->childItems().at(2)); QCOMPARE(countSpy.count(), 1); countSpy.clear(); QCOMPARE(addedSpy.count(), 1); QCOMPARE(addedSpy.at(0).at(0).toInt(), 2); QCOMPARE(addedSpy.at(0).at(1).value(), container->childItems().at(2)); addedSpy.clear(); // insert in middle testModel.insertItem(2, "three", "3"); QCOMPARE(repeater->itemAt(2), container->childItems().at(2)); QCOMPARE(countSpy.count(), 1); countSpy.clear(); QCOMPARE(addedSpy.count(), 1); QCOMPARE(addedSpy.at(0).at(0).toInt(), 2); QCOMPARE(addedSpy.at(0).at(1).value(), container->childItems().at(2)); addedSpy.clear(); delete testObject; delete canvas; } void tst_QDeclarativeRepeater::dataModel_removing() { QDeclarativeView *canvas = createView(); QDeclarativeContext *ctxt = canvas->rootContext(); TestObject *testObject = new TestObject; ctxt->setContextProperty("testObject", testObject); TestModel testModel; testModel.addItem("one", "1"); testModel.addItem("two", "2"); testModel.addItem("three", "3"); testModel.addItem("four", "4"); testModel.addItem("five", "5"); ctxt->setContextProperty("testData", &testModel); canvas->setSource(testFileUrl("repeater2.qml")); qApp->processEvents(); QDeclarativeRepeater *repeater = findItem(canvas->rootObject(), "repeater"); QVERIFY(repeater != 0); QDeclarativeItem *container = findItem(canvas->rootObject(), "container"); QVERIFY(container != 0); QCOMPARE(container->childItems().count(), repeater->count()+1); QSignalSpy countSpy(repeater, SIGNAL(countChanged())); QSignalSpy removedSpy(repeater, SIGNAL(itemRemoved(int,QDeclarativeItem*))); // remove at start QDeclarativeItem *item = repeater->itemAt(0); QCOMPARE(item, container->childItems().at(0)); testModel.removeItem(0); QVERIFY(repeater->itemAt(0) != item); QCOMPARE(countSpy.count(), 1); countSpy.clear(); QCOMPARE(removedSpy.count(), 1); QCOMPARE(removedSpy.at(0).at(0).toInt(), 0); QCOMPARE(removedSpy.at(0).at(1).value(), item); removedSpy.clear(); // remove at end int lastIndex = testModel.count()-1; item = repeater->itemAt(lastIndex); QCOMPARE(item, container->childItems().at(lastIndex)); testModel.removeItem(lastIndex); QVERIFY(repeater->itemAt(lastIndex) != item); QCOMPARE(countSpy.count(), 1); countSpy.clear(); QCOMPARE(removedSpy.count(), 1); QCOMPARE(removedSpy.at(0).at(0).toInt(), lastIndex); QCOMPARE(removedSpy.at(0).at(1).value(), item); removedSpy.clear(); // remove from middle item = repeater->itemAt(1); QCOMPARE(item, container->childItems().at(1)); testModel.removeItem(1); QVERIFY(repeater->itemAt(lastIndex) != item); QCOMPARE(countSpy.count(), 1); countSpy.clear(); QCOMPARE(removedSpy.count(), 1); QCOMPARE(removedSpy.at(0).at(0).toInt(), 1); QCOMPARE(removedSpy.at(0).at(1).value(), item); removedSpy.clear(); delete testObject; delete canvas; } void tst_QDeclarativeRepeater::dataModel_changes() { QDeclarativeView *canvas = createView(); QDeclarativeContext *ctxt = canvas->rootContext(); TestObject *testObject = new TestObject; ctxt->setContextProperty("testObject", testObject); TestModel testModel; testModel.addItem("one", "1"); testModel.addItem("two", "2"); testModel.addItem("three", "3"); ctxt->setContextProperty("testData", &testModel); canvas->setSource(testFileUrl("repeater2.qml")); qApp->processEvents(); QDeclarativeRepeater *repeater = findItem(canvas->rootObject(), "repeater"); QVERIFY(repeater != 0); QDeclarativeItem *container = findItem(canvas->rootObject(), "container"); QVERIFY(container != 0); QCOMPARE(container->childItems().count(), repeater->count()+1); // Check that model changes are propagated QDeclarativeText *text = findItem(canvas->rootObject(), "myName", 1); QVERIFY(text); QCOMPARE(text->text(), QString("two")); testModel.modifyItem(1, "Item two", "_2"); text = findItem(canvas->rootObject(), "myName", 1); QVERIFY(text); QCOMPARE(text->text(), QString("Item two")); text = findItem(canvas->rootObject(), "myNumber", 1); QVERIFY(text); QCOMPARE(text->text(), QString("_2")); delete testObject; delete canvas; } void tst_QDeclarativeRepeater::itemModel() { QDeclarativeView *canvas = createView(); QDeclarativeContext *ctxt = canvas->rootContext(); TestObject *testObject = new TestObject; ctxt->setContextProperty("testObject", testObject); canvas->setSource(testFileUrl("itemlist.qml")); qApp->processEvents(); QDeclarativeRepeater *repeater = findItem(canvas->rootObject(), "repeater"); QVERIFY(repeater != 0); QDeclarativeItem *container = findItem(canvas->rootObject(), "container"); QVERIFY(container != 0); QCOMPARE(container->childItems().count(), 1); testObject->setUseModel(true); QMetaObject::invokeMethod(canvas->rootObject(), "checkProperties"); QVERIFY(testObject->error() == false); QCOMPARE(container->childItems().count(), 4); QVERIFY(qobject_cast(container->childItems().at(0))->objectName() == "item1"); QVERIFY(qobject_cast(container->childItems().at(1))->objectName() == "item2"); QVERIFY(qobject_cast(container->childItems().at(2))->objectName() == "item3"); QVERIFY(container->childItems().at(3) == repeater); QMetaObject::invokeMethod(canvas->rootObject(), "switchModel"); QCOMPARE(container->childItems().count(), 3); QVERIFY(qobject_cast(container->childItems().at(0))->objectName() == "item4"); QVERIFY(qobject_cast(container->childItems().at(1))->objectName() == "item5"); QVERIFY(container->childItems().at(2) == repeater); testObject->setUseModel(false); QCOMPARE(container->childItems().count(), 1); delete testObject; delete canvas; } void tst_QDeclarativeRepeater::resetModel() { QDeclarativeView *canvas = createView(); QStringList dataA; for (int i=0; i<10; i++) dataA << QString::number(i); QDeclarativeContext *ctxt = canvas->rootContext(); ctxt->setContextProperty("testData", dataA); canvas->setSource(testFileUrl("repeater1.qml")); qApp->processEvents(); QDeclarativeRepeater *repeater = findItem(canvas->rootObject(), "repeater"); QVERIFY(repeater != 0); QDeclarativeItem *container = findItem(canvas->rootObject(), "container"); QVERIFY(container != 0); QCOMPARE(repeater->count(), dataA.count()); for (int i=0; icount(); i++) QCOMPARE(repeater->itemAt(i), container->childItems().at(i+1)); // +1 to skip first Text object QSignalSpy modelChangedSpy(repeater, SIGNAL(modelChanged())); QSignalSpy countSpy(repeater, SIGNAL(countChanged())); QSignalSpy addedSpy(repeater, SIGNAL(itemAdded(int,QDeclarativeItem*))); QSignalSpy removedSpy(repeater, SIGNAL(itemRemoved(int,QDeclarativeItem*))); QStringList dataB; for (int i=0; i<20; i++) dataB << QString::number(i); // reset context property ctxt->setContextProperty("testData", dataB); QCOMPARE(repeater->count(), dataB.count()); QCOMPARE(modelChangedSpy.count(), 1); QCOMPARE(countSpy.count(), 1); QCOMPARE(removedSpy.count(), dataA.count()); QCOMPARE(addedSpy.count(), dataB.count()); for (int i=0; i(), repeater->itemAt(i)); } modelChangedSpy.clear(); countSpy.clear(); removedSpy.clear(); addedSpy.clear(); // reset via setModel() repeater->setModel(dataA); QCOMPARE(repeater->count(), dataA.count()); QCOMPARE(modelChangedSpy.count(), 1); QCOMPARE(countSpy.count(), 1); QCOMPARE(removedSpy.count(), dataB.count()); QCOMPARE(addedSpy.count(), dataA.count()); for (int i=0; i(), repeater->itemAt(i)); } delete canvas; } // QTBUG-17156 void tst_QDeclarativeRepeater::modelChanged() { QDeclarativeEngine engine; QDeclarativeComponent component(&engine, testFileUrl("modelChanged.qml")); QDeclarativeItem *rootObject = qobject_cast(component.create()); QVERIFY(rootObject); QDeclarativeRepeater *repeater = findItem(rootObject, "repeater"); QVERIFY(repeater); repeater->setModel(4); QCOMPARE(repeater->count(), 4); QCOMPARE(repeater->property("itemsCount").toInt(), 4); QCOMPARE(repeater->property("itemsFound").toList().count(), 4); repeater->setModel(10); QCOMPARE(repeater->count(), 10); QCOMPARE(repeater->property("itemsCount").toInt(), 10); QCOMPARE(repeater->property("itemsFound").toList().count(), 10); delete rootObject; } void tst_QDeclarativeRepeater::properties() { QDeclarativeEngine engine; QDeclarativeComponent component(&engine, testFileUrl("properties.qml")); QDeclarativeItem *rootObject = qobject_cast(component.create()); QVERIFY(rootObject); QDeclarativeRepeater *repeater = findItem(rootObject, "repeater"); QVERIFY(repeater); QSignalSpy modelSpy(repeater, SIGNAL(modelChanged())); repeater->setModel(3); QCOMPARE(modelSpy.count(),1); repeater->setModel(3); QCOMPARE(modelSpy.count(),1); QSignalSpy delegateSpy(repeater, SIGNAL(delegateChanged())); QDeclarativeComponent rectComponent(&engine); rectComponent.setData("import QtQuick 1.0; Rectangle {}", QUrl::fromLocalFile("")); repeater->setDelegate(&rectComponent); QCOMPARE(delegateSpy.count(),1); repeater->setDelegate(&rectComponent); QCOMPARE(delegateSpy.count(),1); delete rootObject; } void tst_QDeclarativeRepeater::testQtQuick11Attributes() { QFETCH(QString, code); QFETCH(QString, warning); QFETCH(QString, error); QDeclarativeEngine engine; QObject *obj; QDeclarativeComponent invalid(&engine); invalid.setData("import QtQuick 1.0; Repeater { " + code.toUtf8() + " }", QUrl("")); QTest::ignoreMessage(QtWarningMsg, warning.toUtf8()); obj = invalid.create(); QCOMPARE(invalid.errorString(), error); delete obj; QDeclarativeComponent valid(&engine); valid.setData("import QtQuick 1.1; Repeater { " + code.toUtf8() + " }", QUrl("")); obj = valid.create(); QVERIFY(obj); QVERIFY(valid.errorString().isEmpty()); delete obj; } void tst_QDeclarativeRepeater::testQtQuick11Attributes_data() { QTest::addColumn("code"); QTest::addColumn("warning"); QTest::addColumn("error"); QTest::newRow("itemAdded") << "onItemAdded: count" << "QDeclarativeComponent: Component is not ready" << ":1 \"Repeater.onItemAdded\" is not available in QtQuick 1.0.\n"; QTest::newRow("itemRemoved") << "onItemRemoved: count" << "QDeclarativeComponent: Component is not ready" << ":1 \"Repeater.onItemRemoved\" is not available in QtQuick 1.0.\n"; QTest::newRow("itemAt") << "Component.onCompleted: itemAt(0)" << ": ReferenceError: Can't find variable: itemAt" << ""; } QDeclarativeView *tst_QDeclarativeRepeater::createView() { QDeclarativeView *canvas = new QDeclarativeView(0); canvas->setFixedSize(240,320); return canvas; } template T *tst_QDeclarativeRepeater::findItem(QGraphicsObject *parent, const QString &objectName, int index) { const QMetaObject &mo = T::staticMetaObject; //qDebug() << parent->childItems().count() << "children"; for (int i = 0; i < parent->childItems().count(); ++i) { QDeclarativeItem *item = qobject_cast(parent->childItems().at(i)); if(!item) continue; //qDebug() << "try" << item; if (mo.cast(item) && (objectName.isEmpty() || item->objectName() == objectName)) { if (index != -1) { QDeclarativeExpression e(qmlContext(item), item, "index"); if (e.evaluate().toInt() == index) return static_cast(item); } else { return static_cast(item); } } item = findItem(item, objectName, index); if (item) return static_cast(item); } return 0; } template T *tst_QDeclarativeRepeater::findItem(QGraphicsObject *parent, const QString &objectName) { const QMetaObject &mo = T::staticMetaObject; if (mo.cast(parent) && (objectName.isEmpty() || parent->objectName() == objectName)) return static_cast(parent); for (int i = 0; i < parent->childItems().count(); ++i) { QDeclarativeItem *child = qobject_cast(parent->childItems().at(i)); if (!child) continue; QDeclarativeItem *item = findItem(child, objectName); if (item) return static_cast(item); } return 0; } QTEST_MAIN(tst_QDeclarativeRepeater) #include "tst_qdeclarativerepeater.moc"