phoneuis/bubblemanager2/tsrc/unit/ut_bubblepartlistmodel/ut_bubblepartlistmodel.cpp
changeset 37 ba76fc04e6c2
child 50 377c906a8701
child 51 f39ed5e045e0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phoneuis/bubblemanager2/tsrc/unit/ut_bubblepartlistmodel/ut_bubblepartlistmodel.cpp	Fri Jun 04 10:19:18 2010 +0100
@@ -0,0 +1,140 @@
+/*!
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+
+#include <QtGui>
+#include <QtTest/QtTest>
+#include <hbapplication.h>
+#include <hbtextitem.h>
+#include <hbiconitem.h>
+
+#include "bubbletest.h"
+#include "bubbleparticipantlistmodel.h"
+
+class ut_BubbleParticipantListModel : public QObject
+{
+    Q_OBJECT
+
+private slots:
+    void initTestCase();
+    void cleanupTestCase();
+    void cleanupTest();
+    
+    void test_addParticipant();
+    void test_removeParticipant();
+    void test_bubbleId();
+    void test_dataModel();
+    void test_reset();
+
+private:
+    BubbleParticipantListModel *mModel;
+};
+
+void ut_BubbleParticipantListModel::initTestCase()
+{
+    mModel = new BubbleParticipantListModel();
+}
+
+void ut_BubbleParticipantListModel::cleanupTestCase()
+{
+    delete mModel;
+}
+
+void ut_BubbleParticipantListModel::cleanupTest()
+{
+    mModel->reset();
+}
+
+void ut_BubbleParticipantListModel::test_addParticipant()
+{
+    QSignalSpy spyDataChanged(mModel, SIGNAL(dataChanged(QModelIndex,QModelIndex)));
+
+    mModel->addParticipant(1,"Bubble-1",8,true);
+    mModel->addParticipant(2,"Bubble-2",9,false);
+    mModel->addParticipant(3,"Bubble-3",10,true);
+    QVERIFY(mModel->rowCount()==3);
+    QVERIFY(spyDataChanged.count()==0);
+
+    // name changed
+    mModel->addParticipant(2,"Bubble-Two",9,false);
+    QVERIFY(mModel->rowCount()==3);
+    QVERIFY(spyDataChanged.count()==1);
+
+    // state changed
+    mModel->addParticipant(2,"Bubble-Two",11,false);
+    QVERIFY(mModel->rowCount()==3);
+    QVERIFY(spyDataChanged.count()==2);
+
+    // ciphering changed
+    mModel->addParticipant(2,"Bubble-Two",11,true);
+    QVERIFY(mModel->rowCount()==3);
+    QVERIFY(spyDataChanged.count()==3);
+}
+
+void ut_BubbleParticipantListModel::test_removeParticipant()
+{
+    mModel->addParticipant(1,"Bubble-1",8,true);
+    mModel->addParticipant(2,"Bubble-2",9,false);
+    mModel->addParticipant(3,"Bubble-3",10,true);
+
+    mModel->removeParticipant(2);
+    QVERIFY(mModel->rowCount()==2);
+
+    mModel->removeParticipant(3);
+    QVERIFY(mModel->rowCount()==1);
+
+    mModel->addParticipant(2,"Bubble-2",9,false);
+    QVERIFY(mModel->rowCount()==2);
+}
+
+void ut_BubbleParticipantListModel::test_bubbleId()
+{
+    mModel->addParticipant(1,"Bubble-1",8,true);
+    mModel->addParticipant(2,"Bubble-2",9,false);
+    mModel->addParticipant(3,"Bubble-3",10,true);
+
+    QVERIFY(mModel->bubbleId(1)==2);
+    QVERIFY(mModel->bubbleId(4)==-1);
+}
+
+void ut_BubbleParticipantListModel::test_dataModel()
+{
+    mModel->addParticipant(1,"Bubble-1",8,true);
+    mModel->addParticipant(2,"Bubble-2",9,false);
+    mModel->addParticipant(3,"Bubble-3",10,true);
+
+    QModelIndex index = mModel->index(1,0);
+
+    QVERIFY(index.data(Qt::DecorationRole).toInt()==9);
+    QVERIFY(index.data(Qt::DisplayRole).toString()=="Bubble-2");
+    QVERIFY(index.data(Qt::StatusTipRole).toBool()==false);
+    QVERIFY(index.data(Qt::UserRole).isNull());
+
+    index = mModel->index(2,0);
+    QVERIFY(index.data(Qt::StatusTipRole).toBool()==true);
+
+    index = mModel->index(4,0);
+    QVERIFY(index.data(Qt::DisplayRole).isNull());
+}
+
+void ut_BubbleParticipantListModel::test_reset()
+{
+    mModel->reset();
+    QVERIFY(mModel->rowCount()==0);
+}
+
+BUBBLE_TEST_MAIN(ut_BubbleParticipantListModel)
+#include "ut_bubblepartlistmodel.moc"