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
|
/*
earlyexittest.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2016 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Giulio Camuffo <giulio.camuffo@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include <config-gammaray.h>
#include <launcher/core/injector/injectorfactory.h>
#include <launcher/core/launchoptions.h>
#include <launcher/core/launcher.h>
#include <launcher/core/probefinder.h>
#include <launcher/core/probeabi.h>
#include <QDebug>
#include <QTest>
#include <QObject>
#include <QSignalSpy>
#include <memory>
using namespace GammaRay;
class EarlyExitTest : public QObject
{
Q_OBJECT
private:
static bool hasInjector(const char *type)
{
auto injector = InjectorFactory::createInjector(type);
if (!injector)
return false;
return injector->selfTest();
}
private slots:
static void testNonExistingTarget()
{
LaunchOptions options;
#ifdef Q_OS_MAC
// older OSX versions fall back to lldb by default, which has no synchronous error reporting, see below test
options.setInjectorType("preload");
#endif
options.setUiMode(LaunchOptions::NoUi);
options.setProbeABI(ProbeFinder::listProbeABIs().at(0));
options.setWorkingDirectory(QCoreApplication::applicationDirPath());
options.setLaunchArguments(QStringList() << QStringLiteral("I_DONT_EXIST"));
options.setProbeSetting(QStringLiteral("ServerAddress"), GAMMARAY_DEFAULT_LOCAL_TCP_URL);
Launcher launcher(options);
QVERIFY(!launcher.start());
}
void testNonExistingTargetDebugger_data()
{
QTest::addColumn<QString>("injectorType", nullptr);
QTest::newRow("dummy") << QString(); // QTestlib fails when the test data is empty...
if (hasInjector("gdb"))
QTest::newRow("gdb") << QStringLiteral("gdb");
if (hasInjector("lldb"))
QTest::newRow("lldb") << QStringLiteral("lldb");
}
static void testNonExistingTargetDebugger()
{
QFETCH(QString, injectorType);
if (injectorType.isEmpty())
return;
LaunchOptions options;
options.setUiMode(LaunchOptions::NoUi);
// setting the probe is not strictly needed but we silence a runtime warning this way
options.setProbeABI(ProbeFinder::listProbeABIs().at(0));
options.setLaunchArguments(QStringList() << QStringLiteral("I_DONT_EXIST"));
options.setInjectorType(injectorType);
Launcher launcher(options);
QSignalSpy spy(&launcher, &Launcher::finished);
QVERIFY(launcher.start());
spy.wait(10000);
QCOMPARE(spy.size(), 1);
QEXPECT_FAIL("", "Debug injectors miss error detection for this case.", Continue);
QVERIFY(!launcher.errorMessage().isEmpty());
}
static void test()
{
LaunchOptions options;
options.setUiMode(LaunchOptions::NoUi);
// setting the probe is not strictly needed but we silence a runtime warning this way
options.setProbeABI(ProbeFinder::listProbeABIs().at(0));
options.setWorkingDirectory(QCoreApplication::applicationDirPath());
options.setLaunchArguments(QStringList() << QCoreApplication::applicationDirPath() + QStringLiteral("/sleep") << QStringLiteral("1"));
options.setProbeSetting(QStringLiteral("ServerAddress"), GAMMARAY_DEFAULT_LOCAL_TCP_URL);
Launcher launcher(options);
QSignalSpy spy(&launcher, &Launcher::finished);
QVERIFY(launcher.start());
spy.wait(10000);
QCOMPARE(spy.size(), 1);
}
void testStop_data()
{
QTest::addColumn<QString>("injectorType", nullptr);
QTest::newRow("default") << QString();
if (hasInjector("gdb"))
QTest::newRow("gdb") << QStringLiteral("gdb");
if (hasInjector("lldb"))
QTest::newRow("lldb") << QStringLiteral("lldb");
}
static void testStop()
{
QFETCH(QString, injectorType);
LaunchOptions options;
options.setUiMode(LaunchOptions::NoUi);
// setting the probe is not strictly needed but we silence a runtime warning this way
options.setProbeABI(ProbeFinder::listProbeABIs().at(0));
options.setWorkingDirectory(QCoreApplication::applicationDirPath());
options.setLaunchArguments(QStringList() << QCoreApplication::applicationDirPath() + QStringLiteral("/sleep") << QStringLiteral("1000"));
options.setInjectorType(injectorType);
options.setProbeSetting(QStringLiteral("ServerAddress"), GAMMARAY_DEFAULT_LOCAL_TCP_URL);
Launcher launcher(options);
QSignalSpy spy(&launcher, &Launcher::finished);
QVERIFY(launcher.start());
launcher.stop();
spy.wait(1000);
QCOMPARE(spy.size(), 1);
}
};
QTEST_MAIN(EarlyExitTest)
#include "earlyexittest.moc"
|