2016-01-08 15:12:14 +00:00
|
|
|
from flask import url_for
|
2016-01-11 12:06:52 +00:00
|
|
|
from app.main.dao import users_dao
|
2016-01-05 17:52:09 +00:00
|
|
|
from tests.app.main import create_test_user
|
2016-01-04 14:00:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_render_forgot_password(notifications_admin, notifications_admin_db, notify_db_session):
|
2016-01-11 15:17:00 +00:00
|
|
|
with notifications_admin.test_request_context():
|
|
|
|
|
response = notifications_admin.test_client().get(url_for('.forgot_password'))
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
assert 'If you have forgotten your password, we can send you an email to create a new password.' \
|
|
|
|
|
in response.get_data(as_text=True)
|
2016-01-04 14:00:39 +00:00
|
|
|
|
|
|
|
|
|
2016-01-11 12:06:52 +00:00
|
|
|
def test_should_redirect_to_password_reset_sent_and_state_updated(notifications_admin,
|
|
|
|
|
notifications_admin_db,
|
|
|
|
|
mocker,
|
|
|
|
|
notify_db_session):
|
2016-01-08 16:47:34 +00:00
|
|
|
mocker.patch("app.admin_api_client.send_email")
|
2016-01-08 15:12:14 +00:00
|
|
|
with notifications_admin.test_request_context():
|
2016-01-11 15:17:00 +00:00
|
|
|
user = create_test_user('active')
|
|
|
|
|
response = notifications_admin.test_client().post(url_for('.forgot_password'),
|
|
|
|
|
data={'email_address': user.email_address})
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
assert 'You have been sent an email containing a link to reset your password.' in response.get_data(
|
|
|
|
|
as_text=True)
|
|
|
|
|
assert users_dao.get_user_by_id(user.id).state == 'request_password_reset'
|