summaryrefslogtreecommitdiffstats
path: root/tests/auto/qpen
diff options
context:
space:
mode:
authorQt by Nokia <qt-info@nokia.com>2011-04-27 12:05:43 +0200
committeraxis <qt-info@nokia.com>2011-04-27 12:05:43 +0200
commit38be0d13830efd2d98281c645c3a60afe05ffece (patch)
tree6ea73f3ec77f7d153333779883e8120f82820abe /tests/auto/qpen
Initial import from the monolithic Qt.
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
Diffstat (limited to 'tests/auto/qpen')
-rw-r--r--tests/auto/qpen/.gitignore1
-rw-r--r--tests/auto/qpen/qpen.pro5
-rw-r--r--tests/auto/qpen/tst_qpen.cpp226
3 files changed, 232 insertions, 0 deletions
diff --git a/tests/auto/qpen/.gitignore b/tests/auto/qpen/.gitignore
new file mode 100644
index 0000000000..a9187367dc
--- /dev/null
+++ b/tests/auto/qpen/.gitignore
@@ -0,0 +1 @@
+tst_qpen
diff --git a/tests/auto/qpen/qpen.pro b/tests/auto/qpen/qpen.pro
new file mode 100644
index 0000000000..53bd5e2b6e
--- /dev/null
+++ b/tests/auto/qpen/qpen.pro
@@ -0,0 +1,5 @@
+load(qttest_p4)
+SOURCES += tst_qpen.cpp
+
+
+
diff --git a/tests/auto/qpen/tst_qpen.cpp b/tests/auto/qpen/tst_qpen.cpp
new file mode 100644
index 0000000000..3fc405cab3
--- /dev/null
+++ b/tests/auto/qpen/tst_qpen.cpp
@@ -0,0 +1,226 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** 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, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+
+#include <QtTest/QtTest>
+
+#include "qpen.h"
+#include "qbrush.h"
+
+#include <qdebug.h>
+
+//TESTED_CLASS=
+//TESTED_FILES=
+
+class tst_QPen : public QObject
+{
+ Q_OBJECT
+
+public:
+ tst_QPen();
+
+private slots:
+ void getSetCheck();
+ void swap();
+ void operator_eq_eq();
+ void operator_eq_eq_data();
+
+ void stream();
+ void stream_data();
+
+ void constructor();
+ void constructor_data();
+};
+
+// Testing get/set functions
+void tst_QPen::getSetCheck()
+{
+ QPen obj1;
+ // qreal QPen::miterLimit()
+ // void QPen::setMiterLimit(qreal)
+ obj1.setMiterLimit(0.0);
+ QCOMPARE(0.0, obj1.miterLimit());
+ obj1.setMiterLimit(qreal(1.1));
+ QCOMPARE(qreal(1.1), obj1.miterLimit());
+
+ // qreal QPen::widthF()
+ // void QPen::setWidthF(qreal)
+ obj1.setWidthF(0.0);
+ QCOMPARE(0.0, obj1.widthF());
+ obj1.setWidthF(qreal(1.1));
+ QCOMPARE(qreal(1.1), obj1.widthF());
+
+ // int QPen::width()
+ // void QPen::setWidth(int)
+ for (int i = 0; i < 100; ++i) {
+ obj1.setWidth(i);
+ QCOMPARE(i, obj1.width());
+ }
+}
+
+void tst_QPen::swap()
+{
+ QPen p1(Qt::black), p2(Qt::white);
+ p1.swap(p2);
+ QCOMPARE(p1.color(), QColor(Qt::white));
+ QCOMPARE(p2.color(), QColor(Qt::black));
+}
+
+Q_DECLARE_METATYPE(QPen)
+Q_DECLARE_METATYPE(QBrush)
+
+tst_QPen::tst_QPen()
+
+{
+}
+
+void tst_QPen::operator_eq_eq_data()
+{
+ QTest::addColumn<QPen>("pen1");
+ QTest::addColumn<QPen>("pen2");
+ QTest::addColumn<bool>("isEqual");
+
+ QTest::newRow("differentColor") << QPen(Qt::red)
+ << QPen(Qt::blue)
+ << bool(FALSE);
+ QTest::newRow("differentWidth") << QPen(Qt::red, 2)
+ << QPen(Qt::red, 3)
+ << bool(FALSE);
+ QTest::newRow("differentPenStyle") << QPen(Qt::red, 2, Qt::DashLine)
+ << QPen(Qt::red, 2, Qt::DotLine)
+ << bool(FALSE);
+ QTest::newRow("differentCapStyle") << QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::BevelJoin)
+ << QPen(Qt::red, 2, Qt::DashLine, Qt::SquareCap, Qt::BevelJoin)
+ << bool(FALSE);
+ QTest::newRow("differentJoinStyle") << QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::BevelJoin)
+ << QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::MiterJoin)
+ << bool(FALSE);
+ QTest::newRow("same") << QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::BevelJoin)
+ << QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::BevelJoin)
+ << bool(TRUE);
+
+}
+
+void tst_QPen::operator_eq_eq()
+{
+ QFETCH(QPen, pen1);
+ QFETCH(QPen, pen2);
+ QFETCH(bool, isEqual);
+ QCOMPARE(pen1 == pen2, isEqual);
+}
+
+
+void tst_QPen::constructor_data()
+{
+ QTest::addColumn<QPen>("pen");
+ QTest::addColumn<QBrush>("brush");
+ QTest::addColumn<double>("width");
+ QTest::addColumn<int>("style");
+ QTest::addColumn<int>("capStyle");
+ QTest::addColumn<int>("joinStyle");
+
+ QTest::newRow("solid_black") << QPen() << QBrush(Qt::black) << 0. << (int)Qt::SolidLine
+ << (int) Qt::SquareCap << (int)Qt::BevelJoin;
+ QTest::newRow("solid_red") << QPen(Qt::red) << QBrush(Qt::red) << 0. << (int)Qt::SolidLine
+ << (int)Qt::SquareCap << (int)Qt::BevelJoin;
+ QTest::newRow("full") << QPen(QBrush(QLinearGradient(0, 0, 100, 100)), 10,
+ Qt::SolidLine, Qt::RoundCap, Qt::MiterJoin)
+ << QBrush(QLinearGradient(0, 0, 100, 100)) << 10. << (int)Qt::SolidLine
+ << (int)Qt::RoundCap << (int)Qt::MiterJoin;
+
+}
+
+
+void tst_QPen::constructor()
+{
+ QFETCH(QPen, pen);
+ QFETCH(QBrush, brush);
+ QFETCH(double, width);
+ QFETCH(int, style);
+ QFETCH(int, capStyle);
+ QFETCH(int, joinStyle);
+
+ QCOMPARE(pen.style(), Qt::PenStyle(style));
+ QCOMPARE(pen.capStyle(), Qt::PenCapStyle(capStyle));
+ QCOMPARE(pen.joinStyle(), Qt::PenJoinStyle(joinStyle));
+ QCOMPARE(pen.widthF(), width);
+ QCOMPARE(pen.brush(), brush);
+}
+
+
+void tst_QPen::stream_data()
+{
+ QTest::addColumn<QPen>("pen");
+
+ QTest::newRow("solid_black") << QPen();
+ QTest::newRow("solid_red") << QPen(Qt::red);
+ QTest::newRow("full") << QPen(QBrush(QLinearGradient(0, 0, 100, 100)), 10, Qt::SolidLine, Qt::RoundCap, Qt::MiterJoin);
+}
+
+
+void tst_QPen::stream()
+{
+ QFETCH(QPen, pen);
+
+ QByteArray bytes;
+
+ {
+ QDataStream stream(&bytes, QIODevice::WriteOnly);
+ stream << pen;
+ }
+
+ QPen cmp;
+ {
+ QDataStream stream(&bytes, QIODevice::ReadOnly);
+ stream >> cmp;
+ }
+
+ QCOMPARE(pen.widthF(), cmp.widthF());
+ QCOMPARE(pen.style(), cmp.style());
+ QCOMPARE(pen.capStyle(), cmp.capStyle());
+ QCOMPARE(pen.joinStyle(), cmp.joinStyle());
+ QCOMPARE(pen.brush(), cmp.brush());
+
+ QCOMPARE(pen, cmp);
+}
+
+QTEST_APPLESS_MAIN(tst_QPen)
+#include "tst_qpen.moc"