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
|
/*
This file is part of libkdbus
SPDX-FileCopyrightText: 1999 Waldo Bastian <bastian@kde.org>
SPDX-FileCopyrightText: 2011 David Faure <faure@kde.org>
SPDX-FileCopyrightText: 2011 Kevin Ottens <ervin@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include <QCoreApplication>
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QMetaObject>
#include <QProcess>
#include <QTimer>
#include <kdbusservice.h>
#include <stdio.h>
class TestObject : public QObject
{
Q_OBJECT
public:
TestObject(KDBusService *service)
: m_proc(nullptr)
, m_callCount(0)
, m_service(service)
{
}
~TestObject() override
{
if (m_proc) {
m_proc->waitForFinished();
}
}
int callCount() const
{
return m_callCount;
}
void slotActivateRequested(const QStringList &args, const QString &workingDirectory)
{
Q_UNUSED(workingDirectory);
qDebug() << "Application executed with args" << args;
++m_callCount;
if (m_callCount == 1) {
Q_ASSERT(args.count() == 1);
Q_ASSERT(args.at(0) == QLatin1String("dummy call"));
} else if (m_callCount == 2) {
Q_ASSERT(args.count() == 2);
Q_ASSERT(args.at(1) == QLatin1String("bad call"));
m_service->setExitValue(4);
} else if (m_callCount == 3) {
Q_ASSERT(args.count() == 3);
Q_ASSERT(args.at(1) == QLatin1String("real call"));
Q_ASSERT(args.at(2) == QLatin1String("second arg"));
// OK, all done, quit
QCoreApplication::instance()->quit();
}
}
public Q_SLOTS:
void firstCall()
{
QStringList args;
args << QStringLiteral("bad call");
executeNewChild(args);
}
private Q_SLOTS:
void slotProcessFinished(int exitCode, QProcess::ExitStatus exitStatus)
{
Q_UNUSED(exitStatus)
qDebug() << "Process exited with code" << exitCode;
m_proc = nullptr;
if (m_callCount == 2) {
Q_ASSERT(exitCode == 4);
secondCall();
}
}
void secondCall()
{
QStringList args;
args << QStringLiteral("real call") << QStringLiteral("second arg");
executeNewChild(args);
}
private:
void executeNewChild(const QStringList &args)
{
// Duplicated from kglobalsettingstest.cpp - make a shared helper method?
m_proc = new QProcess(this);
connect(m_proc, &QProcess::finished, this, &TestObject::slotProcessFinished);
QString appName = QStringLiteral("kdbusservicetest");
#ifdef Q_OS_WIN
appName += ".exe";
#else
if (QFile::exists(appName + ".shell")) {
appName = "./" + appName + ".shell";
} else {
Q_ASSERT(QFile::exists(appName));
appName = "./" + appName;
}
#endif
qDebug() << "about to run" << appName << args;
m_proc->start(appName, args);
}
QProcess *m_proc;
int m_callCount;
KDBusService *m_service;
};
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QCoreApplication::setApplicationName(QStringLiteral("kdbusservicetest"));
QCoreApplication::setOrganizationDomain(QStringLiteral("kde.org"));
QDir::setCurrent(QCoreApplication::applicationDirPath());
KDBusService service(KDBusService::Unique);
TestObject testObject(&service);
QObject::connect(&service, &KDBusService::activateRequested, &testObject, &TestObject::slotActivateRequested);
// Testcase for the problem coming from the old fork-on-startup solution:
// the "Activate" D-Bus call would time out if the app took too much time
// to be ready.
// printf("Sleeping.\n");
// sleep(200);
QStringList args;
args << QStringLiteral("dummy call");
auto activateSignal = [&service, &args]() {
service.activateRequested(args, QDir::currentPath());
};
QMetaObject::invokeMethod(&service, activateSignal, Qt::QueuedConnection);
QTimer::singleShot(400, &testObject, &TestObject::firstCall);
qDebug() << "Running.";
a.exec();
qDebug() << "Terminating.";
Q_ASSERT(testObject.callCount() == 3);
const bool ok = testObject.callCount() == 3;
return ok ? 0 : 1;
}
#include "kdbusservicetest.moc"
|