aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-08-26 17:21:42 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-27 11:49:34 +0200
commit24d3c5cec95af74124e10dcee4d017200325c748 (patch)
treee4a429479576a6da72c55f564ebb6e89cb9c9c1c /tests/auto
parent071bdbfb91b79fb657fcfd97e448fa773d9493dc (diff)
Add QWinThumbnailToolBar auto test
Change-Id: I0ce42da3de17806996b2b72b0b12d614aa7042b1 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/auto.pro3
-rw-r--r--tests/auto/qwinthumbnailtoolbar/qwinthumbnailtoolbar.pro4
-rw-r--r--tests/auto/qwinthumbnailtoolbar/tst_qwinthumbnailtoolbar.cpp126
3 files changed, 133 insertions, 0 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro
new file mode 100644
index 0000000..abf8bfe
--- /dev/null
+++ b/tests/auto/auto.pro
@@ -0,0 +1,3 @@
+TEMPLATE = subdirs
+SUBDIRS += \
+ qwinthumbnailtoolbar
diff --git a/tests/auto/qwinthumbnailtoolbar/qwinthumbnailtoolbar.pro b/tests/auto/qwinthumbnailtoolbar/qwinthumbnailtoolbar.pro
new file mode 100644
index 0000000..7f091f5
--- /dev/null
+++ b/tests/auto/qwinthumbnailtoolbar/qwinthumbnailtoolbar.pro
@@ -0,0 +1,4 @@
+CONFIG += testcase
+TARGET = tst_qwinthumbnailtoolbar
+QT += testlib winextras
+SOURCES += tst_qwinthumbnailtoolbar.cpp
diff --git a/tests/auto/qwinthumbnailtoolbar/tst_qwinthumbnailtoolbar.cpp b/tests/auto/qwinthumbnailtoolbar/tst_qwinthumbnailtoolbar.cpp
new file mode 100644
index 0000000..e763a1a
--- /dev/null
+++ b/tests/auto/qwinthumbnailtoolbar/tst_qwinthumbnailtoolbar.cpp
@@ -0,0 +1,126 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QtTest/QtTest>
+#include <QWinThumbnailToolBar>
+#include <QWinThumbnailToolButton>
+
+class tst_QWinThumbnailToolBar : public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void testWindow();
+ void testButtons();
+};
+
+void tst_QWinThumbnailToolBar::testWindow()
+{
+ QWindow window;
+
+ QWinThumbnailToolBar tbar1;
+ QVERIFY(!tbar1.window());
+ tbar1.setWindow(&window);
+ QCOMPARE(tbar1.window(), &window);
+
+ QWinThumbnailToolBar *tbar2 = new QWinThumbnailToolBar(&window);
+ QCOMPARE(tbar2->window(), &window);
+ tbar2->setWindow(0);
+ QVERIFY(!tbar2->window());
+}
+
+void tst_QWinThumbnailToolBar::testButtons()
+{
+ QWinThumbnailToolBar tbar;
+ QCOMPARE(tbar.count(), 0);
+ QVERIFY(tbar.buttons().isEmpty());
+
+ tbar.addButton(0);
+ QCOMPARE(tbar.count(), 0);
+ QVERIFY(tbar.buttons().isEmpty());
+
+ QWinThumbnailToolButton *btn1 = new QWinThumbnailToolButton;
+ QWinThumbnailToolButton *btn2 = new QWinThumbnailToolButton;
+
+ tbar.addButton(btn1);
+ QCOMPARE(tbar.count(), 1);
+ QCOMPARE(tbar.buttons().count(), 1);
+ QCOMPARE(tbar.buttons().at(0), btn1);
+
+ tbar.addButton(btn2);
+ QCOMPARE(tbar.count(), 2);
+ QCOMPARE(tbar.buttons().count(), 2);
+ QCOMPARE(tbar.buttons().at(0), btn1);
+ QCOMPARE(tbar.buttons().at(1), btn2);
+
+ tbar.clear();
+ QCOMPARE(tbar.count(), 0);
+ QVERIFY(tbar.buttons().isEmpty());
+
+ QList<QWinThumbnailToolButton *> buttons;
+ for (int i = 0; i < 3; ++i)
+ buttons << new QWinThumbnailToolButton;
+
+ tbar.setButtons(buttons);
+ QCOMPARE(tbar.count(), buttons.count());
+ QCOMPARE(tbar.buttons().count(), buttons.count());
+ for (int i = 0; i < buttons.count(); ++i)
+ QCOMPARE(tbar.buttons().at(i), buttons.at(i));
+
+ tbar.removeButton(buttons.at(1));
+ QCOMPARE(tbar.count(), 2);
+ QCOMPARE(tbar.buttons().count(), 2);
+ QCOMPARE(tbar.buttons().at(0), buttons.at(0));
+ QCOMPARE(tbar.buttons().at(1), buttons.at(2));
+
+ tbar.removeButton(buttons.at(2));
+ QCOMPARE(tbar.count(), 1);
+ QCOMPARE(tbar.buttons().count(), 1);
+ QCOMPARE(tbar.buttons().at(0), buttons.at(0));
+
+ tbar.removeButton(buttons.at(0));
+ QCOMPARE(tbar.count(), 0);
+ QVERIFY(tbar.buttons().isEmpty());
+}
+
+QTEST_MAIN(tst_QWinThumbnailToolBar)
+
+#include "tst_qwinthumbnailtoolbar.moc"