qt5base-lts/tests/auto/gui/kernel/qscreen/tst_qscreen.cpp
Jo Asplin 087fcc6182 Moved tests into gui/kernel/ and gui/qopengl/
This commit moves tests from test/auto/ into more appropriate
locations (i.e. matching the locations in the Qt source):

- qscreen and qwindow are moved into gui/kernel/
- qopengl is moved into gui/qopengl/

Note: qscreen is disabled for now since it is broken
on Linux (see QTBUG-22554).

Change-Id: Idcc7a51e78d6d0955bddb9cb4091866659193cc8
Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
2011-11-04 20:48:19 +01:00

168 lines
5.1 KiB
C++

/****************************************************************************
**
** 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$
** GNU Lesser General Public License Usage
** 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.
**
** 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.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <qscreen.h>
#include <QtTest/QtTest>
class tst_QScreen: public QObject
{
Q_OBJECT
private slots:
void angleBetween_data();
void angleBetween();
void transformBetween_data();
void transformBetween();
};
void tst_QScreen::angleBetween_data()
{
QTest::addColumn<uint>("oa");
QTest::addColumn<uint>("ob");
QTest::addColumn<int>("expected");
QTest::newRow("Portrait Portrait")
<< uint(Qt::PortraitOrientation)
<< uint(Qt::PortraitOrientation)
<< 0;
QTest::newRow("Portrait Landscape")
<< uint(Qt::PortraitOrientation)
<< uint(Qt::LandscapeOrientation)
<< 270;
QTest::newRow("Portrait InvertedPortrait")
<< uint(Qt::PortraitOrientation)
<< uint(Qt::InvertedPortraitOrientation)
<< 180;
QTest::newRow("Portrait InvertedLandscape")
<< uint(Qt::PortraitOrientation)
<< uint(Qt::InvertedLandscapeOrientation)
<< 90;
QTest::newRow("InvertedLandscape InvertedPortrait")
<< uint(Qt::InvertedLandscapeOrientation)
<< uint(Qt::InvertedPortraitOrientation)
<< 90;
QTest::newRow("InvertedLandscape Landscape")
<< uint(Qt::InvertedLandscapeOrientation)
<< uint(Qt::LandscapeOrientation)
<< 180;
}
void tst_QScreen::angleBetween()
{
QFETCH( uint, oa );
QFETCH( uint, ob );
QFETCH( int, expected );
Qt::ScreenOrientation a = Qt::ScreenOrientation(oa);
Qt::ScreenOrientation b = Qt::ScreenOrientation(ob);
QCOMPARE(QScreen::angleBetween(a, b), expected);
QCOMPARE(QScreen::angleBetween(b, a), (360 - expected) % 360);
}
void tst_QScreen::transformBetween_data()
{
QTest::addColumn<uint>("oa");
QTest::addColumn<uint>("ob");
QTest::addColumn<QRect>("rect");
QTest::addColumn<QTransform>("expected");
QRect rect(0, 0, 480, 640);
QTest::newRow("Portrait Portrait")
<< uint(Qt::PortraitOrientation)
<< uint(Qt::PortraitOrientation)
<< rect
<< QTransform();
QTest::newRow("Portrait Landscape")
<< uint(Qt::PortraitOrientation)
<< uint(Qt::LandscapeOrientation)
<< rect
<< QTransform(0, -1, 1, 0, 0, rect.height());
QTest::newRow("Portrait InvertedPortrait")
<< uint(Qt::PortraitOrientation)
<< uint(Qt::InvertedPortraitOrientation)
<< rect
<< QTransform(-1, 0, 0, -1, rect.width(), rect.height());
QTest::newRow("Portrait InvertedLandscape")
<< uint(Qt::PortraitOrientation)
<< uint(Qt::InvertedLandscapeOrientation)
<< rect
<< QTransform(0, 1, -1, 0, rect.width(), 0);
QTest::newRow("InvertedLandscape InvertedPortrait")
<< uint(Qt::InvertedLandscapeOrientation)
<< uint(Qt::InvertedPortraitOrientation)
<< rect
<< QTransform(0, 1, -1, 0, rect.width(), 0);
QTest::newRow("InvertedLandscape Landscape")
<< uint(Qt::InvertedLandscapeOrientation)
<< uint(Qt::LandscapeOrientation)
<< rect
<< QTransform(-1, 0, 0, -1, rect.width(), rect.height());
}
void tst_QScreen::transformBetween()
{
QFETCH( uint, oa );
QFETCH( uint, ob );
QFETCH( QRect, rect );
QFETCH( QTransform, expected );
Qt::ScreenOrientation a = Qt::ScreenOrientation(oa);
Qt::ScreenOrientation b = Qt::ScreenOrientation(ob);
QCOMPARE(QScreen::transformBetween(a, b, rect), expected);
}
#include <tst_qscreen.moc>
QTEST_MAIN(tst_QScreen);