salt/tests/runtests.py

142 lines
4.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
'''
Discover all instances of unittest.TestCase in this directory.
'''
# Import python libs
2012-05-05 11:53:39 +00:00
import sys
import os
import optparse
2012-02-12 09:58:15 +00:00
# Import salt libs
2012-02-12 23:03:31 +00:00
import saltunittest
from integration import TestDaemon
2012-02-12 09:58:15 +00:00
2012-02-12 23:03:31 +00:00
TEST_DIR = os.path.dirname(os.path.normpath(os.path.abspath(__file__)))
2012-04-04 16:58:11 +00:00
PNUM = 50
def run_integration_tests(opts):
'''
Execute the integration tests suite
'''
2012-04-20 19:13:02 +00:00
print('~' * PNUM)
print('Setting up Salt daemons to execute tests')
print('~' * PNUM)
2012-05-05 11:53:39 +00:00
status = []
with TestDaemon():
if opts.module:
moduleloader = saltunittest.TestLoader()
moduletests = moduleloader.discover(
os.path.join(TEST_DIR, 'integration', 'modules'),
'*.py'
)
2012-04-20 19:13:02 +00:00
print('~' * PNUM)
print('Starting Module Tests')
print('~' * PNUM)
runner = saltunittest.TextTestRunner(verbosity=opts.verbosity).run(moduletests)
2012-05-05 11:53:39 +00:00
status.append(runner.wasSuccessful())
if opts.client:
clientloader = saltunittest.TestLoader()
clienttests = clientloader.discover(
os.path.join(TEST_DIR, 'integration', 'client'),
'*.py'
)
2012-04-20 19:13:02 +00:00
print('~' * PNUM)
print('Starting Client Tests')
print('~' * PNUM)
runner = saltunittest.TextTestRunner(verbosity=opts.verbosity).run(clienttests)
2012-05-05 11:53:39 +00:00
status.append(runner.wasSuccessful())
if opts.shell:
shellloader = saltunittest.TestLoader()
shelltests = shellloader.discover(
os.path.join(TEST_DIR, 'integration', 'shell'),
'*.py'
)
print('~' * PNUM)
print('Starting Shell Tests')
print('~' * PNUM)
runner = saltunittest.TextTestRunner(verbosity=opts.verbosity).run(shelltests)
2012-05-05 11:53:39 +00:00
status.append(runner.wasSuccessful())
return status
def run_unit_tests(opts):
'''
Execute the unit tests
'''
if not opts.unit:
return [True]
2012-05-05 11:53:39 +00:00
status = []
loader = saltunittest.TestLoader()
tests = loader.discover(os.path.join(TEST_DIR, 'unit'), '*_test.py')
2012-04-20 19:13:02 +00:00
print('~' * PNUM)
print('Starting Unit Tests')
print('~' * PNUM)
runner = saltunittest.TextTestRunner(verbosity=opts.verbosity).run(tests)
2012-05-05 11:53:39 +00:00
status.append(runner.wasSuccessful())
return status
def parse_opts():
'''
Parse command line options for running specific tests
'''
parser = optparse.OptionParser()
parser.add_option('-m',
'--module',
'--module-tests',
dest='module',
default=False,
action='store_true',
help='Run tests for modules')
parser.add_option('-c',
'--client',
'--client-tests',
dest='client',
default=False,
action='store_true',
help='Run tests for client')
parser.add_option('-s',
'--shell',
dest='shell',
default=False,
action='store_true',
help='Run shell tests')
parser.add_option('-u',
'--unit',
'--unit-tests',
dest='unit',
default=False,
action='store_true',
help='Run unit tests')
parser.add_option('-v',
'--verbose',
dest='verbosity',
default=1,
action='count',
help='Verbose test runner output')
options, args = parser.parse_args()
if all((not options.module, not options.client,
not options.shell, not options.unit)):
options.module = True
options.client = True
options.shell = True
options.unit = True
return options
if __name__ == "__main__":
opts = parse_opts()
2012-05-05 11:53:39 +00:00
overall_status = []
status = run_integration_tests(opts)
overall_status.extend(status)
status = run_unit_tests(opts)
overall_status.extend(status)
false_count = overall_status.count(False)
if false_count > 0:
sys.exit(1)
else:
sys.exit(0)