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
|
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Quick Controls module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
** of its contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 2.2
import QtTest 1.0
import QtQuick.Controls 1.2
import QtQuickControlsTests 1.0
Rectangle {
id: container
width: 400
height: 400
TestCase {
id: testCase
name: "Tests_TableView"
when:windowShown
width:400
height:400
Component {
id: newColumn
TableViewColumn { }
}
function test_usingqmlmodel_data() {
return [
{tag: "listmodel", a: "tableview/table5_listmodel.qml", expected: "A"},
{tag: "countmodel", a: "tableview/table6_countmodel.qml", expected: 0},
{tag: "arraymodel", a: "tableview/table7_arraymodel.qml", expected: "A"},
{tag: "itemmodel", a: "tableview/table8_itemmodel.qml", expected: 10},
]
}
function test_basic_setup() {
var test_instanceStr =
'import QtQuick 2.2; \
import QtQuick.Controls 1.2; \
TableView { \
TableViewColumn { \
} \
model: 10 \
}'
var table = Qt.createQmlObject(test_instanceStr, testCase, '')
compare(table.currentRow, -1)
verify(table.rowCount === 10)
verify (table.__currentRowItem === null)
table.currentRow = 0
verify(table.__currentRowItem !== null)
verify (table.currentRow === 0)
table.currentRow = 3
verify(table.__currentRowItem !== null)
verify (table.currentRow === 3)
table.destroy()
}
function test_usingqmlmodel(data) {
var component = Qt.createComponent(data.a)
compare(component.status, Component.Ready)
var table = component.createObject(testCase);
verify(table !== null, "table created is null")
table.forceActiveFocus();
verify(table.__currentRowItem !== undefined, "No current item found")
var label = findAChild(table.__currentRowItem, "label")
verify(label !== undefined)
compare(label.text, data.expected.toString());
table.destroy();
}
function rangeTest(arr, table) {
var ranges = table.selection.__ranges
if (arr.length !== ranges.length)
return false;
for (var i = 0 ; i < ranges.length ; ++ i) {
if (!(arr[i][0] === ranges[i][0] && arr[i][1] === ranges[i][1]))
return false;
}
return true;
}
function test_keyboardSelection() {
var component = Qt.createComponent("tableview/table6_countmodel.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container);
verify(table !== null, "table created is null")
table.model = 30
table.width = container.width
table.height = container.height
table.selectionMode = SelectionMode.SingleSelection
table.forceActiveFocus();
keyClick(Qt.Key_Down);
verify(table.selection.contains(1))
verify(table.selection.count === 1)
keyClick(Qt.Key_Down, Qt.ShiftModifier);
verify(table.selection.contains(2))
verify(table.selection.count === 1)
table.selectionMode = SelectionMode.ExtendedSelection
keyClick(Qt.Key_Down, Qt.ShiftModifier);
verify(table.selection.contains(2))
verify(table.selection.contains(3))
verify(table.selection.count === 2)
table.selectionMode = SelectionMode.MultiSelection
keyClick(Qt.Key_Down);
keyClick(Qt.Key_Down, Qt.ShiftModifier);
verify(table.selection.contains(4))
verify(table.selection.contains(5))
verify(table.selection.count === 2)
// Navigate to end using arrow keys
table.selectionMode = SelectionMode.SingleSelection
table.model = 3
table.currentRow = -1
keyClick(Qt.Key_Down);
verify(table.currentRow === 0)
verify(rangeTest([[0,0]], table))
verify(table.selection.contains(0))
keyClick(Qt.Key_Down);
verify(table.currentRow === 1)
verify(table.selection.contains(1))
keyClick(Qt.Key_Down);
verify(table.currentRow === 2)
verify(table.selection.contains(2))
keyClick(Qt.Key_Down);
verify(table.currentRow === 2)
verify(table.selection.contains(2))
keyClick(Qt.Key_Up);
verify(table.currentRow === 1)
verify(table.selection.contains(1))
keyClick(Qt.Key_Up);
verify(table.currentRow === 0)
verify(table.selection.contains(0))
keyClick(Qt.Key_Up);
verify(table.currentRow === 0)
verify(table.selection.contains(0))
table.destroy()
}
function test_selection() {
var component = Qt.createComponent("tableview/table2_qabstractitemmodel.qml")
compare(component.status, Component.Ready)
var table = component.createObject(testCase);
verify(table !== null, "table created is null")
table.model = 100
table.selection.select(0, 0)
verify(rangeTest([[0,0]], table))
table.selection.select(4, 10)
verify(rangeTest([[0,0], [4, 10]], table))
table.selection.select(8, 10)
verify(rangeTest([[0,0], [4, 10]], table))
table.selection.select(2, 10)
verify(rangeTest([[0,0], [2, 10]], table))
table.selection.select(0, 1)
verify(rangeTest([[0,10]], table))
table.selection.deselect(0, 1)
verify(rangeTest([[2,10]], table))
table.selection.deselect(7, 4)
verify(rangeTest([[2,3],[8, 10]], table))
table.selection.deselect(1, 2)
verify(rangeTest([[3,3],[8, 10]], table))
table.selection.deselect(3, 3)
verify(rangeTest([[8, 10]], table))
table.selection.select(15, 13)
verify(rangeTest([[8, 10],[13, 15]], table))
table.selection.select(11, 11)
verify(rangeTest([[8, 11],[13, 15]], table))
table.selection.deselect(11, 11)
verify(rangeTest([[8, 10],[13, 15]], table))
table.selection.select(12, 15)
verify(rangeTest([[8, 10],[12, 15]], table))
table.selection.select(0, 3)
verify(rangeTest([[0, 3],[8, 10],[12, 15]], table))
table.selection.select(4, 7)
verify(rangeTest([[0, 10],[12, 15]], table))
table.selection.select(0, 99)
verify(rangeTest([[0, 99]], table))
table.selection.deselect(1, 1)
table.selection.deselect(4, 4)
verify(rangeTest([[0, 0],[2,3],[5, 99]], table))
table.selection.deselect(3, 88)
verify(rangeTest([[0, 0],[2,2],[89, 99]], table))
table.selection.deselect(88, 98)
verify(rangeTest([[0, 0],[2,2],[99, 99]], table))
table.selection.deselect(99, 99)
verify(rangeTest([[0, 0],[2,2]], table))
table.selection.select(0, 3)
verify(rangeTest([[0, 3]], table))
table.selection.deselect(0, 99)
verify(rangeTest([], table))
table.selection.select(5, 3)
table.selection.select(9, 8)
table.selection.select(1, 3)
verify(rangeTest([[1, 5],[8,9]], table))
table.selection.select(0, 99)
table.selection.deselect(0, 0)
table.selection.deselect(4, 4)
table.selection.deselect(9, 13)
verify(rangeTest([[1,3],[5,8],[14,99]], table))
table.selection.select(3, 14)
verify(rangeTest([[1,99]], table))
table.selection.clear()
table.selection.select(1, 1)
verify(rangeTest([[1,1]], table))
table.selection.select(5, 5)
verify(rangeTest([[1,1],[5,5]], table))
table.selection.select(9, 11)
verify(rangeTest([[1,1],[5,5],[9,11]], table))
table.selection.select(1, 3)
verify(rangeTest([[1,3],[5,5],[9,11]], table))
table.selection.clear()
compare(table.selection.__ranges.length, 0)
var i
for (i = 0 ; i < table.rowCount ; i += 2)
table.selection.select(i)
compare(table.selection.__ranges.length, 50)
for (i = 1 ; i < table.rowCount ; i += 2)
table.selection.select(i)
compare(table.selection.__ranges.length, 1)
for (i = 0 ; i < table.rowCount ; i += 2)
table.selection.deselect(i)
compare(table.selection.__ranges.length, 50)
for (i = 1 ; i < table.rowCount ; i += 2)
table.selection.deselect(i)
compare(table.selection.__ranges.length, 0)
table.selection.select(3, 14)
table.selection.select(19, 7)
verify(rangeTest([[3,19]], table))
table.model = 50 // clear selection on model change
compare(table.selection.__ranges.length, 0)
table.selection.selectAll()
compare(table.selection.__ranges.length, 1)
verify(rangeTest([[0,49]], table))
}
function test_selectionCount() {
var component = Qt.createComponent("tableview/table2_qabstractitemmodel.qml")
compare(component.status, Component.Ready)
var table = component.createObject(testCase);
verify(table !== null, "table created is null")
table.model = 100
table.selection.select(0, 0)
compare(table.selection.count, 1)
table.selection.select(4, 6)
compare(table.selection.count, 4)
table.selection.select(10, 13)
compare(table.selection.count, 8)
table.selection.select(0, 99)
compare(table.selection.count, 100)
table.model = 50
compare(table.selection.count, 0)
}
function test_selectionForeach() {
var component = Qt.createComponent("tableview/table2_qabstractitemmodel.qml")
compare(component.status, Component.Ready)
var table = component.createObject(testCase);
verify(table !== null, "table created is null")
table.model = 100
var iteration = 0
function tryMe() { iteration++ }
iteration = 0
table.selection.forEach(tryMe)
compare(iteration, 0)
table.selection.select(2, 5)
table.selection.select(10, 12)
table.selection.select(14, 22)
compare(table.selection.count, 16)
iteration = 0
table.selection.forEach(tryMe)
compare(iteration, 16)
iteration = 0
table.selection.select(0, 99)
table.selection.forEach(tryMe)
compare(iteration, 100)
function removeNext(index) {
table.selection.deselect(index + 1)
verify(index%2 == 1)
iteration++
}
iteration = 0
table.selection.clear()
table.selection.select(1, 7)
table.selection.forEach(removeNext)
compare(iteration, 4)
function deleteAll(index) {
table.selection.deselect(0, table.selection.count)
iteration++
}
iteration = 0
table.selection.clear()
table.selection.select(0)
table.selection.forEach(deleteAll)
compare(iteration, 1)
function addEven(index) {
if (index + 2 < table.rowCount)
table.selection.select(index + 2)
iteration++
verify (index %2 === 0)
}
iteration = 0
table.selection.clear()
table.selection.select(0)
table.selection.forEach(addEven)
compare(iteration, 50)
}
function test_selectionContains() {
var component = Qt.createComponent("tableview/table2_qabstractitemmodel.qml")
compare(component.status, Component.Ready)
var table = component.createObject(testCase);
verify(table !== null, "table created is null")
table.model = 100
table.selection.select(0, 0)
verify(table.selection.contains(0))
verify(!table.selection.contains(1))
verify(!table.selection.contains(10))
table.selection.select(3, 13)
verify(table.selection.contains(10))
verify(!table.selection.contains(2))
table.selection.deselect(5, 7)
verify(!table.selection.contains(5))
verify(!table.selection.contains(6))
verify(!table.selection.contains(7))
verify(table.selection.contains(8))
}
function test_initializedStyleData() {
var table = Qt.createQmlObject('import QtQuick.Controls 1.2; \
import QtQuick 2.2; \
TableView { \
model: 3; \
TableViewColumn{} \
property var items: []; \
property var rows: []; \
itemDelegate: Item{ Component.onCompleted: { items.push(styleData.row) } } \
rowDelegate: Item{ Component.onCompleted: { if (styleData.row !== undefined) rows.push(styleData.row) } } \
}'
, testCase, '')
waitForRendering(table)
compare(table.items, [0, 1, 2]);
compare(table.rows, [0, 1, 2]);
}
function test_usingcppqobjectmodel() {
var component = Qt.createComponent("tableview/table1_qobjectmodel.qml")
compare(component.status, Component.Ready)
var table = component.createObject(testCase);
verify(table !== null, "table created is null")
table.forceActiveFocus();
// read data from the model directly
var valuefrommodel = table.model.value;
verify(valuefrommodel !== undefined, "The model has no defined value")
verify(table.__currentRowItem !== undefined, "No current item found")
var label = findAChild(table.__currentRowItem, "label")
verify(label !== undefined)
compare(label.text, valuefrommodel.toString());
table.destroy();
}
function test_usingcppqabstractitemmodel() {
var component = Qt.createComponent("tableview/table2_qabstractitemmodel.qml")
compare(component.status, Component.Ready)
var table = component.createObject(testCase);
verify(table !== null, "table created is null")
table.forceActiveFocus();
// to go to next row (this model has 10 rows)
table.__incrementCurrentIndex()
// read data from the model directly
var valuefrommodel = table.model.dataAt(table.currentRow)
verify(valuefrommodel !== undefined, "The model has no defined value")
verify(table.__currentRowItem !== undefined, "No current item found")
var label = findAChild(table.__currentRowItem, "label")
verify(label !== undefined)
compare(label.text, valuefrommodel.toString())
table.destroy();
}
function test_usingcpplistmodel_data() {
return [
{tag: "qobjectlistmodel", a: "tableview/table3_qobjectlist.qml", expected: 1},
{tag: "qstringlistmodel", a: "tableview/table4_qstringlist.qml", expected: "B"},
]
}
function test_usingcpplistmodel(data) {
var component = Qt.createComponent(data.a)
compare(component.status, Component.Ready)
var table = component.createObject(testCase);
verify(table !== null, "table created is null")
table.forceActiveFocus();
// to go to next row (this model has 3 rows, read the second row)
table.__incrementCurrentIndex()
verify(table.__currentRowItem !== undefined, "No current item found")
var label = findAChild(table.__currentRowItem, "label")
verify(label !== undefined)
compare(label.text, data.expected.toString());
table.destroy();
}
function test_buttonDelegate() {
var component = Qt.createComponent("tableview/table_buttondelegate.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container)
verify(table !== null, "table created is null")
compare(table.currentRow, -1)
waitForRendering(table)
// wait for items to be created
var timeout = 2000
while (timeout >= 0 && table.rowAt(20, 50) === -1) {
timeout -= 50
wait(50)
}
mousePress(table, 50, 20, Qt.LeftButton)
compare(table.currentRow, 0)
compare(table.tableClickCount, 0)
compare(table.buttonPressCount, 1)
compare(table.buttonReleaseCount, 0)
mouseRelease(table, 50, 20, Qt.LeftButton)
compare(table.currentRow, 0)
compare(table.tableClickCount, 0)
compare(table.buttonPressCount, 1)
compare(table.buttonReleaseCount, 1)
mouseClick(table, 50, 60, Qt.LeftButton)
compare(table.currentRow, 1)
compare(table.tableClickCount, 0)
compare(table.buttonPressCount, 2)
compare(table.buttonReleaseCount, 2)
table.destroy()
}
function test_QTBUG_31206() {
var component = Qt.createComponent("tableview/table_delegate2.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container);
verify(table !== null, "table created is null")
// wait for items to be created
var timeout = 2000
while (timeout >= 0 && table.rowAt(15, 55) === -1) {
timeout -= 50
wait(50)
}
compare(table.test, false)
mouseClick(table, 15 , 10, Qt.LeftButton)
compare(table.test, true)
table.destroy()
}
function test_forwardMouseEventsToChildDelegate() {
var component = Qt.createComponent("tableview/table_delegate3.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container);
table.forceActiveFocus();
verify(table !== null, "table created is null")
// wait for items to be created
var timeout = 2000
while (timeout >= 0 && table.rowAt(15, 55) === -1) {
timeout -= 50
wait(50)
}
compare(table._pressed, false)
compare(table._clicked, false)
compare(table._released, false)
compare(table._doubleClicked, false)
mousePress(table, 25 , 10, Qt.LeftButton)
compare(table._pressed, true)
table.clearTestData()
mouseRelease(table, 25 , 10, Qt.LeftButton)
compare(table._released, true)
table.clearTestData()
mouseClick(table, 25 , 10, Qt.LeftButton)
compare(table._clicked, true)
table.clearTestData()
mouseDoubleClick(table, 25 , 10, Qt.LeftButton)
compare(table._doubleClicked, true)
table.clearTestData()
table.destroy()
}
function test_rightClickOnMouseAreaOverTableView() {
var component = Qt.createComponent("tableview/table_mousearea.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container);
table.forceActiveFocus();
verify(table !== null, "table created is null")
// wait for items to be created
var timeout = 2000
while (timeout >= 0 && table.rowAt(15, 55) === -1) {
timeout -= 50
wait(50)
}
compare(table._pressed, false)
compare(table._clicked, false)
compare(table._released, false)
compare(table._doubleClicked, false)
mousePress(table, 25, 10, Qt.RightButton)
compare(table._pressed, true)
table.clearTestData()
mouseRelease(table, 25, 10, Qt.RightButton)
compare(table._released, true)
table.clearTestData()
mouseClick(table, 25, 10, Qt.RightButton)
compare(table._clicked, true)
table.clearTestData()
mouseDoubleClick(table, 25, 10, Qt.RightButton)
compare(table._doubleClicked, true)
table.clearTestData()
table.destroy()
}
function test_activated() {
var component = Qt.createComponent("tableview/table_activated.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container);
verify(table !== null, "table created is null")
table.forceActiveFocus();
compare(table.test, -1)
compare(table.testClick, table.currentRow)
if (!table.__activateItemOnSingleClick)
mouseDoubleClick(table, 15 , 45, Qt.LeftButton)
else
mouseClick(table, 15, 45, Qt.LeftButton)
compare(table.testDoubleClick, table.currentRow)
compare(table.test, table.currentRow)
compare(table.testClick, table.currentRow)
if (!table.__activateItemOnSingleClick)
mouseDoubleClick(table, 15 , 15, Qt.LeftButton)
else
mouseClick(table, 15, 15, Qt.LeftButton)
compare(table.testDoubleClick, table.currentRow)
compare(table.testClick, table.currentRow)
compare(table.test, table.currentRow)
table.destroy()
}
function test_columnCount() {
var component = Qt.createComponent("tableview/table_multicolumns.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container);
verify(table !== null, "table created is null")
compare(table.columnCount, 3)
table.destroy()
}
function test_rowCount() {
var component = Qt.createComponent("tableview/table_multicolumns.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container);
verify(table !== null, "table created is null")
compare(table.rowCount, 3)
table.destroy()
}
function test_columnWidth() {
var tableView = Qt.createQmlObject('import QtQuick 2.2; import QtQuick.Controls 1.2; TableView { }', testCase, '');
compare(tableView.columnCount, 0)
var column = newColumn.createObject(testCase, {title: "title 1"});
verify(column.__view === null)
compare(column.width, 160)
compare(column.title, "title 1")
tableView.addColumn(column)
compare(column.__view, tableView)
compare(column.width, tableView.viewport.width)
var tableView2 = Qt.createQmlObject('import QtQuick 2.2; import QtQuick.Controls 1.2; TableView { }', testCase, '');
ignoreWarning("TableView::insertColumn(): you cannot add a column to multiple views")
tableView2.addColumn(column) // should not work
compare(column.__view, tableView) //same as before
tableView2.destroy()
tableView.destroy()
}
function test_dynamicColumns() {
var component = Qt.createComponent("tableview/table_dynamiccolumns.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container)
// insertColumn(component), insertColumn(item),
// addColumn(component), addColumn(item), and static TableViewColumn {}
compare(table.columnCount, 5)
compare(table.getColumn(0).title, "inserted component")
compare(table.getColumn(1).title, "inserted item")
table.destroy()
}
function test_addRemoveColumn() {
var tableView = Qt.createQmlObject('import QtQuick 2.2; import QtQuick.Controls 1.2; TableView { }', testCase, '');
compare(tableView.columnCount, 0)
tableView.addColumn(newColumn.createObject(testCase, {title: "title 1"}))
compare(tableView.columnCount, 1)
tableView.addColumn(newColumn.createObject(testCase, {title: "title 2"}))
compare(tableView.columnCount, 2)
compare(tableView.getColumn(0).title, "title 1")
compare(tableView.getColumn(1).title, "title 2")
tableView.insertColumn(1, newColumn.createObject(testCase, {title: "title 3"}))
compare(tableView.columnCount, 3)
compare(tableView.getColumn(0).title, "title 1")
compare(tableView.getColumn(1).title, "title 3")
compare(tableView.getColumn(2).title, "title 2")
tableView.insertColumn(0, newColumn.createObject(testCase, {title: "title 4"}))
compare(tableView.columnCount, 4)
compare(tableView.getColumn(0).title, "title 4")
compare(tableView.getColumn(1).title, "title 1")
compare(tableView.getColumn(2).title, "title 3")
compare(tableView.getColumn(3).title, "title 2")
tableView.removeColumn(0)
compare(tableView.columnCount, 3)
compare(tableView.getColumn(0).title, "title 1")
compare(tableView.getColumn(1).title, "title 3")
compare(tableView.getColumn(2).title, "title 2")
tableView.removeColumn(1)
compare(tableView.columnCount, 2)
compare(tableView.getColumn(0).title, "title 1")
compare(tableView.getColumn(1).title, "title 2")
tableView.removeColumn(1)
compare(tableView.columnCount, 1)
compare(tableView.getColumn(0).title, "title 1")
tableView.removeColumn(0)
compare(tableView.columnCount, 0)
tableView.destroy()
}
function test_moveColumn_data() {
return [
{tag:"0->1 (0)", from: 0, to: 1},
{tag:"0->1 (1)", from: 0, to: 1},
{tag:"0->1 (2)", from: 0, to: 1},
{tag:"0->2 (0)", from: 0, to: 2},
{tag:"0->2 (1)", from: 0, to: 2},
{tag:"0->2 (2)", from: 0, to: 2},
{tag:"1->0 (0)", from: 1, to: 0},
{tag:"1->0 (1)", from: 1, to: 0},
{tag:"1->0 (2)", from: 1, to: 0},
{tag:"1->2 (0)", from: 1, to: 2},
{tag:"1->2 (1)", from: 1, to: 2},
{tag:"1->2 (2)", from: 1, to: 2},
{tag:"2->0 (0)", from: 2, to: 0},
{tag:"2->0 (1)", from: 2, to: 0},
{tag:"2->0 (2)", from: 2, to: 0},
{tag:"2->1 (0)", from: 2, to: 1},
{tag:"2->1 (1)", from: 2, to: 1},
{tag:"2->1 (2)", from: 2, to: 1},
{tag:"0->0", from: 0, to: 0},
{tag:"-1->0", from: -1, to: 0, warning: "TableView::moveColumn(): invalid argument"},
{tag:"0->-1", from: 0, to: -1, warning: "TableView::moveColumn(): invalid argument"},
{tag:"1->10", from: 1, to: 10, warning: "TableView::moveColumn(): invalid argument"},
{tag:"10->2", from: 10, to: 2, warning: "TableView::moveColumn(): invalid argument"},
{tag:"10->-1", from: 10, to: -1, warning: "TableView::moveColumn(): invalid argument"}
]
}
function test_moveColumn(data) {
var tableView = Qt.createQmlObject('import QtQuick 2.2; import QtQuick.Controls 1.2; TableView { }', testCase, '');
compare(tableView.columnCount, 0)
var titles = ["title 1", "title 2", "title 3"]
var i = 0;
for (i = 0; i < titles.length; ++i)
tableView.addColumn(newColumn.createObject(testCase, {title: titles[i]}))
compare(tableView.columnCount, titles.length)
for (i = 0; i < tableView.columnCount; ++i)
compare(tableView.getColumn(i).title, titles[i])
if (data.warning !== undefined)
ignoreWarning(data.warning)
tableView.moveColumn(data.from, data.to)
compare(tableView.columnCount, titles.length)
if (data.from >= 0 && data.from < tableView.columnCount && data.to >= 0 && data.to < tableView.columnCount) {
var title = titles[data.from]
titles.splice(data.from, 1)
titles.splice(data.to, 0, title)
}
compare(tableView.columnCount, titles.length)
for (i = 0; i < tableView.columnCount; ++i)
compare(tableView.getColumn(i).title, titles[i])
tableView.destroy()
}
function test_positionViewAtRow() {
var test_instanceStr =
'import QtQuick 2.2; \
import QtQuick.Controls 1.2; \
TableView { \
TableViewColumn { \
} \
model: 1000; \
headerVisible: false; \
}'
var table = Qt.createQmlObject(test_instanceStr, container, '')
waitForRendering(table)
var beginPos = table.mapFromItem(table.viewport, 0, 0)
table.positionViewAtRow(0, ListView.Beginning)
compare(table.rowAt(beginPos.x, beginPos.y), 0)
table.positionViewAtRow(100, ListView.Beginning)
compare(table.rowAt(beginPos.x, beginPos.y), 100)
var endPos = table.mapFromItem(table.viewport, 0, table.viewport.height - 1)
table.positionViewAtRow(900, ListView.End)
compare(table.rowAt(endPos.x, endPos.y), 900)
table.positionViewAtRow(999, ListView.End)
compare(table.rowAt(endPos.x, endPos.y), 999)
table.destroy()
}
function test_resize_columns() {
var component = Qt.createComponent("tableview/table_resizecolumns.qml")
compare(component.status, Component.Ready)
var table = component.createObject(container);
verify(table !== null, "table created is null")
waitForRendering(table)
compare(table.getColumn(0).width, 20)
table.getColumn(0).resizeToContents()
compare(table.getColumn(0).width, 50)
table.getColumn(0).width = 20
compare(table.getColumn(0).width, 20)
table.resizeColumnsToContents()
compare(table.getColumn(0).width, 50)
table.destroy()
}
// In TableView, drawn text = table.__currentRowItem.children[1].children[1].itemAt(0).children[0].children[0].text
function findAChild(item, name)
{
if (item.count === undefined) {
var i = 0
while (item.children[i] !== undefined) {
var child = item.children[i]
if (child.objectName === name)
return child
else {
var found = findAChild(child, name)
if (found !== undefined)
return found
}
i++
}
} else { // item with count => columns
for (var j = 0; j < item.count ; j++) {
var tempitem = item.itemAt(j)
if (tempitem.objectName === name)
return tempitem
var found = findAChild(tempitem, name)
if (found !== undefined)
return found
}
}
return undefined // no matching child found
}
function test_activeFocusOnTab() {
if (!SystemInfo.tabAllWidgets)
skip("This function doesn't support NOT iterating all.")
var component = Qt.createComponent("tableview/table_activeFocusOnTab.qml")
compare(component.status, Component.Ready)
var control = component.createObject(container)
verify(!control.control2.activeFocusOnTab)
control.control1.forceActiveFocus()
verify(control.control1.activeFocus)
verify(!control.control2.activeFocus)
verify(!control.control3.activeFocus)
keyPress(Qt.Key_Tab)
verify(!control.control1.activeFocus)
verify(!control.control2.activeFocus)
verify(control.control3.activeFocus)
keyPress(Qt.Key_Tab)
verify(control.control1.activeFocus)
verify(!control.control2.activeFocus)
verify(!control.control3.activeFocus)
keyPress(Qt.Key_Tab, Qt.ShiftModifier)
verify(!control.control1.activeFocus)
verify(!control.control2.activeFocus)
verify(control.control3.activeFocus)
keyPress(Qt.Key_Tab, Qt.ShiftModifier)
verify(control.control1.activeFocus)
verify(!control.control2.activeFocus)
verify(!control.control3.activeFocus)
control.control2.activeFocusOnTab = true
verify(control.control2.activeFocusOnTab)
keyPress(Qt.Key_Tab)
verify(!control.control1.activeFocus)
verify(control.control2.activeFocus)
verify(!control.control3.activeFocus)
keyPress(Qt.Key_Tab)
verify(!control.control1.activeFocus)
verify(!control.control2.activeFocus)
verify(control.control3.activeFocus)
keyPress(Qt.Key_Tab, Qt.ShiftModifier)
verify(!control.control1.activeFocus)
verify(control.control2.activeFocus)
verify(!control.control3.activeFocus)
keyPress(Qt.Key_Tab, Qt.ShiftModifier)
verify(control.control1.activeFocus)
verify(!control.control2.activeFocus)
verify(!control.control3.activeFocus)
control.destroy()
}
}
}
|