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
|
// Copyright (C) 2017 Ford Motor Company
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef TESTUTILS_H
#define TESTUTILS_H
#include <QDebug>
#include <QString>
#include <QDir>
#include <QStandardPaths>
#include <QCoreApplication>
#ifdef Q_OS_ANDROID
#define LOCAL_SOCKET "localabstract"
#else
#define LOCAL_SOCKET "local"
#endif
namespace TestUtils {
QString subFolder;
QString rootFolder;
bool init(const QString &folder)
{
if (!TestUtils::rootFolder.isEmpty())
return true;
#ifdef Q_OS_ANDROID
// All libraries are at located at the native libraries folder
return true;
#endif
const auto appPath = QCoreApplication::applicationDirPath();
auto dir = QDir(appPath);
while (dir.dirName() != folder) {
TestUtils::subFolder.prepend(dir.dirName()).prepend('/');
if (!dir.cdUp())
return false;
}
dir.cdUp();
TestUtils::rootFolder = dir.absolutePath();
return true;
}
QString findExecutable(const QString &executableName, const QString &folder)
{
const auto path = QStandardPaths::findExecutable(executableName, {TestUtils::rootFolder + folder + TestUtils::subFolder});
if (!path.isEmpty()) {
return path;
}
qWarning() << "Could not find executable:" << executableName << "in " << TestUtils::rootFolder + folder + TestUtils::subFolder;
return QString();
}
}
#endif // TESTUTILS_H
|