##// END OF EJS Templates
auth: don't break hashing in case of user with empty password....
auth: don't break hashing in case of user with empty password. In some cases such as LDAP user created via external scripts users might set the passwords to empty. The hashing uses the md5(password_hash) to store reference to detect password changes and forbid using the same password. In case of pure LDAP users this is not valid, and we shouldn't raise Errors in such case. This change makes it work for empty passwords now.

File last commit:

r1997:61825b68 default
r2203:8a18c3c3 default
Show More
test_get_repos.py
129 lines | 4.8 KiB | text/x-python | PythonLexer
project: added all source files and assets
r1 # -*- coding: utf-8 -*-
license: updated copyright year to 2017
r1271 # Copyright (C) 2010-2017 RhodeCode GmbH
project: added all source files and assets
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 pytest
from rhodecode.model.repo import RepoModel
api: get_repos allows now to filter by root locations, and optionally traverse the returned data....
r1267 from rhodecode.api.tests.utils import (
build_data, api_call, assert_ok, assert_error, jsonify)
project: added all source files and assets
r1 from rhodecode.model.db import User
@pytest.mark.usefixtures("testuser_api", "app")
class TestGetRepos(object):
def test_api_get_repos(self):
id_, params = build_data(self.apikey, 'get_repos')
response = api_call(self.app, params)
result = []
for repo in RepoModel().get_all():
result.append(repo.get_api_data(include_secrets=True))
ret = jsonify(result)
expected = ret
assert_ok(id_, expected, given=response.body)
api: get_repos allows now to filter by root locations, and optionally traverse the returned data....
r1267 def test_api_get_repos_only_toplevel(self, user_util):
repo_group = user_util.create_repo_group(auto_cleanup=True)
user_util.create_repo(parent=repo_group)
id_, params = build_data(self.apikey, 'get_repos', traverse=0)
response = api_call(self.app, params)
result = []
for repo in RepoModel().get_repos_for_root(root=None):
result.append(repo.get_api_data(include_secrets=True))
expected = jsonify(result)
assert_ok(id_, expected, given=response.body)
def test_api_get_repos_with_wrong_root(self):
id_, params = build_data(self.apikey, 'get_repos', root='abracadabra')
response = api_call(self.app, params)
expected = 'Root repository group `abracadabra` does not exist'
assert_error(id_, expected, given=response.body)
def test_api_get_repos_with_root(self, user_util):
repo_group = user_util.create_repo_group(auto_cleanup=True)
repo_group_name = repo_group.group_name
user_util.create_repo(parent=repo_group)
user_util.create_repo(parent=repo_group)
# nested, should not show up
user_util._test_name = '{}/'.format(repo_group_name)
sub_repo_group = user_util.create_repo_group(auto_cleanup=True)
user_util.create_repo(parent=sub_repo_group)
id_, params = build_data(self.apikey, 'get_repos',
root=repo_group_name, traverse=0)
response = api_call(self.app, params)
result = []
for repo in RepoModel().get_repos_for_root(repo_group):
result.append(repo.get_api_data(include_secrets=True))
assert len(result) == 2
expected = jsonify(result)
assert_ok(id_, expected, given=response.body)
def test_api_get_repos_with_root_and_traverse(self, user_util):
repo_group = user_util.create_repo_group(auto_cleanup=True)
repo_group_name = repo_group.group_name
user_util.create_repo(parent=repo_group)
user_util.create_repo(parent=repo_group)
# nested, should not show up
user_util._test_name = '{}/'.format(repo_group_name)
sub_repo_group = user_util.create_repo_group(auto_cleanup=True)
user_util.create_repo(parent=sub_repo_group)
id_, params = build_data(self.apikey, 'get_repos',
root=repo_group_name, traverse=1)
response = api_call(self.app, params)
result = []
for repo in RepoModel().get_repos_for_root(
repo_group_name, traverse=True):
result.append(repo.get_api_data(include_secrets=True))
assert len(result) == 3
expected = jsonify(result)
assert_ok(id_, expected, given=response.body)
project: added all source files and assets
r1 def test_api_get_repos_non_admin(self):
id_, params = build_data(self.apikey_regular, 'get_repos')
response = api_call(self.app, params)
user = User.get_by_username(self.TEST_USER_LOGIN)
users: make AuthUser propert a method, and allow override of params.
r1997 allowed_repos = user.AuthUser().permissions['repositories']
project: added all source files and assets
r1
result = []
for repo in RepoModel().get_all():
perm = allowed_repos[repo.repo_name]
if perm in ['repository.read', 'repository.write', 'repository.admin']:
result.append(repo.get_api_data())
ret = jsonify(result)
expected = ret
assert_ok(id_, expected, given=response.body)