180 lines
6.5 KiB
Python
180 lines
6.5 KiB
Python
# Copyright (C) 2010-2024 RhodeCode GmbH
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License, version 3
|
|
# (only), as published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# This program is dual-licensed. If you wish to learn more about the
|
|
# RhodeCode Enterprise Edition, including its added features, Support services,
|
|
# and proprietary license terms, please see https://rhodecode.com/licenses/
|
|
|
|
|
|
import pytest
|
|
|
|
from rhodecode.api.tests.utils import build_data, api_call, assert_error
|
|
|
|
|
|
@pytest.mark.usefixtures("testuser_api", "app")
|
|
class TestGetRepoChangeset(object):
|
|
@pytest.mark.parametrize("details", ["basic", "extended", "full"])
|
|
def test_get_repo_changeset(self, details, backend):
|
|
commit = backend.repo.get_commit(commit_idx=0)
|
|
__, params = build_data(
|
|
self.apikey,
|
|
"get_repo_changeset",
|
|
repoid=backend.repo_name,
|
|
revision=commit.raw_id,
|
|
details=details,
|
|
)
|
|
response = api_call(self.app, params)
|
|
result = response.json["result"]
|
|
assert result["revision"] == 0
|
|
assert result["raw_id"] == commit.raw_id
|
|
|
|
if details == "full":
|
|
assert result["refs"]["bookmarks"] == getattr(commit, "bookmarks", [])
|
|
assert result["refs"]["branches"] == commit.branches
|
|
assert result["refs"]["tags"] == commit.tags
|
|
|
|
@pytest.mark.parametrize("details", ["basic", "extended", "full"])
|
|
def test_get_repo_changeset_bad_type(self, details, backend):
|
|
id_, params = build_data(
|
|
self.apikey,
|
|
"get_repo_changeset",
|
|
repoid=backend.repo_name,
|
|
revision=0,
|
|
details=details,
|
|
)
|
|
response = api_call(self.app, params)
|
|
expected = "commit_id must be a string value got <class 'int'> instead"
|
|
assert_error(id_, expected, given=response.body)
|
|
|
|
@pytest.mark.parametrize("details", ["basic", "extended", "full"])
|
|
def test_get_repo_changesets(self, details, backend):
|
|
limit = 2
|
|
commit = backend.repo.get_commit(commit_idx=0)
|
|
__, params = build_data(
|
|
self.apikey,
|
|
"get_repo_changesets",
|
|
repoid=backend.repo_name,
|
|
start_rev=commit.raw_id,
|
|
limit=limit,
|
|
details=details,
|
|
)
|
|
response = api_call(self.app, params)
|
|
result = response.json["result"]
|
|
assert result
|
|
assert len(result) == limit
|
|
for x in range(limit):
|
|
assert result[x]["revision"] == x
|
|
|
|
if details == "full":
|
|
for x in range(limit):
|
|
assert "bookmarks" in result[x]["refs"]
|
|
assert "branches" in result[x]["refs"]
|
|
assert "tags" in result[x]["refs"]
|
|
|
|
@pytest.mark.parametrize("details", ["basic", "extended", "full"])
|
|
@pytest.mark.parametrize(
|
|
"start_rev, expected_revision",
|
|
[
|
|
("0", 0),
|
|
("10", 10),
|
|
("20", 20),
|
|
],
|
|
)
|
|
@pytest.mark.backends("hg", "git")
|
|
def test_get_repo_changesets_commit_range(self, details, backend, start_rev, expected_revision):
|
|
limit = 10
|
|
__, params = build_data(
|
|
self.apikey,
|
|
"get_repo_changesets",
|
|
repoid=backend.repo_name,
|
|
start_rev=start_rev,
|
|
limit=limit,
|
|
details=details,
|
|
)
|
|
response = api_call(self.app, params)
|
|
result = response.json["result"]
|
|
assert result
|
|
assert len(result) == limit
|
|
for i in range(limit):
|
|
assert result[i]["revision"] == int(expected_revision) + i
|
|
|
|
@pytest.mark.parametrize("details", ["basic", "extended", "full"])
|
|
@pytest.mark.parametrize(
|
|
"start_rev, expected_revision",
|
|
[
|
|
("0", 0),
|
|
("10", 9),
|
|
("20", 19),
|
|
],
|
|
)
|
|
def test_get_repo_changesets_commit_range_svn(self, details, backend_svn, start_rev, expected_revision):
|
|
# TODO: johbo: SVN showed a problem here: The parameter "start_rev"
|
|
# in our API allows to pass in a "Commit ID" as well as a
|
|
# "Commit Index". In the case of Subversion it is not possible to
|
|
# distinguish these cases. As a workaround we implemented this
|
|
# behavior which gives a preference to see it as a "Commit ID".
|
|
|
|
limit = 10
|
|
__, params = build_data(
|
|
self.apikey,
|
|
"get_repo_changesets",
|
|
repoid=backend_svn.repo_name,
|
|
start_rev=start_rev,
|
|
limit=limit,
|
|
details=details,
|
|
)
|
|
response = api_call(self.app, params)
|
|
result = response.json["result"]
|
|
assert result
|
|
assert len(result) == limit
|
|
for i in range(limit):
|
|
assert result[i]["revision"] == int(expected_revision) + i
|
|
|
|
@pytest.mark.parametrize("details", ["basic", "extended", "full"])
|
|
def test_get_repo_changesets_bad_type(self, details, backend):
|
|
id_, params = build_data(
|
|
self.apikey,
|
|
"get_repo_changesets",
|
|
repoid=backend.repo_name,
|
|
start_rev=0,
|
|
limit=2,
|
|
details=details,
|
|
)
|
|
response = api_call(self.app, params)
|
|
expected = "commit_id must be a string value got <class 'int'> instead"
|
|
assert_error(id_, expected, given=response.body)
|
|
|
|
@pytest.mark.skip(reason="This test is currently broken")
|
|
@pytest.mark.parametrize("details", ["basic", "extended", "full"])
|
|
def test_get_repo_changeset_empty_revs(self, details, backend_svn):
|
|
"""
|
|
Test case for repositories with empty revisions.
|
|
Ensures that no crashes occur and an empty list is returned.
|
|
"""
|
|
empty_rev_id = "1000"
|
|
|
|
__, params = build_data(
|
|
self.apikey,
|
|
"get_repo_changesets",
|
|
repoid=backend_svn.repo_name,
|
|
start_rev=empty_rev_id,
|
|
limit=10,
|
|
details=details,
|
|
)
|
|
|
|
response = api_call(self.app, params)
|
|
result = response.json["result"]
|
|
|
|
assert isinstance(result, list)
|
|
assert len(result) == 0
|