Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 21 additions & 18 deletions src/fetchcode/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,28 +293,31 @@ def get_bitbucket_data_from_purl(purl):
tags_url = tags_url.get("href")
if not tags_url:
return []
tags_data = get_response(tags_url)
tags = tags_data.get("values") or {}
while tags_url:
tags_data = get_response(tags_url)
tags = tags_data.get("values") or {}

for tag in tags:
version = tag.get("name") or ""
version_purl = PackageURL(type=purl.type, namespace=namespace, name=name, version=version)
download_url = f"{base_path}/{namespace}/{name}/downloads/{name}-{version}.tar.gz"
code_view_url = f"{bitbucket_url}/{namespace}/{name}/src/{version}"
for tag in tags:
version = tag.get("name") or ""
version_purl = PackageURL(type=purl.type, namespace=namespace, name=name, version=version)
download_url = f"{base_path}/{namespace}/{name}/downloads/{name}-{version}.tar.gz"
code_view_url = f"{bitbucket_url}/{namespace}/{name}/src/{version}"

if purl.version and version_purl.version != purl.version:
continue
if purl.version and version_purl.version != purl.version:
continue

yield Package(
api_url=api_url,
bug_tracking_url=bug_tracking_url,
code_view_url=code_view_url,
download_url=download_url,
**version_purl.to_dict(),
)
yield Package(
api_url=api_url,
bug_tracking_url=bug_tracking_url,
code_view_url=code_view_url,
download_url=download_url,
**version_purl.to_dict(),
)

if purl.version:
break
if purl.version:
return

tags_url = tags_data.get("next")


@router.route("pkg:rubygems/.*")
Expand Down
45 changes: 45 additions & 0 deletions tests/test_bitbucket_tag_pagination.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# fetchcode is a free software tool from nexB Inc. and others.
# Visit https://github.com/aboutcode-org/fetchcode for support and download.

# Copyright (c) nexB Inc. and others. All rights reserved.
# http://nexb.com and http://aboutcode.org

# This software is licensed under the Apache License version 2.0.

# You may not use this software except in compliance with the License.
# You may obtain a copy of the License at:
# http://apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software distributed
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.

import pytest

from fetchcode import package


@pytest.mark.parametrize(
"version,expected,page_count",
[(None, ["1.0", "2.0"], 2), ("2.0", ["2.0"], 2), ("1.0", ["1.0"], 1)],
)
def test_bitbucket_tag_pagination(monkeypatch, version, expected, page_count):
base = "https://api.bitbucket.org/2.0/repositories/example/project"
first = base + "/refs/tags"
second = first + "?page=2"
responses = {
base: {"links": {"tags": {"href": first}}},
first: {"values": [{"name": "1.0"}], "next": second},
second: {"values": [{"name": "2.0"}]},
}
calls = []

def response(url):
calls.append(url)
return responses[url]

monkeypatch.setattr(package, "get_response", response)
purl = "pkg:bitbucket/example/project" + ("@" + version if version else "")
result = list(package.get_bitbucket_data_from_purl(purl))
assert [item.version for item in result] == expected
assert len(calls) == 1 + page_count