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
|
// Copyright (C) 2017 Ford Motor Company
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtTest/QtTest>
#include <QMetaType>
#include <QProcess>
#include "../../../shared/testutils.h"
class tst_Integration_MultiProcess: public QObject
{
Q_OBJECT
private slots:
void initTestCase()
{
QVERIFY(TestUtils::init("tst"));
QLoggingCategory::setFilterRules("qt.remoteobjects.warning=false");
}
void cleanup()
{
// wait for delivery of RemoveObject events to the source
QTest::qWait(200);
}
void testRun_data()
{
QTest::addColumn<bool>("templated");
QTest::newRow("non-templated enableRemoting") << false;
QTest::newRow("templated enableRemoting") << true;
}
void testRun()
{
#ifdef Q_OS_ANDROID
QSKIP("QProcess doesn't support running user bundled binaries on Android");
#endif
QFETCH(bool, templated);
qDebug() << "Starting server process";
QProcess serverProc;
serverProc.setProcessChannelMode(QProcess::ForwardedChannels);
if (templated) {
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert("TEMPLATED_REMOTING", "true");
serverProc.setProcessEnvironment(env);
}
serverProc.start(TestUtils::findExecutable("integration_multiprocess_server", "/server"),
QStringList());
QVERIFY(serverProc.waitForStarted());
// wait for server start
QTest::qWait(200);
qDebug() << "Starting client process";
QProcess clientProc;
clientProc.setProcessChannelMode(QProcess::ForwardedChannels);
clientProc.start(TestUtils::findExecutable("integration_multiprocess_client", "/client"),
QStringList());
QVERIFY(clientProc.waitForStarted());
QVERIFY(clientProc.waitForFinished());
QVERIFY(serverProc.waitForFinished());
QCOMPARE(serverProc.exitCode(), 0);
QCOMPARE(clientProc.exitCode(), 0);
}
};
QTEST_MAIN(tst_Integration_MultiProcess)
#include "tst_integration_multiprocess.moc"
|