2014-10-07 15:51:02 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-10-07 15:51:02 +02:00
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** This file is part of Qt Creator.
|
2014-10-07 15:51:02 +02:00
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
2014-10-07 15:51:02 +02:00
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-22 10:37:55 +01:00
|
|
|
** 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.
|
2014-10-07 15:51:02 +02:00
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** 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.
|
2014-10-07 15:51:02 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "testconfiguration.h"
|
2016-04-29 10:13:35 +02:00
|
|
|
#include "testoutputreader.h"
|
2016-06-15 12:29:24 +02:00
|
|
|
#include "testrunconfiguration.h"
|
|
|
|
|
#include "testrunner.h"
|
2016-04-29 10:13:35 +02:00
|
|
|
#include "testsettings.h"
|
2014-10-07 15:51:02 +02:00
|
|
|
|
2015-04-27 16:11:28 +02:00
|
|
|
#include <cpptools/cppmodelmanager.h>
|
2016-01-13 12:14:43 +01:00
|
|
|
#include <cpptools/projectinfo.h>
|
2015-04-27 16:11:28 +02:00
|
|
|
|
2016-01-26 17:24:11 +01:00
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
2015-04-27 16:11:28 +02:00
|
|
|
#include <projectexplorer/buildtargetinfo.h>
|
|
|
|
|
#include <projectexplorer/environmentaspect.h>
|
2016-01-25 15:00:20 +01:00
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
|
#include <projectexplorer/runnables.h>
|
2015-04-27 16:11:28 +02:00
|
|
|
#include <projectexplorer/runconfiguration.h>
|
|
|
|
|
#include <projectexplorer/session.h>
|
|
|
|
|
#include <projectexplorer/target.h>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
2014-10-07 15:51:02 +02:00
|
|
|
|
|
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2016-04-29 10:13:35 +02:00
|
|
|
TestConfiguration::TestConfiguration()
|
2014-10-07 15:51:02 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TestConfiguration::~TestConfiguration()
|
|
|
|
|
{
|
|
|
|
|
m_testCases.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-23 15:56:52 +01:00
|
|
|
void completeBasicProjectInformation(Project *project, const QString &proFile, QString *displayName,
|
2015-12-09 09:46:33 +01:00
|
|
|
Project **targetProject)
|
|
|
|
|
{
|
|
|
|
|
CppTools::CppModelManager *cppMM = CppTools::CppModelManager::instance();
|
|
|
|
|
QList<CppTools::ProjectPart::Ptr> projParts = cppMM->projectInfo(project).projectParts();
|
|
|
|
|
|
2016-03-03 13:24:11 +01:00
|
|
|
if (displayName->isEmpty()) {
|
|
|
|
|
foreach (const CppTools::ProjectPart::Ptr &part, projParts) {
|
|
|
|
|
if (part->projectFile == proFile) {
|
|
|
|
|
*displayName = part->displayName;
|
|
|
|
|
*targetProject = part->project;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else { // for CMake based projects we've got the displayname already
|
|
|
|
|
foreach (const CppTools::ProjectPart::Ptr &part, projParts) {
|
|
|
|
|
if (part->displayName == *displayName) {
|
|
|
|
|
*targetProject = part->project;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-12-09 09:46:33 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-25 15:00:20 +01:00
|
|
|
static bool isLocal(RunConfiguration *runConfiguration)
|
2015-04-27 16:11:28 +02:00
|
|
|
{
|
2016-01-25 15:00:20 +01:00
|
|
|
Target *target = runConfiguration ? runConfiguration->target() : 0;
|
|
|
|
|
Kit *kit = target ? target->kit() : 0;
|
|
|
|
|
return DeviceTypeKitInformation::deviceTypeId(kit) == ProjectExplorer::Constants::DESKTOP_DEVICE_TYPE;
|
2015-04-27 16:11:28 +02:00
|
|
|
}
|
|
|
|
|
|
2016-06-15 12:29:24 +02:00
|
|
|
void TestConfiguration::completeTestInformation(int runMode)
|
2015-04-27 16:11:28 +02:00
|
|
|
{
|
2016-02-23 15:56:52 +01:00
|
|
|
QTC_ASSERT(!m_proFile.isEmpty(), return);
|
2015-04-27 16:11:28 +02:00
|
|
|
|
|
|
|
|
Project *project = SessionManager::startupProject();
|
|
|
|
|
if (!project)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QString targetFile;
|
|
|
|
|
QString targetName;
|
|
|
|
|
QString workDir;
|
2016-03-03 13:24:11 +01:00
|
|
|
QString displayName = m_displayName;
|
2016-01-26 17:24:11 +01:00
|
|
|
QString buildDir;
|
2015-04-27 16:11:28 +02:00
|
|
|
Project *targetProject = 0;
|
|
|
|
|
Utils::Environment env;
|
2016-06-15 12:29:24 +02:00
|
|
|
Target *runConfigTarget = 0;
|
2015-04-27 16:11:28 +02:00
|
|
|
bool hasDesktopTarget = false;
|
|
|
|
|
bool guessedRunConfiguration = false;
|
|
|
|
|
setProject(0);
|
|
|
|
|
|
2016-02-23 15:56:52 +01:00
|
|
|
completeBasicProjectInformation(project, m_proFile, &displayName, &targetProject);
|
2015-04-27 16:11:28 +02:00
|
|
|
|
|
|
|
|
Target *target = project->activeTarget();
|
|
|
|
|
if (!target)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
BuildTargetInfoList appTargets = target->applicationTargets();
|
2016-03-03 13:24:11 +01:00
|
|
|
if (m_displayName.isEmpty()) {
|
|
|
|
|
foreach (const BuildTargetInfo &bti, appTargets.list) {
|
|
|
|
|
// some project manager store line/column information as well inside ProjectPart
|
|
|
|
|
if (bti.isValid() && m_proFile.startsWith(bti.projectFilePath.toString())) {
|
2016-05-23 08:45:08 +02:00
|
|
|
targetFile = bti.targetFilePath.toString();
|
|
|
|
|
if (Utils::HostOsInfo::isWindowsHost()
|
|
|
|
|
&& !targetFile.toLower().endsWith(QLatin1String(".exe"))) {
|
|
|
|
|
targetFile = Utils::HostOsInfo::withExecutableSuffix(targetFile);
|
|
|
|
|
}
|
2016-03-03 13:24:11 +01:00
|
|
|
targetName = bti.targetName;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else { // CMake based projects have no specific pro file, but target name matches displayname
|
|
|
|
|
foreach (const BuildTargetInfo &bti, appTargets.list) {
|
|
|
|
|
if (bti.isValid() && m_displayName == bti.targetName) {
|
|
|
|
|
// for CMake base projects targetFilePath has executable suffix already
|
|
|
|
|
targetFile = bti.targetFilePath.toString();
|
|
|
|
|
targetName = m_displayName;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-04-27 16:11:28 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 17:24:11 +01:00
|
|
|
if (targetProject) {
|
|
|
|
|
if (auto buildConfig = target->activeBuildConfiguration()) {
|
|
|
|
|
const QString buildBase = buildConfig->buildDirectory().toString();
|
|
|
|
|
const QString projBase = targetProject->projectDirectory().toString();
|
2016-02-23 15:56:52 +01:00
|
|
|
if (m_proFile.startsWith(projBase))
|
|
|
|
|
buildDir = QFileInfo(buildBase + m_proFile.mid(projBase.length())).absolutePath();
|
2016-01-26 17:24:11 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-27 16:11:28 +02:00
|
|
|
QList<RunConfiguration *> rcs = target->runConfigurations();
|
|
|
|
|
foreach (RunConfiguration *rc, rcs) {
|
2016-01-25 15:00:20 +01:00
|
|
|
Runnable runnable = rc->runnable();
|
|
|
|
|
if (isLocal(rc) && runnable.is<StandardRunnable>()) {
|
|
|
|
|
StandardRunnable stdRunnable = runnable.as<StandardRunnable>();
|
2016-07-27 14:48:16 +02:00
|
|
|
// we might have an executable that gets installed - in such a case the
|
|
|
|
|
// runnable's executable and targetFile won't match - but the (unique) display name
|
|
|
|
|
// of the run configuration should match targetName
|
|
|
|
|
if (stdRunnable.executable == targetFile
|
|
|
|
|
|| (!targetName.isEmpty() && rc->displayName() == targetName)) {
|
|
|
|
|
targetFile = stdRunnable.executable;
|
2016-01-25 15:00:20 +01:00
|
|
|
workDir = Utils::FileUtils::normalizePathName(stdRunnable.workingDirectory);
|
|
|
|
|
env = stdRunnable.environment;
|
|
|
|
|
hasDesktopTarget = true;
|
2016-06-15 12:29:24 +02:00
|
|
|
runConfigTarget = rc->target();
|
2016-01-25 15:00:20 +01:00
|
|
|
break;
|
|
|
|
|
}
|
2015-04-27 16:11:28 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if we could not figure out the run configuration
|
|
|
|
|
// try to use the run configuration of the parent project
|
|
|
|
|
if (!hasDesktopTarget && targetProject && !targetFile.isEmpty()) {
|
2016-01-25 15:00:20 +01:00
|
|
|
if (auto rc = target->activeRunConfiguration()) {
|
|
|
|
|
Runnable runnable = rc->runnable();
|
|
|
|
|
if (isLocal(rc) && runnable.is<StandardRunnable>()) {
|
|
|
|
|
StandardRunnable stdRunnable = runnable.as<StandardRunnable>();
|
|
|
|
|
workDir = Utils::FileUtils::normalizePathName(stdRunnable.workingDirectory);
|
|
|
|
|
env = stdRunnable.environment;
|
|
|
|
|
hasDesktopTarget = true;
|
|
|
|
|
guessedRunConfiguration = true;
|
2016-07-07 08:14:28 +02:00
|
|
|
runConfigTarget = rc->target();
|
2016-01-25 15:00:20 +01:00
|
|
|
}
|
2015-04-27 16:11:28 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setDisplayName(displayName);
|
|
|
|
|
|
|
|
|
|
if (hasDesktopTarget) {
|
|
|
|
|
setTargetFile(targetFile);
|
|
|
|
|
setTargetName(targetName);
|
|
|
|
|
setWorkingDirectory(workDir);
|
2016-01-26 17:24:11 +01:00
|
|
|
setBuildDirectory(buildDir);
|
2015-04-27 16:11:28 +02:00
|
|
|
setEnvironment(env);
|
|
|
|
|
setProject(project);
|
|
|
|
|
setGuessedConfiguration(guessedRunConfiguration);
|
2016-07-07 08:14:28 +02:00
|
|
|
if (runMode == TestRunner::Debug)
|
2016-06-23 07:34:53 +02:00
|
|
|
m_runConfig = new TestRunConfiguration(runConfigTarget, this);
|
2015-04-27 16:11:28 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-11-06 16:01:06 +01:00
|
|
|
/**
|
|
|
|
|
* @brief sets the test cases for this test configuration.
|
|
|
|
|
*
|
|
|
|
|
* Watch out for special handling of test configurations, because this method also
|
|
|
|
|
* updates the test case count to the current size of \a testCases.
|
|
|
|
|
*
|
|
|
|
|
* @param testCases list of names of the test functions / test cases
|
|
|
|
|
*/
|
|
|
|
|
void TestConfiguration::setTestCases(const QStringList &testCases)
|
|
|
|
|
{
|
|
|
|
|
m_testCases.clear();
|
|
|
|
|
m_testCases << testCases;
|
|
|
|
|
m_testCaseCount = m_testCases.size();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setTestCaseCount(int count)
|
|
|
|
|
{
|
|
|
|
|
m_testCaseCount = count;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-07 15:51:02 +02:00
|
|
|
void TestConfiguration::setTargetFile(const QString &targetFile)
|
|
|
|
|
{
|
|
|
|
|
m_targetFile = targetFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setTargetName(const QString &targetName)
|
|
|
|
|
{
|
|
|
|
|
m_targetName = targetName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setProFile(const QString &proFile)
|
|
|
|
|
{
|
|
|
|
|
m_proFile = proFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestConfiguration::setWorkingDirectory(const QString &workingDirectory)
|
|
|
|
|
{
|
|
|
|
|
m_workingDir = workingDirectory;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 17:24:11 +01:00
|
|
|
void TestConfiguration::setBuildDirectory(const QString &buildDirectory)
|
|
|
|
|
{
|
|
|
|
|
m_buildDir = buildDirectory;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-13 12:31:58 +01:00
|
|
|
void TestConfiguration::setDisplayName(const QString &displayName)
|
|
|
|
|
{
|
|
|
|
|
m_displayName = displayName;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-07 15:51:02 +02:00
|
|
|
void TestConfiguration::setEnvironment(const Utils::Environment &env)
|
|
|
|
|
{
|
|
|
|
|
m_environment = env;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-27 16:11:28 +02:00
|
|
|
void TestConfiguration::setProject(Project *project)
|
2014-10-07 15:51:02 +02:00
|
|
|
{
|
|
|
|
|
m_project = project;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-29 10:13:35 +02:00
|
|
|
void TestConfiguration::setGuessedConfiguration(bool guessed)
|
|
|
|
|
{
|
|
|
|
|
m_guessedConfiguration = guessed;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-07 15:51:02 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|