mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
oeqa/selftest: use specialist assert* methods
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
6f4102f4f6
commit
9b607c58ff
@@ -14,21 +14,21 @@ class BitbakeLayers(OESelftestTestCase):
|
||||
|
||||
def test_bitbakelayers_showcrossdepends(self):
|
||||
result = runCmd('bitbake-layers show-cross-depends')
|
||||
self.assertTrue('aspell' in result.output, msg = "No dependencies were shown. bitbake-layers show-cross-depends output: %s" % result.output)
|
||||
self.assertIn('aspell', result.output)
|
||||
|
||||
def test_bitbakelayers_showlayers(self):
|
||||
result = runCmd('bitbake-layers show-layers')
|
||||
self.assertTrue('meta-selftest' in result.output, msg = "No layers were shown. bitbake-layers show-layers output: %s" % result.output)
|
||||
self.assertIn('meta-selftest', result.output)
|
||||
|
||||
def test_bitbakelayers_showappends(self):
|
||||
recipe = "xcursor-transparent-theme"
|
||||
bb_file = self.get_recipe_basename(recipe)
|
||||
result = runCmd('bitbake-layers show-appends')
|
||||
self.assertTrue(bb_file in result.output, msg="%s file was not recognised. bitbake-layers show-appends output: %s" % (bb_file, result.output))
|
||||
self.assertIn(bb_file, result.output)
|
||||
|
||||
def test_bitbakelayers_showoverlayed(self):
|
||||
result = runCmd('bitbake-layers show-overlayed')
|
||||
self.assertTrue('aspell' in result.output, msg="aspell overlayed recipe was not recognised bitbake-layers show-overlayed %s" % result.output)
|
||||
self.assertIn('aspell', result.output)
|
||||
|
||||
def test_bitbakelayers_flatten(self):
|
||||
recipe = "xcursor-transparent-theme"
|
||||
|
||||
@@ -44,7 +44,7 @@ class BitbakeTests(OESelftestTestCase):
|
||||
find_build_completed = re.search(r"Tasks Summary:.*(\n.*)*NOTE: Test for bb\.event\.BuildCompleted", result.output)
|
||||
self.assertTrue(find_build_started, msg = "Match failed in:\n%s" % result.output)
|
||||
self.assertTrue(find_build_completed, msg = "Match failed in:\n%s" % result.output)
|
||||
self.assertFalse('Test for bb.event.InvalidEvent' in result.output, msg = "\"Test for bb.event.InvalidEvent\" message found during bitbake process. bitbake output: %s" % result.output)
|
||||
self.assertNotIn('Test for bb.event.InvalidEvent', result.output)
|
||||
|
||||
def test_local_sstate(self):
|
||||
bitbake('m4-native')
|
||||
@@ -59,7 +59,7 @@ class BitbakeTests(OESelftestTestCase):
|
||||
|
||||
def test_bitbake_invalid_target(self):
|
||||
result = bitbake('asdf', ignore_status=True)
|
||||
self.assertTrue("ERROR: Nothing PROVIDES 'asdf'" in result.output, msg = "Though no 'asdf' target exists, bitbake didn't output any err. message. bitbake output: %s" % result.output)
|
||||
self.assertIn("ERROR: Nothing PROVIDES 'asdf'", result.output)
|
||||
|
||||
def test_warnings_errors(self):
|
||||
result = bitbake('-b asdf', ignore_status=True)
|
||||
@@ -123,7 +123,7 @@ class BitbakeTests(OESelftestTestCase):
|
||||
for f in ['pn-buildlist', 'task-depends.dot']:
|
||||
self.addCleanup(os.remove, f)
|
||||
self.assertTrue('Task dependencies saved to \'task-depends.dot\'' in result.output, msg = "No task dependency \"task-depends.dot\" file was generated for the given task target. bitbake output: %s" % result.output)
|
||||
self.assertTrue(recipe in ftools.read_file(os.path.join(self.builddir, 'task-depends.dot')), msg = "No \"%s\" dependency found in task-depends.dot file." % recipe)
|
||||
self.assertIn(recipe, ftools.read_file(os.path.join(self.builddir, 'task-depends.dot')))
|
||||
|
||||
def test_image_manifest(self):
|
||||
bitbake('core-image-minimal')
|
||||
@@ -147,8 +147,7 @@ INHERIT_remove = \"report-error\"
|
||||
bitbake('-ccleanall man-db')
|
||||
self.delete_recipeinc('man-db')
|
||||
self.assertEqual(result.status, 1, msg="Command succeded when it should have failed. bitbake output: %s" % result.output)
|
||||
self.assertTrue('Fetcher failure: Unable to find file file://invalid anywhere. The paths that were searched were:' in result.output, msg = "\"invalid\" file \
|
||||
doesn't exist, yet no error message encountered. bitbake output: %s" % result.output)
|
||||
self.assertIn('Fetcher failure: Unable to find file file://invalid anywhere. The paths that were searched were:', result.output)
|
||||
line = self.getline(result, 'Fetcher failure for URL: \'file://invalid\'. Unable to fetch URL from any source.')
|
||||
self.assertTrue(line and line.startswith("ERROR:"), msg = "\"invalid\" file \
|
||||
doesn't exist, yet fetcher didn't report any error. bitbake output: %s" % result.output)
|
||||
@@ -173,7 +172,7 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\"
|
||||
def test_environment(self):
|
||||
self.write_config("TEST_ENV=\"localconf\"")
|
||||
result = runCmd('bitbake -e | grep TEST_ENV=')
|
||||
self.assertTrue('localconf' in result.output, msg = "bitbake didn't report any value for TEST_ENV variable. To test, run 'bitbake -e | grep TEST_ENV='")
|
||||
self.assertIn('localconf', result.output)
|
||||
|
||||
def test_dry_run(self):
|
||||
result = runCmd('bitbake -n m4-native')
|
||||
@@ -193,10 +192,10 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\"
|
||||
self.track_for_cleanup(preconf)
|
||||
ftools.write_file(preconf ,"TEST_PREFILE=\"prefile\"")
|
||||
result = runCmd('bitbake -r conf/prefile.conf -e | grep TEST_PREFILE=')
|
||||
self.assertTrue('prefile' in result.output, "Preconfigure file \"prefile.conf\"was not taken into consideration. ")
|
||||
self.assertIn('prefile', result.output)
|
||||
self.write_config("TEST_PREFILE=\"localconf\"")
|
||||
result = runCmd('bitbake -r conf/prefile.conf -e | grep TEST_PREFILE=')
|
||||
self.assertTrue('localconf' in result.output, "Preconfigure file \"prefile.conf\"was not taken into consideration.")
|
||||
self.assertIn('localconf', result.output)
|
||||
|
||||
def test_postfile(self):
|
||||
postconf = os.path.join(self.builddir, 'conf/postfile.conf')
|
||||
@@ -204,7 +203,7 @@ SSTATE_DIR = \"${TOPDIR}/download-selftest\"
|
||||
ftools.write_file(postconf , "TEST_POSTFILE=\"postfile\"")
|
||||
self.write_config("TEST_POSTFILE=\"localconf\"")
|
||||
result = runCmd('bitbake -R conf/postfile.conf -e | grep TEST_POSTFILE=')
|
||||
self.assertTrue('postfile' in result.output, "Postconfigure file \"postfile.conf\"was not taken into consideration.")
|
||||
self.assertIn('postfile', result.output)
|
||||
|
||||
def test_checkuri(self):
|
||||
result = runCmd('bitbake -c checkuri m4')
|
||||
|
||||
@@ -124,7 +124,7 @@ class ImageFeatures(OESelftestTestCase):
|
||||
|
||||
# check if result image is sparse
|
||||
image_stat = os.stat(image_path)
|
||||
self.assertTrue(image_stat.st_size > image_stat.st_blocks * 512)
|
||||
self.assertGreater(image_stat.st_size, image_stat.st_blocks * 512)
|
||||
|
||||
# check if the resulting gzip is valid
|
||||
self.assertTrue(runCmd('gzip -t %s' % gzip_path))
|
||||
|
||||
Reference in New Issue
Block a user