use config to get default sender rather than hardcoding

this means that on non-prod envs, it reflects that environment.

it needs to be a lamdba, because the column object is created at import
time, when current_app.config won't have been loaded - this means that
when you create a Service object, that lambda executes and grabs the
correct default value
This commit is contained in:
Leo Hemsted
2017-05-23 10:35:13 +01:00
parent 2535a7fe98
commit 86c9600b04
4 changed files with 9 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ import uuid
from unittest.mock import ANY
import pytest
from flask import url_for
from flask import url_for, current_app
from freezegun import freeze_time
from app.dao.users_dao import save_model_user
@@ -144,7 +144,7 @@ def test_get_service_by_id(client, sample_service):
assert json_resp['data']['organisation'] is None
assert json_resp['data']['branding'] == 'govuk'
assert json_resp['data']['dvla_organisation'] == '001'
assert json_resp['data']['sms_sender'] == 'GOVUK'
assert json_resp['data']['sms_sender'] == current_app.config['FROM_NUMBER']
def test_get_service_by_id_should_404_if_no_service(notify_api, notify_db):
@@ -214,7 +214,7 @@ def test_create_service(client, sample_user):
assert json_resp['data']['email_from'] == 'created.service'
assert not json_resp['data']['research_mode']
assert json_resp['data']['dvla_organisation'] == '001'
assert json_resp['data']['sms_sender'] == 'GOVUK'
assert json_resp['data']['sms_sender'] == current_app.config['FROM_NUMBER']
auth_header_fetch = create_authorization_header()

View File

@@ -109,5 +109,4 @@ def test_send_notification_to_service_users_sends_to_active_users_only(
assert Notification.query.count() == 2
assert notifications[0].to == first_active_user.email_address
assert notifications[1].to == second_active_user.email_address
assert pending_user.email_address not in [n.to for n in notifications]

View File

@@ -1,6 +1,8 @@
import uuid
import pytest
from flask import json
from flask import json, current_app
from app.models import Notification
from app.v2.errors import RateLimitError
from tests import create_authorization_header
@@ -33,8 +35,7 @@ def test_post_sms_notification_returns_201(notify_api, sample_template_with_plac
assert resp_json['id'] == str(notification_id)
assert resp_json['reference'] == reference
assert resp_json['content']['body'] == sample_template_with_placeholders.content.replace("(( Name))", "Jo")
# conftest fixture service does not have a sms sender, use config default
assert resp_json['content']['from_number'] == 'GOVUK'
assert resp_json['content']['from_number'] == current_app.config['FROM_NUMBER']
assert 'v2/notifications/{}'.format(notification_id) in resp_json['uri']
assert resp_json['template']['id'] == str(sample_template_with_placeholders.id)
assert resp_json['template']['version'] == sample_template_with_placeholders.version