diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-05-23 15:04:57 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-06 19:02:43 +0100 |
commit | 7c8f3c398084573d01d70989bd0d35a94058a420 (patch) | |
tree | eb4b788a8ea5e11b293214df5161810f657b0946 /scripts/oe-test | |
parent | 02417b149623c3042c257d1c1074f915dc02b7c7 (diff) | |
download | poky-7c8f3c398084573d01d70989bd0d35a94058a420.tar.gz |
scripts/oe-test: Move load_test_components to oeqa.utils
In order to maintain compatibility with oe-selftest, the
load_test_components needs to be re-used, so the script
executor needs to pass to only load components supported
by certain script (oe-test, oe-selftest).
(From OE-Core rev: d6b78ae711b93b4059690320cb8d821aaadd1684)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-test')
-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') |