blob: 41df2b5d9ec45252cc0ef874506531d231c4aa82 [file]
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#include "cmCTestTestCommand.h"
#include <chrono>
#include <cstdlib>
#include <ratio>
#include <sstream>
#include <string>
#include <utility>
#include <vector>
#include <cm/memory>
#include <cm/optional>
#include "cmArgumentParserTypes.h"
#include "cmCMakePresetsGraph.h"
#include "cmCTest.h"
#include "cmCTestGenericHandler.h"
#include "cmCTestTestHandler.h"
#include "cmDuration.h"
#include "cmExecutionStatus.h"
#include "cmJSONState.h"
#include "cmMakefile.h"
#include "cmStringAlgorithms.h"
#include "cmSystemTools.h"
#include "cmValue.h"
using TestPreset = cmCMakePresetsGraph::TestPreset;
std::unique_ptr<cmCTestGenericHandler> cmCTestTestCommand::InitializeHandler(
HandlerArguments& arguments, cmExecutionStatus& status) const
{
cmMakefile& mf = status.GetMakefile();
auto& args = static_cast<TestArguments&>(arguments);
std::unique_ptr<cmCMakePresetsGraph> presetsGraph;
TestPreset const* expandedPreset = nullptr;
if (!args.Preset.empty()) {
std::string const sourceDirectory =
mf.GetSafeDefinition("CTEST_SOURCE_DIRECTORY");
std::string const presetsFile = args.PresetsFile.empty()
? ""
: cmSystemTools::CollapseFullPath(args.PresetsFile, sourceDirectory);
presetsGraph = cm::make_unique<cmCMakePresetsGraph>();
if (!presetsGraph->ReadProjectPresets(sourceDirectory, presetsFile)) {
status.SetError(cmStrCat("\n Could not read presets from \"",
sourceDirectory, "\":\n ",
presetsGraph->parseState.GetErrorMessage()));
return nullptr;
}
auto resolveResult =
presetsGraph->ResolvePreset(args.Preset, presetsGraph->TestPresets);
auto resolveError = cmCMakePresetsGraph::FormatPresetError<TestPreset>(
resolveResult.StatusCode, resolveResult.ErrorPresetName,
sourceDirectory);
if (resolveError) {
status.SetError(*resolveError);
return nullptr;
}
expandedPreset = resolveResult.Preset;
}
cmValue ctestTimeout = mf.GetDefinition("CTEST_TEST_TIMEOUT");
cmDuration timeout;
if (ctestTimeout) {
timeout = cmDuration(atof(ctestTimeout->c_str()));
} else {
timeout = this->CTest->GetTimeOut();
if (timeout <= cmDuration::zero()) {
// By default use timeout of 10 minutes
timeout = std::chrono::minutes(10);
}
}
this->CTest->SetTimeOut(timeout);
auto handler = this->InitializeActualHandler(args, status);
// Load settings from the preset if one was specified.
if (expandedPreset) {
cmCTestApplyTestPresetToOptions(handler->TestOptions, *expandedPreset);
if (!args.ParallelLevel && expandedPreset->Execution) {
if (auto const& jobs = expandedPreset->Execution->Jobs) {
ArgumentParser::Maybe<std::string> level;
if (jobs->has_value()) {
level = std::to_string(**jobs);
}
handler->ParallelLevel = level;
}
}
if (args.Repeat.empty() && expandedPreset->Execution &&
expandedPreset->Execution->Repeat) {
auto const& rep = *expandedPreset->Execution->Repeat;
using RepeatMode = TestPreset::ExecutionOptions::RepeatOptions::ModeEnum;
std::string modeStr;
switch (rep.Mode) {
case RepeatMode::UntilFail:
modeStr = "UNTIL_FAIL";
break;
case RepeatMode::UntilPass:
modeStr = "UNTIL_PASS";
break;
case RepeatMode::AfterTimeout:
modeStr = "AFTER_TIMEOUT";
break;
}
handler->Repeat = cmStrCat(modeStr, ':', rep.Count);
}
if (args.TestLoad.empty() && expandedPreset->Execution &&
expandedPreset->Execution->TestLoad) {
args.TestLoad = std::to_string(*expandedPreset->Execution->TestLoad);
}
}
if (args.ResourceSpecFile.empty()) {
cmValue resourceSpecFile = mf.GetDefinition("CTEST_RESOURCE_SPEC_FILE");
if (resourceSpecFile) {
args.ResourceSpecFile = *resourceSpecFile;
}
}
// Apply explicitly specified ctest_test() options,
// overriding any conflicting preset values.
if (!args.Start.empty() || !args.End.empty() || !args.Stride.empty()) {
handler->TestOptions.TestsToRunInformation =
cmStrCat(args.Start, ',', args.End, ',', args.Stride);
}
if (!args.Exclude.empty()) {
handler->TestOptions.ExcludeRegularExpression = args.Exclude;
}
if (!args.Include.empty()) {
handler->TestOptions.IncludeRegularExpression = args.Include;
}
if (!args.ExcludeLabel.empty()) {
handler->TestOptions.ExcludeLabelRegularExpression.clear();
handler->TestOptions.ExcludeLabelRegularExpression.push_back(
args.ExcludeLabel);
}
if (!args.IncludeLabel.empty()) {
handler->TestOptions.LabelRegularExpression.clear();
handler->TestOptions.LabelRegularExpression.push_back(args.IncludeLabel);
}
if (!args.ExcludeTestsFromFile.empty()) {
handler->TestOptions.ExcludeTestListFile = args.ExcludeTestsFromFile;
}
if (!args.IncludeTestsFromFile.empty()) {
handler->TestOptions.TestListFile = args.IncludeTestsFromFile;
}
if (!args.ExcludeFixture.empty()) {
handler->TestOptions.ExcludeFixtureRegularExpression = args.ExcludeFixture;
}
if (!args.ExcludeFixtureSetup.empty()) {
handler->TestOptions.ExcludeFixtureSetupRegularExpression =
args.ExcludeFixtureSetup;
}
if (!args.ExcludeFixtureCleanup.empty()) {
handler->TestOptions.ExcludeFixtureCleanupRegularExpression =
args.ExcludeFixtureCleanup;
}
if (args.StopOnFailure) {
handler->TestOptions.StopOnFailure = true;
}
if (args.ParallelLevel) {
handler->ParallelLevel = *args.ParallelLevel;
}
if (!args.Repeat.empty()) {
handler->Repeat = args.Repeat;
}
if (!args.ScheduleRandom.empty()) {
handler->TestOptions.ScheduleRandom = cmValue(args.ScheduleRandom).IsOn();
}
if (!args.ResourceSpecFile.empty()) {
handler->TestOptions.ResourceSpecFile = args.ResourceSpecFile;
}
if (!args.CoverageTool.empty()) {
handler->TestOptions.CoverageTool = args.CoverageTool;
}
if (!args.StopTime.empty()) {
this->CTest->SetStopTime(args.StopTime);
}
// Test load is determined by: TEST_LOAD argument,
// or CTEST_TEST_LOAD script variable, or ctest --test-load
// command line argument... in that order.
unsigned long testLoad;
cmValue ctestTestLoad = mf.GetDefinition("CTEST_TEST_LOAD");
if (!args.TestLoad.empty()) {
if (!cmStrToULong(args.TestLoad, &testLoad)) {
testLoad = 0;
cmCTestLog(this->CTest, WARNING,
"Invalid value for 'TEST_LOAD' : " << args.TestLoad
<< std::endl);
}
} else if (cmNonempty(ctestTestLoad)) {
if (!cmStrToULong(*ctestTestLoad, &testLoad)) {
testLoad = 0;
cmCTestLog(this->CTest, WARNING,
"Invalid value for 'CTEST_TEST_LOAD' : " << *ctestTestLoad
<< std::endl);
}
} else {
testLoad = this->CTest->GetTestLoad();
}
handler->SetTestLoad(testLoad);
if (cmValue labelsForSubprojects =
mf.GetDefinition("CTEST_LABELS_FOR_SUBPROJECTS")) {
this->CTest->SetCTestConfiguration("LabelsForSubprojects",
*labelsForSubprojects, args.Quiet);
}
if (!args.OutputJUnit.empty()) {
handler->SetJUnitXMLFileName(args.OutputJUnit);
}
handler->SetQuiet(args.Quiet);
return std::unique_ptr<cmCTestGenericHandler>(std::move(handler));
}
std::unique_ptr<cmCTestTestHandler>
cmCTestTestCommand::InitializeActualHandler(HandlerArguments&,
cmExecutionStatus&) const
{
return cm::make_unique<cmCTestTestHandler>(this->CTest);
}
bool cmCTestTestCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) const
{
static auto const parser = MakeTestParser<TestArguments>();
return this->Invoke(parser, args, status, [&](TestArguments& a) {
return this->ExecuteHandlerCommand(a, status);
});
}