mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
superproject - don't update the commit ids of projects that have revisionId.
Pinned manifests and release manifest have revisionId set for all projects. For such projects don't update the commit ids. Tested the code with the following commands. $ ./run_tests -v $ repo_dev sync --use-superproject -j8 $ repo_dev sync -n -c -j32 -m $(pwd)/manifest_7482982.xml Bug: [google internal] b/191995372 Change-Id: I4681135b1d15f4a63527b6f0356d76ec842485d6 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/310582 Reviewed-by: Xin Li <delphij@google.com> Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: Raman Tenneti <rtenneti@google.com>
This commit is contained in:
parent
784e16f3aa
commit
1da6f30579
@ -298,6 +298,9 @@ class Superproject(object):
|
|||||||
path = project.relpath
|
path = project.relpath
|
||||||
if not path:
|
if not path:
|
||||||
return True
|
return True
|
||||||
|
# Skip the project with revisionId.
|
||||||
|
if project.revisionId:
|
||||||
|
return True
|
||||||
# Skip the project if it comes from the local manifest.
|
# Skip the project if it comes from the local manifest.
|
||||||
return any(s.startswith(LOCAL_MANIFEST_GROUP_PREFIX) for s in project.groups)
|
return any(s.startswith(LOCAL_MANIFEST_GROUP_PREFIX) for s in project.groups)
|
||||||
|
|
||||||
|
@ -294,8 +294,7 @@ class SuperprojectTestCase(unittest.TestCase):
|
|||||||
self.git_event_log)
|
self.git_event_log)
|
||||||
self.assertEqual(len(self._superproject._manifest.projects), 2)
|
self.assertEqual(len(self._superproject._manifest.projects), 2)
|
||||||
projects = self._superproject._manifest.projects
|
projects = self._superproject._manifest.projects
|
||||||
data = ('160000 commit 2c2724cb36cd5a9cec6c852c681efc3b7c6b86ea\tart\x00'
|
data = ('160000 commit 2c2724cb36cd5a9cec6c852c681efc3b7c6b86ea\tart\x00')
|
||||||
'160000 commit e9d25da64d8d365dbba7c8ee00fe8c4473fe9a06\tbootable/recovery\x00')
|
|
||||||
with mock.patch.object(self._superproject, '_Init', return_value=True):
|
with mock.patch.object(self._superproject, '_Init', return_value=True):
|
||||||
with mock.patch.object(self._superproject, '_Fetch', return_value=True):
|
with mock.patch.object(self._superproject, '_Fetch', return_value=True):
|
||||||
with mock.patch.object(self._superproject,
|
with mock.patch.object(self._superproject,
|
||||||
@ -324,6 +323,54 @@ class SuperprojectTestCase(unittest.TestCase):
|
|||||||
'<superproject name="superproject"/>'
|
'<superproject name="superproject"/>'
|
||||||
'</manifest>')
|
'</manifest>')
|
||||||
|
|
||||||
|
def test_superproject_update_project_revision_id_with_pinned_manifest(self):
|
||||||
|
"""Test update of commit ids of a pinned manifest."""
|
||||||
|
manifest = self.getXmlManifest("""
|
||||||
|
<manifest>
|
||||||
|
<remote name="default-remote" fetch="http://localhost" />
|
||||||
|
<default remote="default-remote" revision="refs/heads/main" />
|
||||||
|
<superproject name="superproject"/>
|
||||||
|
<project path="vendor/x" name="platform/vendor/x" revision="" />
|
||||||
|
<project path="vendor/y" name="platform/vendor/y"
|
||||||
|
revision="52d3c9f7c107839ece2319d077de0cd922aa9d8f" />
|
||||||
|
<project path="art" name="platform/art" groups="notdefault,platform-""" + self.platform + """
|
||||||
|
" /></manifest>
|
||||||
|
""")
|
||||||
|
self.maxDiff = None
|
||||||
|
self._superproject = git_superproject.Superproject(manifest, self.repodir,
|
||||||
|
self.git_event_log)
|
||||||
|
self.assertEqual(len(self._superproject._manifest.projects), 3)
|
||||||
|
projects = self._superproject._manifest.projects
|
||||||
|
data = ('160000 commit 2c2724cb36cd5a9cec6c852c681efc3b7c6b86ea\tart\x00'
|
||||||
|
'160000 commit e9d25da64d8d365dbba7c8ee00fe8c4473fe9a06\tvendor/x\x00')
|
||||||
|
with mock.patch.object(self._superproject, '_Init', return_value=True):
|
||||||
|
with mock.patch.object(self._superproject, '_Fetch', return_value=True):
|
||||||
|
with mock.patch.object(self._superproject,
|
||||||
|
'_LsTree',
|
||||||
|
return_value=data):
|
||||||
|
# Create temporary directory so that it can write the file.
|
||||||
|
os.mkdir(self._superproject._superproject_path)
|
||||||
|
update_result = self._superproject.UpdateProjectsRevisionId(projects)
|
||||||
|
self.assertIsNotNone(update_result.manifest_path)
|
||||||
|
self.assertFalse(update_result.fatal)
|
||||||
|
with open(update_result.manifest_path, 'r') as fp:
|
||||||
|
manifest_xml_data = fp.read()
|
||||||
|
# Verify platform/vendor/x's project revision hasn't changed.
|
||||||
|
self.assertEqual(
|
||||||
|
sort_attributes(manifest_xml_data),
|
||||||
|
'<?xml version="1.0" ?><manifest>'
|
||||||
|
'<remote fetch="http://localhost" name="default-remote"/>'
|
||||||
|
'<default remote="default-remote" revision="refs/heads/main"/>'
|
||||||
|
'<project groups="notdefault,platform-' + self.platform + '" '
|
||||||
|
'name="platform/art" path="art" '
|
||||||
|
'revision="2c2724cb36cd5a9cec6c852c681efc3b7c6b86ea"/>'
|
||||||
|
'<project name="platform/vendor/x" path="vendor/x" '
|
||||||
|
'revision="e9d25da64d8d365dbba7c8ee00fe8c4473fe9a06"/>'
|
||||||
|
'<project name="platform/vendor/y" path="vendor/y" '
|
||||||
|
'revision="52d3c9f7c107839ece2319d077de0cd922aa9d8f"/>'
|
||||||
|
'<superproject name="superproject"/>'
|
||||||
|
'</manifest>')
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
Loading…
Reference in New Issue
Block a user