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

testhelpers: class for fixtures involving hg-git GitLab mirroring

The new `GitLabMirrorFixture` will hold the two repositories
and the notification interception mechanism.

We demonstrate by rewriting only two tests, but the goal is
to make all of them just use the new fixtures for better clarity
and maintanibility.

Another goal is to use this class directly in HGitaly comparison
tests with Gitaly (hgitaly#35).

The new class is mostly tested indirectly. A minor difference
with the previous test is that it actually creates the Git repo
(which hg-git would otherwise do anyway). This was felt to be
clearer, and tests depending on this won't have to make special
cases for when no mirroring actually occurred (can imagine that
to happen with tests for error paths).
parent bee861c7
No related branches found
No related tags found
1 merge request!48Integration tests overhaul
......@@ -7,6 +7,10 @@
"""Test support for users of heptapod.gitlab
"""
from __future__ import absolute_import
import attr
from copy import deepcopy
import logging
import shutil
from heptapod.gitlab import hooks
......@@ -10,6 +14,10 @@
from heptapod.gitlab import hooks
from .hg import RepoWrapper
from .git import GitRepo
logger = logging.getLogger(__name__)
def patch_gitlab_hooks(monkeypatch, records, action=None):
......@@ -27,3 +35,81 @@
monkeypatch.setattr(hooks.Hook, '__init__', init)
monkeypatch.setattr(hooks.PreReceive, '__call__', call)
monkeypatch.setattr(hooks.PostReceive, '__call__', call)
@attr.s
class GitLabMirrorFixture:
"""Helper class to create fixtures for GitLab aware hg-git mirroring.
The pytest fixture functions themselves will have to be provided with
the tests that use them.
It is not the role of this class to make decisions about scopes or
the kind of root directory it operates in.
There will be later on a fixture for Mercurial-native Heptapod
repositories, hence GitLab notifications without a Git repository.
"""
base_path = attr.ib()
hg_repo_wrapper = attr.ib()
git_repo = attr.ib()
gitlab_notifs = attr.ib()
import heptapod.testhelpers.gitlab
@classmethod
def init(cls, base_path, monkeypatch, hg_config=None):
if hg_config is None:
config = {}
else:
config = deepcopy(hg_config)
config.setdefault('extensions', {})['hggit'] = ''
config['phases'] = dict(publish=False)
hg_repo_wrapper = RepoWrapper.init(base_path / 'repo.hg',
config=config)
git_repo = GitRepo.init(base_path / 'repo.git')
notifs = []
patch_gitlab_hooks(monkeypatch, notifs)
return cls(hg_repo_wrapper=hg_repo_wrapper,
git_repo=git_repo,
gitlab_notifs=notifs,
base_path=base_path)
def clear_gitlab_notifs(self):
"""Forget about all notifications already sent to GitLab.
Subsequent notifications will keep on being recorded in
``self.gitlab_notifs``.
"""
del self.gitlab_notifs[:]
def activate_mirror(self):
"""Make mirroring from Mercurial to Git repo automatic.
This is essential to get the mirroring code to run in-transaction.
"""
self.hg_repo_wrapper.repo.ui.setconfig(
b'hooks', b'pretxnclose.testcase',
b'python:heptapod.hooks.gitlab_mirror.mirror')
def delete(self):
git_path = self.git_repo.path
try:
shutil.rmtree(git_path)
except Exception:
logger.exception("Error removing the Git repo at %r", git_path)
hg_path = self.hg_repo_wrapper.repo.root
try:
shutil.rmtree(hg_path)
except Exception:
logger.exception("Error removing the Mercurial repo at %r",
hg_path)
def __enter__(self):
return self
def __exit__(self, *exc_args):
self.delete()
return False # no exception handling related to exc_args
# Copyright 2019 Georges Racinet <georges.racinet@octobus.net>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
#
# SPDX-License-Identifier: GPL-2.0-or-later
import shutil
from ..gitlab import GitLabMirrorFixture
def test_fixture_hg_teardown_error(tmpdir, monkeypatch):
"""Trigger a cleanup error by removing the Mercurial repo early."""
with GitLabMirrorFixture.init(tmpdir, monkeypatch) as fixture:
shutil.rmtree(fixture.hg_repo_wrapper.repo.root)
def test_fixture_git_teardown_error(tmpdir, monkeypatch):
"""Trigger a cleanup error by removing the Git repo early."""
with GitLabMirrorFixture.init(tmpdir, monkeypatch) as fixture:
shutil.rmtree(str(fixture.git_repo.path))
......@@ -12,6 +12,7 @@
"""
from __future__ import absolute_import
import contextlib
import pytest
import re
......@@ -35,6 +36,7 @@
)
from heptapod.testhelpers.gitlab import (
patch_gitlab_hooks,
GitLabMirrorFixture,
)
from hgext3rd.heptapod.branch import (
get_default_gitlab_branch,
......@@ -67,6 +69,42 @@
monkeypatch.setattr(uimod.ui, 'warn', warn)
@contextlib.contextmanager
def mirror_fixture_gen(tmpdir, monkeypatch):
"""Common fixture generator."""
with GitLabMirrorFixture.init(tmpdir, monkeypatch,
hg_config=common_config()) as fixture:
yield fixture
@pytest.fixture()
def empty_fixture(tmpdir, monkeypatch):
"""A mirror fixture where both repositories are empty."""
with mirror_fixture_gen(tmpdir, monkeypatch) as fixture:
yield fixture
@pytest.fixture()
def main_fixture(tmpdir, monkeypatch):
"""A mirror fixture with two public changesets in the Mercurial repo only.
The changesets are kept on the fixture object as additional attributes
``base_ctx`` and ``ctx1``.
It is up to the test using this fixture to mirror to GitLab or not.
"""
with mirror_fixture_gen(tmpdir, monkeypatch) as fixture:
wrapper = fixture.hg_repo_wrapper
fixture.base_ctx = wrapper.commit_file('foo',
content='foo0',
message='default0')
fixture.ctx1 = wrapper.commit_file('foo',
content='foo1',
message="default1")
wrapper.set_phase('public', ['.'])
yield fixture
def make_empty_repo(path):
config = common_config()
config['extensions']['hggit'] = ''
......@@ -114,12 +152,11 @@
b'python:heptapod.hooks.gitlab_mirror.mirror')
def test_basic(tmpdir, monkeypatch):
notifs = []
patch_gitlab_hooks(monkeypatch, notifs)
repo_path = tmpdir.join('repo.hg')
repo, base_ctx = make_main_repo(repo_path)
git_repo = GitRepo.init(tmpdir.join('repo.git'))
def test_basic(main_fixture):
repo = main_fixture.hg_repo_wrapper
git_repo = main_fixture.git_repo
notifs = main_fixture.gitlab_notifs
repo.command('gitlab-mirror')
assert git_repo.branch_titles() == {b'branch/default': b'default1'}
......@@ -194,12 +231,11 @@
]
def test_tags(tmpdir, monkeypatch):
notifs = []
patch_gitlab_hooks(monkeypatch, notifs)
repo_path = tmpdir.join('repo.hg')
repo, base_ctx = make_main_repo(repo_path)
git_repo = GitRepo.init(tmpdir.join('repo.git'))
def test_tags(main_fixture):
repo = main_fixture.hg_repo_wrapper
git_repo = main_fixture.git_repo
notifs = main_fixture.gitlab_notifs
base_ctx = main_fixture.base_ctx
# Creation
repo.command('tag', b'v1.2.3', rev=base_ctx.hex())
......@@ -220,7 +256,7 @@
b'refs/tags/v1.2.3': (ZERO_SHA, tagged_git_sha_0),
}
assert notifs == [('pre-receive', changes), ('post-receive', changes)]
del notifs[:]
main_fixture.clear_gitlab_notifs()
# Modification
repo.command('tag', b'v1.2.3', rev=b'1', force=True)
......@@ -241,9 +277,8 @@
# Removal not supported in Heptapod 0.8. TODO later
def test_tags_obsolete(tmpdir, monkeypatch):
notifs = []
patch_gitlab_hooks(monkeypatch, notifs)
def test_tags_obsolete(empty_fixture):
fixture = empty_fixture
# we'll need to perform a pull in order to amend a tagged changeset
# and rebase the tagging changeset in a single transaction.
......@@ -247,6 +282,6 @@
# we'll need to perform a pull in order to amend a tagged changeset
# and rebase the tagging changeset in a single transaction.
src_path = tmpdir / 'src.hg'
src_path = fixture.base_path / 'src.hg'
src = RepoWrapper.init(src_path, config=common_config())
......@@ -251,7 +286,7 @@
src = RepoWrapper.init(src_path, config=common_config())
dest = make_empty_repo(tmpdir / 'dest.hg')
activate_mirror(dest)
dest = fixture.hg_repo_wrapper
fixture.activate_mirror()
def dest_pull():
dest.command('pull', source=as_bytes(src_path), force=True)
......
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