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 {
|
|
|
|
|
|
2021-03-24 12:40:03 +01:00
|
|
|
GTestSettings::GTestSettings()
|
2016-09-13 13:38:19 +02:00
|
|
|
{
|
2021-03-24 12:40:03 +01:00
|
|
|
setSettingsGroups("Autotest", "GTest");
|
|
|
|
|
setAutoApply(false);
|
2016-09-13 13:38:19 +02:00
|
|
|
|
2021-03-24 12:40:03 +01:00
|
|
|
registerAspect(&iterations);
|
|
|
|
|
iterations.setSettingsKey("Iterations");
|
|
|
|
|
iterations.setDefaultValue(1);
|
2016-09-13 09:30:59 +02:00
|
|
|
|
2021-03-24 12:40:03 +01:00
|
|
|
registerAspect(&seed);
|
|
|
|
|
seed.setSettingsKey("Seed");
|
|
|
|
|
|
|
|
|
|
registerAspect(&runDisabled);
|
|
|
|
|
runDisabled.setSettingsKey("RunDisabled");
|
|
|
|
|
|
|
|
|
|
registerAspect(&shuffle);
|
|
|
|
|
shuffle.setSettingsKey("Shuffle");
|
|
|
|
|
|
|
|
|
|
registerAspect(&repeat);
|
|
|
|
|
repeat.setSettingsKey("Repeat");
|
|
|
|
|
|
|
|
|
|
registerAspect(&throwOnFailure);
|
|
|
|
|
throwOnFailure.setSettingsKey("ThrowOnFailure");
|
|
|
|
|
|
|
|
|
|
registerAspect(&breakOnFailure);
|
|
|
|
|
breakOnFailure.setSettingsKey("BreakOnFailure");
|
|
|
|
|
breakOnFailure.setDefaultValue(true);
|
|
|
|
|
|
|
|
|
|
registerAspect(&groupMode);
|
|
|
|
|
groupMode.setDefaultValue(GTest::Constants::Directory);
|
|
|
|
|
groupMode.setSettingsKey("GroupMode");
|
|
|
|
|
groupMode.setFromSettingsTransformation([](const QVariant &savedValue) -> QVariant {
|
|
|
|
|
// avoid problems if user messes around with the settings file
|
|
|
|
|
bool ok = false;
|
|
|
|
|
const int tmp = savedValue.toInt(&ok);
|
|
|
|
|
return ok ? static_cast<GTest::Constants::GroupMode>(tmp) : GTest::Constants::Directory;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
registerAspect(>estFilter);
|
|
|
|
|
gtestFilter.setSettingsKey("GTestFilter");
|
|
|
|
|
gtestFilter.setDefaultValue(GTest::Constants::DEFAULT_FILTER);
|
|
|
|
|
gtestFilter.setFromSettingsTransformation([](const QVariant &savedValue) -> QVariant {
|
|
|
|
|
// avoid problems if user messes around with the settings file
|
|
|
|
|
const QString tmp = savedValue.toString();
|
|
|
|
|
if (GTestUtils::isValidGTestFilter(tmp))
|
|
|
|
|
return tmp;
|
|
|
|
|
return GTest::Constants::DEFAULT_FILTER;
|
|
|
|
|
});
|
2016-09-13 09:30:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|