-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtest_svn.py
215 lines (183 loc) · 5.79 KB
/
test_svn.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
"""Tests for SVNUrl."""
from __future__ import annotations
import typing
import pytest
from libvcs.url.base import RuleMap
from libvcs.url.svn import DEFAULT_RULES, PIP_DEFAULT_RULES, SvnBaseURL, SvnURL
if typing.TYPE_CHECKING:
from libvcs.sync.svn import SvnSync
class SvnURLFixture(typing.NamedTuple):
"""Test fixture for SvnURL."""
url: str
is_valid: bool
svn_url: SvnURL
# Valid schemes for svn(1).
# See Table 1.1 Repository access URLs in SVN Book
# https://svnbook.red-bean.com/nightly/en/svn.basic.in-action.html#svn.basic.in-action.wc.tbl-1
TEST_FIXTURES: list[SvnURLFixture] = [
SvnURLFixture(
url="https://bitbucket.com/vcs-python/libvcs",
is_valid=True,
svn_url=SvnURL(
url="https://bitbucket.com/vcs-python/libvcs",
scheme="https",
hostname="bitbucket.com",
path="vcs-python/libvcs",
),
),
SvnURLFixture(
url="https://bitbucket.com/vcs-python/libvcs",
is_valid=True,
svn_url=SvnURL(
url="https://bitbucket.com/vcs-python/libvcs",
scheme="https",
hostname="bitbucket.com",
path="vcs-python/libvcs",
),
),
SvnURLFixture(
url="svn://[email protected]/tony/AlgoXY",
is_valid=True,
svn_url=SvnURL(
url="svn://[email protected]/tony/AlgoXY",
scheme="https",
hostname="bitbucket.com",
path="tony/AlgoXY",
),
),
SvnURLFixture(
url="svn+ssh://[email protected]/tony/AlgoXY",
is_valid=True,
svn_url=SvnURL(
url="svn+ssh://[email protected]/tony/AlgoXY",
scheme="https",
hostname="bitbucket.com",
path="tony/AlgoXY",
),
),
]
@pytest.mark.parametrize(
("url", "is_valid", "svn_url"),
TEST_FIXTURES,
)
def test_svn_url(
url: str,
is_valid: bool,
svn_url: SvnURL,
svn_repo: SvnSync,
) -> None:
"""Test SvnURL."""
url = url.format(local_repo=svn_repo.path)
svn_url.url = svn_url.url.format(local_repo=svn_repo.path)
assert SvnURL.is_valid(url) == is_valid, f"{url} compatibility should be {is_valid}"
assert SvnURL(url) == svn_url
class SvnURLKwargs(typing.TypedDict):
"""SvnURL dictionary with keyword arguments."""
url: str
class SvnURLKwargsFixture(typing.NamedTuple):
"""Test fixture for SvnURL with keyword arguments."""
url: str
is_valid: bool
svn_url_kwargs: SvnURLKwargs
#
# Extensibility patterns, via pip:
# w/ VCS prefixes, e.g. svn+https, svn+ssh, svn+file
# https://pip.pypa.io/en/stable/topics/vcs-support/
#
#
PIP_TEST_FIXTURES: list[SvnURLKwargsFixture] = [
SvnURLKwargsFixture(
url="svn+http://[email protected]/tony/AlgoXY",
is_valid=True,
svn_url_kwargs=SvnURLKwargs(url="svn+http://[email protected]/tony/AlgoXY"),
),
SvnURLKwargsFixture(
url="svn+https://[email protected]/tony/AlgoXY",
is_valid=True,
svn_url_kwargs=SvnURLKwargs(url="svn+https://[email protected]/tony/AlgoXY"),
),
SvnURLKwargsFixture(
url="svn+file://{local_repo}",
is_valid=True,
svn_url_kwargs=SvnURLKwargs(url="svn+file://{local_repo}"),
),
]
@pytest.mark.parametrize(
("url", "is_valid", "svn_url_kwargs"),
PIP_TEST_FIXTURES,
)
def test_svn_url_extension_pip(
url: str,
is_valid: bool,
svn_url_kwargs: SvnURLKwargs,
svn_repo: SvnSync,
) -> None:
"""Test SvnURL external extension from pip."""
class SvnURLWithPip(SvnURL):
rule_map = RuleMap(
_rule_map={m.label: m for m in [*DEFAULT_RULES, *PIP_DEFAULT_RULES]},
)
svn_url_kwargs["url"] = svn_url_kwargs["url"].format(local_repo=svn_repo.path)
url = url.format(local_repo=svn_repo.path)
svn_url = SvnURLWithPip(**svn_url_kwargs)
svn_url.url = svn_url.url.format(local_repo=svn_repo.path)
assert SvnBaseURL.is_valid(url) != is_valid, (
f"{url} compatibility should work with core, expects {not is_valid}"
)
assert SvnURL.is_valid(url) == is_valid, (
f"{url} compatibility should work with core, expects {not is_valid}"
)
assert SvnURLWithPip.is_valid(url) == is_valid, (
f"{url} compatibility should be {is_valid}"
)
assert SvnURLWithPip(url) == svn_url
class ToURLFixture(typing.NamedTuple):
"""Test fixture for SVN URL conversion."""
svn_url: SvnURL
expected: str
@pytest.mark.parametrize(
("svn_url", "expected"),
[
ToURLFixture(
expected="https://bitbucket.com/vcs-python/libvcs",
svn_url=SvnURL(
url="https://bitbucket.com/vcs-python/libvcs",
scheme="https",
hostname="bitbucket.com",
path="vcs-python/libvcs",
),
),
#
# SCP-style URLs:
# e.g. 'ssh://[email protected]/foo/bar'
#
ToURLFixture(
expected="ssh://[email protected]/liuxinyu95/AlgoXY",
svn_url=SvnURL(
url="ssh://[email protected]/liuxinyu95/AlgoXY",
user="svn",
scheme="ssh",
hostname="bitbucket.com",
path="liuxinyu95/AlgoXY",
),
),
ToURLFixture(
expected="ssh://[email protected]/vcs-python/libvcs",
svn_url=SvnURL(
url="[email protected]/vcs-python/libvcs",
user="username",
scheme="ssh",
hostname="bitbucket.com",
path="vcs-python/libvcs",
),
),
],
)
def test_svn_to_url(
expected: str,
svn_url: SvnURL,
svn_repo: SvnSync,
) -> None:
"""Test SvnURL.to_url()."""
svn_url.url = svn_url.url.format(local_repo=svn_repo.path)
assert svn_url.to_url() == expected