1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*
actiontest.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2015 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Volker Krause <volker.krause@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include "baseprobetest.h"
#include "testhelpers.h"
#include <plugins/actioninspector/clientactionmodel.h>
#include <common/objectbroker.h>
#include <QAbstractItemModel>
#include <QAction>
#include <QSignalSpy>
using namespace GammaRay;
using namespace TestHelpers;
class ActionTest : public BaseProbeTest
{
Q_OBJECT
private slots:
void testActionCreationDeletion()
{
createProbe();
std::unique_ptr<QAction> a1(new QAction(QStringLiteral("Action 1"), this));
a1->setObjectName("action1");
std::unique_ptr<QAction> a2(new QAction(QStringLiteral("Action 2"), this));
QTest::qWait(1); // event loop re-entry
auto sourceModel = ObjectBroker::model(QStringLiteral("com.kdab.GammaRay.ActionModel"));
QVERIFY(sourceModel);
auto model = new ClientActionModel(this);
model->setSourceModel(sourceModel);
QCOMPARE(model->rowCount(), 2);
auto idx = searchFixedIndex(model, "action1");
QVERIFY(idx.isValid());
idx = idx.sibling(idx.row(), 5);
QVERIFY(idx.data().toString().isEmpty());
QVERIFY(idx.data(Qt::ToolTipRole).isNull());
QVERIFY(idx.data(Qt::DecorationRole).isNull());
a1.reset();
QTest::qWait(1); // event loop re-entry
QCOMPARE(model->rowCount(), 1);
a2.reset();
QTest::qWait(1); // event loop re-entry
QCOMPARE(model->rowCount(), 0);
}
void testConflictDetection()
{
createProbe();
std::unique_ptr<QAction> a1(new QAction(QStringLiteral("Action 1"), this));
a1->setShortcut(QKeySequence(QStringLiteral("Ctrl+K")));
a1->setShortcutContext(Qt::ApplicationShortcut);
std::unique_ptr<QAction> a2(new QAction(QStringLiteral("Action 2"), this));
a2->setShortcut(QKeySequence(QStringLiteral("Ctrl+K")));
a2->setShortcutContext(Qt::WidgetShortcut);
QTest::qWait(1); // event loop re-entry
auto sourceModel = ObjectBroker::model(QStringLiteral("com.kdab.GammaRay.ActionModel"));
QVERIFY(sourceModel);
auto model = new ClientActionModel(this);
model->setSourceModel(sourceModel);
QVERIFY(model);
QCOMPARE(model->rowCount(), 2);
const auto index = model->index(0, 5);
QCOMPARE(index.data(Qt::DisplayRole).toString(), QKeySequence(QStringLiteral("Ctrl+K")).toString(QKeySequence::PortableText));
QVERIFY(!index.data(Qt::DecorationRole).isNull());
QVERIFY(!index.data(Qt::ToolTipRole).toString().isEmpty());
a1.reset();
a2.reset();
QTest::qWait(1);
}
void testActionChanges()
{
createProbe();
std::unique_ptr<QAction> a1(new QAction(QStringLiteral("Action 1"), this));
QTest::qWait(1); // event loop re-entry
auto sourceModel = ObjectBroker::model(QStringLiteral("com.kdab.GammaRay.ActionModel"));
auto model = new ClientActionModel(this);
model->setSourceModel(sourceModel);
QVERIFY(model);
QCOMPARE(model->rowCount(), 1);
QSignalSpy changeSpy(model, &QAbstractItemModel::dataChanged);
QVERIFY(changeSpy.isValid());
a1->setCheckable(true);
QCOMPARE(changeSpy.size(), 1);
a1->setText("Renamed Action");
QCOMPARE(changeSpy.size(), 2);
a1->setChecked(true);
QCOMPARE(changeSpy.size(), 3);
a1->setDisabled(true);
QCOMPARE(model->index(0, 0).data(Qt::CheckStateRole).toInt(), ( int )Qt::Unchecked);
a1->setEnabled(true);
QCOMPARE(model->index(0, 0).data(Qt::CheckStateRole).toInt(), ( int )Qt::Checked);
QVERIFY(changeSpy.size() >= 4);
changeSpy.clear();
QVERIFY(model->setData(model->index(0, 0), Qt::Unchecked, Qt::CheckStateRole));
QCOMPARE(a1->isEnabled(), false);
QCOMPARE(changeSpy.size(), 1);
a1->setChecked(true);
QCOMPARE(changeSpy.size(), 1);
QCOMPARE(model->index(0, 3).data(Qt::CheckStateRole).toInt(), ( int )Qt::Checked);
QVERIFY(model->setData(model->index(0, 3), Qt::Unchecked, Qt::CheckStateRole));
QCOMPARE(a1->isChecked(), false);
QCOMPARE(changeSpy.size(), 2);
}
};
QTEST_MAIN(ActionTest)
#include "actiontest.moc"
|