mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
Using -C sets a taint on the specified task, and m4-native is in the dependency chain for just about everything, which means that everything gets forced to rebuild. We don't need the influence of this test to extend outside of the test itself, so ensure that the taint gets cleared at the end of the test. (From OE-Core rev: 24b41a1e3f2496e38a6ae9c47dfe85887f3d7d6e) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
180 lines
7.7 KiB
Python
180 lines
7.7 KiB
Python
import unittest
|
|
import os
|
|
import logging
|
|
import re
|
|
import shutil
|
|
|
|
import oeqa.utils.ftools as ftools
|
|
from oeqa.selftest.base import oeSelfTest
|
|
from oeqa.utils.commands import runCmd, bitbake, get_bb_var
|
|
from oeqa.utils.decorators import testcase
|
|
|
|
class BitbakeTests(oeSelfTest):
|
|
|
|
@testcase(789)
|
|
def test_run_bitbake_from_dir_1(self):
|
|
os.chdir(os.path.join(self.builddir, 'conf'))
|
|
bitbake('-e')
|
|
|
|
@testcase(790)
|
|
def test_run_bitbake_from_dir_2(self):
|
|
my_env = os.environ.copy()
|
|
my_env['BBPATH'] = my_env['BUILDDIR']
|
|
os.chdir(os.path.dirname(os.environ['BUILDDIR']))
|
|
bitbake('-e', env=my_env)
|
|
|
|
@testcase(806)
|
|
def test_event_handler(self):
|
|
self.write_config("INHERIT += \"test_events\"")
|
|
result = bitbake('m4-native')
|
|
find_build_started = re.search("NOTE: Test for bb\.event\.BuildStarted(\n.*)*NOTE: Preparing RunQueue", result.output)
|
|
find_build_completed = re.search("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)
|
|
|
|
@testcase(103)
|
|
def test_local_sstate(self):
|
|
bitbake('m4-native -ccleansstate')
|
|
bitbake('m4-native')
|
|
bitbake('m4-native -cclean')
|
|
result = bitbake('m4-native')
|
|
find_setscene = re.search("m4-native.*do_.*_setscene", result.output)
|
|
self.assertTrue(find_setscene)
|
|
|
|
@testcase(105)
|
|
def test_bitbake_invalid_recipe(self):
|
|
result = bitbake('-b asdf', ignore_status=True)
|
|
self.assertTrue("ERROR: Unable to find any recipe file matching 'asdf'" in result.output)
|
|
|
|
@testcase(107)
|
|
def test_bitbake_invalid_target(self):
|
|
result = bitbake('asdf', ignore_status=True)
|
|
self.assertTrue("ERROR: Nothing PROVIDES 'asdf'" in result.output)
|
|
|
|
@testcase(106)
|
|
def test_warnings_errors(self):
|
|
result = bitbake('-b asdf', ignore_status=True)
|
|
find_warnings = re.search("Summary: There w.{2,3}? [1-9][0-9]* WARNING messages* shown", result.output)
|
|
find_errors = re.search("Summary: There w.{2,3}? [1-9][0-9]* ERROR messages* shown", result.output)
|
|
self.assertTrue(find_warnings, msg="Did not find the mumber of warnings at the end of the build:\n" + result.output)
|
|
self.assertTrue(find_errors, msg="Did not find the mumber of errors at the end of the build:\n" + result.output)
|
|
|
|
@testcase(108)
|
|
def test_invalid_patch(self):
|
|
self.write_recipeinc('man', 'SRC_URI += "file://man-1.5h1-make.patch"')
|
|
result = bitbake('man -c patch', ignore_status=True)
|
|
self.delete_recipeinc('man')
|
|
bitbake('-cclean man')
|
|
self.assertTrue("ERROR: Function failed: patch_do_patch" in result.output)
|
|
|
|
@testcase(163)
|
|
def test_force_task(self):
|
|
bitbake('m4-native')
|
|
self.add_command_to_tearDown('bitbake -c clean m4-native')
|
|
result = bitbake('-C compile m4-native')
|
|
look_for_tasks = ['do_compile', 'do_install', 'do_populate_sysroot']
|
|
for task in look_for_tasks:
|
|
find_task = re.search("m4-native.*%s" % task, result.output)
|
|
self.assertTrue(find_task)
|
|
|
|
@testcase(167)
|
|
def test_bitbake_g(self):
|
|
result = bitbake('-g core-image-full-cmdline')
|
|
self.assertTrue('NOTE: PN build list saved to \'pn-buildlist\'' in result.output)
|
|
self.assertTrue('openssh' in ftools.read_file(os.path.join(self.builddir, 'pn-buildlist')))
|
|
for f in ['pn-buildlist', 'pn-depends.dot', 'package-depends.dot', 'task-depends.dot']:
|
|
os.remove(f)
|
|
|
|
@testcase(899)
|
|
def test_image_manifest(self):
|
|
bitbake('core-image-minimal')
|
|
deploydir = get_bb_var("DEPLOY_DIR_IMAGE", target="core-image-minimal")
|
|
imagename = get_bb_var("IMAGE_LINK_NAME", target="core-image-minimal")
|
|
manifest = os.path.join(deploydir, imagename + ".manifest")
|
|
self.assertTrue(os.path.islink(manifest), msg="No manifest file created for image")
|
|
|
|
@testcase(168)
|
|
def test_invalid_recipe_src_uri(self):
|
|
data = 'SRC_URI = "file://invalid"'
|
|
self.write_recipeinc('man', data)
|
|
bitbake('-ccleanall man')
|
|
result = bitbake('-c fetch man', ignore_status=True)
|
|
bitbake('-ccleanall man')
|
|
self.delete_recipeinc('man')
|
|
self.assertEqual(result.status, 1, msg='Command succeded when it should have failed')
|
|
self.assertTrue('Fetcher failure: Unable to find file file://invalid anywhere. The paths that were searched were:' in result.output)
|
|
self.assertTrue('ERROR: Function failed: Fetcher failure for URL: \'file://invalid\'. Unable to fetch URL from any source.' in result.output)
|
|
|
|
@testcase(171)
|
|
def test_rename_downloaded_file(self):
|
|
data = 'SRC_URI_append = ";downloadfilename=test-aspell.tar.gz"'
|
|
self.write_recipeinc('aspell', data)
|
|
bitbake('-ccleanall aspell')
|
|
result = bitbake('-c fetch aspell', ignore_status=True)
|
|
self.delete_recipeinc('aspell')
|
|
self.assertEqual(result.status, 0)
|
|
self.assertTrue(os.path.isfile(os.path.join(get_bb_var("DL_DIR"), 'test-aspell.tar.gz')))
|
|
self.assertTrue(os.path.isfile(os.path.join(get_bb_var("DL_DIR"), 'test-aspell.tar.gz.done')))
|
|
bitbake('-ccleanall aspell')
|
|
|
|
@testcase(1028)
|
|
def test_environment(self):
|
|
self.append_config("TEST_ENV=\"localconf\"")
|
|
result = runCmd('bitbake -e | grep TEST_ENV=')
|
|
self.assertTrue('localconf' in result.output)
|
|
self.remove_config("TEST_ENV=\"localconf\"")
|
|
|
|
@testcase(1029)
|
|
def test_dry_run(self):
|
|
result = runCmd('bitbake -n m4-native')
|
|
self.assertEqual(0, result.status)
|
|
|
|
@testcase(1030)
|
|
def test_just_parse(self):
|
|
result = runCmd('bitbake -p')
|
|
self.assertEqual(0, result.status)
|
|
|
|
@testcase(1031)
|
|
def test_version(self):
|
|
result = runCmd('bitbake -s | grep wget')
|
|
find = re.search("wget *:([0-9a-zA-Z\.\-]+)", result.output)
|
|
self.assertTrue(find)
|
|
|
|
@testcase(1032)
|
|
def test_prefile(self):
|
|
preconf = os.path.join(self.builddir, 'conf/prefile.conf')
|
|
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)
|
|
self.append_config("TEST_PREFILE=\"localconf\"")
|
|
result = runCmd('bitbake -r conf/prefile.conf -e | grep TEST_PREFILE=')
|
|
self.assertTrue('localconf' in result.output)
|
|
self.remove_config("TEST_PREFILE=\"localconf\"")
|
|
|
|
@testcase(1033)
|
|
def test_postfile(self):
|
|
postconf = os.path.join(self.builddir, 'conf/postfile.conf')
|
|
self.track_for_cleanup(postconf)
|
|
ftools.write_file(postconf , "TEST_POSTFILE=\"postfile\"")
|
|
self.append_config("TEST_POSTFILE=\"localconf\"")
|
|
result = runCmd('bitbake -R conf/postfile.conf -e | grep TEST_POSTFILE=')
|
|
self.assertTrue('postfile' in result.output)
|
|
self.remove_config("TEST_POSTFILE=\"localconf\"")
|
|
|
|
@testcase(1034)
|
|
def test_checkuri(self):
|
|
result = runCmd('bitbake -c checkuri m4')
|
|
self.assertEqual(0, result.status)
|
|
|
|
@testcase(1035)
|
|
def test_continue(self):
|
|
self.write_recipeinc('man',"\ndo_fail_task () {\nexit 1 \n}\n\naddtask do_fail_task before do_fetch\n" )
|
|
runCmd('bitbake -c cleanall man xcursor-transparent-theme')
|
|
result = runCmd('bitbake man xcursor-transparent-theme -k', ignore_status=True)
|
|
errorpos = result.output.find('ERROR: Function failed: do_fail_task')
|
|
manver = re.search("NOTE: recipe xcursor-transparent-theme-(.*?): task do_unpack: Started", result.output)
|
|
continuepos = result.output.find('NOTE: recipe xcursor-transparent-theme-%s: task do_unpack: Started' % manver.group(1))
|
|
self.assertLess(errorpos,continuepos)
|