Skip to content
Snippets Groups Projects
Verified Commit 8e4dd178 authored by Vincent Sellier's avatar Vincent Sellier
Browse files

cgit: remove the repository urls's trailing /

Ensure the behavior is the same when a base url is provided or not

Related to T3013#57810
parent 003cf549
No related branches found
Tags v0.7.1
No related merge requests found
......@@ -102,7 +102,7 @@ class CGitLister(StatelessLister[Repositories]):
repo_url = None
git_url = None
base_url = urljoin(self.url, repository_link)
base_url = urljoin(self.url, repository_link).strip("/")
if self.base_git_url: # mapping provided
# computing git url
git_url = base_url.replace(self.url, self.base_git_url)
......
......@@ -21,15 +21,13 @@ def test_lister_cgit_get_pages_one_page(requests_mock_datadir, swh_scheduler):
flattened_repos = sum(repos, [])
assert len(flattened_repos) == 977
assert (
flattened_repos[0]["url"] == "https://git.savannah.gnu.org/cgit/elisp-es.git/"
)
assert flattened_repos[0]["url"] == "https://git.savannah.gnu.org/cgit/elisp-es.git"
# note the url below is NOT a subpath of /cgit/
assert (
flattened_repos[-1]["url"] == "https://git.savannah.gnu.org/path/to/yetris.git/"
flattened_repos[-1]["url"] == "https://git.savannah.gnu.org/path/to/yetris.git"
) # noqa
# note the url below is NOT on the same server
assert flattened_repos[-2]["url"] == "http://example.org/cgit/xstarcastle.git/"
assert flattened_repos[-2]["url"] == "http://example.org/cgit/xstarcastle.git"
def test_lister_cgit_get_pages_with_pages(requests_mock_datadir, swh_scheduler):
......@@ -146,7 +144,7 @@ def test_lister_cgit_date_parsing(date_str, expected_date):
requests_mock_datadir_missing_url = requests_mock_datadir_factory(
ignore_urls=["https://git.tizen/cgit/adaptation/ap_samsung/audio-hal-e4x12/",]
ignore_urls=["https://git.tizen/cgit/adaptation/ap_samsung/audio-hal-e4x12",]
)
......
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