83a5694dc2
Qt copyrights are now in The Qt Company, so we could update the source code headers accordingly. In the same go we should also fix the links to point to qt.io. Outdated header.LGPL removed (use header.LGPL21 instead) Old header.LGPL3 renamed to header.LGPL3-COMM to match actual licensing combination. New header.LGPL-COMM taken in the use file which were using old header.LGPL3 (src/plugins/platforms/android/extract.cpp) Added new header.LGPL3 containing Commercial + LGPLv3 + GPLv2 license combination Change-Id: I6f49b819a8a20cc4f88b794a8f6726d975e8ffbe Reviewed-by: Matti Paaso <matti.paaso@theqtcompany.com>
267 lines
8.0 KiB
C++
267 lines
8.0 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL21$
|
|
** 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 The Qt Company. For licensing terms
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at http://www.qt.io/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 or version 3 as published by the Free
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
** following information to ensure the GNU Lesser General Public License
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
#include "qpen.h"
|
|
#include "qbrush.h"
|
|
|
|
#include <qdebug.h>
|
|
|
|
class tst_QPen : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
tst_QPen();
|
|
|
|
private slots:
|
|
void getSetCheck();
|
|
void swap();
|
|
void move();
|
|
void move_assign();
|
|
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));
|
|
}
|
|
|
|
void tst_QPen::move()
|
|
{
|
|
QPen p1(Qt::black);
|
|
|
|
// check that moving does the right thing:
|
|
QPen p2 = qMove(p1); // could be move or copy construction, so don't check p1's state
|
|
QCOMPARE(p2.color(), QColor(Qt::black));
|
|
|
|
// this, executed ehre, would crash:
|
|
// QVERIFY(p1.style() != Qt::NoPen);
|
|
|
|
// check that moved-from QPen p1 can still be safely copied:
|
|
const QPen p3 = p1;
|
|
|
|
// check that moved-from QPen p1 can still be safely assigned to:
|
|
const QPen p4(Qt::yellow);
|
|
p1 = p4;
|
|
QCOMPARE(p1.color(), QColor(Qt::yellow));
|
|
|
|
// check that moved-from QPens p2, p3 can still be safely destroyed:
|
|
QPen p5 = qMove(p2);
|
|
|
|
// intentionally no more statements beyond this point
|
|
}
|
|
|
|
void tst_QPen::move_assign()
|
|
{
|
|
QPen p1(Qt::black), p2(Qt::white);
|
|
|
|
// check that moving does the right thing:
|
|
p2 = qMove(p1); // could be move or copy assignment, so don't check p1's state
|
|
QCOMPARE(p2.color(), QColor(Qt::black));
|
|
|
|
// check that move-assigned-from QPen p1 can still be used, albeit
|
|
// with undocumented state (it's p2's original state):
|
|
QVERIFY(p1.style() != Qt::NoPen);
|
|
|
|
// check that moved-from QPen p1 can still be safely copied:
|
|
const QPen p3 = p1;
|
|
|
|
// check that moved-from QPen p1 can still be safely assigned to:
|
|
const QPen p4(Qt::yellow);
|
|
p1 = p4;
|
|
QCOMPARE(p1.color(), QColor(Qt::yellow));
|
|
|
|
// check that moved-from QPens p2, p3 can still be safely destroyed:
|
|
QPen p5;
|
|
p5 = qMove(p2);
|
|
|
|
// intentionally no more statements beyond this point
|
|
}
|
|
|
|
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)
|
|
<< false;
|
|
QTest::newRow("differentWidth") << QPen(Qt::red, 2)
|
|
<< QPen(Qt::red, 3)
|
|
<< false;
|
|
QTest::newRow("differentPenStyle") << QPen(Qt::red, 2, Qt::DashLine)
|
|
<< QPen(Qt::red, 2, Qt::DotLine)
|
|
<< false;
|
|
QTest::newRow("differentCapStyle") << QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::BevelJoin)
|
|
<< QPen(Qt::red, 2, Qt::DashLine, Qt::SquareCap, Qt::BevelJoin)
|
|
<< false;
|
|
QTest::newRow("differentJoinStyle") << QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::BevelJoin)
|
|
<< QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::MiterJoin)
|
|
<< false;
|
|
QTest::newRow("same") << QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::BevelJoin)
|
|
<< QPen(Qt::red, 2, Qt::DashLine, Qt::RoundCap, Qt::BevelJoin)
|
|
<< 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) << 1. << (int)Qt::SolidLine
|
|
<< (int) Qt::SquareCap << (int)Qt::BevelJoin;
|
|
QTest::newRow("solid_red") << QPen(Qt::red) << QBrush(Qt::red) << 1. << (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"
|