1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** 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 https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtTest/QtTest>
#include <qapplication.h>
#include <qfontdatabase.h>
#include <qfontinfo.h>
#include <qtimer.h>
#include <qmainwindow.h>
#include <qlistview.h>
#include "qfontdialog.h"
#include <private/qfontdialog_p.h>
QT_FORWARD_DECLARE_CLASS(QtTestEventThread)
class tst_QFontDialog : public QObject
{
Q_OBJECT
public:
tst_QFontDialog();
virtual ~tst_QFontDialog();
public slots:
void postKeyReturn();
void testGetFont();
void testSetFont();
void testNonStandardFontSize();
public slots:
void initTestCase();
void cleanupTestCase();
void init();
void cleanup();
private slots:
void defaultOkButton();
void setFont();
void task256466_wrongStyle();
void setNonStandardFontSize();
#ifndef QT_NO_STYLE_STYLESHEET
void qtbug_41513_stylesheetStyle();
#endif
private:
void runSlotWithFailsafeTimer(const char *member);
};
tst_QFontDialog::tst_QFontDialog()
{
}
tst_QFontDialog::~tst_QFontDialog()
{
}
void tst_QFontDialog::initTestCase()
{
}
void tst_QFontDialog::cleanupTestCase()
{
}
void tst_QFontDialog::init()
{
}
void tst_QFontDialog::cleanup()
{
}
void tst_QFontDialog::postKeyReturn() {
QWidgetList list = QApplication::topLevelWidgets();
for (int i=0; i<list.count(); ++i) {
QFontDialog *dialog = qobject_cast<QFontDialog*>(list[i]);
if (dialog) {
QTest::keyClick( list[i], Qt::Key_Return, Qt::NoModifier );
return;
}
}
}
void tst_QFontDialog::testGetFont()
{
#ifdef Q_OS_MAC
QEXPECT_FAIL("", "Sending QTest::keyClick to OSX font dialog helper fails, see QTBUG-24321", Continue);
#endif
bool ok = false;
QTimer::singleShot(2000, this, SLOT(postKeyReturn()));
QFontDialog::getFont(&ok);
QVERIFY(ok);
}
void tst_QFontDialog::runSlotWithFailsafeTimer(const char *member)
{
// FailSafeTimer quits the nested event loop if the dialog closing doesn't do it.
QTimer failSafeTimer;
failSafeTimer.setInterval(4000);
failSafeTimer.setSingleShot(true);
connect(&failSafeTimer, SIGNAL(timeout()), qApp, SLOT(quit()));
failSafeTimer.start();
QTimer::singleShot(0, this, member);
qApp->exec();
// FailSafeTimer stops once it goes out of scope.
}
void tst_QFontDialog::defaultOkButton()
{
runSlotWithFailsafeTimer(SLOT(testGetFont()));
}
void tst_QFontDialog::testSetFont()
{
bool ok = false;
#if defined Q_OS_HPUX
QString fontName = "Courier";
int fontSize = 25;
#elif defined Q_OS_AIX
QString fontName = "Charter";
int fontSize = 13;
#else
QString fontName = "Arial";
int fontSize = 24;
#endif
QFont f1(fontName, fontSize);
f1.setPixelSize(QFontInfo(f1).pixelSize());
QTimer::singleShot(2000, this, SLOT(postKeyReturn()));
QFont f2 = QFontDialog::getFont(&ok, f1);
QCOMPARE(QFontInfo(f2).pointSize(), QFontInfo(f1).pointSize());
}
void tst_QFontDialog::setFont()
{
/* The font should be the same before as it is after if nothing changed
while the font dialog was open.
Task #27662
*/
runSlotWithFailsafeTimer(SLOT(testSetFont()));
}
class FriendlyFontDialog : public QFontDialog
{
friend class tst_QFontDialog;
Q_DECLARE_PRIVATE(QFontDialog)
};
void tst_QFontDialog::task256466_wrongStyle()
{
if (QGuiApplication::platformName().startsWith(QLatin1String("wayland"), Qt::CaseInsensitive))
QSKIP("Wayland: This freezes. Figure out why.");
QFontDatabase fdb;
FriendlyFontDialog dialog;
dialog.setOption(QFontDialog::DontUseNativeDialog);
QListView *familyList = reinterpret_cast<QListView*>(dialog.d_func()->familyList);
QListView *styleList = reinterpret_cast<QListView*>(dialog.d_func()->styleList);
QListView *sizeList = reinterpret_cast<QListView*>(dialog.d_func()->sizeList);
for (int i = 0; i < familyList->model()->rowCount(); ++i) {
QModelIndex currentFamily = familyList->model()->index(i, 0);
familyList->setCurrentIndex(currentFamily);
int expectedSize = sizeList->currentIndex().data().toInt();
const QFont current = dialog.currentFont(),
expected = fdb.font(currentFamily.data().toString(),
styleList->currentIndex().data().toString(), expectedSize);
QCOMPARE(current.family(), expected.family());
QCOMPARE(current.style(), expected.style());
if (expectedSize == 0 && !QFontDatabase().isScalable(current.family(), current.styleName()))
QEXPECT_FAIL("", "QTBUG-53299: Smooth sizes for unscalable font contains unsupported size", Continue);
QCOMPARE(current.pointSizeF(), expected.pointSizeF());
}
}
void tst_QFontDialog::setNonStandardFontSize()
{
runSlotWithFailsafeTimer(SLOT(testNonStandardFontSize()));
}
#ifndef QT_NO_STYLE_STYLESHEET
static const QString offendingStyleSheet = QStringLiteral("* { font-family: \"QtBidiTestFont\"; }");
void tst_QFontDialog::qtbug_41513_stylesheetStyle()
{
if (QFontDatabase::addApplicationFont(QFINDTESTDATA("test.ttf")) < 0)
QSKIP("Test fonts not found.");
if (QFontDatabase::addApplicationFont(QFINDTESTDATA("testfont.ttf")) < 0)
QSKIP("Test fonts not found.");
QFont testFont = QFont(QStringLiteral("QtsSpecialTestFont"));
qApp->setStyleSheet(offendingStyleSheet);
bool accepted = false;
QTimer::singleShot(2000, this, SLOT(postKeyReturn()));
QFont resultFont = QFontDialog::getFont(&accepted, testFont,
QApplication::activeWindow(),
QLatin1String("QFontDialog - Stylesheet Test"),
QFontDialog::DontUseNativeDialog);
QVERIFY(accepted);
// The fontdialog sets the styleName, when the fontdatabase knows the style name.
resultFont.setStyleName(testFont.styleName());
testFont.setFamilies(QStringList(testFont.family()));
QCOMPARE(resultFont, testFont);
// reset stylesheet
qApp->setStyleSheet(QString());
}
#endif // QT_NO_STYLE_STYLESHEET
void tst_QFontDialog::testNonStandardFontSize()
{
QList<int> standardSizesList = QFontDatabase::standardSizes();
int nonStandardFontSize;
if (!standardSizesList.isEmpty()) {
nonStandardFontSize = standardSizesList.at(standardSizesList.count()-1); // get the maximum standard size.
nonStandardFontSize += 1; // the increment of 1 to mock a non-standard font size.
} else {
QSKIP("QFontDatabase::standardSizes() is empty.");
}
QFont testFont;
testFont.setPointSize(nonStandardFontSize);
bool accepted = false;
QTimer::singleShot(2000, this, SLOT(postKeyReturn()));
QFont resultFont = QFontDialog::getFont(&accepted, testFont,
QApplication::activeWindow(),
QLatin1String("QFontDialog - NonStandardFontSize Test"),
QFontDialog::DontUseNativeDialog);
QVERIFY(accepted);
if (accepted)
QCOMPARE(testFont.pointSize(), resultFont.pointSize());
else
QWARN("Fail using a non-standard font size.");
}
QTEST_MAIN(tst_QFontDialog)
#include "tst_qfontdialog.moc"
|