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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import logging
import argparse
import json
import os
join = os.path.join
from os.path import basename, join, isdir, splitext
from os import mkdir
from collections import OrderedDict
import sys
import re
import time
import math
import pathlib
import shutil
import platform
import subprocess
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
from mccodelib import utils, mccode_config
def get_processor_info():
if platform.system() == "Windows":
return platform.processor()
elif platform.system() == "Darwin":
return subprocess.check_output(['/usr/sbin/sysctl', "-n", "machdep.cpu.brand_string"]).strip().decode('utf-8')
elif platform.system() == "Linux":
command = r"cat /proc/cpuinfo | grep model\ name | uniq | cut -f2 -d:"
return subprocess.check_output(command, shell=True).strip().decode('utf-8')
return ""
#
# Functionality
#
def create_instr_test_objs(sourcefile, localfile, header):
''' returns a list containing one initialized test object pr %Example within the instr file '''
tests = []
ms = re.findall(r"\%Example:([^\n]*)Detector\:([^\n]*)_I=([0-9.+-e]+)", header)
if len(ms) > 0:
testnb = 1
for m in ms:
parvals = m[0].strip()
detector = m[1].strip()
targetval = float(m[2].strip())
tests.append(InstrExampleTest(sourcefile, localfile, parvals, detector, targetval, testnb))
testnb = testnb + 1
else:
tests.append(InstrExampleTest(sourcefile, localfile))
return tests
class InstrExampleTest:
''' instruent test house keeping object '''
def __init__(self, sourcefile, localfile, parvals=None, detector=None, targetval=None, testnb=0):
self.sourcefile = sourcefile
self.localfile = localfile
self.instrname = splitext(basename(sourcefile))[0]
self.testnb = testnb
self.parvals = parvals
self.detector = detector
self.targetval = targetval
self.testval = None
self.compiled = None
self.compiletime = None
self.didrun = None
self.runtime = None
self.errmsg = None
def get_json_repr(self):
return {
"displayname" : self.get_display_name(),
"sourcefile" : self.sourcefile,
"localfile" : self.localfile,
"instrname" : self.instrname,
"testnb" : self.testnb,
"parvals" : self.parvals,
"detector" : self.detector,
"targetval" : self.targetval,
"testval" : self.testval,
"compiled" : self.compiled,
"compiletime" : self.compiletime,
"didrun" : self.didrun,
"runtime" : self.runtime,
"errmsg" : self.errmsg,
}
def save(self, infolder):
text = json.dumps(self.get_json_repr())
f = open(join(infolder, self.get_display_name()) + ".json", 'w').write(text)
def get_display_name(self):
if self.testnb > 1:
return self.instrname + "_%d" % self.testnb
else:
return self.instrname
class LineLogger():
''' log lines to memory, then save to disk '''
def __init__(self):
self.lst = []
def logline(self, addstr):
self.lst.append(addstr)
def save(self, filename):
text = "\n".join(self.lst) + "\n"
f = open(filename, 'w').write(text)
def find(self, searchstr):
for l in self.lst:
if re.search(searchstr, l):
return True
return False
def _monitorname_filename_match(dfolder, monname):
'''
mccode.sim is organized in sections, e.g. data sections are coded by from "begin data" to "end data",
within which " component:" and " filename:" tags may be available.
returns the filename or None
'''
look_for_filename = False
lns = open(join(dfolder, "mccode.sim")).read().splitlines()
for l in lns:
if re.match(r" component: %s$" % monname, l):
# flag this data section
look_for_filename = True
if look_for_filename:
m = re.match(r"\s*filename:\s+(.+)", l)
if m:
filename = m.group(1)
if os.path.isfile(join(dfolder,filename)):
return filename
if re.match(r"end data", l):
# the filename can for 0D monitors be monname.dat
zeroDfilename = join(dfolder, monname + ".dat")
if os.path.isfile(zeroDfilename):
return zeroDfilename
return None
def extract_testvals(datafolder, monitorname):
'''
Extract monitor I (as well as Ierr and N) from results dir given monitor name.
Returns an error string or a tuple containing (I, I_err, N), or None if datafile does not contain a "values" line.
'''
# get any filename in mccode.sim matching monitorname AKA test.detector
filename = _monitorname_filename_match(datafolder, monitorname)
if filename is None:
return "ERROR: targetval could not be extracted from monitor %s" % (monitorname)
# extract tested target value from the monitor file
with open(join(datafolder, filename)) as fp:
while True:
l = fp.readline()
if not l:
break
m = re.match(r"# values: ([0-9+-e.]+) ([0-9+-e.]+) ([0-9]+)", l)
if m :
I = float(m.group(1))
I_err = float(m.group(2))
N = float(m.group(3))
return (I, I_err, N)
break
def mccode_test(branchdir, testdir, limitinstrs=None, instrfilter=None, version=None):
''' this main test function tests the given mccode branch/version '''
# copy instr files and record info
logging.info("Finding instruments in: %s" % str(pathlib.Path(branchdir,"examples").resolve()))
instrs, _ = utils.get_instr_comp_files(str(pathlib.Path(branchdir,"examples").resolve()), recursive=True, instrfilter=instrfilter)
instrs.sort()
# limt runs if required
if limitinstrs:
instrs = instrs[:limitinstrs]
# max instr name length for pretty-output
maxnamelen = 0
for f in instrs:
l = len(basename(f)) - 5
if l > maxnamelen:
maxnamelen = l
# create test objects and copy instrument files
logging.info("Copying instruments to: %s" % testdir)
tests = []
for f in instrs:
# copy the test folder for this instrument
instrname = splitext(basename(f))[0]
instrdir = join(testdir, instrname)
shutil.copytree(os.path.dirname(f),instrdir)
f_new=join(instrdir,os.path.basename(f))
# Read instr file content to look for tests
text = open(f, encoding='utf-8').read()
# create a test object for every test defined in the instrument header
instrtests = create_instr_test_objs(sourcefile=f, localfile=f_new, header=text)
tests = tests + instrtests
# extract and record %Example info from text
numtests = len([t for t in instrtests if t.testnb > 0])
if numtests == 0:
formatstr = "%-" + "%ds: NO TEST" % maxnamelen
logging.debug(formatstr % instrname)
elif numtests == 1:
formatstr = "%-" + "%ds: TEST" % maxnamelen
logging.debug(formatstr % instrname)
else:
formatstr = "%-" + "%ds: TESTS (%d)" % (maxnamelen, numtests)
logging.debug(formatstr % instrname)
# compile, record time
global ncount, mpi, openacc, suffix, nexus
logging.info("")
logging.info("Compiling instruments [seconds]...")
for test in tests:
# if binary exists, set compile time = 0 and continue
binfile = os.path.splitext(test.localfile)[0] + "." + mccode_config.platform["EXESUFFIX"].lower()
failed=os.path.splitext(test.localfile)[0] + ".failed"
if os.path.exists(failed):
test.compiled = False
test.compiletime = -1
elif os.path.exists(binfile):
test.compiled = True
test.compiletime = 0
else:
if test.testnb > 0 or (not args.skipnontest):
log = LineLogger()
t1 = time.time()
cmd = mccode_config.configuration["MCRUN"]
if nexus:
cmd = cmd + " --format=NeXus "
if version:
cmd = cmd + " --override-config=" + join(os.path.dirname(__file__), mccode_config.configuration["MCCODE"] + "-test",version)
if openacc:
cmd = cmd + " --openacc "
if mpi:
cmd = cmd + " --mpi=1 "
cmd = cmd + " --verbose -c -n0 %s > compile_stdout.txt 2>&1" % test.instrname
utils.run_subtool_noread(cmd, cwd=join(testdir, test.instrname))
t2 = time.time()
test.compiled = os.path.exists(binfile)
test.compiletime = t2 - t1
# log to terminal
if test.compiled:
formatstr = "%-" + "%ds: " % maxnamelen + \
"{:3d}.".format(math.floor(test.compiletime)) + str(test.compiletime-int(test.compiletime)).split('.')[1][:2]
logging.info(formatstr % test.get_display_name())
else:
formatstr = "%-" + "%ds: COMPILE ERROR using:\n" % maxnamelen
logging.info(formatstr % test.instrname + cmd)
f = open(failed, "a")
f.write(formatstr % test.instrname + cmd)
f.close()
else:
logging.info("Skipping compile of " + test.instrname)
# save (incomplete) test results to disk
test.save(infolder=join(testdir, test.instrname))
# run, record time
logging.info("")
logging.info("Running tests...")
for test in tests:
if not test.compiled:
formatstr = "%-" + "%ds: NO COMPILE" % (maxnamelen+1)
logging.info(formatstr % test.instrname)
continue
# runable tests have testnb > 0
if test.testnb <= 0:
formatstr = "%-" + "%ds: NO TEST" % (maxnamelen+1)
logging.info(formatstr % test.get_display_name())
continue
# run the test, record time and runtime success/fail
t1 = time.time()
cmd = mccode_config.configuration["MCRUN"]
if nexus:
cmd = cmd + " --format=NeXus "
if mpi is not None:
if openacc is True:
if version:
cmd = cmd + " --override-config=" + join(os.path.dirname(__file__), mccode_config.configuration["MCCODE"] + "-test",version)
cmd = cmd + " -s 1000 %s %s -n%s --openacc --mpi=%s -d%d > run_stdout_%d.txt 2>&1" % (test.instrname, test.parvals, ncount, mpi, test.testnb, test.testnb)
else:
if version:
cmd = cmd + " --override-config=" + join(os.path.dirname(__file__), mccode_config.configuration["MCCODE"] + "-test",version)
cmd = cmd + " -s 1000 %s %s -n%s --mpi=%s -d%d > run_stdout_%d.txt 2>&1" % (test.instrname, test.parvals, ncount, mpi, test.testnb, test.testnb)
else:
if version:
cmd = cmd + " --override-config=" + join(os.path.dirname(__file__), mccode_config.configuration["MCCODE"] + "-test",version)
cmd = cmd + " -s 1000 %s %s -n%s -d%d > run_stdout_%d.txt 2>&1" % (test.instrname, test.parvals, ncount, test.testnb, test.testnb)
retcode = utils.run_subtool_noread(cmd, cwd=join(testdir, test.instrname))
t2 = time.time()
didwrite = os.path.exists(join(testdir, test.instrname, str(test.testnb), "mccode.sim"))
didwrite_nexus = os.path.exists(join(testdir, test.instrname, str(test.testnb), "mccode.h5"))
test.didrun = retcode != 0 or didwrite or didwrite_nexus
test.runtime = t2 - t1
# log to terminal
if test.didrun:
formatstr = "%-" + "%ds: " % (maxnamelen+1) + \
"{:3d}.".format(math.floor(test.runtime)) + str(test.runtime-int(test.runtime)).split('.')[1][:2]
logging.info(formatstr % test.get_display_name())
else:
formatstr = "%-" + "%ds: RUNTIME ERROR" % (maxnamelen+1)
logging.info(formatstr % instrname + ", " + cmd)
continue
# test value extraction
if not didwrite_nexus:
extraction = extract_testvals(join(testdir, test.instrname, str(test.testnb)), test.detector)
if type(extraction) is tuple:
test.testval = extraction[0]
else:
test.testval = -1
# Look for detector output in run_stdout
else:
metalog = LineLogger()
resfile = join(testdir,test.instrname,"run_stdout_%d.txt" % (test.testnb))
cmd = r"grep %s_I= %s | head -1 | cut -f2- -d= | cut -f1 -d\ " %(test.detector, resfile)
utils.run_subtool_to_completion(cmd, stdout_cb=metalog.logline)
try:
test.testval=float(metalog.lst[0])
except:
test.testval=-1
# save test result to disk
test.testcomplete = True
test.save(infolder=join(testdir, test.instrname))
# cpu type: cat /proc/cpuinfo |grep name |uniq | cut -f2- -d:
# gpu type: nvidia-smi -L | head -1 |cut -f2- -d: |cut -f1 -d\(
cpu_type = "".join(get_processor_info())
gpu_type = "none"
if (platform.system() == "Linux"):
metalog = LineLogger()
utils.run_subtool_to_completion(r"nvidia-smi -L | head -1 |cut -f2- -d: |cut -f1 -d\(", stdout_cb=metalog.logline)
gpu_type = ",".join(metalog.lst)
if "failed because" in gpu_type:
gpu_type = "none"
metalog = LineLogger()
utils.run_subtool_to_completion("hostname", stdout_cb=metalog.logline)
hostnamestr = ",".join(metalog.lst)
metalog = LineLogger()
utils.run_subtool_to_completion('echo "$USER"', stdout_cb=metalog.logline)
username = ",".join(metalog.lst)
metainfo = OrderedDict()
metainfo["ncount"] = ncount
metainfo["mpi"] = mpi
metainfo["date"] = utils.get_datetimestr()
metainfo["hostname"] = hostnamestr
metainfo["user"] = username
metainfo["cpu_type"] = cpu_type
metainfo["gpu_type"] = gpu_type
# displayname must be unique, we can return a dict, which eases comparison between tests
obj = {}
for t in tests:
obj[t.get_display_name()] = t.get_json_repr()
obj["_meta"] = metainfo
return obj
#
# Utility
#
def activate_mccode_version(version, mccoderoot):
'''
Modify environment, returns path as it was.
branchdir: mccode version install directory
'''
branchdir = mccoderoot
os.environ["MCSTAS"] = branchdir
oldpath = os.environ["PATH"]
os.environ["PATH"] = "%s/miniconda3/bin:%s/bin:%s" % (branchdir, branchdir, oldpath)
return oldpath
def deactivate_mccode_version(oldpath):
''' clean up path changes, restoring oldpath '''
del os.environ["MCSTAS"]
os.environ["PATH"] = oldpath
def create_test_dir(testdir):
''' just create testdir or exit '''
if not os.path.exists(testdir):
mkdir(testdir)
if not os.path.exists(testdir):
logging.info("could not create test folder, exiting...")
quit()
def create_label_dir(testdir, label):
if not os.path.exists(testdir):
mkdir(testdir)
if not os.path.exists(testdir):
logging.info("could not create test folder, exiting...")
quit()
labeldir = join(testdir, label)
if not os.path.exists(labeldir):
mkdir(labeldir)
return labeldir
def create_datetime_testdir(testroot):
datetime = utils.get_datetimestr()
return create_label_dir(testroot, datetime)
#
# Program functions for every main test mode
#
def run_default_test(testdir, mccoderoot, limit, instrfilter, suffix):
''' tests the default mccode version '''
# get default/system version number
logger = LineLogger()
utils.run_subtool_to_completion("%s --version" % (mccode_config.configuration["MCRUN"]), stdout_cb=logger.logline)
try:
version = logger.lst[-1].strip()
except:
logging.info("no 'mcstas --version' output, try using --config='some directory' " + mccode_config.configuration["MCCODE"])
quit(1)
# create single-run test directory
labeldir = create_label_dir(testdir, mccode_config.configuration["MCCODE"] + "-" + version + suffix)
logging.info("Testing: %s" % version)
logging.info("")
results = mccode_test(mccoderoot, labeldir, limit, instrfilter)
reportfile = os.path.join(labeldir, "testresults_%s.json" % (mccode_config.configuration["MCCODE"]+"-"+version+suffix))
open(os.path.join(reportfile), "w").write(json.dumps(results, indent=2))
logging.debug("")
logging.debug("Test results written to: %s" % reportfile)
def run_version_test(testdir, mccoderoot, limit, instrfilter, version, suffix):
''' as run_default_test, but activates/deactivates and ses a specific mccode version if it exists '''
# verify that version exists
if not os.path.isfile(os.path.join(mccoderoot, version, "environment")):
print("mccode version %s could not be found, exiting..." % version)
quit(1)
# create single-run test directory
labeldir = create_label_dir(testdir, version + suffix)
oldpath = activate_mccode_version(version, mccoderoot)
try:
logging.info("Testing: %s" % version)
logging.info("")
results = mccode_test(mccoderoot, labeldir, limit, instrfilter, version)
finally:
deactivate_mccode_version(oldpath)
reportfile = os.path.join(labeldir, "testresults_%s.json" % (version+suffix))
open(os.path.join(reportfile), "w").write(json.dumps(results, indent=2))
logging.debug("")
logging.debug("Test results written to: %s" % reportfile)
def run_config_test(testdir, mccoderoot, limit, configfilter, instrfilter, suffix):
'''
Test a suite of configs, each a mccode_config_LABEL.py file, that is copied to the dist dir
prior to starting the test. This action modifies the C-flags and the compiler used during
the test. The original mccode_config.py file is restored after each test.
'''
def activate_config(version, mccoderoot, configfile):
''' activate a confige given by configfile, returns bckfile for use with deactivate_config '''
libdir = join(mccoderoot, version, "tools", "Python", "mccodelib")
os.rename(join(libdir, "mccode_config.py"), join(libdir, "mccode_config.py_BAK"))
open(join(libdir, "mccode_config.py"), "w").write(open(configfile).read())
return join(libdir, "mccode_config.py_BAK")
def deactivate_config(bckfile):
''' use to restore changes made by activate_config '''
restoreto = join(os.path.dirname(bckfile), "mccode_config.py")
os.rename(bckfile, restoreto)
def extract_config_mccode_version(configfile):
for l in open(configfile).read().splitlines():
m = re.match(r"\s*\"MCCODE_VERSION\": (.+),", l)
if m:
return m.group(1).strip("\""), os.path.basename(os.path.dirname(configfile))
def get_config_files(configfltr):
''' look in "__file__/../mccodelib/MCCODE-test" location or config files'''
lookin = join(os.path.dirname(__file__), mccode_config.configuration["MCCODE"] + "-test")
print("getting config files...")
print(configfltr + " vs " + os.path.join(lookin,configfltr,'mccode_config.json'))
if configfltr is not None and os.path.isfile(os.path.join(lookin,configfltr,'mccode_config.json')):
print("returning " + os.path.join(lookin,configfltr,'mccode_config.json'))
return [ os.path.join(lookin,configfltr,'mccode_config.json') ]
for (_, _, files) in os.walk(lookin):
print("Looking")
if configfltr is not None:
return [join(lookin, f) for f in files if re.search(r"^%s/mccode_config.json$" % configfltr, f)]
else:
return [join(lookin, f) for f in files if re.search(r"^mccode_config.json$", f)]
# get test directory datetime string
datetime = utils.get_datetimestr()
# test labels loop
for f in get_config_files(configfilter):
[version,label] = extract_config_mccode_version(f)
oldpath = activate_mccode_version(version, mccoderoot)
try:
#bckfile = activate_config(version, mccoderoot, f)
try:
logging.info("")
label0=label
label=label+suffix+"_"+ncount
logging.info("Testing label: %s" % label)
# craete the proper test dir
labeldir = create_label_dir(testdir, label)
results = mccode_test(mccoderoot, labeldir, limit, instrfilter, label0)
# write local test result
reportfile = os.path.join(labeldir, "testresults_%s.json" % (os.path.basename(labeldir)))
open(os.path.join(reportfile), "w").write(json.dumps(results, indent=2))
logging.debug("")
logging.debug("Test results written to: %s" % reportfile)
finally:
pass
finally:
deactivate_mccode_version(oldpath)
def show_installed_versions(mccoderoot):
''' utility function, prints identified mccode versions to console '''
def print_to_console(str):
''' used with popen wrapper '''
logging.info(str)
logging.info("Test environment mode, using output of 'mcstas --vesion'")
logging.info("")
dirnames = []
branchnames = []
for (_, dirnames, _) in os.walk(mccoderoot):
break
for d in dirnames:
for (_, _, files) in os.walk(join(mccoderoot, d)):
break
if "environment" in files:
branchnames.append(d)
for v in branchnames:
# test environment
branchdir = join(mccoderoot, v)
os.environ["MCSTAS"] = branchdir
oldpath = os.environ["PATH"]
os.environ["PATH"] = "%s/miniconda3/bin:%s/bin:%s" % (branchdir, branchdir, oldpath)
# run the mcstas --version command
cmd = "mcstas --version"
utils.run_subtool_to_completion(cmd, stdout_cb=print_to_console, stderr_cb=print_to_console)
logging.info("")
# TODO: should we test the existence of m[xc]run?
# restore environment
del os.environ["MCSTAS"]
os.environ["PATH"] = oldpath
logging.info("Selectable version names are: %s" % ", ".join(branchnames))
logging.info("")
ncount = None
mpi = None
openacc = None
suffix = None
nexus = None
def main(args):
# mutually excusive main branches
default = None # test system mccode version as-is
version = args.testversion # test a specific mccode version (also) present on the system
configs = False
configfilter = args.config # test only config matching this label
if configfilter:
configs = True
vinfo = args.versions # display mccode versions installed on the system
# modifying options
verbose = args.verbose # display more info during runs
testroot = args.testroot # use non-default test output root location
testdir = args.testdir # use non-default test output location (overrides testroot)
mccoderoot = args.mccoderoot # use non-default mccode system install location
limit = args.limit # only test the first [limit] instruments (useful for debugging purposes)
instrfilter = args.instr # test only matching instrs
suffix=""
# set modifications first
if verbose:
logging.basicConfig(level=logging.DEBUG, format="%(message)s")
else:
logging.basicConfig(level=logging.INFO, format="%(message)s")
if not testdir:
if not testroot:
testroot = os.path.join(os.getcwd(),mccode_config.configuration["MCCODE"]+"-test")
testdir = create_datetime_testdir(testroot)
logging.info("Output of test will be placed in: %s" % testdir)
if not mccoderoot:
# Figure out "mccoderoot" location from calling local mc/mcxrunxs
if shutil.which(mccode_config.configuration["MCRUN"]) is not None:
if (verbose):
print("Probing " + mccode_config.configuration["MCRUN"] + " --showcfg=resourcedir for 'mccoderoot'")
metalog = LineLogger()
utils.run_subtool_to_completion(mccode_config.configuration["MCRUN"] + " --showcfg=resourcedir", stdout_cb=metalog.logline)
mccoderoot=metalog.lst[0]
# Probe environment variable
MCCODE = mccode_config.configuration["MCCODE"].upper()
if os.environ[MCCODE] is not None:
if (verbose):
print("Probing " + MCCODE + " env var for 'mccoderoot'")
mccoderoot=os.environ[MCCODE]
# Fallback attempt
if not mccoderoot:
if (verbose):
print("Using fallback value /usr/share/mcstas for 'mccoderoot'")
mccoderoot = "/usr/share/mcstas/"
if not os.path.exists(mccoderoot):
logging.info("mccoderoot does not exist")
quit(1)
logging.debug("Using mccode root: %s" % mccoderoot)
if limit:
try:
limit = int(args.limit[0])
except:
logging.info("--limit must be a number")
quit(1)
logging.debug("")
global ncount, mpi, skipnontest, openacc, nexus
if args.ncount:
ncount = args.ncount[0]
elif args.n:
ncount = args.n[0]
else:
ncount = "1e6"
suffix = '_' + ncount
if instrfilter:
suffix = '_' + instrfilter
if args.suffix:
suffix = '_' + args.suffix[0]
suffix=suffix + "_" + platform.system()
logging.info("ncount is: %s" % ncount)
if args.mpi:
mpi = args.mpi[0]
logging.info("mpi count is: %s" % mpi)
suffix = '_mpi_x_' + str(mpi) + suffix
if args.openacc:
openacc = True
logging.info("openacc is enabled")
suffix = '_openacc' + suffix
if args.nexus:
nexus = True
suffix = '_NeXus' + suffix
logging.info("NeXus compilation / output format is enabled")
# decide and run main branch
if version and configs or version and vinfo or configs and vinfo:
print("WARNING: version, --configs and --versions are mutually exclusive, exiting")
quit()
default = not version and not configs and not vinfo
if default:
run_default_test(testdir, mccoderoot, limit, instrfilter, suffix)
elif version:
run_version_test(testdir, mccoderoot, limit, instrfilter, version, suffix)
elif configs:
run_config_test(testdir, mccoderoot, limit, configfilter, instrfilter, suffix)
elif vinfo:
show_installed_versions(mccoderoot)
if __name__ == '__main__':
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('testversion', nargs="?", help='mccode version to test')
parser.add_argument('--ncount', nargs=1, help='ncount sent to %s' % (mccode_config.configuration["MCRUN"]) )
parser.add_argument('-n', nargs=1, help='ncount sent to %s' % (mccode_config.configuration["MCRUN"]) )
parser.add_argument('--mpi', nargs=1, help='mpi nodecount sent to %s' % (mccode_config.configuration["MCRUN"]) )
parser.add_argument('--openacc', action='store_true', help='openacc flag sent to %s' % (mccode_config.configuration["MCRUN"]))
parser.add_argument('--config', nargs="?", help='test this specific config only - label name or absolute path')
parser.add_argument('--instr', nargs="?", help='test only intruments matching this filter (py regex)')
parser.add_argument('--mccoderoot', nargs='?', help='manually select root search folder for mccode installations')
parser.add_argument('--testroot', nargs='?', help='output test results in a datetime folder in this root')
parser.add_argument('--testdir', nargs='?', help='output test results directly in this dir (overrides testroot)')
parser.add_argument('--limit', nargs=1, help='test only the first [LIMIT] instrs in every version')
parser.add_argument('--versions', action='store_true', help='display local versions info')
parser.add_argument('--verbose', action='store_true', help='output a test/notest instrument status header before each test')
parser.add_argument('--skipnontest', action='store_true', help='Skip compilation of instruments without a test')
parser.add_argument('--suffix', nargs=1, help='Add suffix to test directory name, e.g. 3.x-dev_suffix')
parser.add_argument('--nexus', action='store_true', help='Compile for / use NeXus output format everywhere')
args = parser.parse_args()
try:
main(args)
except KeyboardInterrupt:
print()
|