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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
|
/***************************************************************************
* Copyright 2006-2007 Alexander Dymo <adymo@kdevelop.org> *
* *
* This program 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 program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include "test_areaoperation.h"
#include <QTest>
#include <QListView>
#include <QTextEdit>
#include <QSplitter>
#include <QUrl>
#include <QDebug>
#include <KSharedConfig>
#include <sublime/view.h>
#include <sublime/area.h>
#include <sublime/sublimedefs.h>
#include <sublime/tooldocument.h>
#include <sublime/urldocument.h>
#include <sublime/controller.h>
#include <sublime/mainwindow.h>
#include <sublime/container.h>
#include "areaprinter.h"
using namespace Sublime;
struct ViewCounter {
ViewCounter() {}
Area::WalkerMode operator()(AreaIndex *index)
{
count += index->views().count();
return Area::ContinueWalker;
}
int count = 0;
};
void TestAreaOperation::init()
{
m_controller = new Controller(this);
Document *doc1 = new UrlDocument(m_controller, QUrl::fromLocalFile(QStringLiteral("~/foo.cpp")));
Document *doc2 = new UrlDocument(m_controller, QUrl::fromLocalFile(QStringLiteral("~/boo.cpp")));
Document *doc3 = new UrlDocument(m_controller, QUrl::fromLocalFile(QStringLiteral("~/moo.cpp")));
Document *doc4 = new UrlDocument(m_controller, QUrl::fromLocalFile(QStringLiteral("~/zoo.cpp")));
//documents for tool views
Document *tool1 = new ToolDocument(QStringLiteral("tool1"), m_controller, new SimpleToolWidgetFactory<QListView>(QStringLiteral("tool1")));
Document *tool2 = new ToolDocument(QStringLiteral("tool2"), m_controller, new SimpleToolWidgetFactory<QTextEdit>(QStringLiteral("tool2")));
Document *tool3 = new ToolDocument(QStringLiteral("tool3"), m_controller, new SimpleToolWidgetFactory<QTextEdit>(QStringLiteral("tool3")));
//areas (aka perspectives)
//view object names are in form AreaNumber.DocumentNumber.ViewNumber
//"tool" prefix is there for tooldocument views
m_area1 = new Area(m_controller, QStringLiteral("Area 1"));
m_pView111 = doc1->createView();
m_pView111->setObjectName(QStringLiteral("view1.1.1"));
m_area1->addView(m_pView111);
m_pView121 = doc2->createView();
m_pView121->setObjectName(QStringLiteral("view1.2.1"));
m_area1->addView(m_pView121);
m_pView122 = doc2->createView();
m_pView122->setObjectName(QStringLiteral("view1.2.2"));
m_area1->addView(m_pView122);
m_pView131 = doc3->createView();
m_pView131->setObjectName(QStringLiteral("view1.3.1"));
m_area1->addView(m_pView131);
View *view = tool1->createView();
view->setObjectName(QStringLiteral("toolview1.1.1"));
m_area1->addToolView(view, Sublime::Left);
view = tool2->createView();
view->setObjectName(QStringLiteral("toolview1.2.1"));
m_area1->addToolView(view, Sublime::Bottom);
view = tool2->createView();
view->setObjectName(QStringLiteral("toolview1.2.2"));
m_area1->addToolView(view, Sublime::Bottom);
m_area2 = new Area(m_controller, QStringLiteral("Area 2"));
View *view211 = doc1->createView();
view211->setObjectName(QStringLiteral("view2.1.1"));
m_area2->addView(view211);
View *view212 = doc1->createView();
view212->setObjectName(QStringLiteral("view2.1.2"));
m_area2->addView(view212);
View *view221 = doc2->createView();
view221->setObjectName(QStringLiteral("view2.2.1"));
m_area2->addView(view221, view211, Qt::Vertical);
View *view231 = doc3->createView();
view231->setObjectName(QStringLiteral("view2.3.1"));
m_area2->addView(view231, view221, Qt::Horizontal);
View *view241 = doc4->createView();
view241->setObjectName(QStringLiteral("view2.4.1"));
m_area2->addView(view241, view212, Qt::Vertical);
view = tool1->createView();
view->setObjectName(QStringLiteral("toolview2.1.1"));
m_area2->addToolView(view, Sublime::Bottom);
view = tool2->createView();
view->setObjectName(QStringLiteral("toolview2.2.1"));
m_area2->addToolView(view, Sublime::Right);
view = tool3->createView();
view->setObjectName(QStringLiteral("toolview2.3.1"));
m_area2->addToolView(view, Sublime::Top);
view = tool3->createView();
view->setObjectName(QStringLiteral("toolview2.3.2"));
m_area2->addToolView(view, Sublime::Top);
m_area3 = new Area(m_controller, QStringLiteral("Area 3"));
View *view0 = doc1->createView();
view0->setObjectName(QStringLiteral("view3.1.1"));
m_area3->addView(view0);
View *view1 = doc2->createView();
view1->setObjectName(QStringLiteral("view3.1.2"));
m_area3->addView(view1, view0);
View *view2 = doc3->createView();
view2->setObjectName(QStringLiteral("view3.1.3"));
m_area3->addView(view2, view1);
View *view3 = doc4->createView();
view3->setObjectName(QStringLiteral("view3.1.4"));
m_area3->addView(view3, view1);
m_controller->addDefaultArea(m_area1);
m_controller->addDefaultArea(m_area2);
m_controller->addDefaultArea(m_area3);
}
void TestAreaOperation::cleanup()
{
delete m_area1;
delete m_area2;
delete m_controller;
m_area1 = nullptr;
m_area2 = nullptr;
m_controller = nullptr;
}
void TestAreaOperation::areaConstruction()
{
//check if areas has proper object names
QCOMPARE(m_area1->objectName(), QStringLiteral("Area 1"));
QCOMPARE(m_area2->objectName(), QStringLiteral("Area 2"));
//check that area1 contents is properly initialised
AreaViewsPrinter viewsPrinter1;
m_area1->walkViews(viewsPrinter1, m_area1->rootIndex());
QCOMPARE(viewsPrinter1.result, QStringLiteral("\n\
[ view1.1.1 view1.2.1 view1.2.2 view1.3.1 ]\n\
"));
AreaToolViewsPrinter toolViewsPrinter1;
m_area1->walkToolViews(toolViewsPrinter1, Sublime::AllPositions);
QCOMPARE(toolViewsPrinter1.result, QStringLiteral("\n\
toolview1.1.1 [ left ]\n\
toolview1.2.1 [ bottom ]\n\
toolview1.2.2 [ bottom ]\n\
"));
//check that area2 contents is properly initialised
AreaViewsPrinter viewsPrinter2;
m_area2->walkViews(viewsPrinter2, m_area2->rootIndex());
QCOMPARE(viewsPrinter2.result, QStringLiteral("\n\
[ vertical splitter ]\n\
[ vertical splitter ]\n\
[ view2.1.1 view2.1.2 ]\n\
[ view2.4.1 ]\n\
[ horizontal splitter ]\n\
[ view2.2.1 ]\n\
[ view2.3.1 ]\n\
"));
AreaToolViewsPrinter toolViewsPrinter2;
m_area2->walkToolViews(toolViewsPrinter2, Sublime::AllPositions);
QCOMPARE(toolViewsPrinter2.result, QStringLiteral("\n\
toolview2.1.1 [ bottom ]\n\
toolview2.2.1 [ right ]\n\
toolview2.3.1 [ top ]\n\
toolview2.3.2 [ top ]\n\
"));
}
void TestAreaOperation::mainWindowConstruction()
{
//====== check for m_area1 ======
MainWindow mw1(m_controller);
m_controller->showArea(m_area1, &mw1);
checkArea1(&mw1);
/////////////
//====== check for m_area2 ======
MainWindow mw2(m_controller);
m_controller->showArea(m_area2, &mw2);
checkArea2(&mw2);
}
void TestAreaOperation::checkArea1(MainWindow *mw)
{
Area *area = mw->area();
//check that all docks have their widgets
const auto toolDocks = mw->toolDocks();
for (View* dock : toolDocks) {
//QVERIFY(dock->widget() != 0);
QVERIFY(dock->hasWidget());
}
QCOMPARE(toolDocks.count(), area->toolViews().count());
//check that mainwindow have all splitters and widgets in splitters inside centralWidget
QWidget *central = mw->centralWidget();
QVERIFY(central != nullptr);
QVERIFY(central->inherits("QWidget"));
QWidget *splitter = central->findChild<QSplitter*>();
QVERIFY(splitter);
QVERIFY(splitter->inherits("QSplitter"));
//check that we have a container and 4 views inside
auto *container = splitter->findChild<Sublime::Container*>();
QVERIFY(container);
ViewCounter c;
area->walkViews(c, area->rootIndex());
QCOMPARE(container->count(), c.count);
for (int i = 0; i < container->count(); ++i)
QVERIFY(container->widget(i) != nullptr);
}
void TestAreaOperation::checkArea2(MainWindow *mw)
{
Area *area = mw->area();
//check that all docks have their widgets
const auto toolDocks = mw->toolDocks();
for (View* dock : toolDocks) {
//QVERIFY(dock->widget() != 0);
QVERIFY(dock->hasWidget());
}
QCOMPARE(toolDocks.count(), area->toolViews().count());
//check that mainwindow have all splitters and widgets in splitters inside centralWidget
QWidget *central = mw->centralWidget();
QVERIFY(central != nullptr);
QVERIFY(central->inherits("QWidget"));
QWidget *splitter = central->findChild<QSplitter*>();
QVERIFY(splitter);
QVERIFY(splitter->inherits("QSplitter"));
//check that we have 4 properly initialized containers
const QList<Container*> containers = splitter->findChildren<Sublime::Container*>();
QCOMPARE(containers.count(), 4);
int widgetCount = 0;
for (Container* c : containers) {
for (int i = 0; i < c->count(); ++i)
QVERIFY(c->widget(i) != nullptr);
widgetCount += c->count();
}
ViewCounter c;
area->walkViews(c, area->rootIndex());
QCOMPARE(widgetCount, c.count);
//check that we have 7 splitters: 2 vertical and 1 horizontal, rest is not split
QList<QSplitter*> splitters = splitter->findChildren<QSplitter*>();
splitters.append(qobject_cast<QSplitter*>(splitter));
QCOMPARE(splitters.count(), 6+1); //6 child splitters + 1 central itself = 7 splitters
int verticalSplitterCount = 0;
int horizontalSplitterCount = 0;
for (QSplitter* s : qAsConst(splitters)) {
if (s->count() == 1)
continue; //this is a splitter with container inside, its orientation is not relevant
if (s->orientation() == Qt::Vertical)
verticalSplitterCount += 1;
else
horizontalSplitterCount += 1;
}
QCOMPARE(verticalSplitterCount, 2);
QCOMPARE(horizontalSplitterCount, 1);
}
void TestAreaOperation::areaCloning()
{
//show m_area1 in MainWindow1
MainWindow mw1(m_controller);
m_controller->showArea(m_area1, &mw1);
checkArea1(&mw1);
//now try to show the same area in MainWindow2 and check that we get a clone
MainWindow mw2(m_controller);
m_controller->showArea(m_area1, &mw2);
//two mainwindows have different areas
QVERIFY(mw1.area() != mw2.area());
//the area for the second mainwindow is a clone of the
//original area and should have the same name.
QVERIFY(mw2.area()->objectName() == mw1.area()->objectName());
//check mainwindow layouts - original and copy
checkArea1(&mw1);
checkArea1(&mw2);
}
/*! Functor used by areaSwitchingInSameMainWindow()
Walks all Views and checks if they got a widget.
hasWidget will be set to false if any View lacks a widget.*/
struct AreaWidgetChecker {
AreaWidgetChecker() = default;
Area::WalkerMode operator()(AreaIndex *index)
{
for (View* view : qAsConst(index->views())) {
if (!view->hasWidget()) {
failureMessage += view->objectName() + " has no widget\n";
foundViewWithoutWidget = true;
}
}
return Area::ContinueWalker;
}
Area::WalkerMode operator()(View *view, Sublime::Position)
{
if (!view->hasWidget()) {
foundViewWithoutWidget = true;
failureMessage += view->objectName() + " has no widget\n";
}
return Area::ContinueWalker;
}
bool foundViewWithoutWidget = false;
QString failureMessage;
};
void TestAreaOperation::areaSwitchingInSameMainwindow()
{
MainWindow mw(m_controller);
m_controller->showArea(m_area1, &mw);
checkArea1(&mw);
m_controller->showArea(m_area2, &mw);
checkArea2(&mw);
//check what happened to area1 widgets, they should be intact
AreaWidgetChecker checker;
m_area1->walkViews(checker, m_area1->rootIndex());
m_area1->walkToolViews(checker, Sublime::AllPositions);
QVERIFY2(!checker.foundViewWithoutWidget, checker.failureMessage.toLatin1().data());
}
void TestAreaOperation::simpleViewAdditionAndDeletion()
{
// set TabBarOpenAfterCurrent=0, otherwise we'd have a different order of tabs
int oldTabBarOpenAfterCurrent;
{
KConfigGroup uiGroup = KSharedConfig::openConfig()->group("UiSettings");
oldTabBarOpenAfterCurrent = uiGroup.readEntry("TabBarOpenAfterCurrent", 1);
uiGroup.writeEntry("TabBarOpenAfterCurrent", 0);
uiGroup.sync();
}
m_controller->loadSettings();
MainWindow mw(m_controller);
m_controller->addMainWindow(&mw);
m_controller->showArea(m_area1, &mw);
checkArea1(&mw);
Document *doc5 = new UrlDocument(m_controller, QUrl::fromLocalFile(QStringLiteral("~/new.cpp")));
View *view = doc5->createView();
view->setObjectName(QStringLiteral("view1.5.1"));
m_area1->addView(view);
checkAreaViewsDisplay(&mw, m_area1,
QStringLiteral("\n[ view1.1.1 view1.2.1 view1.2.2 view1.3.1 view1.5.1 ]\n"),
1, 1, QStringLiteral("Added an url view (view1.5.1)"));
//now remove view and check that area is valid
delete m_area1->removeView(view);
checkAreaViewsDisplay(&mw, m_area1,
QStringLiteral("\n[ view1.1.1 view1.2.1 view1.2.2 view1.3.1 ]\n"),
1, 1, QStringLiteral("Removed the url view (view1.5.1)"));
//now remove all other views one by one and leave an empty container
const QList<View*> list(m_area1->views());
for (View* view : list) {
delete m_area1->removeView(view);
}
checkAreaViewsDisplay(&mw, m_area1,
QStringLiteral("\n[ horizontal splitter ]\n"),
0, 1, QStringLiteral("Removed all views. Only horizontal splitter should remain."));
//add a view again and check that mainwindow is correctly reconstructed
view = doc5->createView();
view->setObjectName(QStringLiteral("view1.5.1"));
m_area1->addView(view);
checkAreaViewsDisplay(&mw, m_area1,
QStringLiteral("\n[ view1.5.1 ]\n"),
1, 1, QStringLiteral("Added a single view to previously emptied mainwindow."));
{
KConfigGroup uiGroup = KSharedConfig::openConfig()->group("UiSettings");
uiGroup.writeEntry("TabBarOpenAfterCurrent", oldTabBarOpenAfterCurrent);
uiGroup.sync();
}
m_controller->loadSettings();
}
void TestAreaOperation::complexViewAdditionAndDeletion()
{
Area *area = m_area2;
MainWindow mw(m_controller);
m_controller->addMainWindow(&mw);
m_controller->showArea(m_area2, &mw);
Document *doc5 = new UrlDocument(m_controller, QUrl::fromLocalFile(QStringLiteral("~/new.cpp")));
View *view = doc5->createView();
view->setObjectName(QStringLiteral("view2.5.1"));
View *view221 = findNamedView(area, QStringLiteral("view2.2.1"));
QVERIFY(view221);
area->addView(view, view221, Qt::Vertical);
checkAreaViewsDisplay(&mw, area, QStringLiteral("\n\
[ vertical splitter ]\n\
[ vertical splitter ]\n\
[ view2.1.1 view2.1.2 ]\n\
[ view2.4.1 ]\n\
[ horizontal splitter ]\n\
[ vertical splitter ]\n\
[ view2.2.1 ]\n\
[ view2.5.1 ]\n\
[ view2.3.1 ]\n\
"), 5, 8+1);
//now delete view221
delete area->removeView(view221);
checkAreaViewsDisplay(&mw, area, QStringLiteral("\n\
[ vertical splitter ]\n\
[ vertical splitter ]\n\
[ view2.1.1 view2.1.2 ]\n\
[ view2.4.1 ]\n\
[ horizontal splitter ]\n\
[ view2.5.1 ]\n\
[ view2.3.1 ]\n\
"), 4, 6+1);
//remove one more view, this time the one inside non-empty container
View *view211 = findNamedView(area, QStringLiteral("view2.1.1"));
delete m_area2->removeView(view211);
checkAreaViewsDisplay(&mw, area, QStringLiteral("\n\
[ vertical splitter ]\n\
[ vertical splitter ]\n\
[ view2.1.2 ]\n\
[ view2.4.1 ]\n\
[ horizontal splitter ]\n\
[ view2.5.1 ]\n\
[ view2.3.1 ]\n\
"), 4, 6+1);
//and now remove all remaining views one by one
delete m_area2->removeView(findNamedView(area, QStringLiteral("view2.1.2")));
checkAreaViewsDisplay(&mw, area, QStringLiteral("\n\
[ vertical splitter ]\n\
[ view2.4.1 ]\n\
[ horizontal splitter ]\n\
[ view2.5.1 ]\n\
[ view2.3.1 ]\n\
"), 3, 4+1);
delete m_area2->removeView(findNamedView(area, QStringLiteral("view2.4.1")));
checkAreaViewsDisplay(&mw, area, QStringLiteral("\n\
[ horizontal splitter ]\n\
[ view2.5.1 ]\n\
[ view2.3.1 ]\n\
"), 2, 2+1);
delete m_area2->removeView(findNamedView(area, QStringLiteral("view2.5.1")));
checkAreaViewsDisplay(&mw, area, QStringLiteral("\n\
[ view2.3.1 ]\n\
"), 1, 1);
delete m_area2->removeView(findNamedView(area, QStringLiteral("view2.3.1")));
checkAreaViewsDisplay(&mw, area, QStringLiteral("\n\
[ horizontal splitter ]\n\
"), 0, 1);
}
void TestAreaOperation::toolViewAdditionAndDeletion()
{
MainWindow mw(m_controller);
m_controller->showArea(m_area1, &mw);
checkArea1(&mw);
Document *tool4 = new ToolDocument(QStringLiteral("tool4"), m_controller, new SimpleToolWidgetFactory<QTextEdit>(QStringLiteral("tool4")));
View *view = tool4->createView();
view->setObjectName(QStringLiteral("toolview1.4.1"));
m_area1->addToolView(view, Sublime::Right);
//check that area is in valid state
AreaToolViewsPrinter toolViewsPrinter1;
m_area1->walkToolViews(toolViewsPrinter1, Sublime::AllPositions);
QCOMPARE(toolViewsPrinter1.result, QStringLiteral("\n\
toolview1.1.1 [ left ]\n\
toolview1.2.1 [ bottom ]\n\
toolview1.2.2 [ bottom ]\n\
toolview1.4.1 [ right ]\n\
"));
//check that mainwindow has newly added tool view
{
const auto toolDocks = mw.toolDocks();
for (View* dock : toolDocks) {
QVERIFY(dock->widget() != nullptr);
}
QCOMPARE(toolDocks.count(), m_area1->toolViews().count());
}
//now remove tool view
m_area1->removeToolView(view);
AreaToolViewsPrinter toolViewsPrinter2;
//check that area doesn't have it anymore
m_area1->walkToolViews(toolViewsPrinter2, Sublime::AllPositions);
QCOMPARE(toolViewsPrinter2.result, QStringLiteral("\n\
toolview1.1.1 [ left ]\n\
toolview1.2.1 [ bottom ]\n\
toolview1.2.2 [ bottom ]\n\
"));
//check that mainwindow has newly added tool view
{
const auto toolDocks = mw.toolDocks();
for (View* dock : toolDocks) {
QVERIFY(dock->widget() != nullptr);
}
QCOMPARE(toolDocks.count(), m_area1->toolViews().count());
}
}
void TestAreaOperation::testAddingViewAfter()
{
const QList<View*> list(m_area3->views());
for (View* view : list) {
qDebug() << "name of view : " << view->objectName() << " , it's index : " << m_area3->views().indexOf(view);
}
}
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
void TestAreaOperation::splitViewActiveTabsTest()
{
MainWindow mw(m_controller);
m_controller->showArea(m_area1, &mw);
checkArea1(&mw);
// at first show of the area, the active view should be m_pView111
QCOMPARE(mw.activeView(), m_pView111);
// Try to get to the main container :
// get the central widget
QWidget *pCentral = mw.centralWidget();
QVERIFY(pCentral);
QVERIFY(pCentral->inherits("QWidget"));
// get its first splitter
QWidget *pSplitter = pCentral->findChild<QSplitter*>();
QVERIFY(pSplitter);
QVERIFY(pSplitter->inherits("QSplitter"));
// finally, get the splitter's container
auto *pContainer = pSplitter->findChild<Sublime::Container*>();
QVERIFY(pContainer);
// verify that the current active widget in the container is the one in activeview (m_pView111)
QCOMPARE(pContainer->currentWidget(), mw.activeView()->widget());
// activate the second tab of the area (view212)
mw.activateView(m_pView121);
// verify that the active view was correctly updated to m_pView121
QCOMPARE(mw.activeView(), m_pView121);
// check if the container's current widget was updated to the active view's
QCOMPARE(pContainer->currentWidget(), mw.activeView()->widget());
// now, create a split view of the active view (m_pView121)
Sublime::View *pNewView = mw.activeView()->document()->createView();
pNewView->setObjectName("splitOf" + mw.activeView()->objectName());
m_area1->addView(pNewView, mw.activeView(), Qt::Vertical);
// verify that creating a new view did not break the central widget
QCOMPARE(pCentral, mw.centralWidget());
// verify that creating a new view did not break the main splitter
QCOMPARE(pSplitter, pCentral->findChild<QSplitter*>());
// creating a new view created two new children splitters, get them
QVERIFY(pSplitter->findChildren<QSplitter*>().size() == 2);
QWidget *pFirstSplitter = pSplitter->findChildren<QSplitter*>().at(0);
QVERIFY(pFirstSplitter);
QWidget *pSecondSplitter = pSplitter->findChildren<QSplitter*>().at(1);
QVERIFY(pSecondSplitter);
// for each splitter, get the corresponding container
auto *pFirstContainer = pFirstSplitter->findChild<Sublime::Container*>();
QVERIFY(pFirstContainer);
auto *pSecondContainer = pSecondSplitter->findChild<Sublime::Container*>();
QVERIFY(pSecondContainer);
// the active view should have remained view121
QCOMPARE(mw.activeView(), m_pView121);
// pFirstContainer should contain the newView's widget
QVERIFY(pFirstContainer->hasWidget(pNewView->widget()));
// the new view's widget should be the current widget of the new container
QCOMPARE(pFirstContainer->currentWidget(), pNewView->widget());
// pSecondContainer should contain all the old views widgets
QVERIFY(pSecondContainer->hasWidget(m_pView111->widget()));
QVERIFY(pSecondContainer->hasWidget(m_pView121->widget()));
QVERIFY(pSecondContainer->hasWidget(m_pView122->widget()));
QVERIFY(pSecondContainer->hasWidget(m_pView131->widget()));
// the active widget should be the current widget of the second container
QCOMPARE(pSecondContainer->currentWidget(), mw.activeView()->widget());
////////////////////////////////////////////////////////////////////////////
// now, activate the new view and check if all went well
mw.activateView(pNewView);
// active view should now be newView
QCOMPARE(mw.activeView(), pNewView);
// the active widget should be the current widget of the new container
QCOMPARE(pFirstContainer->currentWidget(), mw.activeView()->widget());
// the current widget of the old container should have remained view121's
QCOMPARE(pSecondContainer->currentWidget(), m_pView121->widget());
////////////////////////////////////////////////////////////////////////////
// now delete newView and check area state
delete m_area1->removeView(pNewView);
// verify that deleting the view did not broke the central widget
QCOMPARE(pCentral, mw.centralWidget());
// removing the view should have destroyed the sub splitters and containers,
// so get the main one and verify that deleting the view did not break it
QCOMPARE(pSplitter, pCentral->findChild<QSplitter*>());
// get the new container inside the main splitter
pContainer = pSplitter->findChild<Sublime::Container*>();
QVERIFY(pContainer);
// active view should now be back to m_pView121 again
QCOMPARE(mw.activeView(), m_pView121);
// check also the container current widget
QCOMPARE(pContainer->currentWidget(), mw.activeView()->widget());
}
void TestAreaOperation::checkAreaViewsDisplay(MainWindow *mw, Area *area,
const QString &printedAreas, int containerCount, int splitterCount, const QString& location)
{
//check area
AreaViewsPrinter viewsPrinter;
area->walkViews(viewsPrinter, area->rootIndex());
QCOMPARE(viewsPrinter.result, printedAreas);
//check mainwindow
QWidget *central = mw->centralWidget();
QVERIFY(central != nullptr);
QVERIFY(central->inherits("QWidget"));
QWidget *splitter = central->findChild<QSplitter*>();
QVERIFY(splitter);
QVERIFY(splitter->inherits("QSplitter"));
//check containers
const QList<Container*> containers = splitter->findChildren<Sublime::Container*>();
QString failMsg = QStringLiteral("\nFailure while checking area contents @ %1\n"
"Expected %2 containers in central splitter but got %3 \n").
arg(location).arg(containerCount).arg(containers.count());
QVERIFY2(containers.count() == containerCount, failMsg.toLatin1().data());
int widgetCount = 0;
for (Container* c : containers) {
for (int i = 0; i < c->count(); ++i)
{
QVERIFY(c->widget(i) != nullptr);
QVERIFY(c->widget(i)->parentWidget() != nullptr);
}
widgetCount += c->count();
}
ViewCounter c;
area->walkViews(c, area->rootIndex());
QCOMPARE(widgetCount, c.count);
QList<QSplitter*> splitters = splitter->findChildren<QSplitter*>();
splitters.append(qobject_cast<QSplitter*>(splitter));
QCOMPARE(splitters.count(), splitterCount);
}
View *TestAreaOperation::findNamedView(Area *area, const QString &name)
{
const auto views = area->views();
for (View* view : views) {
if (view->objectName() == name)
return view;
}
return nullptr;
}
///////////
QTEST_MAIN(TestAreaOperation)
|