-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtest_pygit2.py
113 lines (94 loc) · 3.6 KB
/
test_pygit2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# pylint: disable=unused-argument
import os
import pygit2
import pytest
from pytest_mock import MockerFixture
from pytest_test_utils import TmpDir
from scmrepo.exceptions import SCMError
from scmrepo.git import Git
from scmrepo.git.backend.pygit2 import Pygit2Backend
@pytest.mark.parametrize("use_sha", [True, False])
def test_pygit_resolve_refish(tmp_dir: TmpDir, scm: Git, use_sha: str):
backend = Pygit2Backend(tmp_dir)
tmp_dir.gen("foo", "foo")
scm.add_commit("foo", message="foo")
head = scm.get_rev()
tag = "my_tag"
scm.tag(tag, annotated=True, message="create annotated tag")
if use_sha:
# refish will be annotated tag SHA (not commit SHA)
ref = backend.repo.references.get(f"refs/tags/{tag}")
refish = str(ref.target)
else:
refish = tag
assert refish != head
commit, ref = backend._resolve_refish(refish) # pylint: disable=protected-access
assert isinstance(commit, pygit2.Commit)
assert str(commit.id) == head
if not use_sha:
assert ref.name == f"refs/tags/{tag}"
@pytest.mark.parametrize("skip_conflicts", [True, False])
def test_pygit_stash_apply_conflicts(
tmp_dir: TmpDir, scm: Git, skip_conflicts: bool, mocker: MockerFixture
):
from pygit2 import GIT_CHECKOUT_ALLOW_CONFLICTS # type: ignore[attr-defined]
tmp_dir.gen("foo", "foo")
scm.add_commit("foo", message="foo")
tmp_dir.gen("foo", "bar")
scm.stash.push()
rev = scm.resolve_rev(r"stash@{0}")
backend = Pygit2Backend(tmp_dir)
mock = mocker.patch.object(backend.repo, "stash_apply")
backend._stash_apply( # pylint: disable=protected-access
rev, skip_conflicts=skip_conflicts
)
expected_strategy = (
backend._get_checkout_strategy() # pylint: disable=protected-access
)
if skip_conflicts:
expected_strategy |= GIT_CHECKOUT_ALLOW_CONFLICTS
mock.assert_called_once_with(
0,
strategy=expected_strategy,
reinstate_index=False,
)
@pytest.mark.parametrize(
"url",
[
"[email protected]:iterative/scmrepo.git",
"github.com:iterative/scmrepo.git",
"[email protected]:iterative/scmrepo.git",
"ssh://[email protected]:12345/repository.git",
],
)
def test_pygit_ssh_error(tmp_dir: TmpDir, scm: Git, url):
backend = Pygit2Backend(tmp_dir)
with pytest.raises(NotImplementedError):
with backend._get_remote(url): # pylint: disable=protected-access
pass
@pytest.mark.parametrize("name", ["committer", "author"])
def test_pygit_use_env_vars_for_signature(
tmp_dir: TmpDir, mocker: MockerFixture, name: str
):
from pygit2 import Signature
mocker.patch(
"scmrepo.git.Pygit2Backend.default_signature",
new=mocker.PropertyMock(side_effect=SCMError),
)
git = Git.init(tmp_dir)
with pytest.raises(SCMError):
_ = git.pygit2.default_signature # pylint: disable=W0104
# Make sure that the environment variables are not set to not interfere with
# with the check below
for var in [f"GIT_{name.upper()}_NAME", f"GIT_{name.upper()}_EMAIL"]:
assert os.environ.get(var, None) is None
# Basic expected behavior if vars are not set. Another sanity check
with pytest.raises(SCMError):
getattr(git.pygit2, name)
mocker.patch.dict(os.environ, {f"GIT_{name.upper()}_EMAIL": "[email protected]"})
with pytest.raises(SCMError):
getattr(git.pygit2, name)
mocker.patch.dict(os.environ, {f"GIT_{name.upper()}_NAME": "R. Daneel Olivaw"})
assert getattr(git.pygit2, name) == Signature(
email="[email protected]", name="R. Daneel Olivaw"
)