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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
#!/usr/bin/env python3
#
# Copyright (c) 2021-2022 Amazon.com, Inc. or its affiliates. All rights reserved.
#
# This software is available to you under a choice of one of two
# licenses. You may choose to be licensed under the terms of the GNU
# General Public License (GPL) Version 2, available from the file
# COPYING in the main directory of this source tree, or the
# BSD license below:
#
# Redistribution and use in source and binary forms, with or
# without modification, are permitted provided that the following
# conditions are met:
#
# - Redistributions of source code must retain the above
# copyright notice, this list of conditions and the following
# disclaimer.
#
# - Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
import argparse
import builtins
import os
import sys
import yaml
import pytest
from pytest import ExitCode
def get_option_longform(option_name, option_params):
'''
get the long form command line option name of an option
'''
return option_params.get("longform", "--" + option_name.replace("_", "-"))
def get_ubertest_test_type(fabtests_testsets):
test_list = fabtests_testsets.split(",")
for test in test_list:
if test == "quick" or test == "ubertest_quick" or test == "ubertest":
return "quick"
if test == "all" or test == "ubertest_all":
return "all"
if test == "verify" or test == "ubertest_verify":
return "verify"
return None
def fabtests_testsets_to_pytest_markers(fabtests_testsets, run_mode=None):
if run_mode:
assert run_mode in ["serial", "parallel"]
test_set = set()
test_list = fabtests_testsets.split(",")
# use set() to remove duplicate test set
for test in test_list:
if test == "quick":
test_set.add("unit")
test_set.add("functional")
test_set.add("short")
test_set.add("ubertest_quick")
elif test =="ubertest":
test_set.add("ubertest_quick")
elif test == "all":
test_set.add("unit")
test_set.add("functional")
test_set.add("standard")
test_set.add("multinode")
test_set.add("ubertest_all")
elif test == "verify":
test_set.add("ubertest_verify")
else:
test_set.add(test)
markers = None
for test in test_set:
if markers is None:
markers = test[:]
else:
markers += " or " + test
if run_mode:
if run_mode == "serial":
markers = "(" + markers + ") and (serial)"
else:
assert run_mode == "parallel"
markers = "(" + markers + ") and (not serial)"
return markers
def get_default_exclusion_file(fabtests_args):
test_configs_dir = os.path.abspath(os.path.join(get_pytest_root_dir(), "..", "test_configs"))
exclusion_file = os.path.join(test_configs_dir, fabtests_args.provider,
fabtests_args.provider + ".exclude")
if not os.path.exists(exclusion_file):
return None
return exclusion_file
def get_default_ubertest_config_file(fabtests_args):
test_configs_dir = os.path.abspath(os.path.join(get_pytest_root_dir(), "..", "test_configs"))
provider = fabtests_args.provider
if provider.find(";") != -1:
core,util = fabtests_args.provider.split(";")
cfg_file = os.path.join(test_configs_dir, util, core + ".test")
else:
core = fabtests_args.provider
ubertest_test_type = get_ubertest_test_type(fabtests_args.testsets)
if not ubertest_test_type:
return None
cfg_file = os.path.join(test_configs_dir, core, ubertest_test_type + ".test")
if not os.path.exists(cfg_file):
return None
return cfg_file
def add_common_arguments(parser, shared_options):
for option_name in shared_options.keys():
option_params = shared_options[option_name]
option_longform = get_option_longform(option_name, option_params)
option_shortform = option_params.get("shortform")
option_type = option_params["type"]
option_helpmsg = option_params["help"]
option_default = option_params.get("default")
if option_type == "int" and not (option_default is None):
option_default = int(option_default)
if option_shortform:
forms = [option_shortform, option_longform]
else:
forms = [option_longform]
if option_type == "bool" or option_type == "boolean":
parser.add_argument(*forms,
dest=option_name, action="store_true",
help=option_helpmsg, default=option_default)
else:
assert option_type == "str" or option_type == "int"
parser.add_argument(*forms,
dest=option_name, type=getattr(builtins, option_type),
help=option_helpmsg, default=option_default)
def fabtests_args_to_pytest_args(fabtests_args, shared_options, run_mode):
pytest_args = []
if run_mode == "parallel":
pytest_args.append("-n")
pytest_args.append(str(fabtests_args.nworkers))
pytest_args.append("--provider=" + fabtests_args.provider)
pytest_args.append("--server-id=" + fabtests_args.server_id)
pytest_args.append("--client-id=" + fabtests_args.client_id)
# -v make pytest to print 1 line for each test
pytest_args.append("-v")
pytest_verbose_options = {
0 : "-rN", # print no extra information
1 : "-rfE", # print extra information for failed test(s)
2 : "-rfEsx", # print extra information for failed/skipped test(s)
3 : "-rA", # print extra information for all test(s) (failed/skipped/passed)
}
pytest_args.append(pytest_verbose_options[fabtests_args.verbose])
verbose_fail = fabtests_args.verbose > 0
if verbose_fail:
# Use short python trace back because it show captured stdout of failed tests
pytest_args.append("--tb=short")
else:
pytest_args.append("--tb=no")
markers = fabtests_testsets_to_pytest_markers(fabtests_args.testsets, run_mode)
pytest_args.append("-m")
pytest_args.append(markers)
if fabtests_args.expression:
pytest_args.append("-k")
pytest_args.append(fabtests_args.expression)
if fabtests_args.html:
pytest_args.append("--html")
pytest_args.append(os.path.abspath(fabtests_args.html))
pytest_args.append("--self-contained-html")
if fabtests_args.junit_xml:
pytest_args.append("--junit-xml")
file_name = os.path.abspath(fabtests_args.junit_xml)
if run_mode:
file_name += "." + run_mode
pytest_args.append(file_name)
if fabtests_args.junit_logging:
pytest_args.append("-o")
pytest_args.append("junit_logging=" + fabtests_args.junit_logging)
# add options shared between runfabtests.py and libfabric pytest
for option_name in shared_options.keys():
option_params = shared_options[option_name]
option_longform = get_option_longform(option_name, option_params)
option_type = option_params["type"]
if not hasattr(fabtests_args, option_name):
continue
option_value = getattr(fabtests_args, option_name)
if (option_value is None):
continue
if option_type == "bool" or option_type == "boolean":
assert option_value
pytest_args.append(option_longform)
else:
assert option_type == "str" or option_type == "int"
pytest_args.append(option_longform + "=" + str(option_value))
if not hasattr(fabtests_args, "exclusion_file") or not fabtests_args.exclusion_file:
default_exclusion_file = get_default_exclusion_file(fabtests_args)
if default_exclusion_file:
pytest_args.append("--exclusion-file=" + default_exclusion_file)
if not hasattr(fabtests_args, "ubertest_config_file") or not fabtests_args.ubertest_config_file:
default_ubertest_config_file = get_default_ubertest_config_file(fabtests_args)
if default_ubertest_config_file:
pytest_args.append("--ubertest-config-file=" + default_ubertest_config_file)
return pytest_args
def get_pytest_root_dir():
'''
find the pytest root directory according the location of runfabtests.py
'''
script_path = os.path.abspath(sys.argv[0])
script_dir = os.path.dirname(script_path)
if os.path.basename(script_dir) == "bin":
# runfabtests.py is part of a fabtests installation
pytest_root_dir = os.path.abspath(os.path.join(script_dir, "..", "share", "fabtests", "pytest"))
elif os.path.basename(script_dir) == "scripts":
# runfabtests.py is part of a fabtests source code
pytest_root_dir = os.path.abspath(os.path.join(script_dir, "..", "pytest"))
else:
raise RuntimeError("Error: runfabtests.py is under directory {}, "
"which is neither part of fabtests installation "
"nor part of fabetsts source code".format(script_dir))
if not os.path.exists(pytest_root_dir):
raise RuntimeError("Deduced pytest root directory {} does not exist!".format(pytest_root_dir))
return pytest_root_dir
def get_pytest_relative_case_dir(fabtests_args, pytest_root_dir):
'''
the directory that contains test cases, relative to pytest_root_dir
'''
# provider's own test directory (if exists) overrides default
pytest_case_dir = os.path.join(pytest_root_dir, fabtests_args.provider)
if os.path.exists(pytest_case_dir):
return fabtests_args.provider
assert os.path.exists(os.path.join(pytest_root_dir, "default"))
return "default"
def run(fabtests_args, shared_options, run_mode):
prev_cwd = os.getcwd()
pytest_root_dir = get_pytest_root_dir()
pytest_args = fabtests_args_to_pytest_args(fabtests_args, shared_options, run_mode)
pytest_args.append(get_pytest_relative_case_dir(fabtests_args, pytest_root_dir))
pytest_command = "cd " + pytest_root_dir + "; pytest"
for arg in pytest_args:
if arg.find(' ') != -1:
arg = "'" + arg + "'"
pytest_command += " " + arg
print(pytest_command)
# actually running tests
os.chdir(pytest_root_dir)
status = pytest.main(pytest_args)
os.chdir(prev_cwd)
return status
def main():
pytest_root_dir = get_pytest_root_dir()
# pytest/options.yaml contains the definition of a list of options that are
# shared between runfabtests.py and pytest
option_yaml = os.path.join(pytest_root_dir, "options.yaml")
if not os.path.exists(option_yaml):
print("Error: option definition yaml file {} not found!".format(option_yaml))
exit(1)
shared_options = yaml.safe_load(open(option_yaml))
parser = argparse.ArgumentParser(description="libfabric integration test runner")
parser.add_argument("provider", type=str, help="libfabric provider")
parser.add_argument("server_id", type=str, help="server ip or hostname")
parser.add_argument("client_id", type=str, help="client ip or hostname")
parser.add_argument("-t", dest="testsets", type=str, default="quick",
help="test set(s): all,quick,unit,functional,standard,short,ubertest,cuda_memory,neuron_memory (default quick)")
parser.add_argument("-v", dest="verbose", action="count", default=0,
help="verbosity level"
"-v: print extra info for failed test(s)"
"-vv: print extra info of failed/skipped test(s)"
"-vvv: print extra info of failed/skipped/passed test(s)")
parser.add_argument("--expression", type=str,
help="only run tests which match the given substring expression.")
parser.add_argument("--html", type=str, help="path to generated html report")
parser.add_argument("--junit-xml", type=str, help="path to generated junit xml report")
parser.add_argument("--junit-logging", choices=['no', 'log', 'system-out', 'system-err', 'out-err', 'all'], type=str,
help="Write captured log messages to JUnit report")
parser.add_argument("--nworkers", type=int, default=8, help="Number of parallel test workers. Defaut is 8.")
add_common_arguments(parser, shared_options)
fabtests_args = parser.parse_args()
if fabtests_args.provider not in ["efa", "shm"] and fabtests_args.nworkers > 1:
print("only efa and shm provider support parallelized tests. Setting nworkers to 1 ....")
fabtests_args.nworkers = 1
if fabtests_args.html:
print("html cannot be generated under parallel mode. Setting nworkers to 1 ....")
fabtests_args.nworkers = 1
if fabtests_args.nworkers == 1:
exit(run(fabtests_args, shared_options, None))
else:
print("Running parallelable tests in parallel mode")
parallel_status = run(fabtests_args, shared_options, "parallel")
print("Running other tests in serial mode")
serial_status = run(fabtests_args, shared_options, "serial")
if fabtests_args.junit_xml:
os.system("junitparser merge {}.parallel {}.serial {}".format(
fabtests_args.junit_xml,
fabtests_args.junit_xml,
fabtests_args.junit_xml)
)
os.unlink(fabtests_args.junit_xml + ".parallel")
os.unlink(fabtests_args.junit_xml + ".serial")
# Still return success when no tests are collected.
if parallel_status not in [ExitCode.OK, ExitCode.NO_TESTS_COLLECTED]:
exit(parallel_status)
if serial_status not in [ExitCode.OK, ExitCode.NO_TESTS_COLLECTED]:
exit(serial_status)
exit(0)
main()
|