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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
/****************************************************************************
**
** Copyright (C) 2018 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 "abstracttestsuite.h"
#include <QtTest/QtTest>
#include <QtCore/qset.h>
#include <QtCore/QSysInfo>
#include <QtCore/qtextstream.h>
#include <private/qmetaobjectbuilder_p.h>
/*!
AbstractTestSuite provides a way of building QtTest test objects
dynamically. The use case is integration of JavaScript test suites
into QtTest autotests.
Subclasses add their tests functions with addTestFunction() in the
constructor, and must reimplement runTestFunction(). Additionally,
subclasses can reimplement initTestCase() and cleanupTestCase()
(but make sure to call the base implementation).
AbstractTestSuite uses configuration files for getting information
about skipped tests (skip.txt) and expected test failures
(expect_fail.txt). Subclasses must reimplement
createSkipConfigFile() and createExpectFailConfigFile() for
creating these files, and configData() for processing an entry of
such a file.
The config file format is as follows:
- Lines starting with '#' are skipped.
- Lines of the form [SYMBOL] means that the upcoming data
should only be processed if the given SYMBOL is defined on
this platform.
- Any other line is split on ' | ' and handed off to the client.
Subclasses must provide a default tests directory (where the
subclass expects to find the script files to run as tests), and a
default config file directory. Some environment variables can be
used to affect where AbstractTestSuite will look for files:
- QTSCRIPT_TEST_CONFIG_DIR: Overrides the default test config path.
- QTSCRIPT_TEST_CONFIG_SUFFIX: Is appended to "skip" and
"expect_fail" to create the test config name. This makes it easy to
maintain skip- and expect_fail-files corresponding to different
revisions of a test suite, and switch between them.
- QTSCRIPT_TEST_DIR: Overrides the default test dir.
AbstractTestSuite does _not_ define how the test dir itself is
processed or how tests are run; this is left up to the subclass.
If no config files are found, AbstractTestSuite will ask the
subclass to create a default skip file. Also, the
shouldGenerateExpectedFailures variable will be set to true. The
subclass should check for this when a test fails, and add an entry
to its set of expected failures. When all tests have been run,
AbstractTestSuite will ask the subclass to create the expect_fail
file based on the tests that failed. The next time the autotest is
run, the created config files will be used.
The reason for skipping a test is usually that it takes a very long
time to complete (or even hangs completely), or it crashes. It's
not possible for the test runner to know in advance which tests are
problematic, which is why the entries to the skip file are
typically added manually. When running tests for the first time, it
can be useful to run the autotest with the -v1 command line option,
so you can see the name of each test before it's run, and can add a
skip entry if appropriate.
*/
class TestConfigClientInterface;
// For parsing information about skipped tests and expected failures.
class TestConfigParser
{
public:
static void parse(const QString &path,
TestConfig::Mode mode,
TestConfigClientInterface *client);
private:
static QString unescape(const QString &);
static bool isKnownSymbol(const QString &);
static bool isDefined(const QString &);
static QSet<QString> knownSymbols;
static QSet<QString> definedSymbols;
};
QSet<QString> TestConfigParser::knownSymbols;
QSet<QString> TestConfigParser::definedSymbols;
/**
Parses the config file at the given \a path in the given \a mode.
Handling of errors and data is delegated to the given \a client.
*/
void TestConfigParser::parse(const QString &path,
TestConfig::Mode mode,
TestConfigClientInterface *client)
{
QFile file(path);
if (!file.open(QIODevice::ReadOnly))
return;
QTextStream stream(&file);
int lineNumber = 0;
QString predicate;
const QString separator = QString::fromLatin1(" | ");
while (!stream.atEnd()) {
++lineNumber;
QString line = stream.readLine();
if (line.isEmpty())
continue;
if (line.startsWith('#')) // Comment
continue;
if (line.startsWith('[')) { // Predicate
if (!line.endsWith(']')) {
client->configError(path, "malformed predicate", lineNumber);
return;
}
QString symbol = line.mid(1, line.size()-2);
if (isKnownSymbol(symbol)) {
predicate = symbol;
} else {
qWarning("symbol %s is not known -- add it to TestConfigParser!", qPrintable(symbol));
predicate = QString();
}
} else {
if (predicate.isEmpty() || isDefined(predicate)) {
QStringList parts = line.split(separator, QString::KeepEmptyParts);
for (int i = 0; i < parts.size(); ++i)
parts[i] = unescape(parts[i]);
client->configData(mode, parts);
}
}
}
}
QString TestConfigParser::unescape(const QString &str)
{
return QString(str).replace("\\n", "\n");
}
bool TestConfigParser::isKnownSymbol(const QString &symbol)
{
if (knownSymbols.isEmpty()) {
knownSymbols
// If you add a symbol here, add a case for it in
// isDefined() as well.
<< "Q_OS_LINUX"
<< "Q_OS_SOLARIS"
<< "Q_OS_WINCE"
<< "Q_OS_SYMBIAN"
<< "Q_OS_MAC"
<< "Q_OS_WIN"
<< "Q_CC_MSVC"
<< "Q_CC_MSVC32"
<< "Q_CC_MSVC64"
<< "Q_CC_MINGW"
<< "Q_CC_MINGW32"
<< "Q_CC_MINGW64"
<< "Q_CC_INTEL"
<< "Q_CC_INTEL32"
<< "Q_CC_INTEL64"
;
}
return knownSymbols.contains(symbol);
}
bool TestConfigParser::isDefined(const QString &symbol)
{
if (definedSymbols.isEmpty()) {
definedSymbols
#ifdef Q_OS_LINUX
<< "Q_OS_LINUX"
#endif
#ifdef Q_OS_SOLARIS
<< "Q_OS_SOLARIS"
#endif
#ifdef Q_OS_WINCE
<< "Q_OS_WINCE"
#endif
#ifdef Q_OS_SYMBIAN
<< "Q_OS_SYMBIAN"
#endif
#ifdef Q_OS_MAC
<< "Q_OS_MAC"
#endif
#ifdef Q_OS_WIN
<< "Q_OS_WIN"
#endif
#ifdef Q_CC_MSVC
<< "Q_CC_MSVC"
<< (QStringLiteral("Q_CC_MSVC") + QString::number(QSysInfo::WordSize))
#endif
#ifdef Q_CC_MINGW
<< "Q_CC_MINGW"
<< (QStringLiteral("Q_CC_MINGW") + QString::number(QSysInfo::WordSize))
#endif
#ifdef Q_CC_INTEL
<< "Q_CC_INTEL"
<< (QStringLiteral("Q_CC_INTEL") + QString::number(QSysInfo::WordSize))
#endif
;
}
return definedSymbols.contains(symbol);
}
const QMetaObject *AbstractTestSuite::metaObject() const
{
return dynamicMetaObject;
}
void *AbstractTestSuite::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, dynamicMetaObject->className()))
return static_cast<void*>(const_cast<AbstractTestSuite*>(this));
return QObject::qt_metacast(_clname);
}
void AbstractTestSuite::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_a);
if (_c == QMetaObject::InvokeMetaMethod) {
AbstractTestSuite *_t = static_cast<AbstractTestSuite *>(_o);
switch (_id) {
case 0:
_t->initTestCase();
break;
case 1:
_t->cleanupTestCase();
break;
default:
// If another method is added above, this offset must be adjusted.
_t->runTestFunction(_id - 2);
}
}
}
int AbstractTestSuite::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
Q_ASSERT(dynamicMetaObject->cast(this));
int ownMethodCount = dynamicMetaObject->methodCount() - dynamicMetaObject->methodOffset();
if (_id < ownMethodCount)
qt_static_metacall(this, _c, _id, _a);
_id -= ownMethodCount;
}
return _id;
}
void AbstractTestSuite::addPrivateSlot(const QByteArray &signature)
{
QMetaMethodBuilder slot = metaBuilder->addSlot(signature);
slot.setAccess(QMetaMethod::Private);
}
AbstractTestSuite::AbstractTestSuite(const QByteArray &className,
const QString &defaultTestsPath,
const QString &defaultConfigPath)
: shouldGenerateExpectedFailures(false),
dynamicMetaObject(0),
metaBuilder(new QMetaObjectBuilder)
{
metaBuilder->setSuperClass(&QObject::staticMetaObject);
metaBuilder->setClassName(className);
metaBuilder->setStaticMetacallFunction(qt_static_metacall);
QString testConfigPath = qgetenv("QTSCRIPT_TEST_CONFIG_DIR");
if (testConfigPath.isEmpty())
testConfigPath = defaultConfigPath;
QString configSuffix = qgetenv("QTSCRIPT_TEST_CONFIG_SUFFIX");
skipConfigPath = QString::fromLatin1("%0/skip%1.txt")
.arg(testConfigPath).arg(configSuffix);
expectFailConfigPath = QString::fromLatin1("%0/expect_fail%1.txt")
.arg(testConfigPath).arg(configSuffix);
QString testsPath = qgetenv("QTSCRIPT_TEST_DIR");
if (testsPath.isEmpty())
testsPath = defaultTestsPath;
testsDir = QDir(testsPath);
addTestFunction("initTestCase");
addTestFunction("cleanupTestCase");
// Subclass constructors should add their custom test functions to
// the meta-object and call finalizeMetaObject().
}
AbstractTestSuite::~AbstractTestSuite()
{
free(dynamicMetaObject);
}
void AbstractTestSuite::addTestFunction(const QString &name,
DataFunctionCreation dfc)
{
if (dfc == CreateDataFunction) {
QString dataSignature = QString::fromLatin1("%0_data()").arg(name);
addPrivateSlot(dataSignature.toLatin1());
}
QString signature = QString::fromLatin1("%0()").arg(name);
addPrivateSlot(signature.toLatin1());
}
void AbstractTestSuite::finalizeMetaObject()
{
dynamicMetaObject = metaBuilder->toMetaObject();
}
void AbstractTestSuite::initTestCase()
{
if (!testsDir.exists()) {
QString message = QString::fromLatin1("tests directory (%0) doesn't exist.")
.arg(testsDir.path());
QFAIL(qPrintable(message));
return;
}
if (QFileInfo(skipConfigPath).exists())
TestConfigParser::parse(skipConfigPath, TestConfig::Skip, this);
else
createSkipConfigFile();
if (QFileInfo(expectFailConfigPath).exists())
TestConfigParser::parse(expectFailConfigPath, TestConfig::ExpectFail, this);
else
shouldGenerateExpectedFailures = true;
}
void AbstractTestSuite::cleanupTestCase()
{
if (shouldGenerateExpectedFailures)
createExpectFailConfigFile();
}
void AbstractTestSuite::configError(const QString &path, const QString &message, int lineNumber)
{
QString output;
output.append(path);
if (lineNumber != -1)
output.append(":").append(QString::number(lineNumber));
output.append(": ").append(message);
QFAIL(qPrintable(output));
}
void AbstractTestSuite::createSkipConfigFile()
{
QFile file(skipConfigPath);
if (!file.open(QIODevice::WriteOnly))
return;
QWARN(qPrintable(QString::fromLatin1("creating %0").arg(skipConfigPath)));
QTextStream stream(&file);
writeSkipConfigFile(stream);
file.close();
}
void AbstractTestSuite::createExpectFailConfigFile()
{
QFile file(expectFailConfigPath);
if (!file.open(QFile::WriteOnly))
return;
QWARN(qPrintable(QString::fromLatin1("creating %0").arg(expectFailConfigPath)));
QTextStream stream(&file);
writeExpectFailConfigFile(stream);
file.close();
}
/*!
Convenience function for reading all contents of a file.
*/
QString AbstractTestSuite::readFile(const QString &filename)
{
QFile file(filename);
if (!file.open(QFile::ReadOnly))
return QString();
QTextStream stream(&file);
stream.setCodec("UTF-8");
return stream.readAll();
}
/*!
Escapes characters in the string \a str so it's suitable for writing
to a config file.
*/
QString AbstractTestSuite::escape(const QString &str)
{
return QString(str).replace("\n", "\\n");
}
|