mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
oeqa devtool: Add tests to cover devtool handling of various git URL styles
Add two test cases for git URL styles that trigger reformat_git_url. [YOCTO #11394] (From OE-Core rev: 5593439a5efbb53fc46099650ae86943751b0c4e) Signed-off-by: Thomas Roos <throos@amazon.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ce18cc1d72
commit
c8e4c239f2
@@ -246,6 +246,22 @@ class DevtoolTestCase(OESelftestTestCase):
|
|||||||
if remaining_removelines:
|
if remaining_removelines:
|
||||||
self.fail('Expected removed lines not found: %s' % remaining_removelines)
|
self.fail('Expected removed lines not found: %s' % remaining_removelines)
|
||||||
|
|
||||||
|
def _test_devtool_add_git_url(self, git_url, version, pn, resulting_src_uri):
|
||||||
|
self.track_for_cleanup(self.workspacedir)
|
||||||
|
self.add_command_to_tearDown('bitbake-layers remove-layer */workspace')
|
||||||
|
result = runCmd('devtool add --version %s %s %s' % (version, pn, git_url))
|
||||||
|
self.assertExists(os.path.join(self.workspacedir, 'conf', 'layer.conf'), 'Workspace directory not created')
|
||||||
|
# Check the recipe name is correct
|
||||||
|
recipefile = get_bb_var('FILE', pn)
|
||||||
|
self.assertIn('%s_git.bb' % pn, recipefile, 'Recipe file incorrectly named')
|
||||||
|
self.assertIn(recipefile, result.output)
|
||||||
|
# Test devtool status
|
||||||
|
result = runCmd('devtool status')
|
||||||
|
self.assertIn(pn, result.output)
|
||||||
|
self.assertIn(recipefile, result.output)
|
||||||
|
checkvars = {}
|
||||||
|
checkvars['SRC_URI'] = resulting_src_uri
|
||||||
|
self._test_recipe_contents(recipefile, checkvars, [])
|
||||||
|
|
||||||
class DevtoolBase(DevtoolTestCase):
|
class DevtoolBase(DevtoolTestCase):
|
||||||
|
|
||||||
@@ -380,6 +396,22 @@ class DevtoolAddTests(DevtoolBase):
|
|||||||
checkvars['DEPENDS'] = set(['dbus'])
|
checkvars['DEPENDS'] = set(['dbus'])
|
||||||
self._test_recipe_contents(recipefile, checkvars, [])
|
self._test_recipe_contents(recipefile, checkvars, [])
|
||||||
|
|
||||||
|
def test_devtool_add_git_style1(self):
|
||||||
|
version = 'v3.1.0'
|
||||||
|
pn = 'mbedtls'
|
||||||
|
# this will trigger reformat_git_uri with branch parameter in url
|
||||||
|
git_url = "'git://git@github.com/ARMmbed/mbedtls.git;branch=mbedtls-2.28;protocol=https'"
|
||||||
|
resulting_src_uri = "git://git@github.com/ARMmbed/mbedtls.git;branch=mbedtls-2.28;protocol=https"
|
||||||
|
self._test_devtool_add_git_url(git_url, version, pn, resulting_src_uri)
|
||||||
|
|
||||||
|
def test_devtool_add_git_style2(self):
|
||||||
|
version = 'v3.1.0'
|
||||||
|
pn = 'mbedtls'
|
||||||
|
# this will trigger reformat_git_uri with branch parameter in url
|
||||||
|
git_url = "'git://git@github.com/ARMmbed/mbedtls.git;protocol=https'"
|
||||||
|
resulting_src_uri = "git://git@github.com/ARMmbed/mbedtls.git;protocol=https;branch=master"
|
||||||
|
self._test_devtool_add_git_url(git_url, version, pn, resulting_src_uri)
|
||||||
|
|
||||||
def test_devtool_add_library(self):
|
def test_devtool_add_library(self):
|
||||||
# Fetch source
|
# Fetch source
|
||||||
tempdir = tempfile.mkdtemp(prefix='devtoolqa')
|
tempdir = tempfile.mkdtemp(prefix='devtoolqa')
|
||||||
@@ -540,7 +572,7 @@ class DevtoolAddTests(DevtoolBase):
|
|||||||
result = runCmd('devtool status')
|
result = runCmd('devtool status')
|
||||||
self.assertIn(testrecipe, result.output)
|
self.assertIn(testrecipe, result.output)
|
||||||
self.assertIn(srcdir, result.output)
|
self.assertIn(srcdir, result.output)
|
||||||
# Check recipe
|
# Check recipedevtool add
|
||||||
recipefile = get_bb_var('FILE', testrecipe)
|
recipefile = get_bb_var('FILE', testrecipe)
|
||||||
self.assertIn('%s_%s.bb' % (testrecipe, testver), recipefile, 'Recipe file incorrectly named')
|
self.assertIn('%s_%s.bb' % (testrecipe, testver), recipefile, 'Recipe file incorrectly named')
|
||||||
checkvars = {}
|
checkvars = {}
|
||||||
|
|||||||
Reference in New Issue
Block a user