test_validators.py
296 lines
| 10.3 KiB
| text/x-python
|
PythonLexer
r1 | # -*- coding: utf-8 -*- | |||
r3363 | # Copyright (C) 2010-2019 RhodeCode GmbH | |||
r1 | # | |||
# 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 formencode | ||||
import pytest | ||||
from rhodecode.tests import ( | ||||
HG_REPO, TEST_USER_REGULAR2_EMAIL, TEST_USER_REGULAR2_LOGIN, | ||||
r2650 | TEST_USER_REGULAR2_PASS, TEST_USER_ADMIN_LOGIN, TESTS_TMP_PATH) | |||
r1 | ||||
from rhodecode.model import validators as v | ||||
from rhodecode.model.user_group import UserGroupModel | ||||
from rhodecode.model.meta import Session | ||||
from rhodecode.model.repo_group import RepoGroupModel | ||||
from rhodecode.model.db import ChangesetStatus, Repository | ||||
from rhodecode.model.changeset_status import ChangesetStatusModel | ||||
from rhodecode.tests.fixture import Fixture | ||||
fixture = Fixture() | ||||
r2351 | pytestmark = pytest.mark.usefixtures('baseapp') | |||
r1 | ||||
r2351 | @pytest.fixture | |||
def localizer(): | ||||
def func(msg): | ||||
return msg | ||||
return func | ||||
def test_Message_extractor(localizer): | ||||
validator = v.ValidUsername(localizer) | ||||
r1 | pytest.raises(formencode.Invalid, validator.to_python, 'default') | |||
class StateObj(object): | ||||
pass | ||||
pytest.raises( | ||||
formencode.Invalid, validator.to_python, 'default', StateObj) | ||||
r2351 | def test_ValidUsername(localizer): | |||
validator = v.ValidUsername(localizer) | ||||
r1 | ||||
pytest.raises(formencode.Invalid, validator.to_python, 'default') | ||||
pytest.raises(formencode.Invalid, validator.to_python, 'new_user') | ||||
pytest.raises(formencode.Invalid, validator.to_python, '.,') | ||||
pytest.raises( | ||||
formencode.Invalid, validator.to_python, TEST_USER_ADMIN_LOGIN) | ||||
assert 'test' == validator.to_python('test') | ||||
r2351 | validator = v.ValidUsername(localizer, edit=True, old_data={'user_id': 1}) | |||
r1 | ||||
r2351 | def test_ValidRepoUser(localizer): | |||
validator = v.ValidRepoUser(localizer) | ||||
r1 | pytest.raises(formencode.Invalid, validator.to_python, 'nouser') | |||
assert TEST_USER_ADMIN_LOGIN == \ | ||||
validator.to_python(TEST_USER_ADMIN_LOGIN) | ||||
r2351 | def test_ValidUserGroup(localizer): | |||
validator = v.ValidUserGroup(localizer) | ||||
r1 | pytest.raises(formencode.Invalid, validator.to_python, 'default') | |||
pytest.raises(formencode.Invalid, validator.to_python, '.,') | ||||
gr = fixture.create_user_group('test') | ||||
gr2 = fixture.create_user_group('tes2') | ||||
Session().commit() | ||||
pytest.raises(formencode.Invalid, validator.to_python, 'test') | ||||
assert gr.users_group_id is not None | ||||
r2351 | validator = v.ValidUserGroup(localizer, | |||
r1 | edit=True, | |||
old_data={'users_group_id': gr2.users_group_id}) | ||||
pytest.raises(formencode.Invalid, validator.to_python, 'test') | ||||
pytest.raises(formencode.Invalid, validator.to_python, 'TesT') | ||||
pytest.raises(formencode.Invalid, validator.to_python, 'TEST') | ||||
UserGroupModel().delete(gr) | ||||
UserGroupModel().delete(gr2) | ||||
Session().commit() | ||||
@pytest.fixture(scope='function') | ||||
def repo_group(request): | ||||
model = RepoGroupModel() | ||||
gr = model.create( | ||||
group_name='test_gr', group_description='desc', just_db=True, | ||||
owner=TEST_USER_ADMIN_LOGIN) | ||||
def cleanup(): | ||||
model.delete(gr) | ||||
request.addfinalizer(cleanup) | ||||
return gr | ||||
r2351 | def test_ValidRepoGroup_same_name_as_repo(localizer): | |||
validator = v.ValidRepoGroup(localizer) | ||||
r1 | with pytest.raises(formencode.Invalid) as excinfo: | |||
validator.to_python({'group_name': HG_REPO}) | ||||
expected_msg = 'Repository with name "vcs_test_hg" already exists' | ||||
assert expected_msg in str(excinfo.value) | ||||
r2351 | def test_ValidRepoGroup_group_exists(localizer, repo_group): | |||
validator = v.ValidRepoGroup(localizer) | ||||
r1 | with pytest.raises(formencode.Invalid) as excinfo: | |||
validator.to_python({'group_name': repo_group.group_name}) | ||||
expected_msg = 'Group "test_gr" already exists' | ||||
assert expected_msg in str(excinfo.value) | ||||
r2351 | def test_ValidRepoGroup_invalid_parent(localizer, repo_group): | |||
validator = v.ValidRepoGroup(localizer, edit=True, | ||||
r1 | old_data={'group_id': repo_group.group_id}) | |||
with pytest.raises(formencode.Invalid) as excinfo: | ||||
validator.to_python({ | ||||
'group_name': repo_group.group_name + 'n', | ||||
'group_parent_id': repo_group.group_id, | ||||
}) | ||||
expected_msg = 'Cannot assign this group as parent' | ||||
assert expected_msg in str(excinfo.value) | ||||
r2351 | def test_ValidRepoGroup_edit_group_no_root_permission(localizer, repo_group): | |||
validator = v.ValidRepoGroup(localizer, | ||||
r1 | edit=True, old_data={'group_id': repo_group.group_id}, | |||
can_create_in_root=False) | ||||
# Cannot change parent | ||||
with pytest.raises(formencode.Invalid) as excinfo: | ||||
validator.to_python({'group_parent_id': '25'}) | ||||
expected_msg = 'no permission to store repository group in root location' | ||||
assert expected_msg in str(excinfo.value) | ||||
# Chaning all the other fields is allowed | ||||
validator.to_python({'group_name': 'foo', 'group_parent_id': '-1'}) | ||||
validator.to_python( | ||||
{'user': TEST_USER_REGULAR2_LOGIN, 'group_parent_id': '-1'}) | ||||
validator.to_python({'group_description': 'bar', 'group_parent_id': '-1'}) | ||||
validator.to_python({'enable_locking': 'true', 'group_parent_id': '-1'}) | ||||
r2351 | def test_ValidPassword(localizer): | |||
validator = v.ValidPassword(localizer) | ||||
r1 | assert 'lol' == validator.to_python('lol') | |||
assert None == validator.to_python(None) | ||||
pytest.raises(formencode.Invalid, validator.to_python, 'ąćżź') | ||||
r2351 | def test_ValidPasswordsMatch(localizer): | |||
validator = v.ValidPasswordsMatch(localizer) | ||||
r1 | pytest.raises( | |||
formencode.Invalid, | ||||
validator.to_python, {'password': 'pass', | ||||
'password_confirmation': 'pass2'}) | ||||
pytest.raises( | ||||
formencode.Invalid, | ||||
validator.to_python, {'new_password': 'pass', | ||||
'password_confirmation': 'pass2'}) | ||||
assert {'new_password': 'pass', 'password_confirmation': 'pass'} == \ | ||||
validator.to_python({'new_password': 'pass', | ||||
'password_confirmation': 'pass'}) | ||||
assert {'password': 'pass', 'password_confirmation': 'pass'} == \ | ||||
validator.to_python({'password': 'pass', | ||||
'password_confirmation': 'pass'}) | ||||
r2351 | def test_ValidAuth(localizer, config_stub): | |||
r1 | config_stub.testing_securitypolicy() | |||
config_stub.include('rhodecode.authentication') | ||||
r3241 | config_stub.include('rhodecode.authentication.plugins.auth_rhodecode') | |||
config_stub.include('rhodecode.authentication.plugins.auth_token') | ||||
r1 | ||||
r2351 | validator = v.ValidAuth(localizer) | |||
r1 | valid_creds = { | |||
'username': TEST_USER_REGULAR2_LOGIN, | ||||
'password': TEST_USER_REGULAR2_PASS, | ||||
} | ||||
invalid_creds = { | ||||
'username': 'err', | ||||
'password': 'err', | ||||
} | ||||
assert valid_creds == validator.to_python(valid_creds) | ||||
pytest.raises( | ||||
formencode.Invalid, validator.to_python, invalid_creds) | ||||
r2351 | def test_ValidRepoName(localizer): | |||
validator = v.ValidRepoName(localizer) | ||||
r1 | ||||
pytest.raises( | ||||
formencode.Invalid, validator.to_python, {'repo_name': ''}) | ||||
pytest.raises( | ||||
formencode.Invalid, validator.to_python, {'repo_name': HG_REPO}) | ||||
gr = RepoGroupModel().create(group_name='group_test', | ||||
group_description='desc', | ||||
owner=TEST_USER_ADMIN_LOGIN) | ||||
pytest.raises( | ||||
formencode.Invalid, validator.to_python, {'repo_name': gr.group_name}) | ||||
#TODO: write an error case for that ie. create a repo withinh a group | ||||
# pytest.raises(formencode.Invalid, | ||||
# validator.to_python, {'repo_name': 'some', | ||||
# 'repo_group': gr.group_id}) | ||||
r2351 | def test_ValidForkName(localizer): | |||
r1 | # this uses ValidRepoName validator | |||
assert True | ||||
@pytest.mark.parametrize("name, expected", [ | ||||
('test', 'test'), ('lolz!', 'lolz'), (' aavv', 'aavv'), | ||||
('ala ma kota', 'ala-ma-kota'), ('@nooo', 'nooo'), | ||||
('$!haha lolz !', 'haha-lolz'), ('$$$$$', ''), ('{}OK!', 'OK'), | ||||
('/]re po', 're-po')]) | ||||
r2351 | def test_SlugifyName(name, expected, localizer): | |||
validator = v.SlugifyName(localizer) | ||||
r1 | assert expected == validator.to_python(name) | |||
r2351 | def test_ValidForkType(localizer): | |||
validator = v.ValidForkType(localizer, old_data={'repo_type': 'hg'}) | ||||
r1 | assert 'hg' == validator.to_python('hg') | |||
pytest.raises(formencode.Invalid, validator.to_python, 'git') | ||||
r2351 | def test_ValidPath(localizer): | |||
validator = v.ValidPath(localizer) | ||||
r1 | assert TESTS_TMP_PATH == validator.to_python(TESTS_TMP_PATH) | |||
pytest.raises( | ||||
formencode.Invalid, validator.to_python, '/no_such_dir') | ||||
r2351 | def test_UniqSystemEmail(localizer): | |||
validator = v.UniqSystemEmail(localizer, old_data={}) | ||||
r1 | ||||
assert 'mail@python.org' == validator.to_python('MaiL@Python.org') | ||||
email = TEST_USER_REGULAR2_EMAIL | ||||
pytest.raises(formencode.Invalid, validator.to_python, email) | ||||
r2351 | def test_ValidSystemEmail(localizer): | |||
validator = v.ValidSystemEmail(localizer) | ||||
r1 | email = TEST_USER_REGULAR2_EMAIL | |||
assert email == validator.to_python(email) | ||||
pytest.raises(formencode.Invalid, validator.to_python, 'err') | ||||
r2351 | def test_NotReviewedRevisions(localizer): | |||
r1 | repo_id = Repository.get_by_repo_name(HG_REPO).repo_id | |||
r2351 | validator = v.NotReviewedRevisions(localizer, repo_id) | |||
r1 | rev = '0' * 40 | |||
# add status for a rev, that should throw an error because it is already | ||||
# reviewed | ||||
new_status = ChangesetStatus() | ||||
new_status.author = ChangesetStatusModel()._get_user(TEST_USER_ADMIN_LOGIN) | ||||
new_status.repo = ChangesetStatusModel()._get_repo(HG_REPO) | ||||
new_status.status = ChangesetStatus.STATUS_APPROVED | ||||
new_status.comment = None | ||||
new_status.revision = rev | ||||
Session().add(new_status) | ||||
Session().commit() | ||||
try: | ||||
pytest.raises(formencode.Invalid, validator.to_python, [rev]) | ||||
finally: | ||||
Session().delete(new_status) | ||||
Session().commit() | ||||