summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-11-10 14:45:20 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-23 11:10:13 +0000
commit39fba4d70f502080cc23556db757db56f06250cf (patch)
tree7d872b084dc019b434d5115a882de96643e679e8 /meta/lib
parente3193b76e0526225777763e48cc90d39dac6e52b (diff)
downloadpoky-39fba4d70f502080cc23556db757db56f06250cf.tar.gz
oe-selftest: devtool: test that updating a file with subdir= works
If you have a file:// entry in SRC_URI with a subdir= parameter that makes it extract into the source tree, then when you update that file in oe-local-files and run devtool update-recipe then you want the original file to be updated. This was made to work by OE-Core commit 9069fef5dad5a873c8a8f720f7bcbc7625556309 together with 31f1bbad248c36a8c86dde4ff57ce42efc664082, however until now there was no oe-selftest test to verify it. Note that in order to succeed this test also requires the fix "lib/oe/recipeutils: ignore archives by default in get_recipe_local_files()" since the test recipe uses a local tarball. (From OE-Core rev: 936eba3e1059d1dcd5e58c1ce76870fff7b11b3c) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/devtool.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py
index 92dc5e5869..2a08721336 100644
--- a/meta/lib/oeqa/selftest/devtool.py
+++ b/meta/lib/oeqa/selftest/devtool.py
@@ -972,6 +972,31 @@ class DevtoolTests(DevtoolBase):
972 if 'gzip compressed data' not in result.output: 972 if 'gzip compressed data' not in result.output:
973 self.fail('New patch file is not gzipped - file reports:\n%s' % result.output) 973 self.fail('New patch file is not gzipped - file reports:\n%s' % result.output)
974 974
975 def test_devtool_update_recipe_local_files_subdir(self):
976 # Try devtool extract on a recipe that has a file with subdir= set in
977 # SRC_URI such that it overwrites a file that was in an archive that
978 # was also in SRC_URI
979 # First, modify the recipe
980 testrecipe = 'devtool-test-subdir'
981 recipefile = get_bb_var('FILE', testrecipe)
982 src_uri = get_bb_var('SRC_URI', testrecipe)
983 tempdir = tempfile.mkdtemp(prefix='devtoolqa')
984 self.track_for_cleanup(tempdir)
985 self.track_for_cleanup(self.workspacedir)
986 self.add_command_to_tearDown('bitbake-layers remove-layer */workspace')
987 # (don't bother with cleaning the recipe on teardown, we won't be building it)
988 result = runCmd('devtool modify %s' % testrecipe)
989 testfile = os.path.join(self.workspacedir, 'sources', testrecipe, 'testfile')
990 self.assertTrue(os.path.exists(testfile), 'Extracted source could not be found')
991 with open(testfile, 'r') as f:
992 contents = f.read().rstrip()
993 self.assertEqual(contents, 'Modified version', 'File has apparently not been overwritten as it should have been')
994 # Test devtool update-recipe without modifying any files
995 self.add_command_to_tearDown('cd %s; rm %s/*; git checkout %s %s' % (os.path.dirname(recipefile), testrecipe, testrecipe, os.path.basename(recipefile)))
996 result = runCmd('devtool update-recipe %s' % testrecipe)
997 expected_status = []
998 self._check_repo_status(os.path.dirname(recipefile), expected_status)
999
975 @testcase(1163) 1000 @testcase(1163)
976 def test_devtool_extract(self): 1001 def test_devtool_extract(self):
977 tempdir = tempfile.mkdtemp(prefix='devtoolqa') 1002 tempdir = tempfile.mkdtemp(prefix='devtoolqa')