Commit 9e25b6f5 authored by David S. Miller's avatar David S. Miller

Merge branch 'tools-tc-testing-better-error-reporting'

Brenda J. Butler says:

====================
tools: tc-testing: better error reporting

This patch set contains a bit of cleanup and better error reporting,
esp. in pre- and post-suite, and pre- and post-case commands.
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 9baeb5eb f9b63a1c
...@@ -15,6 +15,7 @@ import importlib ...@@ -15,6 +15,7 @@ import importlib
import json import json
import subprocess import subprocess
import time import time
import traceback
from collections import OrderedDict from collections import OrderedDict
from string import Template from string import Template
...@@ -23,6 +24,13 @@ from tdc_helper import * ...@@ -23,6 +24,13 @@ from tdc_helper import *
import TdcPlugin import TdcPlugin
class PluginMgrTestFail(Exception):
def __init__(self, stage, output, message):
self.stage = stage
self.output = output
self.message = message
class PluginMgr: class PluginMgr:
def __init__(self, argparser): def __init__(self, argparser):
super().__init__() super().__init__()
...@@ -135,7 +143,7 @@ def exec_cmd(args, pm, stage, command): ...@@ -135,7 +143,7 @@ def exec_cmd(args, pm, stage, command):
return proc, foutput return proc, foutput
def prepare_env(args, pm, stage, prefix, cmdlist): def prepare_env(args, pm, stage, prefix, cmdlist, output = None):
""" """
Execute the setup/teardown commands for a test case. Execute the setup/teardown commands for a test case.
Optionally terminate test execution if the command fails. Optionally terminate test execution if the command fails.
...@@ -164,7 +172,9 @@ def prepare_env(args, pm, stage, prefix, cmdlist): ...@@ -164,7 +172,9 @@ def prepare_env(args, pm, stage, prefix, cmdlist):
print("\n{} *** Aborting test run.".format(prefix), file=sys.stderr) print("\n{} *** Aborting test run.".format(prefix), file=sys.stderr)
print("\n\n{} *** stdout ***".format(proc.stdout), file=sys.stderr) print("\n\n{} *** stdout ***".format(proc.stdout), file=sys.stderr)
print("\n\n{} *** stderr ***".format(proc.stderr), file=sys.stderr) print("\n\n{} *** stderr ***".format(proc.stderr), file=sys.stderr)
raise Exception('"{}" did not complete successfully'.format(prefix)) raise PluginMgrTestFail(
stage, output,
'"{}" did not complete successfully'.format(prefix))
def run_one_test(pm, args, index, tidx): def run_one_test(pm, args, index, tidx):
result = True result = True
...@@ -194,9 +204,12 @@ def run_one_test(pm, args, index, tidx): ...@@ -194,9 +204,12 @@ def run_one_test(pm, args, index, tidx):
match_pattern = re.compile( match_pattern = re.compile(
str(tidx["matchPattern"]), re.DOTALL | re.MULTILINE) str(tidx["matchPattern"]), re.DOTALL | re.MULTILINE)
(p, procout) = exec_cmd(args, pm, 'verify', tidx["verifyCmd"]) (p, procout) = exec_cmd(args, pm, 'verify', tidx["verifyCmd"])
if procout:
match_index = re.findall(match_pattern, procout) match_index = re.findall(match_pattern, procout)
if len(match_index) != int(tidx["matchCount"]): if len(match_index) != int(tidx["matchCount"]):
result = False result = False
elif int(tidx["matchCount"]) != 0:
result = False
if not result: if not result:
tresult += 'not ' tresult += 'not '
...@@ -204,9 +217,12 @@ def run_one_test(pm, args, index, tidx): ...@@ -204,9 +217,12 @@ def run_one_test(pm, args, index, tidx):
tap += tresult tap += tresult
if result == False: if result == False:
if procout:
tap += procout tap += procout
else:
tap += 'No output!\n'
prepare_env(args, pm, 'teardown', '-----> teardown stage', tidx['teardown']) prepare_env(args, pm, 'teardown', '-----> teardown stage', tidx['teardown'], procout)
pm.call_post_case() pm.call_post_case()
index += 1 index += 1
...@@ -227,30 +243,70 @@ def test_runner(pm, args, filtered_tests): ...@@ -227,30 +243,70 @@ def test_runner(pm, args, filtered_tests):
index = 1 index = 1
tap = str(index) + ".." + str(tcount) + "\n" tap = str(index) + ".." + str(tcount) + "\n"
badtest = None badtest = None
stage = None
emergency_exit = False
emergency_exit_message = ''
try:
pm.call_pre_suite(tcount, [tidx['id'] for tidx in testlist]) pm.call_pre_suite(tcount, [tidx['id'] for tidx in testlist])
except Exception as ee:
ex_type, ex, ex_tb = sys.exc_info()
print('Exception {} {} (caught in pre_suite).'.
format(ex_type, ex))
# when the extra print statements are uncommented,
# the traceback does not appear between them
# (it appears way earlier in the tdc.py output)
# so don't bother ...
# print('--------------------(')
# print('traceback')
traceback.print_tb(ex_tb)
# print('--------------------)')
emergency_exit_message = 'EMERGENCY EXIT, call_pre_suite failed with exception {} {}\n'.format(ex_type, ex)
emergency_exit = True
stage = 'pre-SUITE'
if emergency_exit:
pm.call_post_suite(index)
return emergency_exit_message
if args.verbose > 1: if args.verbose > 1:
print('Run tests here') print('give test rig 2 seconds to stabilize')
time.sleep(2)
for tidx in testlist: for tidx in testlist:
if "flower" in tidx["category"] and args.device == None: if "flower" in tidx["category"] and args.device == None:
if args.verbose > 1:
print('Not executing test {} {} because DEV2 not defined'.
format(tidx['id'], tidx['name']))
continue continue
try: try:
badtest = tidx # in case it goes bad badtest = tidx # in case it goes bad
tap += run_one_test(pm, args, index, tidx) tap += run_one_test(pm, args, index, tidx)
except Exception as ee: except PluginMgrTestFail as pmtf:
print('Exception {} (caught in test_runner, running test {} {} {})'. ex_type, ex, ex_tb = sys.exc_info()
format(ee, index, tidx['id'], tidx['name'])) stage = pmtf.stage
message = pmtf.message
output = pmtf.output
print(message)
print('Exception {} {} (caught in test_runner, running test {} {} {} stage {})'.
format(ex_type, ex, index, tidx['id'], tidx['name'], stage))
print('---------------')
print('traceback')
traceback.print_tb(ex_tb)
print('---------------')
if stage == 'teardown':
print('accumulated output for this test:')
if pmtf.output:
print(pmtf.output)
print('---------------')
break break
index += 1 index += 1
# if we failed in setup or teardown, # if we failed in setup or teardown,
# fill in the remaining tests with not ok # fill in the remaining tests with ok-skipped
count = index count = index
tap += 'about to flush the tap output if tests need to be skipped\n' tap += 'about to flush the tap output if tests need to be skipped\n'
if tcount + 1 != index: if tcount + 1 != index:
for tidx in testlist[index - 1:]: for tidx in testlist[index - 1:]:
msg = 'skipped - previous setup or teardown failed' msg = 'skipped - previous {} failed'.format(stage)
tap += 'ok {} - {} # {} {} {}\n'.format( tap += 'ok {} - {} # {} {} {}\n'.format(
count, tidx['id'], msg, index, badtest.get('id', '--Unknown--')) count, tidx['id'], msg, index, badtest.get('id', '--Unknown--'))
count += 1 count += 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment