X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=bluval%2Fbluval.py;h=bcdc856c4eb3971fc0353c63c0463ad0d5a9aede;hb=be9fe2077b219a18e2b03fde3bf76aa3a999c12a;hp=7855816b5494d43bd3ca5520359ad097857b732e;hpb=c41b45763a6f550113dca6fe280daffcb04a0cb5;p=validation.git diff --git a/bluval/bluval.py b/bluval/bluval.py index 7855816..bcdc856 100644 --- a/bluval/bluval.py +++ b/bluval/bluval.py @@ -20,18 +20,40 @@ testcase """ import subprocess +import sys +import traceback from pathlib import Path + import click import yaml +from bluutil import BluvalError +from bluutil import ShowStopperError + +_OPTIONAL_ALSO = False + def run_testcase(testcase): """Runs a single testcase """ - show_stopper = testcase.get('show_stopper', False) + name = testcase.get('name') + skip = testcase.get('skip', "False") + optional = testcase.get('optional', "False") + if skip.lower() == "true": + # skip is mentioned and true. + print('Skipping {}'.format(name)) + return + print("_OPTIONAL_ALSO {}".format(_OPTIONAL_ALSO)) + if not _OPTIONAL_ALSO and optional.lower() == "true": + # Optional Test case. + print('Ignoring Optional {} testcase'.format(name)) + return + show_stopper = testcase.get('show_stopper', "False") what = testcase.get('what') mypath = Path(__file__).absolute() - results_path = mypath.parents[2].joinpath("results/"+testcase.get('layer')+"/"+what) - test_path = mypath.parents[1].joinpath("tests/"+testcase.get('layer')+"/"+what) + results_path = mypath.parents[2].joinpath( + "results/"+testcase.get('layer')+"/"+what) + test_path = mypath.parents[1].joinpath( + "tests/"+testcase.get('layer')+"/"+what) # add to the variables file the path to where to sotre the logs variables_file = mypath.parents[1].joinpath("tests/variables.yaml") @@ -40,20 +62,19 @@ def run_testcase(testcase): variables_file.write_text(str(variables_dict)) # run the test - args = ["robot", "-V", str(variables_file), "-d", str(results_path), str(test_path)] + args = ["robot", "-V", str(variables_file), "-d", + str(results_path), str(test_path)] - print('Executing testcase {}'.format(testcase['name'])) - print(' show_stopper {}'.format(show_stopper)) + print('Executing testcase {}'.format(name)) + print('show_stopper {}'.format(show_stopper)) print('Invoking {}'.format(args)) try: status = subprocess.call(args, shell=False) - if status != 0 and show_stopper: - print('Show stopper testcase failed') - return status + if status != 0 and show_stopper.lower() == "true": + raise ShowStopperError(name) except OSError: - print('Error while executing {}'.format(args)) - return -1 - return status + #print('Error while executing {}'.format(args)) + raise BluvalError(OSError) def validate_layer(blueprint, layer): @@ -69,28 +90,42 @@ def validate_blueprint(yaml_loc, layer): """Parse yaml file and validates given layer. If no layer given all layers validated """ - with open(yaml_loc) as yaml_file: + with open(str(yaml_loc)) as yaml_file: yamldoc = yaml.safe_load(yaml_file) blueprint = yamldoc['blueprint'] - if layer is None: - for each_layer in blueprint['layers']: - validate_layer(blueprint, each_layer) - else: - validate_layer(blueprint, layer) + validate_layer(blueprint, layer) @click.command() @click.argument('blueprint') @click.option('--layer', '-l') -def main(blueprint, layer): +@click.option('--optional_also', '-o', is_flag=True) +def main(blueprint, layer, optional_also): """Takes blueprint name and optional layer. Validates inputs and derives yaml location from blueprint name. Invokes validate on blue print. """ + global _OPTIONAL_ALSO # pylint: disable=global-statement mypath = Path(__file__).absolute() yaml_loc = mypath.parents[0].joinpath('bluval-{}.yaml'.format(blueprint)) if layer is not None: layer = layer.lower() - validate_blueprint(yaml_loc, layer) + if optional_also: + _OPTIONAL_ALSO = True + print("_OPTIONAL_ALSO {}".format(_OPTIONAL_ALSO)) + + try: + validate_blueprint(yaml_loc, layer) + except ShowStopperError as err: + print('ShowStopperError:', err) + except BluvalError as err: + print('Unexpected BluvalError', err) + raise + except: + print("Exception in user code:") + print("-"*60) + traceback.print_exc(file=sys.stdout) + print("-"*60) + raise if __name__ == "__main__":