/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** 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 https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** 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. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include #include #include /* To add a model to be tested add the header file to the includes and impliment what is needed in the four functions below. You can add more then one model, several Qt models and included as examples. In tst_qitemmodel.cpp a new ModelsToTest object is created for each test. When you have errors fix the first ones first. Later tests depend upon them working */ class ModelsToTest { public: ModelsToTest(); QAbstractItemModel *createModel(const QString &modelType); QModelIndex populateTestArea(QAbstractItemModel *model); void cleanupTestArea(QAbstractItemModel *model); enum Read { ReadOnly, // won't perform remove(), insert(), and setData() ReadWrite }; enum Contains { Empty, // Confirm that rowCount() == 0 etc throughout the test HasData // Confirm that rowCount() != 0 etc throughout the test }; struct test { test(QString m, Read r, Contains c) : modelType(m), read(r), contains(c){}; QString modelType; Read read; Contains contains; }; QList tests; static void setupDatabase(); private: QScopedPointer m_dirModelTempDir; }; /*! Add new tests, they can be the same model, but in a different state. The name of the model is passed to createModel If readOnly is true the remove tests will be skipped. Example: QDirModel is disabled. If createModel returns an empty model. Example: QDirModel does not */ ModelsToTest::ModelsToTest() { setupDatabase(); tests.append(test("QDirModel", ReadOnly, HasData)); tests.append(test("QStringListModel", ReadWrite, HasData)); tests.append(test("QStringListModelEmpty", ReadWrite, Empty)); tests.append(test("QStandardItemModel", ReadWrite, HasData)); tests.append(test("QStandardItemModelEmpty", ReadWrite, Empty)); // QSortFilterProxyModel test uses QStandardItemModel so test it first tests.append(test("QSortFilterProxyModel", ReadWrite, HasData)); tests.append(test("QSortFilterProxyModelEmpty", ReadWrite, Empty)); tests.append(test("QSortFilterProxyModelRegExp", ReadWrite, HasData)); tests.append(test("QListModel", ReadWrite, HasData)); tests.append(test("QListModelEmpty", ReadWrite, Empty)); tests.append(test("QTableModel", ReadWrite, HasData)); tests.append(test("QTableModelEmpty", ReadWrite, Empty)); tests.append(test("QTreeModel", ReadWrite, HasData)); tests.append(test("QTreeModelEmpty", ReadWrite, Empty)); tests.append(test("QSqlQueryModel", ReadOnly, HasData)); tests.append(test("QSqlQueryModelEmpty", ReadOnly, Empty)); // Fails on remove tests.append(test("QSqlTableModel", ReadOnly, HasData)); } /*! Return a new modelType. */ QAbstractItemModel *ModelsToTest::createModel(const QString &modelType) { if (modelType == "QStringListModelEmpty") return new QStringListModel(); if (modelType == "QStringListModel") { QStringListModel *model = new QStringListModel(); populateTestArea(model); return model; } if (modelType == "QStandardItemModelEmpty") { return new QStandardItemModel(); } if (modelType == "QStandardItemModel") { QStandardItemModel *model = new QStandardItemModel(); populateTestArea(model); return model; } if (modelType == "QSortFilterProxyModelEmpty") { QSortFilterProxyModel *model = new QSortFilterProxyModel; QStandardItemModel *standardItemModel = new QStandardItemModel; model->setSourceModel(standardItemModel); return model; } if (modelType == "QSortFilterProxyModelRegExp") { QSortFilterProxyModel *model = new QSortFilterProxyModel; QStandardItemModel *standardItemModel = new QStandardItemModel; model->setSourceModel(standardItemModel); populateTestArea(model); model->setFilterRegExp(QRegExp("(^$|I.*)")); return model; } if (modelType == "QSortFilterProxyModel") { QSortFilterProxyModel *model = new QSortFilterProxyModel; QStandardItemModel *standardItemModel = new QStandardItemModel; model->setSourceModel(standardItemModel); populateTestArea(model); return model; } if (modelType == "QDirModel") { QDirModel *model = new QDirModel(); model->setReadOnly(false); return model; } if (modelType == "QSqlQueryModel") { QSqlQueryModel *model = new QSqlQueryModel(); populateTestArea(model); return model; } if (modelType == "QSqlQueryModelEmpty") { QSqlQueryModel *model = new QSqlQueryModel(); return model; } if (modelType == "QSqlTableModel") { QSqlTableModel *model = new QSqlTableModel(); populateTestArea(model); return model; } if (modelType == "QListModelEmpty") return (new QListWidget)->model(); if (modelType == "QListModel") { QListWidget *widget = new QListWidget; populateTestArea(widget->model()); return widget->model(); } if (modelType == "QTableModelEmpty") return (new QTableWidget)->model(); if (modelType == "QTableModel") { QTableWidget *widget = new QTableWidget; populateTestArea(widget->model()); return widget->model(); } if (modelType == "QTreeModelEmpty") { QTreeWidget *widget = new QTreeWidget; return widget->model(); } if (modelType == "QTreeModel") { QTreeWidget *widget = new QTreeWidget; populateTestArea(widget->model()); return widget->model(); } return 0; } /*! Fills model with some test data at least twenty rows and if possible twenty or more columns. Return the parent of a row/column that can be tested. NOTE: If readOnly is true tests will try to remove and add rows and columns. If you have a tree model returning not the root index will help catch more errors. */ QModelIndex ModelsToTest::populateTestArea(QAbstractItemModel *model) { if (QStringListModel *stringListModel = qobject_cast(model)) { QString alphabet = "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"; stringListModel->setStringList( alphabet.split(QLatin1Char(',')) ); return QModelIndex(); } if (qobject_cast(model)) { // Basic tree StandardItemModel QModelIndex parent; QVariant blue = QVariant(QColor(Qt::blue)); for (int i = 0; i < 4; ++i) { parent = model->index(0, 0, parent); model->insertRows(0, 26 + i, parent); model->insertColumns(0, 4 + i, parent); // Fill in some values to make it easier to debug /* for (int x = 0; x < 26 + i; ++x) { QString xval = QString::number(x); for (int y = 0; y < 26 + i; ++y) { QString val = xval + QString::number(y) + QString::number(i); QModelIndex index = model->index(x, y, parent); model->setData(index, val); model->setData(index, blue, Qt::TextColorRole); } } */ } return model->index(0,0); } if (qobject_cast(model)) { QAbstractItemModel *realModel = (qobject_cast(model))->sourceModel(); // Basic tree StandardItemModel QModelIndex parent; QVariant blue = QVariant(QColor(Qt::blue)); for (int i = 0; i < 4; ++i) { parent = realModel->index(0, 0, parent); realModel->insertRows(0, 26+i, parent); realModel->insertColumns(0, 4, parent); // Fill in some values to make it easier to debug /* for (int x = 0; x < 26+i; ++x) { QString xval = QString::number(x); for (int y = 0; y < 26 + i; ++y) { QString val = xval + QString::number(y) + QString::number(i); QModelIndex index = realModel->index(x, y, parent); realModel->setData(index, val); realModel->setData(index, blue, Qt::TextColorRole); } } */ } QModelIndex returnIndex = model->index(0,0); if (!returnIndex.isValid()) qFatal("%s: model index to be returned is invalid", Q_FUNC_INFO); return returnIndex; } if (QDirModel *dirModel = qobject_cast(model)) { m_dirModelTempDir.reset(new QTemporaryDir); if (!m_dirModelTempDir->isValid()) qFatal("Cannot create temporary directory \"%s\": %s", qPrintable(QDir::toNativeSeparators(m_dirModelTempDir->path())), qPrintable(m_dirModelTempDir->errorString())); QDir tempDir(m_dirModelTempDir->path()); for (int i = 0; i < 26; ++i) { const QString subdir = QLatin1String("foo_") + QString::number(i); if (!tempDir.mkdir(subdir)) qFatal("Cannot create directory %s", qPrintable(QDir::toNativeSeparators(tempDir.path() + QLatin1Char('/') +subdir))); } return dirModel->index(tempDir.path()); } if (QSqlQueryModel *queryModel = qobject_cast(model)) { QSqlQuery q; q.exec("CREATE TABLE test(id int primary key, name varchar(30))"); q.prepare("INSERT INTO test(id, name) values (?, ?)"); for (int i = 0; i < 1024; ++i) { q.addBindValue(i); q.addBindValue("Mr. Smith" + QString::number(i)); q.exec(); } if (QSqlTableModel *tableModel = qobject_cast(model)) { tableModel->setTable("test"); tableModel->setEditStrategy(QSqlTableModel::OnManualSubmit); tableModel->select(); } else { queryModel->setQuery("select * from test"); } return QModelIndex(); } if (QListWidget *listWidget = qobject_cast(model->parent())) { int items = 50; while (items--) listWidget->addItem(QLatin1String("item ") + QString::number(items)); return QModelIndex(); } if (QTableWidget *tableWidget = qobject_cast(model->parent())) { tableWidget->setColumnCount(20); tableWidget->setRowCount(20); return QModelIndex(); } if (QTreeWidget *treeWidget = qobject_cast(model->parent())) { int topItems = 20; treeWidget->setColumnCount(1); QTreeWidgetItem *parent; while (topItems--){ const QString tS = QString::number(topItems); parent = new QTreeWidgetItem(treeWidget, QStringList(QLatin1String("top ") + tS)); for (int i = 0; i < 20; ++i) new QTreeWidgetItem(parent, QStringList(QLatin1String("child ") + tS)); } return QModelIndex(); } qFatal("%s: unknown type of model", Q_FUNC_INFO); return QModelIndex(); } /*! If you need to cleanup from populateTest() do it here. Note that this is called after every test even if populateTestArea isn't called. */ void ModelsToTest::cleanupTestArea(QAbstractItemModel *model) { if (qobject_cast(model)) { m_dirModelTempDir.reset(); } else if (qobject_cast(model)) { QSqlQuery q("DROP TABLE test"); } } void ModelsToTest::setupDatabase() { if (!QSqlDatabase::database().isValid()) { QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE"); db.setDatabaseName(":memory:"); if (!db.open()) { qWarning() << "Unable to open database" << db.lastError(); return; } } }