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
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qbs.
**
** $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 "tst_blackboxbase.h"
#include "../shared.h"
#include <tools/fileinfo.h>
#include <tools/hostosinfo.h>
#include <tools/installoptions.h>
#include <tools/profile.h>
#include <QtCore/qdiriterator.h>
#include <QtCore/qjsondocument.h>
#include <QtCore/qtemporarydir.h>
using qbs::Internal::HostOsInfo;
using qbs::Internal::removeDirectoryWithContents;
using qbs::InstallOptions;
using qbs::Profile;
static QString initQbsExecutableFilePath()
{
const QString qbsInstallDir = QString::fromLocal8Bit(qgetenv("QBS_INSTALL_DIR"));
return HostOsInfo::appendExecutableSuffix(QDir::cleanPath(!qbsInstallDir.isEmpty()
? qbsInstallDir + QLatin1String("/bin/qbs")
: QCoreApplication::applicationDirPath() + QLatin1String("/qbs")));
}
static bool supportsBuildDirectoryOption(const QString &command) {
return !(QStringList() << "help" << "config" << "config-ui"
<< "setup-android" << "setup-qt" << "setup-toolchains" << "create-project")
.contains(command);
}
static bool supportsSettingsDirOption(const QString &command) {
return !(QStringList() << "help" << "create-project").contains(command);
}
TestBlackboxBase::TestBlackboxBase(const QString &testDataSrcDir, const QString &testName)
: testDataDir(testWorkDir(testName)),
testSourceDir(testDataSourceDir(testDataSrcDir)),
qbsExecutableFilePath(initQbsExecutableFilePath()),
defaultInstallRoot(relativeBuildDir() + QLatin1Char('/') + InstallOptions::defaultInstallRoot())
{
QLocale::setDefault(QLocale::c());
}
int TestBlackboxBase::runQbs(const QbsRunParameters ¶ms)
{
QStringList args;
if (!params.command.isEmpty())
args << params.command;
if (!params.settingsDir.isEmpty() && supportsSettingsDirOption(params.command))
args << "--settings-dir" << params.settingsDir;
if (supportsBuildDirectoryOption(params.command)) {
args.push_back(QStringLiteral("-d"));
args.push_back(params.buildDirectory.isEmpty()
? QStringLiteral(".")
: params.buildDirectory);
}
args << params.arguments;
const bool commandImpliesResolve = params.command.isEmpty() || params.command == "resolve"
|| params.command == "build" || params.command == "install" || params.command == "run"
|| params.command == "generate";
if (!params.profile.isEmpty() && commandImpliesResolve) {
args.push_back(QLatin1String("profile:") + params.profile);
}
QProcess process;
if (!params.workingDir.isEmpty())
process.setWorkingDirectory(params.workingDir);
process.setProcessEnvironment(params.environment);
process.start(qbsExecutableFilePath, args);
int exitCode = 0;
if (!process.waitForStarted() || !process.waitForFinished(testTimeoutInMsecs())
|| process.exitStatus() != QProcess::NormalExit) {
if (!params.expectCrash) {
QTest::qFail("qbs did not run correctly", __FILE__, __LINE__);
qDebug("%s", qPrintable(process.errorString()));
}
exitCode = -1;
} else if (m_qbsStdout.contains("Memory leak:")) {
exitCode = 27;
} else {
exitCode = process.exitCode();
}
m_qbsStderr = process.readAllStandardError();
m_qbsStdout = process.readAllStandardOutput();
sanitizeOutput(&m_qbsStderr);
sanitizeOutput(&m_qbsStdout);
const bool shouldLog = (process.exitStatus() != QProcess::NormalExit
|| exitCode != 0) && !params.expectFailure;
if (!m_qbsStderr.isEmpty()
&& (shouldLog || qEnvironmentVariableIsSet("QBS_AUTOTEST_ALWAYS_LOG_STDERR")))
qDebug("%s", m_qbsStderr.constData());
if (!m_qbsStdout.isEmpty()
&& (shouldLog || qEnvironmentVariableIsSet("QBS_AUTOTEST_ALWAYS_LOG_STDOUT")))
qDebug("%s", m_qbsStdout.constData());
return exitCode;
}
/*!
Recursive copy from directory to another.
Note that this updates the file stamps on Linux but not on Windows.
*/
void TestBlackboxBase::ccp(const QString &sourceDirPath, const QString &targetDirPath)
{
QDir currentDir;
QDirIterator dit(sourceDirPath, QDir::Dirs | QDir::NoDotAndDotDot | QDir::Hidden);
while (dit.hasNext()) {
dit.next();
const QString targetPath = targetDirPath + QLatin1Char('/') + dit.fileName();
currentDir.mkpath(targetPath);
ccp(dit.filePath(), targetPath);
}
QDirIterator fit(sourceDirPath, QDir::Files | QDir::Hidden);
while (fit.hasNext()) {
fit.next();
const QString targetPath = targetDirPath + QLatin1Char('/') + fit.fileName();
QFile::remove(targetPath); // allowed to fail
QFile src(fit.filePath());
QVERIFY2(src.copy(targetPath), qPrintable(src.errorString()));
}
}
void TestBlackboxBase::rmDirR(const QString &dir)
{
QString errorMessage;
removeDirectoryWithContents(dir, &errorMessage);
}
QByteArray TestBlackboxBase::unifiedLineEndings(const QByteArray &ba)
{
if (HostOsInfo::isWindowsHost()) {
QByteArray result;
result.reserve(ba.size());
for (const char &c : ba) {
if (c != '\r')
result.append(c);
}
return result;
} else {
return ba;
}
}
void TestBlackboxBase::sanitizeOutput(QByteArray *ba)
{
if (HostOsInfo::isWindowsHost())
ba->replace('\r', "");
}
void TestBlackboxBase::initTestCase()
{
QVERIFY(regularFileExists(qbsExecutableFilePath));
const SettingsPtr s = settings();
if (profileName() != "none" && !s->profiles().contains(profileName()))
QFAIL(QByteArray("The build profile '" + profileName().toLocal8Bit() +
"' could not be found. Please set it up on your machine."));
validateTestProfile();
// Initialize the test data directory.
QVERIFY(testDataDir != testSourceDir);
rmDirR(testDataDir);
QDir().mkpath(testDataDir);
ccp(testSourceDir, testDataDir);
QDir().mkpath(testDataDir + "/find");
ccp(testSourceDir + "/../find", testDataDir + "/find");
QVERIFY(copyDllExportHeader(testSourceDir, testDataDir));
}
void TestBlackboxBase::validateTestProfile()
{
const SettingsPtr s = settings();
if (profileName() != "none" && !s->profiles().contains(profileName()))
QFAIL(QByteArray("The build profile '" + profileName().toLocal8Bit() +
"' could not be found. Please set it up on your machine."));
if (!m_needsQt)
return;
const QStringList qmakeFilePaths = Profile(profileName(), s.get())
.value("moduleProviders.Qt.qmakeFilePaths").toStringList();
if (!qmakeFilePaths.empty())
return;
if (!findExecutable(QStringList{"qmake"}).isEmpty())
return;
QSKIP(QByteArray("The build profile '" + profileName().toLocal8Bit() +
"' is not a valid Qt profile and Qt was not found "
"in the global search paths."));
}
QString TestBlackboxBase::findExecutable(const QStringList &fileNames)
{
const QStringList path = QString::fromLocal8Bit(qgetenv("PATH"))
.split(HostOsInfo::pathListSeparator(), Qt::SkipEmptyParts);
for (const QString &fileName : fileNames) {
QFileInfo fi(fileName);
if (fi.isAbsolute())
return fi.exists() ? fileName : QString();
for (const QString &ppath : path) {
const QString fullPath
= HostOsInfo::appendExecutableSuffix(ppath + QLatin1Char('/') + fileName);
if (QFileInfo(fullPath).exists())
return QDir::cleanPath(fullPath);
}
}
return {};
}
QMap<QString, QString> TestBlackboxBase::findJdkTools(int *status)
{
QTemporaryDir temp;
QDir::setCurrent(testDataDir + "/find");
QbsRunParameters params = QStringList() << "-f" << "find-jdk.qbs";
params.buildDirectory = temp.path();
const int res = runQbs(params);
if (status)
*status = res;
QFile file(temp.path() + "/" + relativeProductBuildDir("find-jdk") + "/jdk.json");
if (!file.open(QIODevice::ReadOnly))
return {};
const auto tools = QJsonDocument::fromJson(file.readAll()).toVariant().toMap();
return {
{"java", QDir::fromNativeSeparators(tools["java"].toString())},
{"javac", QDir::fromNativeSeparators(tools["javac"].toString())},
{"jar", QDir::fromNativeSeparators(tools["jar"].toString())}
};
}
qbs::Version TestBlackboxBase::qmakeVersion(const QString &qmakeFilePath)
{
QStringList arguments;
arguments << "-query" << "QT_VERSION";
QProcess qmakeProcess;
qmakeProcess.start(qmakeFilePath, arguments);
if (!qmakeProcess.waitForStarted() || !qmakeProcess.waitForFinished()
|| qmakeProcess.exitStatus() != QProcess::NormalExit) {
qDebug() << "qmake '" << qmakeFilePath << "' could not be run.";
return qbs::Version();
}
QByteArray result = qmakeProcess.readAll().simplified();
qbs::Version version = qbs::Version::fromString(result);
if (!version.isValid())
qDebug() << "qmake '" << qmakeFilePath << "' version is not valid.";
return version;
}
qbs::Version TestBlackboxBase::conanVersion(const QString &conanFilePath)
{
QProcess conan;
conan.start(conanFilePath, {"--version"});
if (!waitForProcessSuccess(conan))
return qbs::Version{};
return qbs::Version::fromString(QString::fromLocal8Bit(conan.readAllStandardOutput())
.trimmed()
.remove(QStringLiteral("Conan version"))
.trimmed());
}
bool waitForProcessSuccess(QProcess &p, int msecs)
{
if (!p.waitForStarted(msecs) || !p.waitForFinished(msecs)) {
qDebug() << p.errorString();
return false;
}
if (p.exitCode() != 0) {
qDebug().noquote() << p.readAllStandardError();
return false;
}
return true;
}
|