diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/oe-test | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/scripts/oe-test b/scripts/oe-test index f90d85b3da..0a36b78ff7 100755 --- a/scripts/oe-test +++ b/scripts/oe-test | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | import os | 8 | import os |
| 9 | import sys | 9 | import sys |
| 10 | import argparse | 10 | import argparse |
| 11 | import importlib | ||
| 12 | import logging | 11 | import logging |
| 13 | 12 | ||
| 14 | scripts_path = os.path.dirname(os.path.realpath(__file__)) | 13 | scripts_path = os.path.dirname(os.path.realpath(__file__)) |
| @@ -25,37 +24,11 @@ try: | |||
| 25 | except ImportError: | 24 | except ImportError: |
| 26 | pass | 25 | pass |
| 27 | 26 | ||
| 28 | from oeqa.core.context import OETestContextExecutor | 27 | from oeqa.utils import load_test_components |
| 29 | from oeqa.core.exception import OEQAPreRun | 28 | from oeqa.core.exception import OEQAPreRun |
| 30 | 29 | ||
| 31 | logger = scriptutils.logger_create('oe-test') | 30 | logger = scriptutils.logger_create('oe-test') |
| 32 | 31 | ||
| 33 | def _load_test_components(logger): | ||
| 34 | components = {} | ||
| 35 | |||
| 36 | for path in sys.path: | ||
| 37 | base_dir = os.path.join(path, 'oeqa') | ||
| 38 | if os.path.exists(base_dir) and os.path.isdir(base_dir): | ||
| 39 | for file in os.listdir(base_dir): | ||
| 40 | comp_name = file | ||
| 41 | comp_context = os.path.join(base_dir, file, 'context.py') | ||
| 42 | if os.path.exists(comp_context): | ||
| 43 | comp_plugin = importlib.import_module('oeqa.%s.%s' % \ | ||
| 44 | (comp_name, 'context')) | ||
| 45 | try: | ||
| 46 | if not issubclass(comp_plugin._executor_class, | ||
| 47 | OETestContextExecutor): | ||
| 48 | raise TypeError("Component %s in %s, _executor_class "\ | ||
| 49 | "isn't derived from OETestContextExecutor."\ | ||
| 50 | % (comp_name, comp_context)) | ||
| 51 | |||
| 52 | components[comp_name] = comp_plugin._executor_class() | ||
| 53 | except AttributeError: | ||
| 54 | raise AttributeError("Component %s in %s don't have "\ | ||
| 55 | "_executor_class defined." % (comp_name, comp_context)) | ||
| 56 | |||
| 57 | return components | ||
| 58 | |||
| 59 | def main(): | 32 | def main(): |
| 60 | parser = argparse_oe.ArgumentParser(description="OpenEmbedded test tool", | 33 | parser = argparse_oe.ArgumentParser(description="OpenEmbedded test tool", |
| 61 | add_help=False, | 34 | add_help=False, |
| @@ -74,7 +47,7 @@ def main(): | |||
| 74 | elif global_args.quiet: | 47 | elif global_args.quiet: |
| 75 | logger.setLevel(logging.ERROR) | 48 | logger.setLevel(logging.ERROR) |
| 76 | 49 | ||
| 77 | components = _load_test_components(logger) | 50 | components = load_test_components(logger, 'oe-test') |
| 78 | 51 | ||
| 79 | subparsers = parser.add_subparsers(dest="subparser_name", title='subcommands', metavar='<subcommand>') | 52 | subparsers = parser.add_subparsers(dest="subparser_name", title='subcommands', metavar='<subcommand>') |
| 80 | subparsers.add_subparser_group('components', 'Test components') | 53 | subparsers.add_subparser_group('components', 'Test components') |
