2016-09-13 09:30:59 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "gtestsettings.h"
|
2018-02-28 09:42:13 +01:00
|
|
|
#include "gtest_utils.h"
|
2016-09-13 09:30:59 +02:00
|
|
|
|
|
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
static const char breakOnFailureKey[] = "BreakOnFailure";
|
|
|
|
|
static const char iterationsKey[] = "Iterations";
|
|
|
|
|
static const char repeatKey[] = "Repeat";
|
|
|
|
|
static const char runDisabledKey[] = "RunDisabled";
|
|
|
|
|
static const char seedKey[] = "Seed";
|
|
|
|
|
static const char shuffleKey[] = "Shuffle";
|
|
|
|
|
static const char throwOnFailureKey[] = "ThrowOnFailure";
|
2018-02-28 09:42:13 +01:00
|
|
|
static const char groupModeKey[] = "GroupMode";
|
|
|
|
|
static const char gtestFilterKey[] = "GTestFilter";
|
2016-09-13 09:30:59 +02:00
|
|
|
|
2016-09-13 13:38:19 +02:00
|
|
|
QString GTestSettings::name() const
|
|
|
|
|
{
|
|
|
|
|
return QString("GTest");
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-05 13:34:57 +02:00
|
|
|
void GTestSettings::fromFrameworkSettings(const QSettings *s)
|
2016-09-13 09:30:59 +02:00
|
|
|
{
|
2016-09-29 12:15:43 +02:00
|
|
|
runDisabled = s->value(runDisabledKey, false).toBool();
|
|
|
|
|
repeat = s->value(repeatKey, false).toBool();
|
|
|
|
|
shuffle = s->value(shuffleKey, false).toBool();
|
|
|
|
|
iterations = s->value(iterationsKey, 1).toInt();
|
|
|
|
|
seed = s->value(seedKey, 0).toInt();
|
|
|
|
|
breakOnFailure = s->value(breakOnFailureKey, true).toBool();
|
|
|
|
|
throwOnFailure = s->value(throwOnFailureKey, false).toBool();
|
2018-02-28 09:42:13 +01:00
|
|
|
// avoid problems if user messes around with the settings file
|
|
|
|
|
bool ok = false;
|
|
|
|
|
const int tmp = s->value(groupModeKey, GTest::Constants::Directory).toInt(&ok);
|
|
|
|
|
groupMode = ok ? static_cast<GTest::Constants::GroupMode>(tmp) : GTest::Constants::Directory;
|
|
|
|
|
gtestFilter = s->value(gtestFilterKey, "*.*").toString();
|
|
|
|
|
if (!GTestUtils::isValidGTestFilter(gtestFilter))
|
|
|
|
|
gtestFilter = "*.*";
|
2016-09-13 09:30:59 +02:00
|
|
|
}
|
|
|
|
|
|
2016-10-05 13:34:57 +02:00
|
|
|
void GTestSettings::toFrameworkSettings(QSettings *s) const
|
2016-09-13 09:30:59 +02:00
|
|
|
{
|
2016-09-29 12:15:43 +02:00
|
|
|
s->setValue(runDisabledKey, runDisabled);
|
|
|
|
|
s->setValue(repeatKey, repeat);
|
|
|
|
|
s->setValue(shuffleKey, shuffle);
|
|
|
|
|
s->setValue(iterationsKey, iterations);
|
|
|
|
|
s->setValue(seedKey, seed);
|
|
|
|
|
s->setValue(breakOnFailureKey, breakOnFailure);
|
|
|
|
|
s->setValue(throwOnFailureKey, throwOnFailure);
|
2018-02-28 09:42:13 +01:00
|
|
|
s->setValue(groupModeKey, groupMode);
|
|
|
|
|
s->setValue(gtestFilterKey, gtestFilter);
|
2016-09-13 09:30:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|