1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#pragma once
#include <unordered_map>
#include <util/folder/path.h>
#include <util/generic/string.h>
#include <util/generic/strbuf.h>
#include <util/system/src_location.h>
// @brief return full path to arcadia root
TString ArcadiaSourceRoot();
// @brief return full path for file or folder specified by known source location `where` and `path` which is relative to parent folder of `where`
// for the instance: there is 2 files in folder test example_ut.cpp and example.data, so full path to test/example.data can be obtained
// from example_ut.cpp as ArcadiaFromCurrentLocation(__SOURCE_FILE__, "example.data")
TString ArcadiaFromCurrentLocation(TStringBuf where, TStringBuf path);
// @brief return build folder path
TString BuildRoot();
// @brief return full path to built artefact, where path is relative from arcadia root
TString BinaryPath(TStringBuf path);
// @brief return true if environment is testenv otherwise false
bool FromYaTest();
// @brief returns TestsData dir (from env:ARCADIA_TESTS_DATA_DIR or path to existing folder `arcadia_tests_data` within parent folders)
TString GetArcadiaTestsData();
// @brief return current working dir (from env:TEST_WORK_PATH or cwd)
TString GetWorkPath();
// @brief return tests output path (workdir + testing_out_stuff)
TFsPath GetOutputPath();
// @brief return path from env:YA_TEST_RAM_DRIVE_PATH
const TString& GetRamDrivePath();
// @brief return path from env:YA_TEST_OUTPUT_RAM_DRIVE_PATH
const TString& GetOutputRamDrivePath();
// @brief return test parameter by name. If not exists, return an empty string
const TString& GetTestParam(TStringBuf name);
// @brief return test parameter by name. If not exists, return specified default value
const TString& GetTestParam(TStringBuf name, const TString& def);
// @brief return path to global resource. If not exists, aborts the test run
const TString& GetGlobalResource(TStringBuf name);
// @brief return path to the gdb
const TString& GdbPath();
// @brief register the process. Test suite will be marked as failed if the process is terminated with a core dump file after testing
void WatchProcessCore(int pid, const TFsPath& binaryPath, const TFsPath& cwd = TFsPath());
// @brief mark the process as successfully completed - a test machinery won't try to recover core dump file for the process
void StopProcessCoreWatching(int pid);
#define SRC_(path) ArcadiaFromCurrentLocation(__SOURCE_FILE__, path)
namespace NPrivate {
class TTestEnv {
public:
TTestEnv();
void ReInitialize();
void AddTestParam(TStringBuf name, TStringBuf value);
bool IsRunningFromTest;
TString ArcadiaTestsDataDir;
TString SourceRoot;
TString BuildRoot;
TString WorkPath;
TString RamDrivePath;
TString YtHddPath;
TString TestOutputRamDrivePath;
TString GdbPath;
TString CoreSearchFile;
TString EnvFile;
std::unordered_map<TString, TString> TestParameters;
std::unordered_map<TString, TString> GlobalResources;
};
TString GetCwd();
const TTestEnv& GetTestEnv();
}
|