##// END OF EJS Templates
i18n: replaced fragile extraction of JS translations from an _TM variable....
i18n: replaced fragile extraction of JS translations from an _TM variable. We replaced it with similar to babel functions _gettext, and _ngettext, that will prevent UI from breaking in case of untranslated strings. This also will allow to use babel built in extractors to fetch the translations stored inside html and JS.

File last commit:

r192:f246f4bc default
r325:9f2e29d4 stable
Show More
test_disable_vcs.py
53 lines | 1.9 KiB | text/x-python | PythonLexer
project: added all source files and assets
r1 # -*- coding: utf-8 -*-
# Copyright (C) 2010-2016 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
dan
tests: fix disable_vcs tests
r192 from pyramid.response import Response
from pyramid.testing import DummyRequest
from rhodecode.lib.middleware.disable_vcs import (
DisableVCSPagesWrapper, VCSServerUnavailable)
project: added all source files and assets
r1
dan
tests: fix disable_vcs tests
r192 @pytest.mark.parametrize('url, should_raise', [
('/', False),
('/_admin/settings', False),
('/_admin/i_am_fine', False),
('/_admin/settings/mappings', True),
('/_admin/my_account/repos', True),
('/_admin/create_repository', True),
('/_admin/gists/1', True),
('/_admin/notifications/1', True),
project: added all source files and assets
r1 ])
dan
tests: fix disable_vcs tests
r192 def test_vcs_disabled(url, should_raise):
wrapped_view = DisableVCSPagesWrapper(pyramid_view)
request = DummyRequest(path=url)
project: added all source files and assets
r1
dan
tests: fix disable_vcs tests
r192 if should_raise:
with pytest.raises(VCSServerUnavailable):
response = wrapped_view(None, request)
else:
response = wrapped_view(None, request)
assert response.status_int == 200
project: added all source files and assets
r1
dan
tests: fix disable_vcs tests
r192 def pyramid_view(context, request):
project: added all source files and assets
r1 """
dan
tests: fix disable_vcs tests
r192 A mock pyramid view to be used in the wrapper
project: added all source files and assets
r1 """
dan
tests: fix disable_vcs tests
r192 return Response('success')