[oe-commits] Alexandru DAMIAN : scripts/oe-selftest: add command line option to list test classes

git at git.openembedded.org git at git.openembedded.org
Sat Feb 7 18:53:18 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: f0ba400a398a172f9ebf953bb3a26e5d911a17d6
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=f0ba400a398a172f9ebf953bb3a26e5d911a17d6

Author: Alexandru DAMIAN <alexandru.damian at intel.com>
Date:   Wed Feb  4 14:13:57 2015 +0000

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 <alexandru.damian at intel.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 scripts/oe-selftest | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/scripts/oe-selftest b/scripts/oe-selftest
index 74c998b..a04e9fc 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: <module>.<class>.<test_method>')
     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():



More information about the Openembedded-commits mailing list