| mbligh | 1ee9ad7 | 2008-08-01 16:15:08 +0000 | [diff] [blame] | 1 | #!/usr/bin/python -u |
| mbligh | f975133 | 2008-04-08 18:25:33 +0000 | [diff] [blame] | 2 | |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 3 | import os, sys, unittest, optparse |
| mbligh | dc90601 | 2008-06-27 19:29:11 +0000 | [diff] [blame] | 4 | import common |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 5 | from autotest_lib.utils import parallel |
| mbligh | 5f55484 | 2009-12-21 21:50:18 +0000 | [diff] [blame] | 6 | from autotest_lib.client.common_lib.test_utils import unittest as custom_unittest |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 7 | |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 8 | parser = optparse.OptionParser() |
| 9 | parser.add_option("-r", action="store", type="string", dest="start", |
| 10 | default='', |
| 11 | help="root directory to start running unittests") |
| 12 | parser.add_option("--full", action="store_true", dest="full", default=False, |
| 13 | help="whether to run the shortened version of the test") |
| mbligh | 43758df | 2008-09-04 19:54:45 +0000 | [diff] [blame] | 14 | parser.add_option("--debug", action="store_true", dest="debug", default=False, |
| 15 | help="run in debug mode") |
| jamesren | 74e77fc | 2010-02-19 21:56:39 +0000 | [diff] [blame] | 16 | parser.add_option("--skip-tests", dest="skip_tests", default=[], |
| 17 | help="A space separated list of tests to skip") |
| 18 | |
| mbligh | f975133 | 2008-04-08 18:25:33 +0000 | [diff] [blame] | 19 | |
| jamesren | 92c1859 | 2010-02-25 19:10:32 +0000 | [diff] [blame] | 20 | REQUIRES_DJANGO = set(( |
| 21 | 'monitor_db_unittest.py', |
| 22 | 'monitor_db_functional_test.py', |
| 23 | 'monitor_db_cleanup_test.py', |
| 24 | 'frontend_unittest.py', |
| 25 | 'csv_encoder_unittest.py', |
| 26 | 'rpc_interface_unittest.py', |
| 27 | 'models_test.py', |
| 28 | 'scheduler_models_unittest.py', |
| 29 | 'metahost_scheduler_unittest.py', |
| 30 | 'site_metahost_scheduler_unittest.py', |
| 31 | 'rpc_utils_unittest.py', |
| jamesren | 1468135 | 2010-04-09 20:46:09 +0000 | [diff] [blame^] | 32 | 'site_rpc_utils_unittest.py' |
| 33 | 'execution_engine_unittest.py', |
| jamesren | 92c1859 | 2010-02-25 19:10:32 +0000 | [diff] [blame] | 34 | )) |
| 35 | |
| 36 | REQUIRES_MYSQLDB = set(( |
| 37 | 'migrate_unittest.py', |
| 38 | 'db_utils_unittest.py', |
| 39 | )) |
| 40 | |
| 41 | REQUIRES_GWT = set(( |
| jamesren | 12c9fdd | 2010-03-02 00:00:39 +0000 | [diff] [blame] | 42 | 'client_compilation_unittest.py', |
| jamesren | 92c1859 | 2010-02-25 19:10:32 +0000 | [diff] [blame] | 43 | )) |
| 44 | |
| 45 | REQUIRES_SIMPLEJSON = set(( |
| 46 | 'resources_test.py', |
| 47 | 'serviceHandler_unittest.py', |
| 48 | )) |
| 49 | |
| jamesren | 6461fff | 2010-04-06 23:33:05 +0000 | [diff] [blame] | 50 | REQUIRES_AUTH = set (( |
| 51 | 'trigger_unittest.py', |
| 52 | )) |
| 53 | |
| jamesren | 92c1859 | 2010-02-25 19:10:32 +0000 | [diff] [blame] | 54 | LONG_RUNTIME = set(( |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 55 | 'barrier_unittest.py', |
| showard | ef1edaf | 2009-07-01 22:21:30 +0000 | [diff] [blame] | 56 | 'logging_manager_test.py', |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 57 | )) |
| 58 | |
| jamesren | 92c1859 | 2010-02-25 19:10:32 +0000 | [diff] [blame] | 59 | LONG_TESTS = (REQUIRES_DJANGO | |
| 60 | REQUIRES_MYSQLDB | |
| 61 | REQUIRES_GWT | |
| 62 | REQUIRES_SIMPLEJSON | |
| jamesren | 6461fff | 2010-04-06 23:33:05 +0000 | [diff] [blame] | 63 | REQUIRES_AUTH | |
| jamesren | 92c1859 | 2010-02-25 19:10:32 +0000 | [diff] [blame] | 64 | LONG_RUNTIME) |
| 65 | |
| jamesren | 74e77fc | 2010-02-19 21:56:39 +0000 | [diff] [blame] | 66 | |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 67 | ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 68 | |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 69 | |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 70 | class TestFailure(Exception): pass |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 71 | |
| 72 | |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 73 | def run_test(mod_names, options): |
| 74 | """ |
| 75 | @param mod_names: A list of individual parts of the module name to import |
| 76 | and run as a test suite. |
| 77 | @param options: optparse options. |
| 78 | """ |
| mbligh | 43758df | 2008-09-04 19:54:45 +0000 | [diff] [blame] | 79 | if not options.debug: |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 80 | parallel.redirect_io() |
| 81 | |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 82 | print "Running %s" % '.'.join(mod_names) |
| 83 | mod = common.setup_modules.import_module(mod_names[-1], |
| 84 | '.'.join(mod_names[:-1])) |
| mbligh | 5f55484 | 2009-12-21 21:50:18 +0000 | [diff] [blame] | 85 | for ut_module in [unittest, custom_unittest]: |
| 86 | test = ut_module.defaultTestLoader.loadTestsFromModule(mod) |
| 87 | suite = ut_module.TestSuite(test) |
| 88 | runner = ut_module.TextTestRunner(verbosity=2) |
| 89 | result = runner.run(suite) |
| 90 | if result.errors or result.failures: |
| 91 | msg = '%s had %d failures and %d errors.' |
| 92 | msg %= '.'.join(mod_names), len(result.failures), len(result.errors) |
| 93 | raise TestFailure(msg) |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 94 | |
| 95 | |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 96 | def find_and_run_tests(start, options): |
| 97 | """ |
| 98 | Find and run Python unittest suites below the given directory. Only look |
| 99 | in subdirectories of start that are actual importable Python modules. |
| 100 | |
| 101 | @param start: The absolute directory to look for tests under. |
| 102 | @param options: optparse options. |
| 103 | """ |
| 104 | modules = [] |
| jamesren | 74e77fc | 2010-02-19 21:56:39 +0000 | [diff] [blame] | 105 | skip_tests = set() |
| 106 | if options.skip_tests: |
| 107 | skip_tests.update(options.skip_tests.split()) |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 108 | |
| 109 | for dirpath, subdirs, filenames in os.walk(start): |
| 110 | # Only look in and below subdirectories that are python modules. |
| 111 | if '__init__.py' not in filenames: |
| mbligh | a64df1a | 2009-09-18 16:54:39 +0000 | [diff] [blame] | 112 | if options.full: |
| 113 | for filename in filenames: |
| 114 | if filename.endswith('.pyc'): |
| 115 | os.unlink(os.path.join(dirpath, filename)) |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 116 | # Skip all subdirectories below this one, it is not a module. |
| 117 | del subdirs[:] |
| 118 | if options.debug: |
| 119 | print 'Skipping', dirpath |
| 120 | continue # Skip this directory. |
| 121 | |
| 122 | # Look for unittest files. |
| 123 | for fname in filenames: |
| 124 | if fname.endswith('_unittest.py') or fname.endswith('_test.py'): |
| 125 | if not options.full and fname in LONG_TESTS: |
| 126 | continue |
| jamesren | 74e77fc | 2010-02-19 21:56:39 +0000 | [diff] [blame] | 127 | if fname in skip_tests: |
| 128 | continue |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 129 | path_no_py = os.path.join(dirpath, fname).rstrip('.py') |
| 130 | assert path_no_py.startswith(ROOT) |
| 131 | names = path_no_py[len(ROOT)+1:].split('/') |
| 132 | modules.append(['autotest_lib'] + names) |
| 133 | if options.debug: |
| 134 | print 'testing', path_no_py |
| 135 | |
| 136 | if options.debug: |
| 137 | print 'Number of test modules found:', len(modules) |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 138 | |
| showard | cc85e81 | 2008-08-08 20:33:30 +0000 | [diff] [blame] | 139 | functions = {} |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 140 | for module_names in modules: |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 141 | # Create a function that'll test a particular module. module=module |
| 142 | # is a hack to force python to evaluate the params now. We then |
| 143 | # rename the function to make error reporting nicer. |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 144 | run_module = lambda module=module_names: run_test(module, options) |
| 145 | name = '.'.join(module_names) |
| showard | cc85e81 | 2008-08-08 20:33:30 +0000 | [diff] [blame] | 146 | run_module.__name__ = name |
| showard | cc85e81 | 2008-08-08 20:33:30 +0000 | [diff] [blame] | 147 | functions[run_module] = set() |
| 148 | |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 149 | try: |
| 150 | dargs = {} |
| mbligh | 43758df | 2008-09-04 19:54:45 +0000 | [diff] [blame] | 151 | if options.debug: |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 152 | dargs['max_simultaneous_procs'] = 1 |
| 153 | pe = parallel.ParallelExecute(functions, **dargs) |
| 154 | pe.run_until_completion() |
| 155 | except parallel.ParallelError, err: |
| 156 | return err.errors |
| 157 | return [] |
| mbligh | f975133 | 2008-04-08 18:25:33 +0000 | [diff] [blame] | 158 | |
| 159 | |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 160 | def main(): |
| 161 | options, args = parser.parse_args() |
| 162 | if args: |
| 163 | parser.error('Unexpected argument(s): %s' % args) |
| 164 | parser.print_help() |
| 165 | sys.exit(1) |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 166 | |
| showard | cc85e81 | 2008-08-08 20:33:30 +0000 | [diff] [blame] | 167 | # Strip the arguments off the command line, so that the unit tests do not |
| 168 | # see them. |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 169 | del sys.argv[1:] |
| showard | cc85e81 | 2008-08-08 20:33:30 +0000 | [diff] [blame] | 170 | |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 171 | absolute_start = os.path.join(ROOT, options.start) |
| 172 | errors = find_and_run_tests(absolute_start, options) |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 173 | if errors: |
| 174 | print "%d tests resulted in an error/failure:" % len(errors) |
| 175 | for error in errors: |
| 176 | print "\t%s" % error |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 177 | print "Rerun", sys.argv[0], "--debug to see the failure details." |
| mbligh | 671c592 | 2008-07-28 19:34:38 +0000 | [diff] [blame] | 178 | sys.exit(1) |
| 179 | else: |
| 180 | print "All passed!" |
| 181 | sys.exit(0) |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 182 | |
| mbligh | 780fa7f | 2009-07-02 19:01:53 +0000 | [diff] [blame] | 183 | |
| mbligh | eeb1357 | 2008-07-30 00:04:01 +0000 | [diff] [blame] | 184 | if __name__ == "__main__": |
| 185 | main() |