1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the test suite of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT |
21 | ** included in the packaging of this file. Please review the following |
22 | ** information to ensure the GNU General Public License requirements will |
23 | ** be met: https://www.gnu.org/licenses/gpl-3.0.html. |
24 | ** |
25 | ** $QT_END_LICENSE$ |
26 | ** |
27 | ****************************************************************************/ |
28 | |
29 | #include <qsurfaceformat.h> |
30 | |
31 | #include <QtTest/QtTest> |
32 | |
33 | class tst_QSurfaceFormat: public QObject |
34 | { |
35 | Q_OBJECT |
36 | |
37 | private slots: |
38 | void versionCheck_data(); |
39 | void versionCheck(); |
40 | }; |
41 | |
42 | void tst_QSurfaceFormat::versionCheck_data() |
43 | { |
44 | QTest::addColumn<int>(name: "formatMajor" ); |
45 | QTest::addColumn<int>(name: "formatMinor" ); |
46 | QTest::addColumn<int>(name: "compareMajor" ); |
47 | QTest::addColumn<int>(name: "compareMinor" ); |
48 | QTest::addColumn<bool>(name: "expected" ); |
49 | |
50 | QTest::newRow(dataTag: "lower major, lower minor" ) |
51 | << 3 << 2 << 2 << 1 << true; |
52 | QTest::newRow(dataTag: "lower major, same minor" ) |
53 | << 3 << 2 << 2 << 2 << true; |
54 | QTest::newRow(dataTag: "lower major, greater minor" ) |
55 | << 3 << 2 << 2 << 3 << true; |
56 | QTest::newRow(dataTag: "same major, lower minor" ) |
57 | << 3 << 2 << 3 << 1 << true; |
58 | QTest::newRow(dataTag: "same major, same minor" ) |
59 | << 3 << 2 << 3 << 2 << true; |
60 | QTest::newRow(dataTag: "same major, greater minor" ) |
61 | << 3 << 2 << 3 << 3 << false; |
62 | QTest::newRow(dataTag: "greater major, lower minor" ) |
63 | << 3 << 2 << 4 << 1 << false; |
64 | QTest::newRow(dataTag: "greater major, same minor" ) |
65 | << 3 << 2 << 4 << 2 << false; |
66 | QTest::newRow(dataTag: "greater major, greater minor" ) |
67 | << 3 << 2 << 4 << 3 << false; |
68 | } |
69 | |
70 | void tst_QSurfaceFormat::versionCheck() |
71 | { |
72 | QFETCH( int, formatMajor ); |
73 | QFETCH( int, formatMinor ); |
74 | QFETCH( int, compareMajor ); |
75 | QFETCH( int, compareMinor ); |
76 | QFETCH( bool, expected ); |
77 | |
78 | QSurfaceFormat format; |
79 | format.setMinorVersion(formatMinor); |
80 | format.setMajorVersion(formatMajor); |
81 | |
82 | QCOMPARE(format.version() >= qMakePair(compareMajor, compareMinor), expected); |
83 | |
84 | format.setVersion(major: formatMajor, minor: formatMinor); |
85 | QCOMPARE(format.version() >= qMakePair(compareMajor, compareMinor), expected); |
86 | } |
87 | |
88 | #include <tst_qsurfaceformat.moc> |
89 | QTEST_MAIN(tst_QSurfaceFormat); |
90 | |