From f0ba400a398a172f9ebf953bb3a26e5d911a17d6 Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Wed, 4 Feb 2015 14:13:57 +0000 Subject: scripts/oe-selftest: add command line option to list test classes While trying to discover what tests are available, I felt the need to be able to list all individual tests so I can run specific tests. This patch adds the "--list-classes" command line option that lists the unit test classes and methods available. Signed-off-by: Alexandru DAMIAN Signed-off-by: Ross Burton --- scripts/oe-selftest | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'scripts') diff --git a/scripts/oe-selftest b/scripts/oe-selftest index 74c998bc43..a04e9fc96c 100755 --- a/scripts/oe-selftest +++ b/scripts/oe-selftest @@ -66,6 +66,7 @@ def get_args_parser(): group.add_argument('--run-tests', required=False, action='store', nargs='*', dest="run_tests", default=None, help='Select what tests to run (modules, classes or test methods). Format should be: ..') group.add_argument('--run-all-tests', required=False, action="store_true", dest="run_all_tests", default=False, help='Run all (unhidden) tests') group.add_argument('--list-modules', required=False, action="store_true", dest="list_modules", default=False, help='List all available test modules.') + group.add_argument('--list-classes', required=False, action="store_true", dest="list_allclasses", default=False, help='List all available test classes.') return parser @@ -138,6 +139,9 @@ def main(): parser = get_args_parser() args = parser.parse_args() + if args.list_allclasses: + args.list_modules = True + if args.list_modules: log.info('Listing all available test modules:') testslist = get_tests(include_hidden=True) @@ -147,6 +151,22 @@ def main(): if module.startswith('_'): info = ' (hidden)' print module + info + if args.list_allclasses: + try: + import importlib + modlib = importlib.import_module(test) + for v in vars(modlib): + t = vars(modlib)[v] + if isinstance(t, type(oeSelfTest)) and issubclass(t, oeSelfTest) and t!=oeSelfTest: + print " --", v + for method in dir(t): + if method.startswith("test_"): + print " -- --", method + + except (AttributeError, ImportError) as e: + print e + pass + if args.run_tests or args.run_all_tests: if not preflight_check(): -- cgit 1.2.3-korg