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 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
|
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QSignalSpy>
#include <QSortFilterProxyModel>
#include <QTest>
#include <QStandardItemModel>
#include <QIdentityProxyModel>
#include <QItemSelectionModel>
#include <QMimeData>
#include <QStringListModel>
#include <QAbstractItemModelTester>
#include <QTransposeProxyModel>
#include <qconcatenatetablesproxymodel.h>
Q_DECLARE_METATYPE(QModelIndex)
// Extracts a full row from a model as a string
// Works best if every cell contains only one character
static QString extractRowTexts(QAbstractItemModel *model, int row, const QModelIndex &parent = QModelIndex())
{
QString result;
const int colCount = model->columnCount();
for (int col = 0; col < colCount; ++col) {
const QString txt = model->index(row, col, parent).data().toString();
result += txt.isEmpty() ? QStringLiteral(" ") : txt;
}
return result;
}
// Extracts a full column from a model as a string
// Works best if every cell contains only one character
static QString extractColumnTexts(QAbstractItemModel *model, int column, const QModelIndex &parent = QModelIndex())
{
QString result;
const int rowCount = model->rowCount();
for (int row = 0; row < rowCount; ++row) {
const QString txt = model->index(row, column, parent).data().toString();
result += txt.isEmpty() ? QStringLiteral(" ") : txt;
}
return result;
}
static QString rowSpyToText(const QSignalSpy &spy)
{
if (!spy.isValid())
return QStringLiteral("THE SIGNALSPY IS INVALID!");
QString str;
for (int i = 0; i < spy.size(); ++i) {
str += spy.at(i).at(1).toString() + QLatin1Char(',') + spy.at(i).at(2).toString();
if (i + 1 < spy.size())
str += QLatin1Char(';');
}
return str;
}
class tst_QConcatenateTablesProxyModel : public QObject
{
Q_OBJECT
private Q_SLOTS:
void init();
void shouldAggregateTwoModelsCorrectly();
void shouldAggregateThenRemoveTwoEmptyModelsCorrectly();
void shouldAggregateTwoEmptyModelsWhichThenGetFilled();
void shouldHandleDataChanged();
void shouldHandleSetData();
void shouldHandleSetItemData();
void shouldHandleRowInsertionAndRemoval();
void shouldAggregateAnotherModelThenRemoveModels();
void shouldUseSmallestColumnCount();
void shouldIncreaseColumnCountWhenRemovingFirstModel();
void shouldHandleColumnInsertionAndRemoval();
void shouldPropagateLayoutChanged();
void shouldPropagateRowMove();
void shouldPropagateColumnMove();
void shouldReactToModelReset();
void shouldUpdateColumnsOnModelReset();
void shouldPropagateDropOnItem_data();
void shouldPropagateDropOnItem();
void shouldPropagateDropBetweenItems();
void shouldPropagateDropBetweenItemsAtModelBoundary();
void shouldPropagateDropAfterLastRow_data();
void shouldPropagateDropAfterLastRow();
void addModelWithFilterOnTop();
void qtbug91788();
void qtbug91878();
void createPersistentOnLayoutAboutToBeChanged();
private:
QStandardItemModel mod;
QStandardItemModel mod2;
QStandardItemModel mod3;
};
void tst_QConcatenateTablesProxyModel::init()
{
// Prepare some source models to use later on
mod.clear();
mod.appendRow({ new QStandardItem(QStringLiteral("A")), new QStandardItem(QStringLiteral("B")), new QStandardItem(QStringLiteral("C")) });
mod.setHorizontalHeaderLabels(QStringList() << QStringLiteral("H1") << QStringLiteral("H2") << QStringLiteral("H3"));
mod.setVerticalHeaderLabels(QStringList() << QStringLiteral("One"));
mod2.clear();
mod2.appendRow({ new QStandardItem(QStringLiteral("D")), new QStandardItem(QStringLiteral("E")), new QStandardItem(QStringLiteral("F")) });
mod2.setHorizontalHeaderLabels(QStringList() << QStringLiteral("H1") << QStringLiteral("H2") << QStringLiteral("H3"));
mod2.setVerticalHeaderLabels(QStringList() << QStringLiteral("Two"));
mod3.clear();
mod3.appendRow({ new QStandardItem(QStringLiteral("1")), new QStandardItem(QStringLiteral("2")), new QStandardItem(QStringLiteral("3")) });
mod3.appendRow({ new QStandardItem(QStringLiteral("4")), new QStandardItem(QStringLiteral("5")), new QStandardItem(QStringLiteral("6")) });
}
void tst_QConcatenateTablesProxyModel::shouldAggregateTwoModelsCorrectly()
{
// Given a combining proxy
QConcatenateTablesProxyModel pm;
// When adding two source models
pm.addSourceModel(&mod);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
// Then the proxy should show 2 rows
QCOMPARE(pm.rowCount(), 2);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEF"));
// ... and correct headers
QCOMPARE(pm.headerData(0, Qt::Horizontal).toString(), QStringLiteral("H1"));
QCOMPARE(pm.headerData(1, Qt::Horizontal).toString(), QStringLiteral("H2"));
QCOMPARE(pm.headerData(2, Qt::Horizontal).toString(), QStringLiteral("H3"));
QCOMPARE(pm.headerData(0, Qt::Vertical).toString(), QStringLiteral("One"));
QCOMPARE(pm.headerData(1, Qt::Vertical).toString(), QStringLiteral("Two"));
QVERIFY(!pm.canFetchMore(QModelIndex()));
}
void tst_QConcatenateTablesProxyModel::shouldAggregateThenRemoveTwoEmptyModelsCorrectly()
{
// Given a combining proxy
QConcatenateTablesProxyModel pm;
// When adding two empty models
QSignalSpy rowATBISpy(&pm, SIGNAL(rowsAboutToBeInserted(QModelIndex,int,int)));
QSignalSpy rowInsertedSpy(&pm, SIGNAL(rowsInserted(QModelIndex,int,int)));
QSignalSpy rowATBRSpy(&pm, SIGNAL(rowsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy rowRemovedSpy(&pm, SIGNAL(rowsRemoved(QModelIndex,int,int)));
QIdentityProxyModel i1, i2;
pm.addSourceModel(&i1);
pm.addSourceModel(&i2);
// Then the proxy should still be empty (and no signals emitted)
QCOMPARE(pm.rowCount(), 0);
QCOMPARE(pm.columnCount(), 0);
QCOMPARE(rowATBISpy.size(), 0);
QCOMPARE(rowInsertedSpy.size(), 0);
// When removing the empty models
pm.removeSourceModel(&i1);
pm.removeSourceModel(&i2);
// Then the proxy should still be empty (and no signals emitted)
QCOMPARE(pm.rowCount(), 0);
QCOMPARE(pm.columnCount(), 0);
QCOMPARE(rowATBRSpy.size(), 0);
QCOMPARE(rowRemovedSpy.size(), 0);
}
void tst_QConcatenateTablesProxyModel::shouldAggregateTwoEmptyModelsWhichThenGetFilled()
{
// Given a combining proxy with two empty models
QConcatenateTablesProxyModel pm;
QIdentityProxyModel i1, i2;
pm.addSourceModel(&i1);
pm.addSourceModel(&i2);
// When filling them afterwards
i1.setSourceModel(&mod);
i2.setSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
// Then the proxy should show 2 rows
QCOMPARE(pm.rowCount(), 2);
QCOMPARE(pm.columnCount(), 3);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEF"));
// ... and correct headers
QCOMPARE(pm.headerData(0, Qt::Horizontal).toString(), QStringLiteral("H1"));
QCOMPARE(pm.headerData(1, Qt::Horizontal).toString(), QStringLiteral("H2"));
QCOMPARE(pm.headerData(2, Qt::Horizontal).toString(), QStringLiteral("H3"));
QCOMPARE(pm.headerData(0, Qt::Vertical).toString(), QStringLiteral("One"));
QCOMPARE(pm.headerData(1, Qt::Vertical).toString(), QStringLiteral("Two"));
QVERIFY(!pm.canFetchMore(QModelIndex()));
}
void tst_QConcatenateTablesProxyModel::shouldHandleDataChanged()
{
// Given two models combined
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
QSignalSpy dataChangedSpy(&pm, SIGNAL(dataChanged(QModelIndex,QModelIndex)));
// When a cell in a source model changes
mod.item(0, 0)->setData("a", Qt::EditRole);
// Then the change should be notified to the proxy
QCOMPARE(dataChangedSpy.size(), 1);
QCOMPARE(dataChangedSpy.at(0).at(0).toModelIndex(), pm.index(0, 0));
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("aBC"));
// Same test with the other model
mod2.item(0, 2)->setData("f", Qt::EditRole);
QCOMPARE(dataChangedSpy.size(), 2);
QCOMPARE(dataChangedSpy.at(1).at(0).toModelIndex(), pm.index(1, 2));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEf"));
}
void tst_QConcatenateTablesProxyModel::shouldHandleSetData()
{
// Given two models combined
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
QSignalSpy dataChangedSpy(&pm, SIGNAL(dataChanged(QModelIndex,QModelIndex)));
// When changing a cell using setData
pm.setData(pm.index(0, 0), "a");
// Then the change should be notified to the proxy
QCOMPARE(dataChangedSpy.size(), 1);
QCOMPARE(dataChangedSpy.at(0).at(0).toModelIndex(), pm.index(0, 0));
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("aBC"));
// Same test with the other model
pm.setData(pm.index(1, 2), "f");
QCOMPARE(dataChangedSpy.size(), 2);
QCOMPARE(dataChangedSpy.at(1).at(0).toModelIndex(), pm.index(1, 2));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEf"));
}
void tst_QConcatenateTablesProxyModel::shouldHandleSetItemData()
{
// Given two models combined
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
QSignalSpy dataChangedSpy(&pm, SIGNAL(dataChanged(QModelIndex,QModelIndex)));
// When changing a cell using setData
pm.setItemData(pm.index(0, 0), QMap<int, QVariant>{ std::make_pair<int, QVariant>(Qt::DisplayRole, QStringLiteral("X")),
std::make_pair<int, QVariant>(Qt::UserRole, 88) });
// Then the change should be notified to the proxy
QCOMPARE(dataChangedSpy.size(), 1);
QCOMPARE(dataChangedSpy.at(0).at(0).toModelIndex(), pm.index(0, 0));
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("XBC"));
QCOMPARE(pm.index(0, 0).data(Qt::UserRole).toInt(), 88);
// Same test with the other model
pm.setItemData(pm.index(1, 2), QMap<int, QVariant>{ std::make_pair<int, QVariant>(Qt::DisplayRole, QStringLiteral("Y")),
std::make_pair<int, QVariant>(Qt::UserRole, 89) });
QCOMPARE(dataChangedSpy.size(), 2);
QCOMPARE(dataChangedSpy.at(1).at(0).toModelIndex(), pm.index(1, 2));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEY"));
QCOMPARE(pm.index(1, 2).data(Qt::UserRole).toInt(), 89);
}
void tst_QConcatenateTablesProxyModel::shouldHandleRowInsertionAndRemoval()
{
// Given two models combined
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
QSignalSpy rowATBISpy(&pm, SIGNAL(rowsAboutToBeInserted(QModelIndex,int,int)));
QSignalSpy rowInsertedSpy(&pm, SIGNAL(rowsInserted(QModelIndex,int,int)));
// When a source model inserts a new row
QList<QStandardItem *> row;
row.append(new QStandardItem(QStringLiteral("1")));
row.append(new QStandardItem(QStringLiteral("2")));
row.append(new QStandardItem(QStringLiteral("3")));
mod2.insertRow(0, row);
// Then the proxy should notify its users and show changes
QCOMPARE(rowSpyToText(rowATBISpy), QStringLiteral("1,1"));
QCOMPARE(rowSpyToText(rowInsertedSpy), QStringLiteral("1,1"));
QCOMPARE(pm.rowCount(), 3);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("DEF"));
// When removing that row
QSignalSpy rowATBRSpy(&pm, SIGNAL(rowsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy rowRemovedSpy(&pm, SIGNAL(rowsRemoved(QModelIndex,int,int)));
mod2.removeRow(0);
// Then the proxy should notify its users and show changes
QCOMPARE(rowATBRSpy.size(), 1);
QCOMPARE(rowATBRSpy.at(0).at(1).toInt(), 1);
QCOMPARE(rowATBRSpy.at(0).at(2).toInt(), 1);
QCOMPARE(rowRemovedSpy.size(), 1);
QCOMPARE(rowRemovedSpy.at(0).at(1).toInt(), 1);
QCOMPARE(rowRemovedSpy.at(0).at(2).toInt(), 1);
QCOMPARE(pm.rowCount(), 2);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEF"));
// When removing the last row from mod2
rowATBRSpy.clear();
rowRemovedSpy.clear();
mod2.removeRow(0);
// Then the proxy should notify its users and show changes
QCOMPARE(rowATBRSpy.size(), 1);
QCOMPARE(rowATBRSpy.at(0).at(1).toInt(), 1);
QCOMPARE(rowATBRSpy.at(0).at(2).toInt(), 1);
QCOMPARE(rowRemovedSpy.size(), 1);
QCOMPARE(rowRemovedSpy.at(0).at(1).toInt(), 1);
QCOMPARE(rowRemovedSpy.at(0).at(2).toInt(), 1);
QCOMPARE(pm.rowCount(), 1);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
}
void tst_QConcatenateTablesProxyModel::shouldAggregateAnotherModelThenRemoveModels()
{
// Given two models combined, and a third model
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
QSignalSpy rowATBISpy(&pm, SIGNAL(rowsAboutToBeInserted(QModelIndex,int,int)));
QSignalSpy rowInsertedSpy(&pm, SIGNAL(rowsInserted(QModelIndex,int,int)));
// When adding the new source model
pm.addSourceModel(&mod3);
// Then the proxy should notify its users about the two rows inserted
QCOMPARE(rowSpyToText(rowATBISpy), QStringLiteral("2,3"));
QCOMPARE(rowSpyToText(rowInsertedSpy), QStringLiteral("2,3"));
QCOMPARE(pm.rowCount(), 4);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEF"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 3), QStringLiteral("456"));
// When removing that source model again
QSignalSpy rowATBRSpy(&pm, SIGNAL(rowsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy rowRemovedSpy(&pm, SIGNAL(rowsRemoved(QModelIndex,int,int)));
pm.removeSourceModel(&mod3);
// Then the proxy should notify its users about the row removed
QCOMPARE(rowATBRSpy.size(), 1);
QCOMPARE(rowATBRSpy.at(0).at(1).toInt(), 2);
QCOMPARE(rowATBRSpy.at(0).at(2).toInt(), 3);
QCOMPARE(rowRemovedSpy.size(), 1);
QCOMPARE(rowRemovedSpy.at(0).at(1).toInt(), 2);
QCOMPARE(rowRemovedSpy.at(0).at(2).toInt(), 3);
QCOMPARE(pm.rowCount(), 2);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEF"));
// When removing model 2
rowATBRSpy.clear();
rowRemovedSpy.clear();
pm.removeSourceModel(&mod2);
QCOMPARE(rowATBRSpy.size(), 1);
QCOMPARE(rowATBRSpy.at(0).at(1).toInt(), 1);
QCOMPARE(rowATBRSpy.at(0).at(2).toInt(), 1);
QCOMPARE(rowRemovedSpy.size(), 1);
QCOMPARE(rowRemovedSpy.at(0).at(1).toInt(), 1);
QCOMPARE(rowRemovedSpy.at(0).at(2).toInt(), 1);
QCOMPARE(pm.rowCount(), 1);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
// When removing model 1
rowATBRSpy.clear();
rowRemovedSpy.clear();
pm.removeSourceModel(&mod);
QCOMPARE(rowATBRSpy.size(), 1);
QCOMPARE(rowATBRSpy.at(0).at(1).toInt(), 0);
QCOMPARE(rowATBRSpy.at(0).at(2).toInt(), 0);
QCOMPARE(rowRemovedSpy.size(), 1);
QCOMPARE(rowRemovedSpy.at(0).at(1).toInt(), 0);
QCOMPARE(rowRemovedSpy.at(0).at(2).toInt(), 0);
QCOMPARE(pm.rowCount(), 0);
}
void tst_QConcatenateTablesProxyModel::shouldUseSmallestColumnCount()
{
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
pm.addSourceModel(&mod2);
mod2.setColumnCount(1);
pm.addSourceModel(&mod3);
QAbstractItemModelTester modelTest(&pm, this);
QCOMPARE(pm.rowCount(), 4);
QCOMPARE(pm.columnCount(), 1);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("A"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("D"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("1"));
QCOMPARE(extractRowTexts(&pm, 3), QStringLiteral("4"));
const QModelIndex indexA = pm.mapFromSource(mod.index(0, 0));
QVERIFY(indexA.isValid());
QCOMPARE(indexA, pm.index(0, 0));
const QModelIndex indexB = pm.mapFromSource(mod.index(0, 1));
QVERIFY(!indexB.isValid());
const QModelIndex indexD = pm.mapFromSource(mod2.index(0, 0));
QVERIFY(indexD.isValid());
QCOMPARE(indexD, pm.index(1, 0));
// Test setData in an ignored column (QTBUG-91253)
QSignalSpy dataChangedSpy(&pm, SIGNAL(dataChanged(QModelIndex,QModelIndex)));
mod.setData(mod.index(0, 1), "b");
QCOMPARE(dataChangedSpy.size(), 0);
// Test dataChanged across all columns, some visible, some ignored
mod.dataChanged(mod.index(0, 0), mod.index(0, 2));
QCOMPARE(dataChangedSpy.size(), 1);
QCOMPARE(dataChangedSpy.at(0).at(0).toModelIndex(), pm.index(0, 0));
QCOMPARE(dataChangedSpy.at(0).at(1).toModelIndex(), pm.index(0, 0));
}
void tst_QConcatenateTablesProxyModel::shouldIncreaseColumnCountWhenRemovingFirstModel()
{
// Given a model with 2 columns and one with 3 columns
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
QAbstractItemModelTester modelTest(&pm, this);
mod.setColumnCount(2);
pm.addSourceModel(&mod2);
QCOMPARE(pm.rowCount(), 2);
QCOMPARE(pm.columnCount(), 2);
QSignalSpy colATBISpy(&pm, SIGNAL(columnsAboutToBeInserted(QModelIndex,int,int)));
QSignalSpy colInsertedSpy(&pm, SIGNAL(columnsInserted(QModelIndex,int,int)));
QSignalSpy rowATBRSpy(&pm, SIGNAL(rowsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy rowRemovedSpy(&pm, SIGNAL(rowsRemoved(QModelIndex,int,int)));
// When removing the first source model
pm.removeSourceModel(&mod);
// Then the proxy should notify its users about the row removed, and the column added
QCOMPARE(pm.rowCount(), 1);
QCOMPARE(pm.columnCount(), 3);
QCOMPARE(rowSpyToText(rowATBRSpy), QStringLiteral("0,0"));
QCOMPARE(rowSpyToText(rowRemovedSpy), QStringLiteral("0,0"));
QCOMPARE(rowSpyToText(colATBISpy), QStringLiteral("2,2"));
QCOMPARE(rowSpyToText(colInsertedSpy), QStringLiteral("2,2"));
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("DEF"));
}
void tst_QConcatenateTablesProxyModel::shouldHandleColumnInsertionAndRemoval()
{
// Given two models combined, one with 2 columns and one with 3
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
QAbstractItemModelTester modelTest(&pm, this);
mod.setColumnCount(2);
pm.addSourceModel(&mod2);
QSignalSpy colATBISpy(&pm, SIGNAL(columnsAboutToBeInserted(QModelIndex,int,int)));
QSignalSpy colInsertedSpy(&pm, SIGNAL(columnsInserted(QModelIndex,int,int)));
QSignalSpy colATBRSpy(&pm, SIGNAL(columnsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy colRemovedSpy(&pm, SIGNAL(columnsRemoved(QModelIndex,int,int)));
// When the first source model inserts a new column
QCOMPARE(mod.columnCount(), 2);
mod.setColumnCount(3);
// Then the proxy should notify its users and show changes
QCOMPARE(rowSpyToText(colATBISpy), QStringLiteral("2,2"));
QCOMPARE(rowSpyToText(colInsertedSpy), QStringLiteral("2,2"));
QCOMPARE(pm.rowCount(), 2);
QCOMPARE(pm.columnCount(), 3);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("AB "));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEF"));
// And when removing two columns
mod.setColumnCount(1);
// Then the proxy should notify its users and show changes
QCOMPARE(rowSpyToText(colATBRSpy), QStringLiteral("1,2"));
QCOMPARE(rowSpyToText(colRemovedSpy), QStringLiteral("1,2"));
QCOMPARE(pm.rowCount(), 2);
QCOMPARE(pm.columnCount(), 1);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("A"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("D"));
}
void tst_QConcatenateTablesProxyModel::shouldPropagateLayoutChanged()
{
// Given two source models, the second one being a QSFPM
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
QAbstractItemModelTester modelTest(&pm, this);
QSortFilterProxyModel qsfpm;
qsfpm.setSourceModel(&mod3);
pm.addSourceModel(&qsfpm);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("456"));
// And a selection (row 1)
QItemSelectionModel selection(&pm);
selection.select(pm.index(1, 0), QItemSelectionModel::Select | QItemSelectionModel::Rows);
const QModelIndexList lst = selection.selectedIndexes();
QCOMPARE(lst.size(), 3);
for (int col = 0; col < lst.size(); ++col) {
QCOMPARE(lst.at(col).row(), 1);
QCOMPARE(lst.at(col).column(), col);
}
QSignalSpy layoutATBCSpy(&pm, SIGNAL(layoutAboutToBeChanged()));
QSignalSpy layoutChangedSpy(&pm, SIGNAL(layoutChanged()));
// When changing the sorting in the QSFPM
qsfpm.sort(0, Qt::DescendingOrder);
// Then the proxy should emit the layoutChanged signals, and show re-sorted data
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("456"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("123"));
QCOMPARE(layoutATBCSpy.size(), 1);
QCOMPARE(layoutChangedSpy.size(), 1);
// And the selection should be updated accordingly (it became row 2)
const QModelIndexList lstAfter = selection.selectedIndexes();
QCOMPARE(lstAfter.size(), 3);
for (int col = 0; col < lstAfter.size(); ++col) {
QCOMPARE(lstAfter.at(col).row(), 2);
QCOMPARE(lstAfter.at(col).column(), col);
}
}
void tst_QConcatenateTablesProxyModel::shouldPropagateRowMove()
{
// Given two source models (which support moving rows)
QStringListModel model1({ "0", "1", "2" });
QStringListModel model2({ "A", "B", "C" });
QConcatenateTablesProxyModel proxy;
new QAbstractItemModelTester(&proxy, &proxy);
proxy.addSourceModel(&model1);
proxy.addSourceModel(&model2);
QCOMPARE(extractColumnTexts(&proxy, 0), QStringLiteral("012ABC"));
QSignalSpy rowsATBMSpy(&proxy, &QAbstractItemModel::rowsAboutToBeMoved);
QSignalSpy rowsMovedSpy(&proxy, &QAbstractItemModel::rowsMoved);
// When moving a row
QVERIFY(model2.moveRow({}, 0, {}, 2));
// Then
QCOMPARE(extractColumnTexts(&proxy, 0), QStringLiteral("012BAC"));
QCOMPARE(rowsATBMSpy.count(), 1);
QCOMPARE(rowsMovedSpy.count(), 1);
QCOMPARE(rowsATBMSpy[0][1].toInt(), 3); // sourceStart
QCOMPARE(rowsATBMSpy[0][2].toInt(), 3); // sourceEnd
QCOMPARE(rowsATBMSpy[0][4].toInt(), 5); // destinationRow
QCOMPARE(rowsMovedSpy[0][1].toInt(), 3); // sourceStart
QCOMPARE(rowsMovedSpy[0][2].toInt(), 3); // sourceEnd
QCOMPARE(rowsMovedSpy[0][4].toInt(), 5); // destinationRow
}
void tst_QConcatenateTablesProxyModel::shouldPropagateColumnMove()
{
// Given two source models (which support moving rows)
// and two transpose proxies (so it becomes columns)
QStringListModel model1({ "0", "1", "2" });
QStringListModel model2({ "A", "B", "C" });
QTransposeProxyModel transpose1;
QTransposeProxyModel transpose2;
transpose1.setSourceModel(&model1);
transpose2.setSourceModel(&model2);
QConcatenateTablesProxyModel proxy;
new QAbstractItemModelTester(&proxy, &proxy);
proxy.addSourceModel(&transpose1);
proxy.addSourceModel(&transpose2);
QCOMPARE(extractRowTexts(&proxy, 0), QStringLiteral("012"));
QCOMPARE(extractRowTexts(&proxy, 1), QStringLiteral("ABC"));
QSignalSpy columnsATBMSpy(&proxy, &QAbstractItemModel::columnsAboutToBeMoved);
QSignalSpy columnsMovedSpy(&proxy, &QAbstractItemModel::columnsMoved);
QPersistentModelIndex A(proxy.index(1, 0));
QCOMPARE(A.data().toString(), "A");
// When moving a row in a stringlist model, which moves a column in a transpose proxy
QVERIFY(model2.moveRow({}, 0, {}, 2));
// Then, well, we didn't fully move a column in the concatenate proxy.
// It will emit layoutChanged and update persistent indexes, instead.
QCOMPARE(extractRowTexts(&proxy, 0), QStringLiteral("012"));
QCOMPARE(extractRowTexts(&proxy, 1), QStringLiteral("BAC"));
QCOMPARE(columnsATBMSpy.count(), 0);
QCOMPARE(columnsMovedSpy.count(), 0);
QCOMPARE(A.data().toString(), "A");
}
void tst_QConcatenateTablesProxyModel::shouldReactToModelReset()
{
// Given two source models, the second one being a QSFPM
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod);
QAbstractItemModelTester modelTest(&pm, this);
QSortFilterProxyModel qsfpm;
qsfpm.setSourceModel(&mod3);
pm.addSourceModel(&qsfpm);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("456"));
QSignalSpy rowATBRSpy(&pm, SIGNAL(rowsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy rowRemovedSpy(&pm, SIGNAL(rowsRemoved(QModelIndex,int,int)));
QSignalSpy rowATBISpy(&pm, SIGNAL(rowsAboutToBeInserted(QModelIndex,int,int)));
QSignalSpy rowInsertedSpy(&pm, SIGNAL(rowsInserted(QModelIndex,int,int)));
QSignalSpy colATBRSpy(&pm, SIGNAL(columnsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy colRemovedSpy(&pm, SIGNAL(columnsRemoved(QModelIndex,int,int)));
QSignalSpy modelATBResetSpy(&pm, SIGNAL(modelAboutToBeReset()));
QSignalSpy modelResetSpy(&pm, SIGNAL(modelReset()));
// When changing the source model of the QSFPM
qsfpm.setSourceModel(&mod2);
// Then the proxy should emit the reset signals, and show the new data
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("ABC"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEF"));
QCOMPARE(rowATBRSpy.size(), 0);
QCOMPARE(rowRemovedSpy.size(), 0);
QCOMPARE(rowATBISpy.size(), 0);
QCOMPARE(rowInsertedSpy.size(), 0);
QCOMPARE(colATBRSpy.size(), 0);
QCOMPARE(colRemovedSpy.size(), 0);
QCOMPARE(modelATBResetSpy.size(), 1);
QCOMPARE(modelResetSpy.size(), 1);
}
void tst_QConcatenateTablesProxyModel::shouldUpdateColumnsOnModelReset()
{
// Given two source models, the first one being a QSFPM
QConcatenateTablesProxyModel pm;
QSortFilterProxyModel qsfpm;
qsfpm.setSourceModel(&mod3);
pm.addSourceModel(&qsfpm);
pm.addSourceModel(&mod);
QAbstractItemModelTester modelTest(&pm, this);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("456"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("ABC"));
// ... and a model with only 2 columns
QStandardItemModel mod2Columns;
mod2Columns.appendRow({ new QStandardItem(QStringLiteral("W")), new QStandardItem(QStringLiteral("X")) });
QSignalSpy rowATBRSpy(&pm, SIGNAL(rowsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy rowRemovedSpy(&pm, SIGNAL(rowsRemoved(QModelIndex,int,int)));
QSignalSpy rowATBISpy(&pm, SIGNAL(rowsAboutToBeInserted(QModelIndex,int,int)));
QSignalSpy rowInsertedSpy(&pm, SIGNAL(rowsInserted(QModelIndex,int,int)));
QSignalSpy colATBRSpy(&pm, SIGNAL(columnsAboutToBeRemoved(QModelIndex,int,int)));
QSignalSpy colRemovedSpy(&pm, SIGNAL(columnsRemoved(QModelIndex,int,int)));
QSignalSpy modelATBResetSpy(&pm, SIGNAL(modelAboutToBeReset()));
QSignalSpy modelResetSpy(&pm, SIGNAL(modelReset()));
// When changing the source model of the QSFPM
qsfpm.setSourceModel(&mod2Columns);
// Then the proxy should reset, and show the new data
QCOMPARE(modelATBResetSpy.size(), 1);
QCOMPARE(modelResetSpy.size(), 1);
QCOMPARE(rowATBRSpy.size(), 0);
QCOMPARE(rowRemovedSpy.size(), 0);
QCOMPARE(rowATBISpy.size(), 0);
QCOMPARE(rowInsertedSpy.size(), 0);
QCOMPARE(colATBRSpy.size(), 0);
QCOMPARE(colRemovedSpy.size(), 0);
QCOMPARE(pm.rowCount(), 2);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("WX"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("AB"));
}
void tst_QConcatenateTablesProxyModel::shouldPropagateDropOnItem_data()
{
QTest::addColumn<int>("sourceRow");
QTest::addColumn<int>("destRow");
QTest::addColumn<QString>("expectedResult");
QTest::newRow("0-3") << 0 << 3 << QStringLiteral("ABCA");
QTest::newRow("1-2") << 1 << 2 << QStringLiteral("ABBD");
QTest::newRow("2-1") << 2 << 1 << QStringLiteral("ACCD");
QTest::newRow("3-0") << 3 << 0 << QStringLiteral("DBCD");
}
void tst_QConcatenateTablesProxyModel::shouldPropagateDropOnItem()
{
// Given two source models who handle drops
// Note: QStandardItemModel handles drop onto items by inserting child rows,
// which is good for QTreeView but not for QTableView or QConcatenateTablesProxyModel.
// So we use QStringListModel here instead.
QConcatenateTablesProxyModel pm;
QStringListModel model1({QStringLiteral("A"), QStringLiteral("B")});
QStringListModel model2({QStringLiteral("C"), QStringLiteral("D")});
pm.addSourceModel(&model1);
pm.addSourceModel(&model2);
QAbstractItemModelTester modelTest(&pm, this);
QCOMPARE(extractColumnTexts(&pm, 0), QStringLiteral("ABCD"));
// When dragging one item
QFETCH(int, sourceRow);
QMimeData* mimeData = pm.mimeData({pm.index(sourceRow, 0)});
QVERIFY(mimeData);
// and dropping onto another item
QFETCH(int, destRow);
QVERIFY(pm.canDropMimeData(mimeData, Qt::CopyAction, -1, -1, pm.index(destRow, 0)));
QVERIFY(pm.dropMimeData(mimeData, Qt::CopyAction, -1, -1, pm.index(destRow, 0)));
delete mimeData;
// Then the result should be as expected
QFETCH(QString, expectedResult);
QCOMPARE(extractColumnTexts(&pm, 0), expectedResult);
}
void tst_QConcatenateTablesProxyModel::shouldPropagateDropBetweenItems()
{
// Given two models combined
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod3);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
QCOMPARE(pm.rowCount(), 3);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("456"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("DEF"));
// When dragging the last row
QModelIndexList indexes;
indexes.reserve(pm.columnCount());
for (int col = 0; col < pm.columnCount(); ++col) {
indexes.append(pm.index(2, col));
}
QMimeData* mimeData = pm.mimeData(indexes);
QVERIFY(mimeData);
// and dropping it before row 1
const int destRow = 1;
QVERIFY(pm.canDropMimeData(mimeData, Qt::CopyAction, destRow, 0, QModelIndex()));
QVERIFY(pm.dropMimeData(mimeData, Qt::CopyAction, destRow, 0, QModelIndex()));
delete mimeData;
// Then a new row should be inserted
QCOMPARE(pm.rowCount(), 4);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("DEF"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("456"));
QCOMPARE(extractRowTexts(&pm, 3), QStringLiteral("DEF"));
}
void tst_QConcatenateTablesProxyModel::shouldPropagateDropBetweenItemsAtModelBoundary()
{
// Given two models combined
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod3);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
QCOMPARE(pm.rowCount(), 3);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("456"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("DEF"));
// When dragging the first row
QModelIndexList indexes;
indexes.reserve(pm.columnCount());
for (int col = 0; col < pm.columnCount(); ++col) {
indexes.append(pm.index(0, col));
}
QMimeData* mimeData = pm.mimeData(indexes);
QVERIFY(mimeData);
// and dropping it before row 2
const int destRow = 2;
QVERIFY(pm.canDropMimeData(mimeData, Qt::CopyAction, destRow, 0, QModelIndex()));
QVERIFY(pm.dropMimeData(mimeData, Qt::CopyAction, destRow, 0, QModelIndex()));
delete mimeData;
// Then a new row should be inserted
QCOMPARE(pm.rowCount(), 4);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("456"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 3), QStringLiteral("DEF"));
// and it should be part of the second model
QCOMPARE(mod2.rowCount(), 2);
}
void tst_QConcatenateTablesProxyModel::shouldPropagateDropAfterLastRow_data()
{
QTest::addColumn<int>("destRow");
// Dropping after the last row is documented to be done with destRow == -1.
QTest::newRow("-1") << -1;
// However, sometimes QTreeView calls dropMimeData with destRow == rowCount...
// Not sure if that's a bug or not, but let's support it in the model, just in case.
QTest::newRow("3") << 3;
}
void tst_QConcatenateTablesProxyModel::shouldPropagateDropAfterLastRow()
{
QFETCH(int, destRow);
// Given two models combined
QConcatenateTablesProxyModel pm;
pm.addSourceModel(&mod3);
pm.addSourceModel(&mod2);
QAbstractItemModelTester modelTest(&pm, this);
QCOMPARE(pm.rowCount(), 3);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("456"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("DEF"));
// When dragging the second row
QModelIndexList indexes;
indexes.reserve(pm.columnCount());
for (int col = 0; col < pm.columnCount(); ++col) {
indexes.append(pm.index(1, col));
}
QMimeData* mimeData = pm.mimeData(indexes);
QVERIFY(mimeData);
// and dropping it after the last row
QVERIFY(pm.canDropMimeData(mimeData, Qt::CopyAction, destRow, 0, QModelIndex()));
QVERIFY(pm.dropMimeData(mimeData, Qt::CopyAction, destRow, 0, QModelIndex()));
delete mimeData;
// Then a new row should be inserted at the end
QCOMPARE(pm.rowCount(), 4);
QCOMPARE(extractRowTexts(&pm, 0), QStringLiteral("123"));
QCOMPARE(extractRowTexts(&pm, 1), QStringLiteral("456"));
QCOMPARE(extractRowTexts(&pm, 2), QStringLiteral("DEF"));
QCOMPARE(extractRowTexts(&pm, 3), QStringLiteral("456"));
}
class RefuseRowsProxy : public QSortFilterProxyModel
{
public:
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override
{
Q_UNUSED(source_row)
Q_UNUSED(source_parent)
return false;
}
};
void tst_QConcatenateTablesProxyModel::addModelWithFilterOnTop() // QTBUG-134210
{
// Given a QSFPM -> QConcatenateTablesProxyModel and a QStandardItemModel
QStandardItemModel sim;
sim.appendRow(new QStandardItem("ITEM"));
QConcatenateTablesProxyModel concat;
RefuseRowsProxy proxyFilter;
proxyFilter.setSourceModel(&concat);
proxyFilter.setRecursiveFilteringEnabled(true);
// When adding the QStandardItemModel as source model
concat.addSourceModel(&sim);
// Then the item should be filtered out
// (without hitting an assert in QConcat::index() nor an infinite recursion in QSFPM)
QCOMPARE(concat.rowCount(), 1);
QCOMPARE(concat.columnCount(), 1);
QCOMPARE(proxyFilter.rowCount(), 0);
QCOMPARE(proxyFilter.columnCount(), 1);
}
void tst_QConcatenateTablesProxyModel::qtbug91788()
{
QConcatenateTablesProxyModel proxyConcat;
QStringList strList{QString("one"),QString("two")};
QStringListModel strListModelA(strList);
QSortFilterProxyModel proxyFilter;
proxyFilter.setSourceModel(&proxyConcat);
proxyConcat.addSourceModel(&strListModelA);
proxyConcat.removeSourceModel(&strListModelA); // This should not assert
QCOMPARE(proxyConcat.columnCount(), 0);
}
void tst_QConcatenateTablesProxyModel::qtbug91878()
{
QStandardItemModel m;
m.setRowCount(4);
m.setColumnCount(4);
QConcatenateTablesProxyModel pm;
QSortFilterProxyModel proxyFilter;
proxyFilter.setSourceModel(&pm);
proxyFilter.setFilterFixedString("something");
pm.addSourceModel(&m); // This should not assert
QCOMPARE(pm.columnCount(), 4);
QCOMPARE(pm.rowCount(), 4);
}
void tst_QConcatenateTablesProxyModel::createPersistentOnLayoutAboutToBeChanged() // QTBUG-93466
{
QStandardItemModel model1(3, 1);
QStandardItemModel model2(3, 1);
for (int row = 0; row < 3; ++row) {
model1.setData(model1.index(row, 0), row);
model2.setData(model2.index(row, 0), row + 5);
}
QConcatenateTablesProxyModel proxy;
new QAbstractItemModelTester(&proxy, &proxy);
proxy.addSourceModel(&model1);
proxy.addSourceModel(&model2);
QList<QPersistentModelIndex> idxList;
QSignalSpy layoutAboutToBeChangedSpy(&proxy, &QAbstractItemModel::layoutAboutToBeChanged);
QSignalSpy layoutChangedSpy(&proxy, &QAbstractItemModel::layoutChanged);
connect(&proxy, &QAbstractItemModel::layoutAboutToBeChanged, this, [&idxList, &proxy](){
idxList.clear();
for (int row = 0; row < 3; ++row)
idxList << QPersistentModelIndex(proxy.index(row, 0));
});
connect(&proxy, &QAbstractItemModel::layoutChanged, this, [&idxList](){
QCOMPARE(idxList.size(), 3);
QCOMPARE(idxList.at(0).row(), 1);
QCOMPARE(idxList.at(0).column(), 0);
QCOMPARE(idxList.at(0).data().toInt(), 0);
QCOMPARE(idxList.at(1).row(), 0);
QCOMPARE(idxList.at(1).column(), 0);
QCOMPARE(idxList.at(1).data().toInt(), -1);
QCOMPARE(idxList.at(2).row(), 2);
QCOMPARE(idxList.at(2).column(), 0);
QCOMPARE(idxList.at(2).data().toInt(), 2);
});
QVERIFY(model1.setData(model1.index(1, 0), -1));
model1.sort(0);
QCOMPARE(layoutAboutToBeChangedSpy.size(), 1);
QCOMPARE(layoutChangedSpy.size(), 1);
}
QTEST_GUILESS_MAIN(tst_QConcatenateTablesProxyModel)
#include "tst_qconcatenatetablesproxymodel.moc"
|