aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-08-25 01:46:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-28 23:35:57 +0100
commite1e347a2d509303e1c566450b0f2b485d3d6629f (patch)
tree1fb9d31b0ad6f1c1cae699207a568829f3b4f97f /meta/classes
parentdb38e10701cd2392a57e559573b715fd6daf6e2a (diff)
downloadopenembedded-core-e1e347a2d509303e1c566450b0f2b485d3d6629f.tar.gz
classes/testimage: add support for finding tests in other layers
A layer can add tests in lib/oeqa/runtime (provided it extends BBPATH as normal) and enable them with TEST_SUITES_append = " testname". Test module names shouldn't collide though. Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/testimage.bbclass55
1 files changed, 43 insertions, 12 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index b30c841cec..4eef0be1d6 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -17,6 +17,7 @@
# Each name in TEST_SUITES represents a required test for the image. (no skipping allowed)
# Appending "auto" means that it will try to run all tests that are suitable for the image (each test decides that on it's own).
# Note that order in TEST_SUITES is important (it's the order tests run) and it influences tests dependencies.
+# A layer can add its own tests in lib/oeqa/runtime, provided it extends BBPATH as normal in its layer.conf.
# TEST_LOG_DIR contains a ssh log (what command is running, output and return codes) and a qemu boot log till login
# Booting is handled by this class, and it's not a test in itself.
@@ -41,6 +42,43 @@ do_testimage[nostamp] = "1"
do_testimage[depends] += "qemu-native:do_populate_sysroot"
do_testimage[depends] += "qemu-helper-native:do_populate_sysroot"
+
+def get_tests_list(d):
+ testsuites = d.getVar("TEST_SUITES", True).split()
+ bbpath = d.getVar("BBPATH", True).split(':')
+
+ # This relies on lib/ under each directory in BBPATH being added to sys.path
+ # (as done by default in base.bbclass)
+ testslist = []
+ for testname in testsuites:
+ if testname != "auto":
+ found = False
+ for p in bbpath:
+ if os.path.exists(os.path.join(p, 'lib', 'oeqa', 'runtime', testname + '.py')):
+ testslist.append("oeqa.runtime." + testname)
+ found = True
+ break
+ if not found:
+ bb.error('Test %s specified in TEST_SUITES could not be found in lib/oeqa/runtime under BBPATH' % testname)
+
+ if "auto" in testsuites:
+ def add_auto_list(path):
+ if not os.path.exists(os.path.join(path, '__init__.py')):
+ bb.fatal('Tests directory %s exists but is missing __init__.py' % path)
+ files = sorted([f for f in os.listdir(path) if f.endswith('.py') and not f.startswith('_')])
+ for f in files:
+ module = 'oeqa.runtime.' + f[:-3]
+ if module not in testslist:
+ testslist.append(module)
+
+ for p in bbpath:
+ testpath = os.path.join(p, 'lib', 'oeqa', 'runtime')
+ bb.debug(2, 'Searching for tests in %s' % testpath)
+ if os.path.exists(testpath):
+ add_auto_list(testpath)
+
+ return testslist
+
def testimage_main(d):
import unittest
import os
@@ -55,23 +93,16 @@ def testimage_main(d):
bb.utils.mkdirhier(testdir)
# tests in TEST_SUITES become required tests
- # they won't be skipped even if they aren't suitable for a default image (like xorg for minimal)
- testsuites = d.getVar("TEST_SUITES", True)
- # testslist is what we'll run and order matters
- testslist = [ x for x in testsuites.split() if x != "auto" ]
- # if we have auto search for other modules
- if "auto" in testsuites:
- for f in os.listdir(os.path.dirname(os.path.abspath(oeqa.runtime.__file__))):
- if f.endswith('.py') and not f.startswith('_') and f[:-3] not in testslist:
- testslist.append(f[:-3])
-
- testslist = [ "oeqa.runtime." + x for x in testslist ]
+ # they won't be skipped even if they aren't suitable for a image (like xorg for minimal)
+ # testslist is what we'll actually pass to the unittest loader
+ testslist = get_tests_list(d)
+ testsrequired = [t for t in d.getVar("TEST_SUITES", True).split() if t != "auto"]
class TestContext:
def __init__(self):
self.d = d
self.testslist = testslist
- self.testsrequired = testsuites.split()
+ self.testsrequired = testsrequired
self.filesdir = os.path.join(os.path.dirname(os.path.abspath(oeqa.runtime.__file__)),"files")
# test context