core-admin/qubes/tests/run.py

220 lines
7.4 KiB
Python
Raw Normal View History

#!/usr/bin/python -O
2015-01-07 16:46:59 +01:00
import curses
import importlib
import sys
import unittest
test_order = [
'qubes.tests.events',
'qubes.tests.vm.init',
'qubes.tests.vm.qubesvm',
'qubes.tests.init'
]
sys.path.insert(1, '../../')
2015-01-07 16:46:59 +01:00
class ANSIColor(dict):
def __init__(self):
super(ANSIColor, self).__init__()
try:
curses.setupterm()
except curses.error:
return
self['black'] = curses.tparm(curses.tigetstr('setaf'), 0)
self['red'] = curses.tparm(curses.tigetstr('setaf'), 1)
self['green'] = curses.tparm(curses.tigetstr('setaf'), 2)
self['yellow'] = curses.tparm(curses.tigetstr('setaf'), 3)
self['blue'] = curses.tparm(curses.tigetstr('setaf'), 4)
self['magenta'] = curses.tparm(curses.tigetstr('setaf'), 5)
self['cyan'] = curses.tparm(curses.tigetstr('setaf'), 6)
self['white'] = curses.tparm(curses.tigetstr('setaf'), 7)
self['bold'] = curses.tigetstr('bold')
self['normal'] = curses.tigetstr('sgr0')
def __missing__(self, key):
return ''
class ANSITestResult(unittest.TestResult):
'''A test result class that can print colourful text results to a stream.
Used by TextTestRunner. This is a lightly rewritten unittest.TextTestResult.
'''
separator1 = unittest.TextTestResult.separator1
separator2 = unittest.TextTestResult.separator2
def __init__(self, stream, descriptions, verbosity):
super(ANSITestResult, self).__init__(stream, descriptions, verbosity)
self.stream = stream
self.showAll = verbosity > 1
self.dots = verbosity == 1
self.descriptions = descriptions
self.color = ANSIColor()
def _fmtexc(self, err):
s = str(err[1])
if s:
2015-01-13 22:35:10 +01:00
return '{color[bold]}{}:{color[normal]} {!s}'.format(
err[0].__name__, err[1], color=self.color)
2015-01-07 16:46:59 +01:00
else:
2015-01-13 22:35:10 +01:00
return '{color[bold]}{}{color[normal]}'.format(
err[0].__name__, color=self.color)
2015-01-07 16:46:59 +01:00
def getDescription(self, test):
teststr = str(test).split('/')
2015-01-13 22:35:10 +01:00
teststr[-1] = '{color[bold]}{}{color[normal]}'.format(
teststr[-1], color=self.color)
2015-01-07 16:46:59 +01:00
teststr = '/'.join(teststr)
doc_first_line = test.shortDescription()
if self.descriptions and doc_first_line:
return '\n'.join((teststr, ' {}'.format(
2015-01-13 22:35:10 +01:00
doc_first_line, color=self.color)))
2015-01-07 16:46:59 +01:00
else:
return teststr
def startTest(self, test):
super(ANSITestResult, self).startTest(test)
if self.showAll:
self.stream.write(self.getDescription(test))
self.stream.write(' ... ')
self.stream.flush()
def addSuccess(self, test):
super(ANSITestResult, self).addSuccess(test)
if self.showAll:
2015-01-13 22:35:10 +01:00
self.stream.writeln('{color[green]}ok{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
elif self.dots:
self.stream.write('.')
self.stream.flush()
def addError(self, test, err):
super(ANSITestResult, self).addError(test, err)
if self.showAll:
2015-01-13 22:35:10 +01:00
self.stream.writeln(
'{color[red]}{color[bold]}ERROR{color[normal]} ({})'.format(
self._fmtexc(err), color=self.color))
2015-01-07 16:46:59 +01:00
elif self.dots:
2015-01-13 22:35:10 +01:00
self.stream.write(
'{color[red]}{color[bold]}E{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
self.stream.flush()
def addFailure(self, test, err):
super(ANSITestResult, self).addFailure(test, err)
if self.showAll:
2015-01-13 22:35:10 +01:00
self.stream.writeln('{color[red]}FAIL{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
elif self.dots:
2015-01-13 22:35:10 +01:00
self.stream.write('{color[red]}F{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
self.stream.flush()
def addSkip(self, test, reason):
super(ANSITestResult, self).addSkip(test, reason)
if self.showAll:
2015-01-13 22:35:10 +01:00
self.stream.writeln(
'{color[cyan]}skipped{color[normal]} ({})'.format(
reason, color=self.color))
2015-01-07 16:46:59 +01:00
elif self.dots:
2015-01-13 22:35:10 +01:00
self.stream.write('{color[cyan]}s{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
self.stream.flush()
def addExpectedFailure(self, test, err):
super(ANSITestResult, self).addExpectedFailure(test, err)
if self.showAll:
2015-01-13 22:35:10 +01:00
self.stream.writeln(
'{color[yellow]}expected failure{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
elif self.dots:
2015-01-13 22:35:10 +01:00
self.stream.write('{color[yellow]}x{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
self.stream.flush()
def addUnexpectedSuccess(self, test):
super(ANSITestResult, self).addUnexpectedSuccess(test)
if self.showAll:
self.stream.writeln(
2015-01-13 22:35:10 +01:00
'{color[yellow]}{color[bold]}unexpected success{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
elif self.dots:
2015-01-13 22:35:10 +01:00
self.stream.write(
'{color[yellow]}{color[bold]}u{color[normal]}'.format(
color=self.color))
2015-01-07 16:46:59 +01:00
self.stream.flush()
def printErrors(self):
if self.dots or self.showAll:
self.stream.writeln()
self.printErrorList(
2015-01-13 22:35:10 +01:00
'{color[red]}{color[bold]}ERROR{color[normal]}'.format(
color=self.color),
self.errors)
2015-01-07 16:46:59 +01:00
self.printErrorList(
2015-01-13 22:35:10 +01:00
'{color[red]}FAIL{color[normal]}'.format(color=self.color),
self.failures)
2015-01-07 16:46:59 +01:00
def printErrorList(self, flavour, errors):
for test, err in errors:
self.stream.writeln(self.separator1)
self.stream.writeln('%s: %s' % (flavour,self.getDescription(test)))
self.stream.writeln(self.separator2)
self.stream.writeln('%s' % err)
def demo(verbosity=2):
import qubes.tests
class TC_Demo(qubes.tests.QubesTestCase):
'''Demo class'''
def test_0_success(self):
'''Demo test (success)'''
pass
def test_1_error(self):
'''Demo test (error)'''
raise Exception()
def test_2_failure(self):
'''Demo test (failure)'''
self.fail('boo')
def test_3_skip(self):
'''Demo test (skipped by call to self.skipTest())'''
self.skipTest('skip')
@unittest.skip(None)
def test_4_skip_decorator(self):
'''Demo test (skipped by decorator)'''
pass
@unittest.expectedFailure
def test_5_expected_failure(self):
'''Demo test (expected failure)'''
self.fail()
@unittest.expectedFailure
def test_6_unexpected_success(self):
'''Demo test (unexpected success)'''
pass
suite = unittest.TestLoader().loadTestsFromTestCase(TC_Demo)
runner = unittest.TextTestRunner(stream=sys.stdout, verbosity=verbosity)
runner.resultclass = ANSITestResult
return runner.run(suite).wasSuccessful()
def main():
suite = unittest.TestSuite()
loader = unittest.TestLoader()
for modname in test_order:
module = importlib.import_module(modname)
suite.addTests(loader.loadTestsFromModule(module))
2015-01-07 16:46:59 +01:00
runner = unittest.TextTestRunner(stream=sys.stdout, verbosity=2)
runner.resultclass = ANSITestResult
return runner.run(suite).wasSuccessful()
if __name__ == '__main__':
2015-01-07 16:46:59 +01:00
sys.exit(not main())