-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtest_git.py
380 lines (333 loc) · 10.3 KB
/
test_git.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
"""Tests for GitURL."""
from __future__ import annotations
import typing
import pytest
from libvcs.url.base import RuleMap
from libvcs.url.git import (
AWS_CODE_COMMIT_DEFAULT_RULES,
DEFAULT_RULES,
PIP_DEFAULT_RULES,
GitBaseURL,
GitURL,
)
if typing.TYPE_CHECKING:
from libvcs.sync.git import GitSync
class GitURLFixture(typing.NamedTuple):
"""Test fixture for GitURL."""
url: str
is_valid: bool
git_url: GitURL
TEST_FIXTURES: list[GitURLFixture] = [
GitURLFixture(
url="https://github.com/vcs-python/libvcs.git",
is_valid=True,
git_url=GitURL(
url="https://github.com/vcs-python/libvcs.git",
scheme="https",
hostname="github.com",
path="vcs-python/libvcs",
),
),
GitURLFixture(
url="https://github.com/vcs-python/libvcs",
is_valid=True,
git_url=GitURL(
url="https://github.com/vcs-python/libvcs",
scheme="https",
hostname="github.com",
path="vcs-python/libvcs",
),
),
GitURLFixture(
url="https://github.com:7999/vcs-python/libvcs",
is_valid=True,
git_url=GitURL(
url="https://github.com:7999/vcs-python/libvcs",
scheme="https",
hostname="github.com",
port=7999,
path="vcs-python/libvcs",
),
),
#
# SCP-style URLs:
# e.g. '[email protected]:foo/bar.git'
#
GitURLFixture(
url="[email protected]:liuxinyu95/AlgoXY.git",
is_valid=True,
git_url=GitURL(
url="[email protected]:liuxinyu95/AlgoXY.git",
scheme=None,
hostname="github.com",
path="liuxinyu95/AlgoXY",
),
),
GitURLFixture(
url="[email protected]:vcs-python/libvcs.git",
is_valid=True,
git_url=GitURL(
url="[email protected]:vcs-python/libvcs.git",
hostname="github.com",
path="vcs-python/libvcs",
),
),
]
@pytest.mark.parametrize(
("url", "is_valid", "git_url"),
TEST_FIXTURES,
)
def test_git_url(
url: str,
is_valid: bool,
git_url: GitURL,
git_repo: GitSync,
) -> None:
"""Tests for GitURL."""
url = url.format(local_repo=git_repo.path)
git_url.url = git_url.url.format(local_repo=git_repo.path)
assert GitURL.is_valid(url) == is_valid, f"{url} compatibility should be {is_valid}"
assert GitURL(url) == git_url
class GitURLKwargs(typing.TypedDict):
"""GitURL with keyword arguments."""
url: str
class GitURLKwargsFixture(typing.NamedTuple):
"""Test fixture for GitURL with keyword arguments."""
url: str
is_valid: bool
is_generic: bool # If git base URLs would be truthy
git_url_kwargs: GitURLKwargs
#
# Extensibility patterns, via pip:
# w/ VCS prefixes, e.g. git+https, git+ssh, git+file
# https://pip.pypa.io/en/stable/topics/vcs-support/
#
#
PIP_TEST_FIXTURES: list[GitURLKwargsFixture] = [
GitURLKwargsFixture(
url="git+https://github.com/liuxinyu95/AlgoXY.git",
is_valid=True,
is_generic=False,
git_url_kwargs=GitURLKwargs(url="git+https://github.com/liuxinyu95/AlgoXY.git"),
),
GitURLKwargsFixture(
url="git+ssh://[email protected]:tony/AlgoXY.git",
is_valid=True,
is_generic=False,
git_url_kwargs=GitURLKwargs(url="git+ssh://[email protected]:tony/AlgoXY.git"),
),
GitURLKwargsFixture(
url="git+file://{local_repo}",
is_valid=True,
is_generic=False,
git_url_kwargs=GitURLKwargs(url="git+file://{local_repo}"),
),
# Incompatible
GitURLKwargsFixture(
url="git+ssh://[email protected]/tony/AlgoXY.git",
is_valid=True,
is_generic=False,
git_url_kwargs=GitURLKwargs(url="git+ssh://[email protected]/tony/AlgoXY.git"),
),
]
@pytest.mark.parametrize(
GitURLKwargsFixture._fields,
PIP_TEST_FIXTURES,
)
def test_git_url_extension_pip(
url: str,
is_valid: bool,
is_generic: bool,
git_url_kwargs: GitURLKwargs,
git_repo: GitSync,
) -> None:
"""Test GitURL external extension from pip."""
class GitURLWithPip(GitBaseURL):
rule_map = RuleMap(
_rule_map={m.label: m for m in [*DEFAULT_RULES, *PIP_DEFAULT_RULES]},
)
git_url_kwargs["url"] = git_url_kwargs["url"].format(local_repo=git_repo.path)
url = url.format(local_repo=git_repo.path)
git_url = GitURLWithPip(**git_url_kwargs)
git_url.url = git_url.url.format(local_repo=git_repo.path)
if is_generic:
assert GitBaseURL.is_valid(url) == is_valid, (
f"{url} compatibility should be {is_valid}"
)
else:
assert GitBaseURL.is_valid(url) != is_valid, (
f"{url} compatibility should work with core, expects {not is_valid}"
)
assert GitURLWithPip.is_valid(url) == is_valid, (
f"{url} compatibility should be {is_valid}"
)
assert GitURLWithPip(url) == git_url
#
# Extensibility patterns, via AWS Code Commit:
# w/ VCS prefixes, for example:
# - https://git-codecommit
# - ssh://git-codecommit
# - codecommit::
# - codecommit://
#
# https://docs.aws.amazon.com/codecommit/
AWS_CODE_COMMIT_TEST_FIXTURES: list[GitURLKwargsFixture] = [
GitURLKwargsFixture(
url="https://git-codecommit.us-east-1.amazonaws.com/v1/repos/test",
is_valid=True,
is_generic=True,
git_url_kwargs=GitURLKwargs(
url="https://git-codecommit.us-east-1.amazonaws.com/v1/repos/test",
),
),
GitURLKwargsFixture(
url="ssh://git-codecommit.us-east-1.amazonaws.com/v1/repos/test",
is_valid=True,
is_generic=False,
git_url_kwargs=GitURLKwargs(
url="ssh://git-codecommit.us-east-1.amazonaws.com/v1/repos/test",
),
),
GitURLKwargsFixture(
url="codecommit://MyDemoRepo",
is_valid=True,
is_generic=False,
git_url_kwargs=GitURLKwargs(url="codecommit://MyDemoRepo"),
),
GitURLKwargsFixture(
url="codecommit::ap-northeast-1://MyDemoRepo",
is_valid=True,
is_generic=False,
git_url_kwargs=GitURLKwargs(url="codecommit::ap-northeast-1://MyDemoRepo"),
),
]
@pytest.mark.parametrize(
GitURLKwargsFixture._fields,
AWS_CODE_COMMIT_TEST_FIXTURES,
)
def test_git_url_extension_aws_code_commit(
url: str,
is_valid: bool,
is_generic: bool,
git_url_kwargs: GitURLKwargs,
git_repo: GitSync,
) -> None:
"""Test GitURL external extension from aws_code_commit."""
class GitURLWithAWSCodeCommit(GitBaseURL):
rule_map = RuleMap(
_rule_map={
m.label: m for m in [*DEFAULT_RULES, *AWS_CODE_COMMIT_DEFAULT_RULES]
},
)
git_url_kwargs["url"] = git_url_kwargs["url"].format(local_repo=git_repo.path)
url = url.format(local_repo=git_repo.path)
git_url = GitURLWithAWSCodeCommit(**git_url_kwargs)
git_url.url = git_url.url.format(local_repo=git_repo.path)
if is_generic:
assert GitBaseURL.is_valid(url) == is_valid, (
f"{url} compatibility should be {is_valid}"
)
else:
assert GitBaseURL.is_valid(url) != is_valid, (
f"{url} compatibility should work with core, expects {not is_valid}"
)
assert GitURLWithAWSCodeCommit.is_valid(url) == is_valid, (
f"{url} compatibility should be {is_valid}"
)
assert GitURLWithAWSCodeCommit(url) == git_url
class ToURLFixture(typing.NamedTuple):
"""Test fixture for GitURL.to_url()."""
git_url: GitURL
expected: str
@pytest.mark.parametrize(
("git_url", "expected"),
[
ToURLFixture(
expected="https://github.com/vcs-python/libvcs.git",
git_url=GitURL(
url="https://github.com/vcs-python/libvcs.git",
scheme="https",
hostname="github.com",
path="vcs-python/libvcs",
),
),
ToURLFixture(
expected="https://github.com/vcs-python/libvcs",
git_url=GitURL(
url="https://github.com/vcs-python/libvcs",
scheme="https",
hostname="github.com",
path="vcs-python/libvcs",
),
),
#
# SCP-style URLs:
# e.g. '[email protected]:foo/bar.git'
#
ToURLFixture(
expected="[email protected]:liuxinyu95/AlgoXY.git",
git_url=GitURL(
url="[email protected]:liuxinyu95/AlgoXY.git",
scheme=None,
hostname="github.com",
path="liuxinyu95/AlgoXY",
),
),
ToURLFixture(
expected="https://github.com/vcs-python/libvcs.git",
git_url=GitURL(
url="[email protected]:vcs-python/libvcs.git",
scheme="https",
hostname="github.com",
path="vcs-python/libvcs",
),
),
],
)
def test_git_to_url(
expected: str,
git_url: GitURL,
git_repo: GitSync,
) -> None:
"""Test GitURL.to_url()."""
git_url.url = git_url.url.format(local_repo=git_repo.path)
assert git_url.to_url() == expected
class RevFixture(typing.NamedTuple):
"""Test fixture for GitURL with revisions."""
git_url_kwargs: GitURLKwargs
expected: str | None
# Expected revision / branch / tag
@pytest.mark.parametrize(
("git_url_kwargs", "expected"),
[
RevFixture(
expected=None,
git_url_kwargs=GitURLKwargs(
url="git+ssh://[email protected]:7999/PROJ/repo.git",
),
),
RevFixture(
expected="eucalyptus",
git_url_kwargs=GitURLKwargs(
url="git+ssh://[email protected]:7999/PROJ/repo.git@eucalyptus",
),
),
RevFixture(
expected="build.2600-whistler",
git_url_kwargs=GitURLKwargs(
url="git+https://github.com/PROJ/[email protected]",
),
),
],
)
def test_git_revs(
expected: str,
git_url_kwargs: GitURLKwargs,
) -> None:
"""Tests for GitURL with revisions."""
class GitURLWithPip(GitURL):
rule_map = RuleMap(
_rule_map={m.label: m for m in [*DEFAULT_RULES, *PIP_DEFAULT_RULES]},
)
git_url = GitURLWithPip(**git_url_kwargs)
assert git_url.rev == expected