blob: f34c3838f77d90142882210292d08deab3f3026d [file] [log] [blame]
mbligh1ee9ad72008-08-01 16:15:08 +00001#!/usr/bin/python -u
mblighf9751332008-04-08 18:25:33 +00002
mbligheeb13572008-07-30 00:04:01 +00003import os, sys, unittest, optparse
mblighdc906012008-06-27 19:29:11 +00004import common
mbligheeb13572008-07-30 00:04:01 +00005from autotest_lib.utils import parallel
mbligh5f554842009-12-21 21:50:18 +00006from autotest_lib.client.common_lib.test_utils import unittest as custom_unittest
mbligheeb13572008-07-30 00:04:01 +00007
mbligheeb13572008-07-30 00:04:01 +00008parser = optparse.OptionParser()
9parser.add_option("-r", action="store", type="string", dest="start",
10 default='',
11 help="root directory to start running unittests")
12parser.add_option("--full", action="store_true", dest="full", default=False,
13 help="whether to run the shortened version of the test")
mbligh43758df2008-09-04 19:54:45 +000014parser.add_option("--debug", action="store_true", dest="debug", default=False,
15 help="run in debug mode")
jamesren74e77fc2010-02-19 21:56:39 +000016parser.add_option("--skip-tests", dest="skip_tests", default=[],
17 help="A space separated list of tests to skip")
18
Eric Li861b2d52011-02-04 14:50:35 -080019parser.set_defaults(module_list=None)
20
mblighf9751332008-04-08 18:25:33 +000021
jamesren92c18592010-02-25 19:10:32 +000022REQUIRES_DJANGO = set((
23 'monitor_db_unittest.py',
24 'monitor_db_functional_test.py',
25 'monitor_db_cleanup_test.py',
26 'frontend_unittest.py',
27 'csv_encoder_unittest.py',
28 'rpc_interface_unittest.py',
29 'models_test.py',
30 'scheduler_models_unittest.py',
31 'metahost_scheduler_unittest.py',
32 'site_metahost_scheduler_unittest.py',
33 'rpc_utils_unittest.py',
jamesren37dfa9d2010-04-12 18:24:31 +000034 'site_rpc_utils_unittest.py',
jamesren14681352010-04-09 20:46:09 +000035 'execution_engine_unittest.py',
jamesrencd7a81a2010-04-21 20:39:08 +000036 'service_proxy_lib_test.py',
jamesren92c18592010-02-25 19:10:32 +000037 ))
38
39REQUIRES_MYSQLDB = set((
40 'migrate_unittest.py',
41 'db_utils_unittest.py',
42 ))
43
44REQUIRES_GWT = set((
jamesren12c9fdd2010-03-02 00:00:39 +000045 'client_compilation_unittest.py',
jamesren92c18592010-02-25 19:10:32 +000046 ))
47
48REQUIRES_SIMPLEJSON = set((
49 'resources_test.py',
50 'serviceHandler_unittest.py',
51 ))
52
jamesren6461fff2010-04-06 23:33:05 +000053REQUIRES_AUTH = set ((
54 'trigger_unittest.py',
55 ))
56
jamesren37dfa9d2010-04-12 18:24:31 +000057REQUIRES_HTTPLIB2 = set((
58 ))
59
jamesren34a0f3b2010-06-08 20:38:27 +000060REQUIRES_PROTOBUFS = set((
61 'job_serializer_unittest.py',
62 ))
63
jamesren92c18592010-02-25 19:10:32 +000064LONG_RUNTIME = set((
Alex Miller13b83c52013-02-14 16:07:34 -080065 'auth_server_unittest.py',
mbligh999fb132010-04-23 17:22:03 +000066 'base_barrier_unittest.py',
showardef1edaf2009-07-01 22:21:30 +000067 'logging_manager_test.py',
mbligh671c5922008-07-28 19:34:38 +000068 ))
69
Aviv Keshet78b05952013-02-13 14:37:37 -080070
Eric Li861b2d52011-02-04 14:50:35 -080071SKIP = set((
Aviv Keshet78b05952013-02-13 14:37:37 -080072 # This particular KVM autotest test is not a unittest
Eric Li861b2d52011-02-04 14:50:35 -080073 'guest_test.py',
Aviv Keshet78b05952013-02-13 14:37:37 -080074 'ap_configurator_test.py'
Eric Li861b2d52011-02-04 14:50:35 -080075 ))
76
jamesren92c18592010-02-25 19:10:32 +000077LONG_TESTS = (REQUIRES_DJANGO |
78 REQUIRES_MYSQLDB |
79 REQUIRES_GWT |
80 REQUIRES_SIMPLEJSON |
jamesren37dfa9d2010-04-12 18:24:31 +000081 REQUIRES_HTTPLIB2 |
jamesren6461fff2010-04-06 23:33:05 +000082 REQUIRES_AUTH |
jamesren34a0f3b2010-06-08 20:38:27 +000083 REQUIRES_PROTOBUFS |
jamesren92c18592010-02-25 19:10:32 +000084 LONG_RUNTIME)
85
jamesren74e77fc2010-02-19 21:56:39 +000086
mbligh780fa7f2009-07-02 19:01:53 +000087ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
mbligh671c5922008-07-28 19:34:38 +000088
mbligheeb13572008-07-30 00:04:01 +000089
Aviv Keshet78b05952013-02-13 14:37:37 -080090class TestFailure(Exception):
91 """Exception type for any test failure."""
92 pass
mbligh671c5922008-07-28 19:34:38 +000093
94
mbligh780fa7f2009-07-02 19:01:53 +000095def run_test(mod_names, options):
96 """
97 @param mod_names: A list of individual parts of the module name to import
98 and run as a test suite.
99 @param options: optparse options.
100 """
mbligh43758df2008-09-04 19:54:45 +0000101 if not options.debug:
mbligheeb13572008-07-30 00:04:01 +0000102 parallel.redirect_io()
103
mbligh780fa7f2009-07-02 19:01:53 +0000104 print "Running %s" % '.'.join(mod_names)
105 mod = common.setup_modules.import_module(mod_names[-1],
106 '.'.join(mod_names[:-1]))
mbligh5f554842009-12-21 21:50:18 +0000107 for ut_module in [unittest, custom_unittest]:
108 test = ut_module.defaultTestLoader.loadTestsFromModule(mod)
109 suite = ut_module.TestSuite(test)
110 runner = ut_module.TextTestRunner(verbosity=2)
111 result = runner.run(suite)
112 if result.errors or result.failures:
113 msg = '%s had %d failures and %d errors.'
114 msg %= '.'.join(mod_names), len(result.failures), len(result.errors)
115 raise TestFailure(msg)
mbligh671c5922008-07-28 19:34:38 +0000116
117
Eric Li861b2d52011-02-04 14:50:35 -0800118def scan_for_modules(start, options):
Aviv Keshet78b05952013-02-13 14:37:37 -0800119 """Scan folders and find all test modules.
120 @param start: The absolute directory to look for tests under.
121 @param options: optparse options.
122 @return a list of modules to be executed.
123 """
mbligh780fa7f2009-07-02 19:01:53 +0000124 modules = []
Eric Li861b2d52011-02-04 14:50:35 -0800125
126 skip_tests = SKIP
jamesren74e77fc2010-02-19 21:56:39 +0000127 if options.skip_tests:
128 skip_tests.update(options.skip_tests.split())
mbligh780fa7f2009-07-02 19:01:53 +0000129
130 for dirpath, subdirs, filenames in os.walk(start):
131 # Only look in and below subdirectories that are python modules.
132 if '__init__.py' not in filenames:
mbligha64df1a2009-09-18 16:54:39 +0000133 if options.full:
134 for filename in filenames:
135 if filename.endswith('.pyc'):
136 os.unlink(os.path.join(dirpath, filename))
mbligh780fa7f2009-07-02 19:01:53 +0000137 # Skip all subdirectories below this one, it is not a module.
138 del subdirs[:]
139 if options.debug:
140 print 'Skipping', dirpath
141 continue # Skip this directory.
142
143 # Look for unittest files.
144 for fname in filenames:
145 if fname.endswith('_unittest.py') or fname.endswith('_test.py'):
146 if not options.full and fname in LONG_TESTS:
147 continue
jamesren74e77fc2010-02-19 21:56:39 +0000148 if fname in skip_tests:
149 continue
mbligh780fa7f2009-07-02 19:01:53 +0000150 path_no_py = os.path.join(dirpath, fname).rstrip('.py')
151 assert path_no_py.startswith(ROOT)
152 names = path_no_py[len(ROOT)+1:].split('/')
153 modules.append(['autotest_lib'] + names)
154 if options.debug:
155 print 'testing', path_no_py
Eric Li861b2d52011-02-04 14:50:35 -0800156 return modules
157
158def find_and_run_tests(start, options):
159 """
160 Find and run Python unittest suites below the given directory. Only look
161 in subdirectories of start that are actual importable Python modules.
162
163 @param start: The absolute directory to look for tests under.
164 @param options: optparse options.
165 """
166 if options.module_list:
167 modules = []
168 for m in options.module_list:
169 modules.append(m.split('.'))
170 else:
171 modules = scan_for_modules(start, options)
mbligh780fa7f2009-07-02 19:01:53 +0000172
173 if options.debug:
174 print 'Number of test modules found:', len(modules)
mbligh671c5922008-07-28 19:34:38 +0000175
showardcc85e812008-08-08 20:33:30 +0000176 functions = {}
mbligh780fa7f2009-07-02 19:01:53 +0000177 for module_names in modules:
mbligheeb13572008-07-30 00:04:01 +0000178 # Create a function that'll test a particular module. module=module
179 # is a hack to force python to evaluate the params now. We then
180 # rename the function to make error reporting nicer.
mbligh780fa7f2009-07-02 19:01:53 +0000181 run_module = lambda module=module_names: run_test(module, options)
182 name = '.'.join(module_names)
showardcc85e812008-08-08 20:33:30 +0000183 run_module.__name__ = name
showardcc85e812008-08-08 20:33:30 +0000184 functions[run_module] = set()
185
mbligheeb13572008-07-30 00:04:01 +0000186 try:
187 dargs = {}
mbligh43758df2008-09-04 19:54:45 +0000188 if options.debug:
mbligheeb13572008-07-30 00:04:01 +0000189 dargs['max_simultaneous_procs'] = 1
190 pe = parallel.ParallelExecute(functions, **dargs)
191 pe.run_until_completion()
192 except parallel.ParallelError, err:
193 return err.errors
194 return []
mblighf9751332008-04-08 18:25:33 +0000195
196
mbligheeb13572008-07-30 00:04:01 +0000197def main():
Aviv Keshet78b05952013-02-13 14:37:37 -0800198 """Entry point for unittest_suite.py"""
mbligheeb13572008-07-30 00:04:01 +0000199 options, args = parser.parse_args()
200 if args:
Eric Li861b2d52011-02-04 14:50:35 -0800201 options.module_list = args
mbligh671c5922008-07-28 19:34:38 +0000202
showardcc85e812008-08-08 20:33:30 +0000203 # Strip the arguments off the command line, so that the unit tests do not
204 # see them.
mbligh780fa7f2009-07-02 19:01:53 +0000205 del sys.argv[1:]
showardcc85e812008-08-08 20:33:30 +0000206
mbligh780fa7f2009-07-02 19:01:53 +0000207 absolute_start = os.path.join(ROOT, options.start)
208 errors = find_and_run_tests(absolute_start, options)
mbligh671c5922008-07-28 19:34:38 +0000209 if errors:
210 print "%d tests resulted in an error/failure:" % len(errors)
211 for error in errors:
212 print "\t%s" % error
mbligh780fa7f2009-07-02 19:01:53 +0000213 print "Rerun", sys.argv[0], "--debug to see the failure details."
mbligh671c5922008-07-28 19:34:38 +0000214 sys.exit(1)
215 else:
216 print "All passed!"
217 sys.exit(0)
mbligheeb13572008-07-30 00:04:01 +0000218
mbligh780fa7f2009-07-02 19:01:53 +0000219
mbligheeb13572008-07-30 00:04:01 +0000220if __name__ == "__main__":
221 main()