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
|
/*
SPDX-FileCopyrightText: 2011 Michal Malek <michalm@jabster.pl>
SPDX-FileCopyrightText: 1998-2009 Sebastian Trueg <trueg@k3b.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "k3bmodelutilstest.h"
#include "k3bmodelutils.h"
#include <QStandardItemModel>
#include <QTest>
QTEST_GUILESS_MAIN( ModelUtilsTest )
ModelUtilsTest::ModelUtilsTest()
{
}
void ModelUtilsTest::testCommonCheckState()
{
QStandardItemModel* listModel = new QStandardItemModel( this );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
QModelIndexList indexes;
for( int i = 0; i < listModel->rowCount(); ++i )
indexes.push_back( listModel->index( i, 0 ) );
QCOMPARE( K3b::ModelUtils::commonCheckState( indexes ), Qt::Unchecked );
listModel->item( 2 )->setCheckState( Qt::Checked );
QCOMPARE( K3b::ModelUtils::commonCheckState( indexes ), Qt::PartiallyChecked );
listModel->item( 0 )->setCheckState( Qt::Checked );
listModel->item( 1 )->setCheckState( Qt::Checked );
listModel->item( 3 )->setCheckState( Qt::Checked );
QCOMPARE( K3b::ModelUtils::commonCheckState( indexes ), Qt::Checked );
}
void ModelUtilsTest::testToggleCommonCheckState()
{
QStandardItemModel* listModel = new QStandardItemModel( this );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->checkState(), Qt::Unchecked );
QModelIndexList indexes;
for( int i = 0; i < listModel->rowCount(); ++i )
indexes.push_back( listModel->index( i, 0 ) );
K3b::ModelUtils::toggleCommonCheckState( listModel, indexes );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->checkState(), Qt::Checked );
K3b::ModelUtils::toggleCommonCheckState( listModel, indexes );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->checkState(), Qt::Unchecked );
listModel->item( 2 )->setCheckState( Qt::Checked );
K3b::ModelUtils::toggleCommonCheckState( listModel, indexes );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->checkState(), Qt::Checked );
K3b::ModelUtils::toggleCommonCheckState( listModel, indexes );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->checkState(), Qt::Unchecked );
listModel->item( 2 )->setCheckState( Qt::PartiallyChecked );
K3b::ModelUtils::toggleCommonCheckState( listModel, indexes );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->checkState(), Qt::Checked );
}
void ModelUtilsTest::testCommonText()
{
QStandardItemModel* listModel = new QStandardItemModel( this );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
QModelIndexList indexes;
for( int i = 0; i < listModel->rowCount(); ++i )
indexes.push_back( listModel->index( i, 0 ) );
QCOMPARE( K3b::ModelUtils::commonText( indexes ), QString() );
listModel->item( 2 )->setText( "a" );
QCOMPARE( K3b::ModelUtils::commonText( indexes ), QString() );
listModel->item( 0 )->setText( "a" );
listModel->item( 1 )->setText( "a" );
listModel->item( 3 )->setText( "a" );
QCOMPARE( K3b::ModelUtils::commonText( indexes ), QString( "a" ) );
listModel->item( 1 )->setText( "b" );
QCOMPARE( K3b::ModelUtils::commonText( indexes ), QString() );
}
void ModelUtilsTest::testSetCommonText()
{
QStandardItemModel* listModel = new QStandardItemModel( this );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
listModel->appendRow( new QStandardItem );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->text(), QString() );
QModelIndexList indexes;
for( int i = 0; i < listModel->rowCount(); ++i )
indexes.push_back( listModel->index( i, 0 ) );
K3b::ModelUtils::setCommonText( listModel, indexes, "a" );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->text(), QString( "a" ) );
K3b::ModelUtils::setCommonText( listModel, indexes, QString() );
for( int i = 0; i < listModel->rowCount(); ++i )
QCOMPARE( listModel->item( i )->text(), QString( "a" ) );
listModel->item( 2 )->setText( "b" );
K3b::ModelUtils::setCommonText( listModel, indexes, QString() );
QCOMPARE( listModel->item( 2 )->text(), QString( "b" ) );
}
#include "moc_k3bmodelutilstest.cpp"
|