-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun.py
214 lines (188 loc) · 10.4 KB
/
run.py
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import json
import logging
import os
import re
import shutil
import subprocess
from functools import cached_property, lru_cache
from pathlib import Path
from typing import Dict, List
import yaml
from cluster import TestCluster
from common import scylla_uri_per_node, run_command_in_shell
from processjunit import ProcessJUnit
class Run:
def __init__(self, rust_driver_git, tag, test, scylla_version):
self.driver_version = tag.split("-", maxsplit=1)[0]
self._full_driver_version = tag
self._rust_driver_git = rust_driver_git
self._scylla_version = scylla_version
self._tests = test
self._venv_path = Path(self._rust_driver_git) / "venv" / self.driver_version
self.call_test_func = self.__getattribute__(f"run_{test}")
if not self.call_test_func:
raise RuntimeError(f"Not supported test: {test}")
def version_folder(self) -> Path | None:
target_version_folder = Path(os.path.dirname(__file__)) / "versions" / "scylla"
logging.info("target_version_folder '%s'", target_version_folder)
for folder_path in target_version_folder.iterdir():
logging.info("folder_path.name '%s'", folder_path.name)
if folder_path.name == self.driver_version:
return target_version_folder / folder_path.name
return None
def ignore_tests(self) -> List[str]:
if self.version_folder() is None:
logging.info("There are no ignore tests for version tag '%s'", self.driver_version)
return []
ignore_file = self.version_folder() / "ignore.yaml"
if not ignore_file.exists():
logging.info("Cannot find ignore file for version '%s'", self.driver_version)
return []
with ignore_file.open(mode="r", encoding="utf-8") as file:
content = yaml.safe_load(file)
logging.info("Ignore file content: %s", content)
ignore_tests = content.get("tests", {})
logging.info("ignore_tests: %s", ignore_tests)
if not (ignore := ignore_tests.get("ignore", [])):
logging.info("The file '%s' for version tag '%s' doesn't contains any test to ignore", ignore_file, self.driver_version)
return ignore
@cached_property
def environment(self) -> Dict:
result = {}
result.update(os.environ)
result["SCYLLA_VERSION"] = self._scylla_version
return result
def _run_command_in_shell(self, cmd: str):
logging.debug("Execute the cmd '%s'", cmd)
with subprocess.Popen(cmd, shell=True, executable="/bin/bash", env=self.environment,
cwd=self._rust_driver_git, stderr=subprocess.PIPE) as proc:
stderr = proc.communicate()
status_code = proc.returncode
assert status_code == 0, stderr
@lru_cache(maxsize=None)
def _create_venv(self):
basic_packages = ("pytest",
"https://github.com/scylladb/scylla-ccm/archive/master.zip",
"pytest-subtests")
if self._venv_path.exists() and self._venv_path.is_dir():
logging.info("Removing old rust venv in directory '%s'", self._venv_path)
shutil.rmtree(self._venv_path)
logging.info("Creating a new rust venv in directory '%s'", self._venv_path)
self._venv_path.mkdir(parents=True)
self._run_command_in_shell(cmd=f"python3 -m venv {self._venv_path}")
logging.info("Upgrading 'pip' and 'setuptools' packages to the latest version")
self._run_command_in_shell(cmd=f"{self._activate_venv_cmd()} && pip install --upgrade pip setuptools")
logging.info("Installing the following packages:\n%s", "\n".join(basic_packages))
self._run_command_in_shell(cmd=f"{self._activate_venv_cmd()} && pip install {' '.join(basic_packages)}")
@lru_cache(maxsize=None)
def _activate_venv_cmd(self):
return f"source {self._venv_path}/bin/activate"
@lru_cache(maxsize=None)
def _install_python_requirements(self):
if os.environ.get("DEV_MODE", False) and self._venv_path.exists() and self._venv_path.is_dir():
return True
try:
self._create_venv()
for requirement_file in ["requirements.txt", "test-requirements.txt"]:
if os.path.exists(requirement_file):
self._run_command_in_shell(f"{self._activate_venv_cmd()} && "
f"pip install --force-reinstall -r {requirement_file}")
return True
except Exception as exc:
logging.error("Failed to install python requirements for version %s, with: %s",
self.driver_version, str(exc))
return False
def _checkout_branch(self):
try:
self._run_command_in_shell("git checkout .")
logging.info("git checkout to '%s' tag branch", self._full_driver_version)
self._run_command_in_shell(f"git checkout {self._full_driver_version}")
return True
except Exception as exc:
logging.error("Failed to branch for version '%s', with: '%s'", self.driver_version, str(exc))
return False
@cached_property
def xunit_dir(self) -> Path:
return Path(os.path.dirname(__file__)) / "test_results"
@property
def result_file_name(self) -> str:
return f'rust_results_{self.driver_version}.xml'
@property
def metadata_file_name(self) -> str:
return f'metadata_rust_results_{self.driver_version}.json'
def run_rust(self):
with TestCluster(Path(self._rust_driver_git), self._scylla_version, nodes=3) as cluster:
cluster.start()
cluster_nodes_ip = cluster.nodes_addresses()
run_command_in_shell(driver_repo_path=self._rust_driver_git,
cmd=f"cd {self._rust_driver_git}; cargo build --verbose --examples")
test_command = f"{scylla_uri_per_node(nodes_ips=cluster_nodes_ip)} " \
"cargo test --verbose --no-fail-fast --package scylla -- -Z unstable-options --format json --report-time | " \
f"tee rust_results_{self._full_driver_version}.jsocat rust_results_{self._full_driver_version}.json | " \
f"/usr/local/cargo/bin/cargo2junit > rust_results_{self._full_driver_version}.xml"
logging.info("Test command: %s", test_command)
return self.run(test_command=test_command, test_result_file_pref="rust_results")
def create_metadata_for_failure(self, reason: str) -> None:
metadata_file = self.xunit_dir / self.metadata_file_name
if not self.xunit_dir.exists():
self.xunit_dir.mkdir(parents=True)
metadata = {
"driver_name": self.result_file_name.replace(".xml", ""),
"driver_type": "rust",
"failure_reason": reason,
}
metadata_file.write_text(json.dumps(metadata))
def run(self, test_command: str, test_result_file_pref: str) -> ProcessJUnit | None:
report = None
test_results_dir = Path(os.path.dirname(__file__)) / "test_results"
argus_test_results_dir = Path(os.path.dirname(__file__)) / "argus_test_results"
metadata_file = self.xunit_dir / self.metadata_file_name
metadata = {
"driver_name": self.result_file_name.replace(".xml", ""),
"driver_type": "rust",
"junit_result": f"./{self.result_file_name}",
}
logging.info("Changing the current working directory to the '%s' path", self._rust_driver_git)
os.chdir(self._rust_driver_git)
if self._checkout_branch():
logging.info("Run test command: %s", test_command)
subprocess.call(test_command, shell=True, executable="/bin/bash",
env=self.environment, cwd=self._rust_driver_git)
logging.info("Finish test command: %s", test_command)
logging.info("Start Copy test result files")
self.copy_test_results(copy_from_dir=Path(self._rust_driver_git),
copy_to_dir=test_results_dir,
test_result_file_pref=f"{test_result_file_pref}_{self._full_driver_version}",
move=True)
logging.info("Finish Copy test result files")
report = ProcessJUnit(summary_report_xml_path=test_results_dir / f"TEST-{self._tests}-{self._full_driver_version}-"
"summary.xml",
tests_result_xml=test_results_dir / f"{test_result_file_pref}_{self._full_driver_version}.xml",
tag=self._full_driver_version, ignore_set=self.ignore_tests())
report.update_testcase_classname_with_tag()
report._create_report()
if not self.xunit_dir.exists():
self.xunit_dir.mkdir(parents=True)
metadata_file.write_text(json.dumps(metadata))
# Copy test results exclude summary files, as Argus can not parse them
logging.info("Start Copy test result files for Argus")
self.copy_test_results(copy_from_dir=test_results_dir,
copy_to_dir=argus_test_results_dir,
test_result_file_pref=f"{test_result_file_pref}_{self._full_driver_version}",
move=False)
logging.info("Finish Copy test result files for Argus")
return report
@staticmethod
def copy_test_results(copy_from_dir: Path, copy_to_dir: Path, test_result_file_pref: str, move: bool):
if not (test_result_files := Path(copy_from_dir).glob(f'{test_result_file_pref}*')):
raise FileNotFoundError(f"Test results files with name like '{test_result_file_pref}' are not found under {copy_from_dir}")
copy_to_dir.mkdir(parents=True, exist_ok=True)
for elem in test_result_files:
if elem.is_file() and elem.name.startswith(test_result_file_pref):
source_file = copy_from_dir / elem.name
destination_file = copy_to_dir / elem.name
logging.info("Move from %s to %s", source_file, destination_file)
if move:
shutil.move(source_file, destination_file)
else:
shutil.copy(source_file, destination_file)