Skip to content
Snippets Groups Projects
Commit ac03d11b authored by Georges Racinet's avatar Georges Racinet
Browse files

HeptapodGitHandler.ensure_gitlab_branches()

This will make HGitaly able to rely on the file presence.
parent 4e253b2a
No related branches found
No related tags found
No related merge requests found
......@@ -99,6 +99,10 @@
(line.split(b' ', 1) for line in fobj)}
def remove_gitlab_branches(repo):
repo.svfs.unlink(GITLAB_BRANCHES_FILE_NAME)
def gitlab_branches(repo):
"""Return the GitLab branches or GITLAB_BRANCHES_MISSING.
......
......@@ -54,4 +54,5 @@
from . import obsutil
from .branch import (
GITLAB_BRANCHES_MISSING,
set_default_gitlab_branch,
......@@ -57,4 +58,5 @@
set_default_gitlab_branch,
gitlab_branches,
write_gitlab_branches,
)
......@@ -1028,3 +1030,20 @@
if rev is None:
return None
return self.repo[rev]
def ensure_gitlab_branches(self):
"""Init GitLab branches state file from Git repository if needed.
Nothing happens if the file is already present.
"""
repo = self.repo
if gitlab_branches(repo) is not GITLAB_BRANCHES_MISSING:
return
self.ui.note(b"Initializing GitLab branches state file "
b"for repo at '%s'" % repo.root)
write_gitlab_branches(
repo,
self.gitlab_branches_hg_shas(self.git.refs.as_dict())
)
......@@ -40,6 +40,8 @@
from hgext3rd.heptapod.branch import (
get_default_gitlab_branch,
read_gitlab_branches,
write_gitlab_branches,
remove_gitlab_branches,
)
from mercurial import (
encoding,
......@@ -1312,3 +1314,32 @@
# instance level cache got invalidated
assert handler.get_default_git_ref() == other_ref
def test_ensure_gitlab_branches_file(main_fixture):
wrapper = main_fixture.hg_repo_wrapper
wrapper.command('gitlab-mirror')
repo = wrapper.repo
# making sure we start afresh
remove_gitlab_branches(repo)
with pytest.raises(FileNotFoundError):
read_gitlab_branches(repo)
handler = HeptapodGitHandler(repo, repo.ui)
handler.ensure_gitlab_branches()
assert read_gitlab_branches(repo) == {b'branch/default': repo[b'.'].hex()}
# doesn't do anything if already there
branches = {b'foo': b'deadbeef' * 5}
write_gitlab_branches(wrapper.repo, branches)
handler.ensure_gitlab_branches()
assert read_gitlab_branches(repo) == branches
def test_ensure_gitlab_branches_file_empty_repo(empty_fixture):
wrapper = empty_fixture.hg_repo_wrapper
handler = HeptapodGitHandler(wrapper.repo, wrapper.repo.ui)
handler.ensure_gitlab_branches()
assert read_gitlab_branches(wrapper.repo) == {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment