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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
# This file is part of dh-cmake, and is distributed under the OSI-approved
# BSD 3-Clause license. See top-level LICENSE file or
# https://gitlab.kitware.com/debian/dh-cmake/blob/master/LICENSE for details.
import os.path
import importlib.resources as resources
import re
from dhcmake import common
def format_arg_for_ctest(arg):
arg = arg.replace("\\", "\\\\")
arg = arg.replace('"', '\\"')
arg = arg.replace("'", "\\'")
arg = arg.replace(" ", "\\ ")
arg = arg.replace("\t", "\\\t")
return arg
def format_args_for_ctest(args):
return " ".join(format_arg_for_ctest(a) for a in args)
def _get_deb_ctest_options():
try:
deb_ctest_options = os.environ["DEB_CTEST_OPTIONS"]
except KeyError:
return []
result = []
current = ""
escape = False
quote = False
for c in deb_ctest_options:
if escape:
current += c
escape = False
elif c == "\\":
escape = True
elif c == '"':
quote = not quote
elif re.match("\\s", c) and not quote:
if current:
result.append(current)
current = ""
else:
current += c
if quote:
raise ValueError("Unclosed quote")
if escape:
raise ValueError("Unclosed backslash")
if current:
result.append(current)
return result
def get_deb_ctest_option(name):
for item in _get_deb_ctest_options():
eq_split = item.split("=", 1)
if eq_split[0] == name:
if len(eq_split) > 1:
return eq_split[1]
else:
return True
return None
class DHCTest(common.DHCommon):
def make_arg_parser(self, parser):
super().make_arg_parser(parser)
parser.add_argument(
"--no-submit", action="store_true",
help="Don't submit after each part")
parser.add_argument(
"--ctest-testing-dir", action="store", default="debian/.ctest",
help="Directory in which to store CTest Testing/ directory")
parser.add_argument(
"--ctest-build", action="store",
help="Name of the CTest build")
parser.add_argument(
"--ctest-build-suffix", action="store", default="",
help="Suffix to add to CTest build")
parser.add_argument(
"extra_args", nargs="*")
def get_dh_ctest_driver(self):
ref = resources.files(__name__) / 'dh_ctest_driver.cmake'
with importlib_resources.as_file(ref) as path:
return path
return pkg_resources.resource_filename(__name__,
"dh_ctest_driver.cmake")
def do_ctest_step(self, step, cmd=None):
dashboard_model = get_deb_ctest_option("model")
if dashboard_model is None:
if cmd is not None:
self.do_cmd([cmd, *self.parsed_args])
return False
else:
args = [
"ctest", "-VV", "-S", self.get_dh_ctest_driver(),
"-DDH_CTEST_SRCDIR:PATH=" + os.getcwd(),
"-DDH_CTEST_CTESTDIR:PATH=" + os.path.join(
os.getcwd(), self.options.ctest_testing_dir),
"-DDH_CTEST_BUILDDIR:PATH=" + self.get_build_directory(),
"-DDH_CTEST_DASHBOARD_MODEL:STRING=" + dashboard_model,
"-DDH_CTEST_STEP:STRING=" + step,
]
if cmd:
args.append("-DDH_CTEST_RUN_CMD:STRING="
+ format_args_for_ctest([cmd, *self.parsed_args]))
if get_deb_ctest_option("submit") and not self.options.no_submit:
args.append("-DDH_CTEST_STEP_SUBMIT:BOOL=ON")
site = get_deb_ctest_option("site")
if isinstance(site, str):
args.append("-DDH_CTEST_SITE:STRING=" + site)
track = get_deb_ctest_option("track")
if isinstance(track, str):
args.append("-DDH_CTEST_TRACK:STRING=" + track)
revision = get_deb_ctest_option("revision")
if isinstance(revision, str):
args.append("-DDH_CTEST_VERSION_OVERRIDE:STRING=" + revision)
build = get_deb_ctest_option("build")
if self.options.ctest_build:
build = self.options.ctest_build
if self.options.ctest_build_suffix:
build += self.options.ctest_build_suffix
if isinstance(build, str):
args.append("-DDH_CTEST_BUILD:STRING=" + build)
catchfailed = "0"
if get_deb_ctest_option("catchfailed"):
catchfailed = "1"
args.append("-DDH_CTEST_CATCHFAILED:BOOL=" + catchfailed)
if step == "submit" and self.options.parts:
args.append("-DDH_CTEST_SUBMIT_PARTS:STRING=" +
";".join(self.options.parts))
args.extend(self.options.extra_args)
self.do_cmd(args)
return True
@common.DHEntryPoint("dh_ctest_clean")
def clean(self, args=None):
self.parse_args(args)
self.do_cmd(["rm", "-rf", self.options.ctest_testing_dir + "/"])
@common.DHEntryPoint("dh_ctest_start")
def start(self, args=None):
self.parse_args(args)
self.do_ctest_step("start")
@common.DHEntryPoint("dh_ctest_update")
def update(self, args=None):
self.parse_args(args)
if get_deb_ctest_option("update"):
self.do_ctest_step("update")
@common.DHEntryPoint("dh_ctest_configure")
def configure(self, args=None):
self.parse_args(args)
self.do_ctest_step("configure", "dh_auto_configure")
@common.DHEntryPoint("dh_ctest_build")
def build(self, args=None):
self.parse_args(args)
self.do_ctest_step("build", "dh_auto_build")
@common.DHEntryPoint("dh_ctest_test")
def test(self, args=None):
self.parse_args(args)
if not self.do_ctest_step("test"):
self.do_cmd(["ctest", "-VV", *self.options.extra_args],
cwd=self.get_build_directory())
def submit_make_arg_parser(self, parser):
super().make_arg_parser(parser)
parser.add_argument(
"--ctest-testing-dir", action="store", default="debian/.ctest",
help="Directory in which to store CTest Testing/ directory")
parser.add_argument(
"--ctest-build", action="store",
help="Name of the CTest build")
parser.add_argument(
"--ctest-build-suffix", action="store", default="",
help="Suffix to add to CTest build")
parser.add_argument("--parts", action="store", nargs="*",
help="Parts to submit to CDash")
@common.DHEntryPoint("dh_ctest_submit")
def submit(self, args=None):
self.parse_args(args, make_arg_parser=self.submit_make_arg_parser)
self.options.no_submit = False
self.options.extra_args = []
if get_deb_ctest_option("submit"):
self.do_ctest_step("submit")
def clean():
dhctest = DHCTest()
dhctest.clean()
def start():
dhctest = DHCTest()
dhctest.start()
def update():
dhctest = DHCTest()
dhctest.update()
def configure():
dhctest = DHCTest()
dhctest.configure()
def build():
dhctest = DHCTest()
dhctest.build()
def test():
dhctest = DHCTest()
dhctest.test()
def submit():
dhctest = DHCTest()
dhctest.submit()
|