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
|
/*
SPDX-FileCopyrightText: 2006-2007 Alexander Dymo <adymo@kdevelop.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "test_areawalker.h"
#include <QStringList>
#include <QTest>
#include <QStandardPaths>
#include <sublime/area.h>
#include <sublime/view.h>
#include <sublime/controller.h>
#include <sublime/urldocument.h>
#include "areaprinter.h"
using namespace Sublime;
struct AreaStopper {
explicit AreaStopper(const QString& stopAt): m_stopAt(stopAt) {}
Area::WalkerMode operator()(AreaIndex *index)
{
for (View* view : qAsConst(index->views())) {
list << view->objectName();
if (view->objectName() == m_stopAt)
return Area::StopWalker;
}
return Area::ContinueWalker;
}
Area::WalkerMode operator()(View *view, Sublime::Position)
{
list << view->objectName();
if (view->objectName() == m_stopAt)
return Area::StopWalker;
return Area::ContinueWalker;
}
QStringList list;
QString m_stopAt;
};
void TestAreaWalker::initTestCase()
{
QStandardPaths::setTestModeEnabled(true);
}
void TestAreaWalker::viewWalkerModes()
{
auto *controller = new Controller(this);
Document *doc = new UrlDocument(controller, QUrl::fromLocalFile(QStringLiteral("~/foo.cpp")));
Area *area = new Area(controller, QStringLiteral("Area"));
View *view1 = doc->createView();
view1->setObjectName(QStringLiteral("1"));
area->addView(view1);
View *view2 = doc->createView();
view2->setObjectName(QStringLiteral("2"));
area->addView(view2, view1, Qt::Vertical);
View *view3 = doc->createView();
view3->setObjectName(QStringLiteral("3"));
area->addView(view3, view1, Qt::Vertical);
View *view4 = doc->createView();
view4->setObjectName(QStringLiteral("4"));
area->addView(view4, view1, Qt::Vertical);
AreaViewsPrinter p;
area->walkViews(p, area->rootIndex());
QCOMPARE(p.result, QStringLiteral("\n\
[ vertical splitter ]\n\
[ vertical splitter ]\n\
[ vertical splitter ]\n\
[ 1 ]\n\
[ 4 ]\n\
[ 3 ]\n\
[ 2 ]\n\
"));
AreaStopper stopper(QStringLiteral("1"));
area->walkViews(stopper, area->rootIndex());
QCOMPARE(stopper.list.join(QLatin1Char(' ')), QStringLiteral("1"));
AreaStopper stopper2(QStringLiteral("2"));
area->walkViews(stopper2, area->rootIndex());
QCOMPARE(stopper2.list.join(QLatin1Char(' ')), QStringLiteral("1 4 3 2"));
AreaStopper stopper3(QStringLiteral("3"));
area->walkViews(stopper3, area->rootIndex());
QCOMPARE(stopper3.list.join(QLatin1Char(' ')), QStringLiteral("1 4 3"));
AreaStopper noStopper(QStringLiteral("X"));
area->walkViews(noStopper, area->rootIndex());
QCOMPARE(noStopper.list.join(QLatin1Char(' ')), QStringLiteral("1 4 3 2"));
delete area;
delete doc;
delete controller;
}
void TestAreaWalker::toolViewWalkerModes()
{
auto *controller = new Controller(this);
Document *doc = new UrlDocument(controller, QUrl::fromLocalFile(QStringLiteral("~/foo.cpp")));
Area *area = new Area(controller, QStringLiteral("Area"));
View *view = doc->createView();
view->setObjectName(QStringLiteral("1"));
area->addToolView(view, Sublime::Left);
view = doc->createView();
view->setObjectName(QStringLiteral("2"));
area->addToolView(view, Sublime::Left);
view = doc->createView();
view->setObjectName(QStringLiteral("3"));
area->addToolView(view, Sublime::Bottom);
AreaStopper stopper1(QStringLiteral("1"));
area->walkToolViews(stopper1, Sublime::AllPositions);
QCOMPARE(stopper1.list.join(QLatin1Char(' ')), QStringLiteral("1"));
AreaStopper stopper2(QStringLiteral("2"));
area->walkToolViews(stopper2, Sublime::AllPositions);
QCOMPARE(stopper2.list.join(QLatin1Char(' ')), QStringLiteral("1 2"));
AreaStopper stopper3(QStringLiteral("3"));
area->walkToolViews(stopper3, Sublime::AllPositions);
QCOMPARE(stopper3.list.join(QLatin1Char(' ')), QStringLiteral("1 2 3"));
AreaStopper noStopper(QStringLiteral("X"));
area->walkToolViews(noStopper, Sublime::AllPositions);
QCOMPARE(noStopper.list.join(QLatin1Char(' ')), QStringLiteral("1 2 3"));
delete area;
delete doc;
delete controller;
}
QTEST_MAIN(TestAreaWalker)
|