mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
oeqa/selftest/recipetool: appendsrc: add test for update mode
add a basic test for testing the update mode of recipetool appendsrcfile(s) (From OE-Core rev: f999092c772f10d23106c355e2787259befb6e30) Signed-off-by: Julien Stephan <jstephan@baylibre.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
7ff486d556
commit
ec340f14da
@@ -1247,6 +1247,34 @@ class RecipetoolAppendsrcTests(RecipetoolAppendsrcBase):
|
||||
# A more complex test: existing entry in src_uri with different param
|
||||
self.test_recipetool_appendsrcfile_existing_in_src_uri_diff_params(machine='mymachine')
|
||||
|
||||
def test_recipetool_appendsrcfile_update_recipe_basic(self):
|
||||
testrecipe = "base-files"
|
||||
recipefile = get_bb_var('FILE', testrecipe)
|
||||
result = runCmd('bitbake-layers show-layers')
|
||||
layerrecipe = None
|
||||
for line in result.output.splitlines()[3:]:
|
||||
with open("/tmp/juju.txt", "a") as file:
|
||||
layer = line.split()[1]
|
||||
print(layer, file=file)
|
||||
if layer in recipefile:
|
||||
layerrecipe = layer
|
||||
break
|
||||
self.assertTrue(layerrecipe, 'Unable to find the layer containing %s' % testrecipe)
|
||||
cmd = 'recipetool appendsrcfile -u %s %s %s' % (layerrecipe, testrecipe, self.testfile)
|
||||
result = runCmd(cmd)
|
||||
self.assertNotIn('Traceback', result.output)
|
||||
self.add_command_to_tearDown('cd %s; rm -f %s/%s; git checkout .' % (os.path.dirname(recipefile), testrecipe, os.path.basename(self.testfile)))
|
||||
|
||||
expected_status = [(' M', '.*/%s$' % os.path.basename(recipefile)),
|
||||
('??', '.*/%s/%s/%s$' % (testrecipe, testrecipe, os.path.basename(self.testfile)))]
|
||||
self._check_repo_status(os.path.dirname(recipefile), expected_status)
|
||||
result = runCmd('git diff %s' % os.path.basename(recipefile), cwd=os.path.dirname(recipefile))
|
||||
removelines = []
|
||||
addlines = [
|
||||
'file://%s \\\\' % os.path.basename(self.testfile),
|
||||
]
|
||||
self._check_diff(result.output, addlines, removelines)
|
||||
|
||||
def test_recipetool_appendsrcfile_replace_file_srcdir(self):
|
||||
testrecipe = 'bash'
|
||||
filepath = 'Makefile.in'
|
||||
|
||||
Reference in New Issue
Block a user