cmake/Source/cmCTest.h

587 lines
17 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2021-09-14 00:13:48 +02:00
#pragma once
2018-01-26 17:06:56 +01:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-07-09 11:21:54 +02:00
2018-04-23 21:13:27 +02:00
#include <chrono>
2020-02-01 23:06:01 +01:00
#include <ctime>
2016-10-30 18:24:19 +01:00
#include <map>
2020-02-01 23:06:01 +01:00
#include <memory>
2016-10-30 18:24:19 +01:00
#include <sstream>
#include <string>
#include <vector>
2020-08-30 11:54:41 +02:00
#include <cm/string_view>
2020-02-01 23:06:01 +01:00
#include "cmDuration.h"
#include "cmProcessOutput.h"
2019-11-11 23:01:05 +01:00
class cmCTestBuildHandler;
class cmCTestBuildAndTestHandler;
class cmCTestCoverageHandler;
class cmCTestScriptHandler;
class cmCTestTestHandler;
class cmCTestUpdateHandler;
class cmCTestConfigureHandler;
class cmCTestMemCheckHandler;
class cmCTestSubmitHandler;
class cmCTestUploadHandler;
2010-03-17 14:00:29 +02:00
class cmCTestStartCommand;
2016-10-30 18:24:19 +01:00
class cmGeneratedFileStream;
class cmMakefile;
2015-08-17 11:37:30 +02:00
class cmXMLWriter;
2016-10-30 18:24:19 +01:00
/** \class cmCTest
* \brief Represents a ctest invocation.
*
* This class represents a ctest invocation. It is the top level class when
* running ctest.
*
*/
class cmCTest
{
public:
2020-02-01 23:06:01 +01:00
using Encoding = cmProcessOutput::Encoding;
2009-10-04 10:30:41 +03:00
/** Enumerate parts of the testing and submission process. */
enum Part
{
PartStart,
PartUpdate,
PartConfigure,
PartBuild,
PartTest,
PartCoverage,
PartMemCheck,
PartSubmit,
PartNotes,
PartExtraFiles,
2011-06-19 15:41:06 +03:00
PartUpload,
2019-11-11 23:01:05 +01:00
PartDone,
2009-10-04 10:30:41 +03:00
PartCount // Update names in constructor when adding a part
};
/** Get a testing part id from its string name. Returns PartCount
if the string does not name a valid part. */
2021-09-14 00:13:48 +02:00
Part GetPartFromName(const std::string& name);
2009-10-04 10:30:41 +03:00
2016-10-30 18:24:19 +01:00
/** Process Command line arguments */
2018-01-26 17:06:56 +01:00
int Run(std::vector<std::string>&, std::string* output = nullptr);
/**
* Initialize and finalize testing
*/
2010-03-17 14:00:29 +02:00
bool InitializeFromCommand(cmCTestStartCommand* command);
void Finalize();
/**
2016-10-30 18:24:19 +01:00
* Process the dashboard client steps.
*
2016-10-30 18:24:19 +01:00
* Steps are enabled using SetTest()
*
* The execution of the steps (or #Part) should look like this:
*
* /code
* ctest foo;
* foo.Initialize();
* // Set some things on foo
2016-10-30 18:24:19 +01:00
* foo.ProcessSteps();
* foo.Finalize();
2016-10-30 18:24:19 +01:00
* /endcode
*
* \sa Initialize(), Finalize(), Part, PartInfo, SetTest()
*/
2016-10-30 18:24:19 +01:00
int ProcessSteps();
2016-10-30 18:24:19 +01:00
/**
* A utility function that returns the nightly time
*/
2016-07-09 11:21:54 +02:00
struct tm* GetNightlyTime(std::string const& str, bool tomorrowtag);
2016-10-30 18:24:19 +01:00
/**
* Is the tomorrow tag set?
*/
2019-11-11 23:01:05 +01:00
bool GetTomorrowTag() const;
/**
* Try to run tests of the project
*/
int TestDirectory(bool memcheck);
2018-08-09 18:06:22 +02:00
/** what is the configuration type, e.g. Debug, Release etc. */
std::string const& GetConfigType();
2019-11-11 23:01:05 +01:00
cmDuration GetTimeOut() const;
void SetTimeOut(cmDuration t);
2010-03-17 14:00:29 +02:00
2019-11-11 23:01:05 +01:00
cmDuration GetGlobalTimeout() const;
2010-03-17 14:00:29 +02:00
2016-10-30 18:24:19 +01:00
/** how many test to run at the same time */
2019-11-11 23:01:05 +01:00
int GetParallelLevel() const;
2009-10-04 10:30:41 +03:00
void SetParallelLevel(int);
2019-11-11 23:01:05 +01:00
unsigned long GetTestLoad() const;
2015-11-17 17:22:37 +01:00
void SetTestLoad(unsigned long);
/**
* Check if CTest file exists
*/
bool CTestFileExists(const std::string& filename);
2021-09-14 00:13:48 +02:00
bool AddIfExists(Part part, const std::string& file);
/**
* Set the cmake test
*/
2021-09-14 00:13:48 +02:00
bool SetTest(const std::string&, bool report = true);
/**
* Set the cmake test mode (experimental, nightly, continuous).
*/
void SetTestModel(int mode);
2019-11-11 23:01:05 +01:00
int GetTestModel() const;
std::string GetTestModelString();
2021-09-14 00:13:48 +02:00
static int GetTestModelFromString(const std::string& str);
2020-08-30 11:54:41 +02:00
static std::string CleanString(const std::string& str,
std::string::size_type spos = 0);
2015-04-27 22:25:09 +02:00
std::string GetCTestConfiguration(const std::string& name);
2021-09-14 00:13:48 +02:00
void SetCTestConfiguration(const char* name, const std::string& value,
2016-07-09 11:21:54 +02:00
bool suppress = false);
void EmptyCTestConfiguration();
2019-11-11 23:01:05 +01:00
std::string GetSubmitURL();
/**
* constructor and destructor
*/
cmCTest();
~cmCTest();
2019-11-11 23:01:05 +01:00
cmCTest(const cmCTest&) = delete;
cmCTest& operator=(const cmCTest&) = delete;
2016-10-30 18:24:19 +01:00
/** Set the notes files to be created. */
2021-09-14 00:13:48 +02:00
void SetNotesFiles(const std::string& notes);
2015-04-27 22:25:09 +02:00
void PopulateCustomVector(cmMakefile* mf, const std::string& definition,
2016-07-09 11:21:54 +02:00
std::vector<std::string>& vec);
void PopulateCustomInteger(cmMakefile* mf, const std::string& def, int& val);
2016-10-30 18:24:19 +01:00
/** Get the current time as string */
std::string CurrentTime();
2016-10-30 18:24:19 +01:00
/** tar/gzip and then base 64 encode a file */
2016-07-09 11:21:54 +02:00
std::string Base64GzipEncodeFile(std::string const& file);
2016-10-30 18:24:19 +01:00
/** base64 encode a file */
2016-07-09 11:21:54 +02:00
std::string Base64EncodeFile(std::string const& file);
2011-06-19 15:41:06 +03:00
2013-03-16 19:13:01 +02:00
/**
2011-06-19 15:41:06 +03:00
* Return the time remaining that the script is allowed to run in
* seconds if the user has set the variable CTEST_TIME_LIMIT. If that has
2018-04-23 21:13:27 +02:00
* not been set it returns a very large duration.
*/
2018-04-23 21:13:27 +02:00
cmDuration GetRemainingTimeAllowed();
static cmDuration MaxDuration();
2013-03-16 19:13:01 +02:00
2016-10-30 18:24:19 +01:00
/**
* Open file in the output directory and set the stream
*/
2016-07-09 11:21:54 +02:00
bool OpenOutputFile(const std::string& path, const std::string& name,
cmGeneratedFileStream& stream, bool compress = false);
2016-10-30 18:24:19 +01:00
/** Should we only show what we would do? */
bool GetShowOnly();
2019-11-11 23:01:05 +01:00
bool GetOutputAsJson();
int GetOutputAsJsonVersion();
2010-03-17 14:00:29 +02:00
2019-11-11 23:01:05 +01:00
bool ShouldUseHTTP10() const;
bool ShouldPrintLabels() const;
2010-11-13 01:00:53 +02:00
2010-03-17 14:00:29 +02:00
bool ShouldCompressTestOutput();
2011-06-19 15:41:06 +03:00
bool CompressString(std::string& str);
2010-03-17 14:00:29 +02:00
2020-08-30 11:54:41 +02:00
bool GetStopOnFailure() const;
void SetStopOnFailure(bool stop);
2019-11-11 23:01:05 +01:00
std::chrono::system_clock::time_point GetStopTime() const;
2016-07-09 11:21:54 +02:00
void SetStopTime(std::string const& time);
2010-06-23 01:18:35 +03:00
2016-10-30 18:24:19 +01:00
/** Used for parallel ctest job scheduling */
2019-11-11 23:01:05 +01:00
std::string GetScheduleType() const;
void SetScheduleType(std::string const& type);
2009-10-04 10:30:41 +03:00
2016-10-30 18:24:19 +01:00
/** The max output width */
2009-10-04 10:30:41 +03:00
int GetMaxTestNameWidth() const;
2019-11-11 23:01:05 +01:00
void SetMaxTestNameWidth(int w);
2009-10-04 10:30:41 +03:00
/**
* Run a single executable command and put the stdout and stderr
* in output.
*
* If verbose is false, no user-viewable output from the program
* being run will be generated.
*
* If timeout is specified, the command will be terminated after
* timeout expires. Timeout is specified in seconds.
*
* Argument retVal should be a pointer to the location where the
* exit code will be stored. If the retVal is not specified and
* the program exits with a code other than 0, then the this
* function will return false.
*/
2018-01-26 17:06:56 +01:00
bool RunCommand(std::vector<std::string> const& args, std::string* stdOut,
std::string* stdErr, int* retVal = nullptr,
2018-04-23 21:13:27 +02:00
const char* dir = nullptr,
cmDuration timeout = cmDuration::zero(),
2017-04-14 19:02:05 +02:00
Encoding encoding = cmProcessOutput::Auto);
2016-10-30 18:24:19 +01:00
/**
* Clean/make safe for xml the given value such that it may be used as
* one of the key fields by CDash when computing the buildid.
*/
2012-02-18 12:40:36 +02:00
static std::string SafeBuildIdField(const std::string& value);
2016-10-30 18:24:19 +01:00
/** Start CTest XML output file */
2015-08-17 11:37:30 +02:00
void StartXML(cmXMLWriter& xml, bool append);
2016-10-30 18:24:19 +01:00
/** End CTest XML output file */
2015-08-17 11:37:30 +02:00
void EndXML(cmXMLWriter& xml);
2016-10-30 18:24:19 +01:00
/**
* Run command specialized for make and configure. Returns process status
* and retVal is return value or exception.
*/
2019-11-11 23:01:05 +01:00
int RunMakeCommand(const std::string& command, std::string& output,
int* retVal, const char* dir, cmDuration timeout,
std::ostream& ofs,
2017-04-14 19:02:05 +02:00
Encoding encoding = cmProcessOutput::Auto);
2016-10-30 18:24:19 +01:00
/** Return the current tag */
std::string GetCurrentTag();
2016-10-30 18:24:19 +01:00
/** Get the path to the build tree */
std::string GetBinaryDir();
2016-10-30 18:24:19 +01:00
/**
* Get the short path to the file.
*
* This means if the file is in binary or
* source directory, it will become /.../relative/path/to/file
*/
2021-09-14 00:13:48 +02:00
std::string GetShortPathToFile(const std::string& fname);
2016-07-09 11:21:54 +02:00
enum
{
2018-08-09 18:06:22 +02:00
UNKNOWN = -1,
EXPERIMENTAL = 0,
NIGHTLY = 1,
CONTINUOUS = 2,
};
2016-10-30 18:24:19 +01:00
/** provide some more detailed info on the return code for ctest */
2016-07-09 11:21:54 +02:00
enum
{
UPDATE_ERRORS = 0x01,
CONFIGURE_ERRORS = 0x02,
2016-07-09 11:21:54 +02:00
BUILD_ERRORS = 0x04,
TEST_ERRORS = 0x08,
MEMORY_ERRORS = 0x10,
COVERAGE_ERRORS = 0x20,
SUBMIT_ERRORS = 0x40
};
2016-10-30 18:24:19 +01:00
/** Are we producing XML */
bool GetProduceXML();
void SetProduceXML(bool v);
2016-10-30 18:24:19 +01:00
/**
* Run command specialized for tests. Returns process status and retVal is
* return value or exception. If environment is non-null, it is used to set
* environment variables prior to running the test. After running the test,
* environment variables are restored to their previous values.
*/
2016-07-09 11:21:54 +02:00
int RunTest(std::vector<const char*> args, std::string* output, int* retVal,
2018-04-23 21:13:27 +02:00
std::ostream* logfile, cmDuration testTimeOut,
2017-04-14 19:02:05 +02:00
std::vector<std::string>* environment,
Encoding encoding = cmProcessOutput::Auto);
2016-10-30 18:24:19 +01:00
/**
* Get the handler object
*/
2019-11-11 23:01:05 +01:00
cmCTestBuildHandler* GetBuildHandler();
cmCTestBuildAndTestHandler* GetBuildAndTestHandler();
cmCTestCoverageHandler* GetCoverageHandler();
cmCTestScriptHandler* GetScriptHandler();
cmCTestTestHandler* GetTestHandler();
cmCTestUpdateHandler* GetUpdateHandler();
cmCTestConfigureHandler* GetConfigureHandler();
cmCTestMemCheckHandler* GetMemCheckHandler();
cmCTestSubmitHandler* GetSubmitHandler();
cmCTestUploadHandler* GetUploadHandler();
2016-10-30 18:24:19 +01:00
/**
* Set the CTest variable from CMake variable
*/
bool SetCTestConfigurationFromCMakeVariable(cmMakefile* mf,
2016-07-09 11:21:54 +02:00
const char* dconfig,
const std::string& cmake_var,
bool suppress = false);
2009-10-04 10:30:41 +03:00
/** Decode a URL to the original string. */
static std::string DecodeURL(const std::string&);
2016-10-30 18:24:19 +01:00
/**
* Should ctect configuration be updated. When using new style ctest
* script, this should be true.
*/
2019-11-11 23:01:05 +01:00
void SetSuppressUpdatingCTestConfiguration(bool val);
2016-10-30 18:24:19 +01:00
/**
* Add overwrite to ctest configuration.
*
* The format is key=value
*/
2015-04-27 22:25:09 +02:00
void AddCTestConfigurationOverwrite(const std::string& encstr);
2016-10-30 18:24:19 +01:00
/** Create XML file that contains all the notes specified */
2019-11-11 23:01:05 +01:00
int GenerateNotesFile(std::vector<std::string> const& files);
/** Create XML file to indicate that build is complete */
int GenerateDoneFile();
2016-10-30 18:24:19 +01:00
/** Submit extra files to the server */
2021-09-14 00:13:48 +02:00
bool SubmitExtraFiles(const std::string& files);
2019-11-11 23:01:05 +01:00
bool SubmitExtraFiles(std::vector<std::string> const& files);
2016-10-30 18:24:19 +01:00
/** Set the output log file name */
2021-09-14 00:13:48 +02:00
void SetOutputLogFileName(const std::string& name);
2022-11-16 20:14:03 +01:00
/** Set the output JUnit file name */
void SetOutputJUnitFileName(const std::string& name);
2016-10-30 18:24:19 +01:00
/** Set the visual studio or Xcode config type */
2021-09-14 00:13:48 +02:00
void SetConfigType(const std::string& ct);
2016-10-30 18:24:19 +01:00
/** Various log types */
2016-07-09 11:21:54 +02:00
enum
{
DEBUG = 0,
OUTPUT,
HANDLER_OUTPUT,
2015-11-17 17:22:37 +01:00
HANDLER_PROGRESS_OUTPUT,
2018-10-28 12:09:07 +01:00
HANDLER_TEST_PROGRESS_OUTPUT,
HANDLER_VERBOSE_OUTPUT,
WARNING,
ERROR_MESSAGE,
OTHER
};
2016-10-30 18:24:19 +01:00
/** Add log to the output */
2015-08-17 11:37:30 +02:00
void Log(int logType, const char* file, int line, const char* msg,
2016-07-09 11:21:54 +02:00
bool suppress = false);
2019-11-11 23:01:05 +01:00
/** Color values */
enum class Color
{
CLEAR_COLOR = 0,
RED = 31,
GREEN = 32,
YELLOW = 33,
BLUE = 34
};
/** Get color code characters for a specific color */
std::string GetColorCode(Color color) const;
/** The Build ID is assigned by CDash */
void SetBuildID(const std::string& id);
std::string GetBuildID() const;
2016-10-30 18:24:19 +01:00
/** Add file to be submitted */
2021-09-14 00:13:48 +02:00
void AddSubmitFile(Part part, const std::string& name);
2019-11-11 23:01:05 +01:00
std::vector<std::string> const& GetSubmitFiles(Part part) const;
void ClearSubmitFiles(Part part);
2016-10-30 18:24:19 +01:00
/**
* Read the custom configuration files and apply them to the current ctest
*/
2021-09-14 00:13:48 +02:00
int ReadCustomConfigurationFileTree(const std::string& dir, cmMakefile* mf);
2019-11-11 23:01:05 +01:00
std::vector<std::string>& GetInitialCommandLineArguments();
2020-02-01 23:06:01 +01:00
/** Set the group to submit to */
void SetSpecificGroup(const char* group);
const char* GetSpecificGroup();
2019-11-11 23:01:05 +01:00
void SetFailover(bool failover);
bool GetFailover() const;
2009-10-04 10:30:41 +03:00
2019-11-11 23:01:05 +01:00
bool GetTestProgressOutput() const;
2018-10-28 12:09:07 +01:00
2019-11-11 23:01:05 +01:00
bool GetVerbose() const;
bool GetExtraVerbose() const;
2009-10-04 10:30:41 +03:00
/** Direct process output to given streams. */
2019-11-11 23:01:05 +01:00
void SetStreams(std::ostream* out, std::ostream* err);
2015-08-17 11:37:30 +02:00
void AddSiteProperties(cmXMLWriter& xml);
2018-01-26 17:06:56 +01:00
2019-11-11 23:01:05 +01:00
bool GetLabelSummary() const;
bool GetSubprojectSummary() const;
2010-06-23 01:18:35 +03:00
std::string GetCostDataFile();
2012-08-04 10:26:08 +03:00
2019-11-11 23:01:05 +01:00
bool GetOutputTestOutputOnTestFailure() const;
const std::map<std::string, std::string>& GetDefinitions() const;
2016-10-30 18:24:19 +01:00
/** Return the number of times a test should be run */
2020-08-30 11:54:41 +02:00
int GetRepeatCount() const;
2016-10-30 18:24:19 +01:00
2020-08-30 11:54:41 +02:00
enum class Repeat
{
Never,
UntilFail,
UntilPass,
AfterTimeout,
};
Repeat GetRepeatMode() const;
enum class NoTests
{
Legacy,
Error,
Ignore
};
NoTests GetNoTestsMode() const;
2016-10-30 18:24:19 +01:00
2018-01-26 17:06:56 +01:00
void GenerateSubprojectsOutput(cmXMLWriter& xml);
std::vector<std::string> GetLabelsForSubprojects();
2018-04-23 21:13:27 +02:00
void SetRunCurrentScript(bool value);
private:
2021-09-14 00:13:48 +02:00
void SetPersistentOptionIfNotEmpty(const std::string& value,
const std::string& optionName);
void AddPersistentMultiOptionIfNotEmpty(const std::string& value,
const std::string& optionName);
int GenerateNotesFile(const std::string& files);
void BlockTestErrorDiagnostics();
2010-03-17 14:00:29 +02:00
/**
* Initialize a dashboard run in the given build tree. The "command"
* argument is non-NULL when running from a command-driven (ctest_start)
* dashboard script, and NULL when running from the CTest command
* line. Note that a declarative dashboard script does not actually
* call this method because it sets CTEST_COMMAND to drive a build
* through the ctest command line.
*/
2023-05-23 16:38:00 +02:00
int Initialize(const std::string& binary_dir, cmCTestStartCommand* command);
2016-10-30 18:24:19 +01:00
/** parse the option after -D and convert it into the appropriate steps */
2016-07-09 11:21:54 +02:00
bool AddTestsForDashboardType(std::string& targ);
2016-10-30 18:24:19 +01:00
/** read as "emit an error message for an unknown -D value" */
2016-07-09 11:21:54 +02:00
void ErrorMessageUnknownDashDValue(std::string& val);
2012-08-04 10:26:08 +03:00
2016-10-30 18:24:19 +01:00
/** add a variable definition from a command line -D value */
2016-07-09 11:21:54 +02:00
bool AddVariableDefinition(const std::string& arg);
2012-08-04 10:26:08 +03:00
2021-09-14 00:13:48 +02:00
/** set command line arguments read from a test preset */
bool SetArgsFromPreset(const std::string& presetName, bool listPresets);
2016-10-30 18:24:19 +01:00
/** parse and process most common command line arguments */
2016-07-09 11:21:54 +02:00
bool HandleCommandLineArguments(size_t& i, std::vector<std::string>& args,
2015-08-17 11:37:30 +02:00
std::string& errormsg);
2019-11-11 23:01:05 +01:00
#if !defined(_WIN32)
/** returns true iff the console supports progress output */
static bool ConsoleIsNotDumb();
#endif
2018-10-28 12:09:07 +01:00
/** returns true iff the console supports progress output */
2019-11-11 23:01:05 +01:00
static bool ProgressOutputSupportedByConsole();
/** returns true iff the console supports colored output */
static bool ColoredOutputSupportedByConsole();
2018-10-28 12:09:07 +01:00
2018-08-09 18:06:22 +02:00
/** handle the -S -SP and -SR arguments */
2016-07-09 11:21:54 +02:00
void HandleScriptArguments(size_t& i, std::vector<std::string>& args,
bool& SRArgumentSpecified);
2016-10-30 18:24:19 +01:00
/** Reread the configuration file */
bool UpdateCTestConfiguration();
2016-10-30 18:24:19 +01:00
/** Create note from files. */
2019-11-11 23:01:05 +01:00
int GenerateCTestNotesOutput(cmXMLWriter& xml,
std::vector<std::string> const& files);
2016-10-30 18:24:19 +01:00
/** Check if the argument is the one specified */
2020-08-30 11:54:41 +02:00
static bool CheckArgument(const std::string& arg, cm::string_view varg1,
const char* varg2 = nullptr);
2016-10-30 18:24:19 +01:00
/** Output errors from a test */
2016-07-09 11:21:54 +02:00
void OutputTestErrors(std::vector<char> const& process_output);
2009-10-04 10:30:41 +03:00
2016-10-30 18:24:19 +01:00
/** Handle the --test-action command line argument */
bool HandleTestActionArgument(const char* ctestExec, size_t& i,
const std::vector<std::string>& args);
/** Handle the --test-model command line argument */
bool HandleTestModelArgument(const char* ctestExec, size_t& i,
const std::vector<std::string>& args);
int RunCMakeAndTest(std::string* output);
int ExecuteTests();
2021-09-14 00:13:48 +02:00
/** return true iff change directory was successful */
bool TryToChangeDirectory(std::string const& dir);
2019-11-11 23:01:05 +01:00
struct Private;
std::unique_ptr<Private> Impl;
};
class cmCTestLogWrite
{
public:
cmCTestLogWrite(const char* data, size_t length)
2016-07-09 11:21:54 +02:00
: Data(data)
, Length(length)
{
}
const char* Data;
size_t Length;
};
2016-07-09 11:21:54 +02:00
inline std::ostream& operator<<(std::ostream& os, const cmCTestLogWrite& c)
{
2016-07-09 11:21:54 +02:00
if (!c.Length) {
return os;
2016-07-09 11:21:54 +02:00
}
os.write(c.Data, c.Length);
os.flush();
return os;
}
2017-07-20 19:35:53 +02:00
#define cmCTestLog(ctSelf, logType, msg) \
do { \
std::ostringstream cmCTestLog_msg; \
cmCTestLog_msg << msg; \
(ctSelf)->Log(cmCTest::logType, __FILE__, __LINE__, \
cmCTestLog_msg.str().c_str()); \
} while (false)
#define cmCTestOptionalLog(ctSelf, logType, msg, suppress) \
do { \
std::ostringstream cmCTestLog_msg; \
cmCTestLog_msg << msg; \
(ctSelf)->Log(cmCTest::logType, __FILE__, __LINE__, \
cmCTestLog_msg.str().c_str(), suppress); \
} while (false)