Merge pull request #10431 from miri64/dist/enh/testcase-testrunner-wrapper
dist/pythonlibs: provide unittest TestCase wrapper for testrunner
This commit is contained in:
commit
cfee6faf57
57
dist/pythonlibs/testrunner/__init__.py
vendored
57
dist/pythonlibs/testrunner/__init__.py
vendored
@ -1,4 +1,5 @@
|
|||||||
# Copyright (C) 2017 Cenk Gündoğan <cenk.guendogan@haw-hamburg.de>
|
# Copyright (C) 2018-19 Freie Universität Berlin
|
||||||
|
# 2017 Cenk Gündoğan <cenk.guendogan@haw-hamburg.de>
|
||||||
# 2016 Kaspar Schleiser <kaspar@schleiser.de>
|
# 2016 Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
# 2014 Martine Lenders <mlenders@inf.fu-berlin.de>
|
# 2014 Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||||
#
|
#
|
||||||
@ -7,51 +8,17 @@
|
|||||||
# directory for more details.
|
# directory for more details.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import signal
|
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
from traceback import print_tb
|
||||||
import time
|
|
||||||
from traceback import extract_tb, print_tb
|
|
||||||
|
|
||||||
import pexpect
|
import pexpect
|
||||||
|
|
||||||
PEXPECT_PATH = os.path.dirname(pexpect.__file__)
|
from .spawn import find_exc_origin, setup_child, teardown_child
|
||||||
RIOTBASE = (os.environ.get('RIOTBASE') or
|
from .unittest import PexpectTestCase # noqa, F401 expose to users
|
||||||
os.path.abspath(os.path.join(os.path.dirname(__file__),
|
|
||||||
"..", "..", "..")))
|
|
||||||
|
|
||||||
# Setting an empty 'TESTRUNNER_START_DELAY' environment variable use the
|
|
||||||
# default value (3)
|
|
||||||
MAKE_TERM_STARTED_DELAY = int(os.environ.get('TESTRUNNER_START_DELAY') or 3)
|
|
||||||
|
|
||||||
|
|
||||||
def list_until(l, cond):
|
|
||||||
return l[:([i for i, e in enumerate(l) if cond(e)][0])]
|
|
||||||
|
|
||||||
|
|
||||||
def find_exc_origin(exc_info):
|
|
||||||
pos = list_until(extract_tb(exc_info),
|
|
||||||
lambda frame: frame[0].startswith(PEXPECT_PATH)
|
|
||||||
)[-1]
|
|
||||||
return (pos[3], os.path.relpath(os.path.abspath(pos[0]), RIOTBASE), pos[1])
|
|
||||||
|
|
||||||
|
|
||||||
def run(testfunc, timeout=10, echo=True, traceback=False):
|
def run(testfunc, timeout=10, echo=True, traceback=False):
|
||||||
env = os.environ.copy()
|
child = setup_child(timeout, env=os.environ,
|
||||||
child = pexpect.spawnu("make term", env=env, timeout=timeout, codec_errors='replace')
|
logfile=sys.stdout if echo else None)
|
||||||
|
|
||||||
# on many platforms, the termprog needs a short while to be ready...
|
|
||||||
time.sleep(MAKE_TERM_STARTED_DELAY)
|
|
||||||
|
|
||||||
if echo:
|
|
||||||
child.logfile = sys.stdout
|
|
||||||
|
|
||||||
try:
|
|
||||||
subprocess.check_output(('make', 'reset'), env=env,
|
|
||||||
stderr=subprocess.PIPE)
|
|
||||||
except subprocess.CalledProcessError:
|
|
||||||
# make reset yields error on some boards even if successful
|
|
||||||
pass
|
|
||||||
try:
|
try:
|
||||||
testfunc(child)
|
testfunc(child)
|
||||||
except pexpect.TIMEOUT:
|
except pexpect.TIMEOUT:
|
||||||
@ -62,16 +29,12 @@ def run(testfunc, timeout=10, echo=True, traceback=False):
|
|||||||
return 1
|
return 1
|
||||||
except pexpect.EOF:
|
except pexpect.EOF:
|
||||||
trace = find_exc_origin(sys.exc_info()[2])
|
trace = find_exc_origin(sys.exc_info()[2])
|
||||||
print("Unexpected end of file in expect script at \"%s\" (%s:%d)" % trace)
|
print("Unexpected end of file in expect script at \"%s\" (%s:%d)" %
|
||||||
|
trace)
|
||||||
if traceback:
|
if traceback:
|
||||||
print_tb(sys.exc_info()[2])
|
print_tb(sys.exc_info()[2])
|
||||||
return 1
|
return 1
|
||||||
finally:
|
finally:
|
||||||
print("")
|
print("")
|
||||||
try:
|
teardown_child(child)
|
||||||
os.killpg(os.getpgid(child.pid), signal.SIGKILL)
|
|
||||||
except ProcessLookupError:
|
|
||||||
print("Process already stopped")
|
|
||||||
|
|
||||||
child.close()
|
|
||||||
return 0
|
return 0
|
||||||
|
|||||||
62
dist/pythonlibs/testrunner/spawn.py
vendored
Normal file
62
dist/pythonlibs/testrunner/spawn.py
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
# Copyright (C) 2018-19 Freie Universität Berlin
|
||||||
|
# 2017 Cenk Gündoğan <cenk.guendogan@haw-hamburg.de>
|
||||||
|
# 2016 Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
# 2014 Martine Lenders <mlenders@inf.fu-berlin.de>
|
||||||
|
#
|
||||||
|
# This file is subject to the terms and conditions of the GNU Lesser
|
||||||
|
# General Public License v2.1. See the file LICENSE in the top level
|
||||||
|
# directory for more details.
|
||||||
|
|
||||||
|
import os
|
||||||
|
import pexpect
|
||||||
|
import signal
|
||||||
|
import subprocess
|
||||||
|
import time
|
||||||
|
from traceback import extract_tb
|
||||||
|
|
||||||
|
PEXPECT_PATH = os.path.dirname(pexpect.__file__)
|
||||||
|
RIOTBASE = (os.environ.get('RIOTBASE') or
|
||||||
|
os.path.abspath(os.path.join(os.path.dirname(__file__),
|
||||||
|
"..", "..", "..")))
|
||||||
|
|
||||||
|
# Setting an empty 'TESTRUNNER_START_DELAY' environment variable use the
|
||||||
|
# default value (3)
|
||||||
|
MAKE_TERM_STARTED_DELAY = int(os.environ.get('TESTRUNNER_START_DELAY') or 3)
|
||||||
|
|
||||||
|
|
||||||
|
def list_until(l, cond):
|
||||||
|
return l[:([i for i, e in enumerate(l) if cond(e)][0])]
|
||||||
|
|
||||||
|
|
||||||
|
def find_exc_origin(exc_info):
|
||||||
|
pos = list_until(extract_tb(exc_info),
|
||||||
|
lambda frame: frame[0].startswith(PEXPECT_PATH)
|
||||||
|
)[-1]
|
||||||
|
return (pos[3], os.path.relpath(os.path.abspath(pos[0]), RIOTBASE), pos[1])
|
||||||
|
|
||||||
|
|
||||||
|
def setup_child(timeout=10, spawnclass=pexpect.spawnu, env=None, logfile=None):
|
||||||
|
child = spawnclass("make term", env=env, timeout=timeout,
|
||||||
|
codec_errors='replace')
|
||||||
|
|
||||||
|
# on many platforms, the termprog needs a short while to be ready...
|
||||||
|
time.sleep(MAKE_TERM_STARTED_DELAY)
|
||||||
|
|
||||||
|
child.logfile = logfile
|
||||||
|
|
||||||
|
try:
|
||||||
|
subprocess.check_output(('make', 'reset'), env=env,
|
||||||
|
stderr=subprocess.PIPE)
|
||||||
|
except subprocess.CalledProcessError:
|
||||||
|
# make reset yields error on some boards even if successful
|
||||||
|
pass
|
||||||
|
return child
|
||||||
|
|
||||||
|
|
||||||
|
def teardown_child(child):
|
||||||
|
try:
|
||||||
|
os.killpg(os.getpgid(child.pid), signal.SIGKILL)
|
||||||
|
except ProcessLookupError:
|
||||||
|
print("Process already stopped")
|
||||||
|
|
||||||
|
child.close()
|
||||||
23
dist/pythonlibs/testrunner/unittest.py
vendored
Normal file
23
dist/pythonlibs/testrunner/unittest.py
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Copyright (C) 2018-19 Freie Universität Berlin
|
||||||
|
#
|
||||||
|
# This file is subject to the terms and conditions of the GNU Lesser
|
||||||
|
# General Public License v2.1. See the file LICENSE in the top level
|
||||||
|
# directory for more details.
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
from testrunner import setup_child, teardown_child
|
||||||
|
|
||||||
|
|
||||||
|
class PexpectTestCase(unittest.TestCase):
|
||||||
|
TIMEOUT = 10
|
||||||
|
LOGFILE = None
|
||||||
|
|
||||||
|
"""A unittest TestCase providing a pexpect spawn object to it's tests
|
||||||
|
"""
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
cls.spawn = setup_child(cls.TIMEOUT, logfile=cls.LOGFILE)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def tearDownClass(cls):
|
||||||
|
teardown_child(cls.spawn)
|
||||||
Loading…
x
Reference in New Issue
Block a user