diff --git a/autotests/libs/modelspy.h b/autotests/libs/modelspy.h index 906f0fa16..b60200d2e 100644 --- a/autotests/libs/modelspy.h +++ b/autotests/libs/modelspy.h @@ -1,124 +1,124 @@ /* Copyright (c) 2009 Stephen Kelly This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef MODELSPY_H #define MODELSPY_H #include #include #include #include "akonaditestfake_export.h" enum SignalType { NoSignal, RowsAboutToBeInserted, RowsInserted, RowsAboutToBeRemoved, RowsRemoved, RowsAboutToBeMoved, RowsMoved, DataChanged }; struct ExpectedSignal { ExpectedSignal(SignalType type, int start, int end, const QVariantList &newData) : ExpectedSignal{type, start, end, {}, newData} { } - ExpectedSignal(SignalType type, int start, int end, const QVariant &parentData = QVariant(), const QVariantList &newData = QVariantList()) - : signalType{type}, startRow{start}, endRow{end}, parentData{parentData}, newData{newData} + ExpectedSignal(SignalType type, int start, int end, const QVariant &parentData = {}, const QVariantList &newData = {}) + : signalType(type), startRow(start), endRow(end), parentData(parentData), newData(newData) { } ExpectedSignal(SignalType type, int start, int end, const QVariant &sourceParentData, int destRow, const QVariant &destParentData, const QVariantList &newData) - : signalType{type}, startRow{start}, endRow{end}, parentData{destParentData} - , sourceParentData{sourceParentData}, destRow{destRow}, newData{newData} + : signalType(type), startRow(start), endRow(end), parentData(destParentData) + , sourceParentData(sourceParentData), destRow(destRow), newData(newData) { } SignalType signalType; int startRow; int endRow; QVariant parentData; QVariant sourceParentData; int destRow = 0; QVariantList newData; }; Q_DECLARE_METATYPE(QModelIndex) class AKONADITESTFAKE_EXPORT ModelSpy : public QObject, public QList { Q_OBJECT public: explicit ModelSpy(QAbstractItemModel *model, QObject *parent = nullptr); bool isEmpty() const; void setExpectedSignals(const QList &expectedSignals); QList expectedSignals() const; void verifySignal(SignalType type, const QModelIndex &parent, int start, int end); void verifySignal(SignalType type, const QModelIndex &parent, int start, int end, const QModelIndex &destParent, int destStart); void verifySignal(SignalType type, const QModelIndex &topLeft, const QModelIndex &bottomRight); void startSpying(); void stopSpying(); bool isSpying() { return m_isSpying; } protected Q_SLOTS: void rowsAboutToBeInserted(const QModelIndex &parent, int start, int end); void rowsInserted(const QModelIndex &parent, int start, int end); void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end); void rowsRemoved(const QModelIndex &parent, int start, int end); void rowsAboutToBeMoved(const QModelIndex &srcParent, int start, int end, const QModelIndex &destParent, int destStart); void rowsMoved(const QModelIndex &srcParent, int start, int end, const QModelIndex &destParent, int destStart); void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight); private: QAbstractItemModel *const m_model = nullptr; bool m_isSpying; QList m_expectedSignals; }; #ifdef _MSC_VER // FIXME: This is a very lousy implementation to make MSVC happy. Apparently // MSVC insists on instantiating QSet QList::toSet() and complains about // not having qHash() overload for QVariant(List) in QSet // // FIXME: This is good enough for ModelSpy, but should never ever be used in // regular code. inline uint qHash(const QVariant &v) { return v.userType() + v.toUInt(); } inline uint qHash(const QVariantList &list) { return qHashRange(list.cbegin(), list.cend()); } #endif #endif