authentic/tests/middlewares/test_required_on_login_rest...

38 lines
1.4 KiB
Python

# authentic2 - versatile identity manager
# Copyright (C) 2021 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 authentic2.models import Attribute
from ..utils import login
def test_simple(app, db, simple_user):
Attribute.objects.create(
name='cgu_2021',
label='J\'accepte les conditions générales d\'utilisation',
kind='boolean',
required_on_login=True,
user_visible=True,
)
resp = login(app, simple_user, path='/accounts/')
assert resp.location == '/accounts/edit/required/?next=/accounts/'
resp = resp.follow()
resp.form.set('cgu_2021', True)
resp = resp.form.submit()
assert resp.location == '/accounts/'
resp = resp.follow()
assert 'les conditions générales d\'utilisation\xa0:\nTrue' in resp.pyquery.text()