authentic/tests/test_context_processors.py

55 lines
2.2 KiB
Python

# authentic2 - versatile identity manager
# Copyright (C) 2010-2022 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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 Affero 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/>.
from . import utils
def test_home(app, settings, simple_user, service):
from authentic2.a2_rbac.utils import get_default_ou
from authentic2.models import Service
utils.set_service(app, service)
settings.A2_HOMEPAGE_URL = 'https://portal1/'
resp = app.get('/login/')
body = resp.pyquery('body')
assert body.attr('data-home-url') == 'https://portal1/'
assert body.attr('data-home-service-slug') == service.slug
assert body.attr('data-home-service-name') == service.name
assert body.attr('data-home-ou-slug') == service.ou.slug
assert body.attr('data-home-ou-name') == service.ou.name
service.ou.home_url = 'https://portal2/'
service.ou.save()
resp = app.get('/login/')
body = resp.pyquery('body')
assert body.attr('data-home-url') == 'https://portal2/'
# if user comes back from a different service, the information is updated
new_service = Service.objects.create(
ou=get_default_ou(), slug='service2', name='Service2', home_url='https://portal3/'
)
utils.set_service(app, new_service)
resp = app.get('/login/')
body = resp.pyquery('body')
assert body.attr('data-home-url') == 'https://portal3/'
assert body.attr('data-home-service-slug') == new_service.slug
assert body.attr('data-home-service-name') == new_service.name
assert body.attr('data-home-ou-slug') == new_service.ou.slug
assert body.attr('data-home-ou-name') == new_service.ou.name