mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-19 14:08:47 -04:00
Make email a required field for the email_data_schema.
This commit is contained in:
@@ -319,7 +319,7 @@ class EmailDataSchema(ma.Schema):
|
|||||||
class Meta:
|
class Meta:
|
||||||
strict = True
|
strict = True
|
||||||
|
|
||||||
email = fields.Str(required=False)
|
email = fields.Str(required=True)
|
||||||
|
|
||||||
@validates('email')
|
@validates('email')
|
||||||
def validate_email(self, value):
|
def validate_email(self, value):
|
||||||
|
|||||||
@@ -23,8 +23,7 @@ from app.schemas import (
|
|||||||
user_schema,
|
user_schema,
|
||||||
request_verify_code_schema,
|
request_verify_code_schema,
|
||||||
user_schema_load_json,
|
user_schema_load_json,
|
||||||
permission_schema
|
permission_schema)
|
||||||
)
|
|
||||||
|
|
||||||
from app.celery.tasks import (
|
from app.celery.tasks import (
|
||||||
send_sms,
|
send_sms,
|
||||||
@@ -176,13 +175,13 @@ def send_user_email_verification(user_id):
|
|||||||
|
|
||||||
@user.route('/<uuid:user_id>/email-already-registered', methods=['POST'])
|
@user.route('/<uuid:user_id>/email-already-registered', methods=['POST'])
|
||||||
def send_already_registered_email(user_id):
|
def send_already_registered_email(user_id):
|
||||||
|
to, errors = email_data_request_schema.load(request.get_json())
|
||||||
template = dao_get_template_by_id(current_app.config['ALREADY_REGISTERED_EMAIL_TEMPLATE_ID'])
|
template = dao_get_template_by_id(current_app.config['ALREADY_REGISTERED_EMAIL_TEMPLATE_ID'])
|
||||||
to, errors = request_verify_code_schema.load(request.get_json())
|
|
||||||
|
|
||||||
message = {
|
message = {
|
||||||
'template': str(template.id),
|
'template': str(template.id),
|
||||||
'template_version': template.version,
|
'template_version': template.version,
|
||||||
'to': to['to'],
|
'to': to['email'],
|
||||||
'personalisation': {
|
'personalisation': {
|
||||||
'signin_url': current_app.config['ADMIN_BASE_URL'] + '/sign-in',
|
'signin_url': current_app.config['ADMIN_BASE_URL'] + '/sign-in',
|
||||||
'forgot_password_url': current_app.config['ADMIN_BASE_URL'] + '/forgot-password',
|
'forgot_password_url': current_app.config['ADMIN_BASE_URL'] + '/forgot-password',
|
||||||
|
|||||||
@@ -424,6 +424,21 @@ def test_send_user_reset_password_should_send_reset_password_link(notify_api,
|
|||||||
queue="email-reset-password")
|
queue="email-reset-password")
|
||||||
|
|
||||||
|
|
||||||
|
def test_send_user_reset_password_should_return_400_when_email_is_missing(notify_api):
|
||||||
|
with notify_api.test_request_context():
|
||||||
|
with notify_api.test_client() as client:
|
||||||
|
data = json.dumps({})
|
||||||
|
auth_header = create_authorization_header()
|
||||||
|
|
||||||
|
resp = client.post(
|
||||||
|
url_for('user.send_user_reset_password'),
|
||||||
|
data=data,
|
||||||
|
headers=[('Content-Type', 'application/json'), auth_header])
|
||||||
|
|
||||||
|
assert resp.status_code == 400
|
||||||
|
assert json.loads(resp.get_data(as_text=True))['message'] == {'email': ['Missing data for required field.']}
|
||||||
|
|
||||||
|
|
||||||
def test_send_user_reset_password_should_return_400_when_user_doesnot_exist(notify_api,
|
def test_send_user_reset_password_should_return_400_when_user_doesnot_exist(notify_api,
|
||||||
mocker):
|
mocker):
|
||||||
with notify_api.test_request_context():
|
with notify_api.test_request_context():
|
||||||
@@ -461,7 +476,7 @@ def test_send_user_reset_password_should_return_400_when_data_is_not_email_addre
|
|||||||
def test_send_already_registered_email(notify_api, sample_user, already_registered_template, mocker):
|
def test_send_already_registered_email(notify_api, sample_user, already_registered_template, mocker):
|
||||||
with notify_api.test_request_context():
|
with notify_api.test_request_context():
|
||||||
with notify_api.test_client() as client:
|
with notify_api.test_client() as client:
|
||||||
data = json.dumps({'to': sample_user.email_address})
|
data = json.dumps({'email': sample_user.email_address})
|
||||||
auth_header = create_authorization_header()
|
auth_header = create_authorization_header()
|
||||||
mocker.patch('app.celery.tasks.send_email.apply_async')
|
mocker.patch('app.celery.tasks.send_email.apply_async')
|
||||||
mocker.patch('uuid.uuid4', return_value='some_uuid') # for the notification id
|
mocker.patch('uuid.uuid4', return_value='some_uuid') # for the notification id
|
||||||
@@ -487,3 +502,17 @@ def test_send_already_registered_email(notify_api, sample_user, already_register
|
|||||||
app.encryption.encrypt(message),
|
app.encryption.encrypt(message),
|
||||||
"2016-01-01T11:09:00.061258"),
|
"2016-01-01T11:09:00.061258"),
|
||||||
queue="email-already-registered")
|
queue="email-already-registered")
|
||||||
|
|
||||||
|
|
||||||
|
def test_send_already_registered_email_returns_400_when_data_is_missing(notify_api, sample_user):
|
||||||
|
with notify_api.test_request_context():
|
||||||
|
with notify_api.test_client() as client:
|
||||||
|
data = json.dumps({})
|
||||||
|
auth_header = create_authorization_header()
|
||||||
|
|
||||||
|
resp = client.post(
|
||||||
|
url_for('user.send_already_registered_email', user_id=str(sample_user.id)),
|
||||||
|
data=data,
|
||||||
|
headers=[('Content-Type', 'application/json'), auth_header])
|
||||||
|
assert resp.status_code == 400
|
||||||
|
assert json.loads(resp.get_data(as_text=True))['message'] == {'email': ['Missing data for required field.']}
|
||||||
|
|||||||
Reference in New Issue
Block a user