##// END OF EJS Templates
feat(configs): deprecared old hooks protocol and ssh wrapper....
feat(configs): deprecared old hooks protocol and ssh wrapper. New defaults are now set on v2 keys, so previous installation are automatically set to new keys. Fallback mode is still available.

File last commit:

r5088:8f6d1ed6 default
r5496:cab50adf default
Show More
test_repo_group_schema.py
119 lines | 4.7 KiB | text/x-python | PythonLexer
/ rhodecode / tests / models / schemas / test_repo_group_schema.py
tests: fixed all tests for python3 BIG changes
r5087
repo-group-schemas: refactor repository group schemas....
r1154
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 RhodeCode GmbH
repo-group-schemas: refactor repository group schemas....
r1154 #
# 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 colander
import pytest
from rhodecode.model.validation_schema import types
from rhodecode.model.validation_schema.schemas import repo_group_schema
class TestRepoGroupSchema(object):
@pytest.mark.parametrize('given, expected', [
('my repo', 'my-repo'),
(' hello world mike ', 'hello-world-mike'),
('//group1/group2//', 'group1/group2'),
('//group1///group2//', 'group1/group2'),
('///group1/group2///group3', 'group1/group2/group3'),
('word g1/group2///group3', 'word-g1/group2/group3'),
('grou p1/gro;,,##up2//.../group3', 'grou-p1/group2/group3'),
('group,,,/,,,/1/2/3', 'group/1/2/3'),
('grou[]p1/gro;up2///gro up3', 'group1/group2/gro-up3'),
(u'grou[]p1/gro;up2///gro up3/ąć', u'group1/group2/gro-up3/ąć'),
])
def test_deserialize_repo_name(self, app, user_admin, given, expected):
schema = repo_group_schema.RepoGroupSchema().bind()
assert schema.get('repo_group_name').deserialize(given) == expected
def test_deserialize(self, app, user_admin):
schema = repo_group_schema.RepoGroupSchema().bind(
user=user_admin
)
schema_data = schema.deserialize(dict(
tests: fixed tests for new repo settings...
r1721 repo_group_name='my_schema_group',
repo-group-schemas: refactor repository group schemas....
r1154 repo_group_owner=user_admin.username
))
tests: fixed tests for new repo settings...
r1721 assert schema_data['repo_group_name'] == u'my_schema_group'
repo-group-schemas: refactor repository group schemas....
r1154 assert schema_data['repo_group'] == {
'repo_group_id': None,
'repo_group_name': types.RootLocation,
repo-groups: fixed a regression for updating nested repository groups
r2241 'repo_group_name_with_group': u'my_schema_group',
tests: fixed tests for new repo settings...
r1721 'repo_group_name_without_group': u'my_schema_group'}
repo-group-schemas: refactor repository group schemas....
r1154
@pytest.mark.parametrize('given, err_key, expected_exc', [
tests: fixed tests for new repo settings...
r1721 ('xxx/my_schema_group', 'repo_group', 'Parent repository group `xxx` does not exist'),
repo-group-schemas: refactor repository group schemas....
r1154 ('', 'repo_group_name', 'Name must start with a letter or number. Got ``'),
])
def test_deserialize_with_bad_group_name(
self, app, user_admin, given, err_key, expected_exc):
schema = repo_group_schema.RepoGroupSchema().bind(
repo_type_options=['hg'],
user=user_admin
)
with pytest.raises(colander.Invalid) as excinfo:
schema.deserialize(dict(
repo_group_name=given,
repo_group_owner=user_admin.username
))
assert excinfo.value.asdict()[err_key] == expected_exc
def test_deserialize_with_group_name(self, app, user_admin, test_repo_group):
schema = repo_group_schema.RepoGroupSchema().bind(
user=user_admin
)
tests: fixed tests for new repo settings...
r1721 full_name = test_repo_group.group_name + u'/my_schema_group'
repo-group-schemas: refactor repository group schemas....
r1154 schema_data = schema.deserialize(dict(
repo_group_name=full_name,
repo_group_owner=user_admin.username
))
assert schema_data['repo_group_name'] == full_name
assert schema_data['repo_group'] == {
'repo_group_id': test_repo_group.group_id,
'repo_group_name': test_repo_group.group_name,
repo-groups: fixed a regression for updating nested repository groups
r2241 'repo_group_name_with_group': full_name,
tests: fixed tests for new repo settings...
r1721 'repo_group_name_without_group': u'my_schema_group'}
repo-group-schemas: refactor repository group schemas....
r1154
def test_deserialize_with_group_name_regular_user_no_perms(
self, app, user_regular, test_repo_group):
schema = repo_group_schema.RepoGroupSchema().bind(
user=user_regular
)
tests: fixed tests for new repo settings...
r1721 full_name = test_repo_group.group_name + u'/my_schema_group'
repo-group-schemas: refactor repository group schemas....
r1154 with pytest.raises(colander.Invalid) as excinfo:
schema.deserialize(dict(
repo_group_name=full_name,
repo_group_owner=user_regular.username
))
dan
tests: fixed some tests after recent changes.
r4422 expected = 'You do not have the permissions to store ' \
'repository groups inside repository group `{}`'\
.format(test_repo_group.group_name)
repo-group-schemas: refactor repository group schemas....
r1154 assert excinfo.value.asdict()['repo_group'] == expected