##// END OF EJS Templates
core: avoid using rhodecode.test packages inside main packages as tests are removed during build which can cause some problems in some edge case calls
core: avoid using rhodecode.test packages inside main packages as tests are removed during build which can cause some problems in some edge case calls

File last commit:

r5607:39b20522 default
r5618:bdbdb63f default
Show More
test_vcs_operations_by_auth_tokens.py
174 lines | 6.0 KiB | text/x-python | PythonLexer
/ rhodecode / tests / vcs_operations / test_vcs_operations_by_auth_tokens.py
tests: fixed test suite for celery adoption
r5607 # Copyright (C) 2010-2024 RhodeCode GmbH
tests: fixed all tests for python3 BIG changes
r5087 #
# 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/
"""
Test suite for making push/pull operations, on specially modified INI files
"""
import pytest
from rhodecode.model.auth_token import AuthTokenModel
from rhodecode.model.db import Repository
from rhodecode.model.meta import Session
from rhodecode.tests import (GIT_REPO, HG_REPO)
from rhodecode.tests.vcs_operations import (Command, _check_proper_clone)
tests: fixed test suite for celery adoption
r5607 @pytest.mark.usefixtures(
"init_pyramid_app",
"repo_group_repos",
"disable_anonymous_user",
"disable_locking",
)
class TestVCSOperationsByAuthTokens:
tests: fixed all tests for python3 BIG changes
r5087 def test_clone_by_auth_token(
tests: fixed test suite for celery adoption
r5607 self, rcstack, tmpdir, user_util, enable_auth_plugins):
tests: fixed all tests for python3 BIG changes
r5087
enable_auth_plugins.enable([
'egg:rhodecode-enterprise-ce#token',
'egg:rhodecode-enterprise-ce#rhodecode'
])
user = user_util.create_user()
token = user.auth_tokens[1]
tests: fixed test suite for celery adoption
r5607 clone_url = rcstack.repo_clone_url(
tests: fixed all tests for python3 BIG changes
r5087 HG_REPO, user=user.username, passwd=token)
tests: fixed test suite for celery adoption
r5607 stdout, stderr = Command(tmpdir.strpath).execute(
tests: fixed all tests for python3 BIG changes
r5087 'hg clone', clone_url, tmpdir.strpath)
_check_proper_clone(stdout, stderr, 'hg')
def test_clone_by_auth_token_expired(
tests: fixed test suite for celery adoption
r5607 self, rcstack, tmpdir, user_util, enable_auth_plugins):
tests: fixed all tests for python3 BIG changes
r5087 enable_auth_plugins.enable([
'egg:rhodecode-enterprise-ce#token',
'egg:rhodecode-enterprise-ce#rhodecode'
])
user = user_util.create_user()
auth_token = AuthTokenModel().create(
user.user_id, 'test-token', -10, AuthTokenModel.cls.ROLE_VCS)
token = auth_token.api_key
tests: fixed test suite for celery adoption
r5607 clone_url = rcstack.repo_clone_url(
tests: fixed all tests for python3 BIG changes
r5087 HG_REPO, user=user.username, passwd=token)
tests: fixed test suite for celery adoption
r5607 stdout, stderr = Command(tmpdir.strpath).execute(
tests: fixed all tests for python3 BIG changes
r5087 'hg clone', clone_url, tmpdir.strpath)
assert 'abort: authorization failed' in stderr
msg = 'reason: bad or inactive token.'
tests: fixed test suite for celery adoption
r5607 rcstack.assert_message_in_server_logs(msg)
tests: fixed all tests for python3 BIG changes
r5087
def test_clone_by_auth_token_bad_role(
tests: fixed test suite for celery adoption
r5607 self, rcstack, tmpdir, user_util, enable_auth_plugins):
tests: fixed all tests for python3 BIG changes
r5087 enable_auth_plugins.enable([
'egg:rhodecode-enterprise-ce#token',
'egg:rhodecode-enterprise-ce#rhodecode'
])
user = user_util.create_user()
auth_token = AuthTokenModel().create(
user.user_id, 'test-token', -1, AuthTokenModel.cls.ROLE_API)
token = auth_token.api_key
tests: fixed test suite for celery adoption
r5607 clone_url = rcstack.repo_clone_url(
tests: fixed all tests for python3 BIG changes
r5087 HG_REPO, user=user.username, passwd=token)
tests: fixed test suite for celery adoption
r5607 stdout, stderr = Command(tmpdir.strpath).execute(
tests: fixed all tests for python3 BIG changes
r5087 'hg clone', clone_url, tmpdir.strpath)
assert 'abort: authorization failed' in stderr
def test_clone_by_auth_token_user_disabled(
tests: fixed test suite for celery adoption
r5607 self, rcstack, tmpdir, user_util, enable_auth_plugins):
tests: fixed all tests for python3 BIG changes
r5087 enable_auth_plugins.enable([
'egg:rhodecode-enterprise-ce#token',
'egg:rhodecode-enterprise-ce#rhodecode'
])
user = user_util.create_user()
user.active = False
Session().add(user)
Session().commit()
token = user.auth_tokens[1]
tests: fixed test suite for celery adoption
r5607 clone_url = rcstack.repo_clone_url(
tests: fixed all tests for python3 BIG changes
r5087 HG_REPO, user=user.username, passwd=token)
tests: fixed test suite for celery adoption
r5607 stdout, stderr = Command(tmpdir.strpath).execute(
tests: fixed all tests for python3 BIG changes
r5087 'hg clone', clone_url, tmpdir.strpath)
assert 'abort: authorization failed' in stderr
msg = 'reason: account not active.'
tests: fixed test suite for celery adoption
r5607 rcstack.assert_message_in_server_logs(msg)
tests: fixed all tests for python3 BIG changes
r5087
def test_clone_by_auth_token_with_scope(
tests: fixed test suite for celery adoption
r5607 self, rcstack, tmpdir, user_util, enable_auth_plugins):
tests: fixed all tests for python3 BIG changes
r5087 enable_auth_plugins.enable([
'egg:rhodecode-enterprise-ce#token',
'egg:rhodecode-enterprise-ce#rhodecode'
])
user = user_util.create_user()
auth_token = AuthTokenModel().create(
user.user_id, 'test-token', -1, AuthTokenModel.cls.ROLE_VCS)
token = auth_token.api_key
# manually set scope
auth_token.repo = Repository.get_by_repo_name(HG_REPO)
Session().add(auth_token)
Session().commit()
tests: fixed test suite for celery adoption
r5607 clone_url = rcstack.repo_clone_url(
tests: fixed all tests for python3 BIG changes
r5087 HG_REPO, user=user.username, passwd=token)
tests: fixed test suite for celery adoption
r5607 stdout, stderr = Command(tmpdir.strpath).execute(
tests: fixed all tests for python3 BIG changes
r5087 'hg clone', clone_url, tmpdir.strpath)
_check_proper_clone(stdout, stderr, 'hg')
def test_clone_by_auth_token_with_wrong_scope(
tests: fixed test suite for celery adoption
r5607 self, rcstack, tmpdir, user_util, enable_auth_plugins):
tests: fixed all tests for python3 BIG changes
r5087 enable_auth_plugins.enable([
'egg:rhodecode-enterprise-ce#token',
'egg:rhodecode-enterprise-ce#rhodecode'
])
user = user_util.create_user()
auth_token = AuthTokenModel().create(
user.user_id, 'test-token', -1, AuthTokenModel.cls.ROLE_VCS)
token = auth_token.api_key
# manually set scope
auth_token.repo = Repository.get_by_repo_name(GIT_REPO)
Session().add(auth_token)
Session().commit()
tests: fixed test suite for celery adoption
r5607 clone_url = rcstack.repo_clone_url(
tests: fixed all tests for python3 BIG changes
r5087 HG_REPO, user=user.username, passwd=token)
tests: fixed test suite for celery adoption
r5607 stdout, stderr = Command(tmpdir.strpath).execute(
tests: fixed all tests for python3 BIG changes
r5087 'hg clone', clone_url, tmpdir.strpath)
assert 'abort: authorization failed' in stderr
msg = 'reason: bad or inactive token.'
tests: fixed test suite for celery adoption
r5607 rcstack.assert_message_in_server_logs(msg)