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
|
/****************************************************************************
**
** 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_blackboxjava.h"
#include "../shared.h"
#include <tools/hostosinfo.h>
#include <tools/profile.h>
#include <tools/qttools.h>
#include <QtCore/qjsondocument.h>
#include <QtCore/qtemporarydir.h>
using qbs::Internal::HostOsInfo;
using qbs::Profile;
TestBlackboxJava::TestBlackboxJava()
: TestBlackboxBase (SRCDIR "/testdata-java", "blackbox-java"),
m_blacklistedJdks(qgetenv("QBS_AUTOTEST_JDK_BLACKLIST"))
{
}
static QProcessEnvironment processEnvironmentWithCurrentDirectoryInLibraryPath()
{
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert(HostOsInfo::libraryPathEnvironmentVariable(),
(QStringList() << env.value(HostOsInfo::libraryPathEnvironmentVariable()) << ".")
.join(HostOsInfo::pathListSeparator()));
return env;
}
void TestBlackboxJava::java()
{
#if defined(Q_OS_WIN32) && !defined(Q_OS_WIN64)
QSKIP("QTBUG-3845");
#endif
const SettingsPtr s = settings();
Profile p(profileName(), s.get());
int status;
const auto jdkTools = findJdkTools(&status);
QCOMPARE(status, 0);
QDir::setCurrent(testDataDir + "/java");
status = runQbs();
if (p.value("java.jdkPath").toString().isEmpty()
&& status != 0 && m_qbsStderr.contains("jdkPath")) {
QSKIP("java.jdkPath not set and automatic detection failed");
}
if (m_qbsStdout.contains("target platform/arch differ from host platform/arch"))
QSKIP("Skip test in cross-compiled build");
QCOMPARE(status, 0);
const QStringList classFiles =
QStringList() << "Jet" << "Ship" << "Vehicles";
QStringList classFiles1 = QStringList(classFiles) << "io/qt/qbs/HelloWorld" << "NoPackage";
for (QString &classFile : classFiles1) {
classFile = relativeProductBuildDir("cc") + "/classes/" + classFile + ".class";
QVERIFY2(regularFileExists(classFile), qPrintable(classFile));
}
for (const QString &classFile : classFiles) {
const QString filePath = relativeProductBuildDir("jar_file") + "/classes/" + classFile
+ ".class";
QVERIFY2(regularFileExists(filePath), qPrintable(filePath));
}
const QString jarFilePath = relativeProductBuildDir("jar_file") + '/' + "jar_file.jar";
QVERIFY2(regularFileExists(jarFilePath), qPrintable(jarFilePath));
// Now check whether we correctly predicted the class file output paths.
QCOMPARE(runQbs(QbsRunParameters("clean")), 0);
for (const QString &classFile : std::as_const(classFiles1)) {
QVERIFY2(!regularFileExists(classFile), qPrintable(classFile));
}
// This tests various things: java.manifestClassPath, JNI, etc.
QDir::setCurrent(relativeBuildDir() + "/install-root");
QProcess process;
process.setProcessEnvironment(processEnvironmentWithCurrentDirectoryInLibraryPath());
process.start(HostOsInfo::appendExecutableSuffix(jdkTools["java"]),
QStringList() << "-jar" << "jar_file.jar");
if (process.waitForStarted()) {
QVERIFY2(process.waitForFinished(), qPrintable(process.errorString()));
QVERIFY2(process.exitCode() == 0, process.readAllStandardError().constData());
const QByteArray stdOut = process.readAllStandardOutput();
QVERIFY2(stdOut.contains("Driving!"), stdOut.constData());
QVERIFY2(stdOut.contains("Flying!"), stdOut.constData());
QVERIFY2(stdOut.contains("Flying (this is a space ship)!"), stdOut.constData());
QVERIFY2(stdOut.contains("Sailing!"), stdOut.constData());
QVERIFY2(stdOut.contains("Native code performing complex internal combustion process ("),
stdOut.constData());
}
process.start("unzip", QStringList() << "-p" << "jar_file.jar");
if (process.waitForStarted()) {
QVERIFY2(process.waitForFinished(), qPrintable(process.errorString()));
const QByteArray stdOut = process.readAllStandardOutput();
QVERIFY2(stdOut.contains("Class-Path: random_stuff.jar car_jar.jar"), stdOut.constData());
QVERIFY2(stdOut.contains("Main-Class: Vehicles"), stdOut.constData());
QVERIFY2(stdOut.contains("Some-Property: Some-Value"), stdOut.constData());
QVERIFY2(stdOut.contains("Additional-Property: Additional-Value"), stdOut.constData());
QVERIFY2(stdOut.contains("Extra-Property: Crazy-Value"), stdOut.constData());
}
}
static QString dpkgArch(const QString &prefix = QString())
{
QProcess dpkg;
dpkg.start("/usr/bin/dpkg", QStringList() << "--print-architecture");
dpkg.waitForFinished();
if (dpkg.exitStatus() == QProcess::NormalExit && dpkg.exitCode() == 0)
return prefix + QString::fromLocal8Bit(dpkg.readAllStandardOutput().trimmed());
return {};
}
void TestBlackboxJava::javaDependencyTracking()
{
QFETCH(QString, jdkPath);
QFETCH(QString, javaVersion);
QDir::setCurrent(testDataDir + "/java");
QbsRunParameters rp;
rp.arguments.push_back("--check-outputs");
if (!jdkPath.isEmpty()) {
if (m_blacklistedJdks.contains(jdkPath))
QSKIP("skipping blacklisted JDK");
rp.arguments << ("modules.java.jdkPath:" + jdkPath);
}
if (!javaVersion.isEmpty())
rp.arguments << ("modules.java.languageVersion:'" + javaVersion + "'");
rmDirR(relativeBuildDir());
const bool defaultJdkPossiblyTooOld = jdkPath.isEmpty() && !javaVersion.isEmpty();
rp.expectFailure = defaultJdkPossiblyTooOld;
QVERIFY(runQbs(rp) == 0
|| (defaultJdkPossiblyTooOld && m_qbsStderr.contains("invalid source release")));
}
void TestBlackboxJava::javaDependencyTracking_data()
{
QTest::addColumn<QString>("jdkPath");
QTest::addColumn<QString>("javaVersion");
const SettingsPtr s = settings();
Profile p(profileName(), s.get());
auto getSpecificJdkVersion = [](const QString &jdkVersion) -> QString {
if (HostOsInfo::isMacosHost()) {
QProcess java_home;
java_home.start("/usr/libexec/java_home", {"--version", jdkVersion, "--failfast"});
java_home.waitForFinished();
if (java_home.exitStatus() == QProcess::NormalExit && java_home.exitCode() == 0)
return QString::fromLocal8Bit(java_home.readAllStandardOutput().trimmed());
} else if (HostOsInfo::isWindowsHost()) {
QSettings settings("HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\"
+ jdkVersion, QSettings::NativeFormat);
return settings.value("JavaHome").toString();
} else {
QString minorVersion = jdkVersion;
if (minorVersion.startsWith("1."))
minorVersion.remove(0, 2);
const QStringList searchPaths = {
"/usr/lib/jvm/java-" + minorVersion + "-openjdk" + dpkgArch("-"), // Debian
"/usr/lib/jvm/java-" + minorVersion + "-openjdk", // Arch
"/usr/lib/jvm/jre-1." + minorVersion + ".0-openjdk", // Fedora
"/usr/lib64/jvm/java-1." + minorVersion + ".0-openjdk", // OpenSuSE
};
for (const QString &searchPath : searchPaths) {
if (QFile::exists(searchPath + "/bin/javac"))
return searchPath;
}
}
return {};
};
static const auto knownJdkVersions = QStringList() << "1.7" << "1.8" << "1.9"
<< QString(); // default JDK;
QStringList seenJdkVersions;
for (const auto &jdkVersion : knownJdkVersions) {
QString specificJdkPath = getSpecificJdkVersion(jdkVersion);
if (jdkVersion.isEmpty() || !specificJdkPath.isEmpty()) {
const auto jdkPath = jdkVersion.isEmpty() ? jdkVersion : specificJdkPath;
if (!jdkVersion.isEmpty())
seenJdkVersions << jdkVersion;
if (!seenJdkVersions.empty()) {
const auto javaVersions = QStringList()
<< knownJdkVersions.mid(0, knownJdkVersions.indexOf(seenJdkVersions.last()) + 1)
<< QString(); // also test with no explicitly specified source version
for (const auto ¤tJavaVersion : javaVersions) {
const QString rowName = (!jdkPath.isEmpty() ? jdkPath : "default JDK")
+ QStringLiteral(", ")
+ (!currentJavaVersion.isEmpty()
? ("Java " + currentJavaVersion)
: "default Java version");
QTest::newRow(rowName.toLatin1().constData())
<< jdkPath << currentJavaVersion;
}
}
}
}
if (seenJdkVersions.empty())
QSKIP("No JDKs installed");
}
void TestBlackboxJava::javaDependencyTrackingInnerClass()
{
const SettingsPtr s = settings();
Profile p(profileName(), s.get());
QDir::setCurrent(testDataDir + "/java/inner-class");
QbsRunParameters params;
int status = runQbs(params);
if (p.value("java.jdkPath").toString().isEmpty()
&& status != 0 && m_qbsStderr.contains("jdkPath")) {
QSKIP("java.jdkPath not set and automatic detection failed");
}
QCOMPARE(status, 0);
}
QTEST_MAIN(TestBlackboxJava)
|