test_my_account_emails.py
66 lines
| 2.7 KiB
| text/x-python
|
PythonLexer
r5088 | # Copyright (C) 2010-2023 RhodeCode GmbH | |||
r1816 | # | |||
# 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.apps._base import ADMIN_PREFIX | ||||
from rhodecode.model.db import User, UserEmailMap | ||||
from rhodecode.tests import ( | ||||
TestController, TEST_USER_ADMIN_LOGIN, TEST_USER_REGULAR_EMAIL, | ||||
Bartłomiej Wołyńczyk
|
r2592 | assert_session_flash, TEST_USER_REGULAR_PASS) | ||
r1816 | from rhodecode.tests.fixture import Fixture | |||
r5173 | from rhodecode.tests.routes import route_path | |||
r1816 | ||||
r5173 | fixture = Fixture() | |||
r1816 | ||||
class TestMyAccountEmails(TestController): | ||||
def test_my_account_my_emails(self): | ||||
self.log_user() | ||||
response = self.app.get(route_path('my_account_emails')) | ||||
response.mustcontain('No additional emails specified') | ||||
def test_my_account_my_emails_add_remove(self): | ||||
self.log_user() | ||||
response = self.app.get(route_path('my_account_emails')) | ||||
response.mustcontain('No additional emails specified') | ||||
response = self.app.post(route_path('my_account_emails_add'), | ||||
Bartłomiej Wołyńczyk
|
r2592 | {'email': 'foo@barz.com', | ||
'current_password': TEST_USER_REGULAR_PASS, | ||||
r1816 | 'csrf_token': self.csrf_token}) | |||
response = self.app.get(route_path('my_account_emails')) | ||||
email_id = UserEmailMap.query().filter( | ||||
UserEmailMap.user == User.get_by_username( | ||||
TEST_USER_ADMIN_LOGIN)).filter( | ||||
UserEmailMap.email == 'foo@barz.com').one().email_id | ||||
response.mustcontain('foo@barz.com') | ||||
response.mustcontain('<input id="del_email_id" name="del_email_id" ' | ||||
'type="hidden" value="%s" />' % email_id) | ||||
response = self.app.post( | ||||
route_path('my_account_emails_delete'), { | ||||
'del_email_id': email_id, | ||||
'csrf_token': self.csrf_token}) | ||||
assert_session_flash(response, 'Email successfully deleted') | ||||
response = self.app.get(route_path('my_account_emails')) | ||||
response.mustcontain('No additional emails specified') | ||||